clawatch 1.0.6 → 1.0.8
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/backend/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
- package/dist/cli.js +54 -23
- package/dist/cli.js.map +1 -1
- package/frontend/.next/static/FUld_BaW-YHS411_z7FyD/_buildManifest.js +18 -0
- package/frontend/.next/static/FUld_BaW-YHS411_z7FyD/_clientMiddlewareManifest.json +1 -0
- package/frontend/.next/static/FUld_BaW-YHS411_z7FyD/_ssgManifest.js +1 -0
- package/frontend/.next/static/chunks/24358fa7364884a3.js +1 -0
- package/frontend/.next/static/chunks/284aee0eb323076c.js +1 -0
- package/frontend/.next/static/chunks/2b7d8037bb74445e.css +3 -0
- package/frontend/.next/static/chunks/5ba7a3bbfd63a2aa.js +1 -0
- package/frontend/.next/static/chunks/5bcee453cc4bce6d.js +1 -0
- package/frontend/.next/static/chunks/66068ea9541dcab8.js +1 -0
- package/frontend/.next/static/chunks/82abf2d65f5428ae.js +4 -0
- package/frontend/.next/static/chunks/a6dad97d9634a72d.js +1 -0
- package/frontend/.next/static/chunks/a6dad97d9634a72d.js.map +1 -0
- package/frontend/.next/static/chunks/c8ee4845be50f9b7.js +1 -0
- package/frontend/.next/static/chunks/d2be314c3ece3fbe.js +1 -0
- package/frontend/.next/static/chunks/d702a24e2b6c48fa.js +2 -0
- package/frontend/.next/static/chunks/f2f58a7e93290fbb.js +1 -0
- package/frontend/.next/static/chunks/ff1a16fafef87110.js +1 -0
- package/frontend/.next/static/chunks/turbopack-0df1acbb994b2a74.js +4 -0
- package/frontend/.next/static/media/13bf9871fe164e7f-s.f2220059.woff2 +0 -0
- package/frontend/.next/static/media/1bffadaabf893a1e-s.7cd81963.woff2 +0 -0
- package/frontend/.next/static/media/2bbe8d2671613f1f-s.76dcb0b2.woff2 +0 -0
- package/frontend/.next/static/media/2c55a0e60120577a-s.2a48534a.woff2 +0 -0
- package/frontend/.next/static/media/3fe682a82f50d426-s.23358719.woff2 +0 -0
- package/frontend/.next/static/media/5476f68d60460930-s.c995e352.woff2 +0 -0
- package/frontend/.next/static/media/70bc3e132a0a741e-s.p.15008bfb.woff2 +0 -0
- package/frontend/.next/static/media/71b036adf157cdcf-s.bd5f4d11.woff2 +0 -0
- package/frontend/.next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2 +0 -0
- package/frontend/.next/static/media/89b21bb081cb7469-s.51c18f09.woff2 +0 -0
- package/frontend/.next/static/media/9c72aa0f40e4eef8-s.18a48cbc.woff2 +0 -0
- package/frontend/.next/static/media/ad66f9afd8947f86-s.7a40eb73.woff2 +0 -0
- package/frontend/.next/static/media/cc545e633e20c56d-s.f6f1950f.woff2 +0 -0
- package/frontend/.next/static/media/favicon.0b3bf435.ico +0 -0
- package/frontend/node_modules/@next/env/dist/index.js +1 -0
- package/frontend/node_modules/@next/env/package.json +36 -0
- package/frontend/node_modules/@swc/helpers/cjs/_interop_require_default.cjs +6 -0
- package/frontend/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs +38 -0
- package/frontend/node_modules/@swc/helpers/package.json +471 -0
- package/frontend/node_modules/client-only/package.json +19 -0
- package/frontend/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/frontend/node_modules/detect-libc/lib/elf.js +39 -0
- package/frontend/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/frontend/node_modules/detect-libc/lib/process.js +24 -0
- package/frontend/node_modules/detect-libc/package.json +44 -0
- package/frontend/node_modules/next/dist/build/adapter/build-complete.js +993 -0
- package/frontend/node_modules/next/dist/build/after-production-compile.js +95 -0
- package/frontend/node_modules/next/dist/build/analysis/extract-const-value.js +205 -0
- package/frontend/node_modules/next/dist/build/analysis/get-page-static-info.js +601 -0
- package/frontend/node_modules/next/dist/build/analysis/parse-module.js +20 -0
- package/frontend/node_modules/next/dist/build/analyze/index.js +242 -0
- package/frontend/node_modules/next/dist/build/babel/loader/get-config.js +429 -0
- package/frontend/node_modules/next/dist/build/babel/loader/index.js +56 -0
- package/frontend/node_modules/next/dist/build/babel/loader/transform.js +103 -0
- package/frontend/node_modules/next/dist/build/babel/loader/util.js +20 -0
- package/frontend/node_modules/next/dist/build/babel/plugins/commonjs.js +42 -0
- package/frontend/node_modules/next/dist/build/babel/plugins/jsx-pragma.js +74 -0
- package/frontend/node_modules/next/dist/build/babel/plugins/next-font-unsupported.js +36 -0
- package/frontend/node_modules/next/dist/build/babel/plugins/next-page-config.js +104 -0
- package/frontend/node_modules/next/dist/build/babel/plugins/next-page-disallow-re-export-all-exports.js +29 -0
- package/frontend/node_modules/next/dist/build/babel/plugins/next-ssg-transform.js +345 -0
- package/frontend/node_modules/next/dist/build/babel/plugins/optimize-hook-destructuring.js +60 -0
- package/frontend/node_modules/next/dist/build/babel/plugins/react-loadable-plugin.js +145 -0
- package/frontend/node_modules/next/dist/build/babel/preset.js +250 -0
- package/frontend/node_modules/next/dist/build/build-context.js +58 -0
- package/frontend/node_modules/next/dist/build/collect-build-traces.js +536 -0
- package/frontend/node_modules/next/dist/build/compiler.js +88 -0
- package/frontend/node_modules/next/dist/build/create-compiler-aliases.js +436 -0
- package/frontend/node_modules/next/dist/build/define-env.js +237 -0
- package/frontend/node_modules/next/dist/build/duration-to-string.js +99 -0
- package/frontend/node_modules/next/dist/build/entries.js +798 -0
- package/frontend/node_modules/next/dist/build/generate-build-id.js +31 -0
- package/frontend/node_modules/next/dist/build/generate-routes-manifest.js +91 -0
- package/frontend/node_modules/next/dist/build/get-babel-config-file.js +35 -0
- package/frontend/node_modules/next/dist/build/get-babel-loader-config.js +109 -0
- package/frontend/node_modules/next/dist/build/get-static-info-including-layouts.js +81 -0
- package/frontend/node_modules/next/dist/build/handle-entrypoints.js +176 -0
- package/frontend/node_modules/next/dist/build/handle-externals.js +290 -0
- package/frontend/node_modules/next/dist/build/index.js +2683 -0
- package/frontend/node_modules/next/dist/build/is-writeable.js +26 -0
- package/frontend/node_modules/next/dist/build/jest/__mocks__/empty.js +10 -0
- package/frontend/node_modules/next/dist/build/jest/__mocks__/fileMock.js +15 -0
- package/frontend/node_modules/next/dist/build/jest/__mocks__/nextFontMock.js +20 -0
- package/frontend/node_modules/next/dist/build/jest/__mocks__/styleMock.js +10 -0
- package/frontend/node_modules/next/dist/build/jest/jest.js +227 -0
- package/frontend/node_modules/next/dist/build/jest/object-proxy.js +50 -0
- package/frontend/node_modules/next/dist/build/load-entrypoint.js +30 -0
- package/frontend/node_modules/next/dist/build/load-jsconfig.js +162 -0
- package/frontend/node_modules/next/dist/build/lockfile.js +160 -0
- package/frontend/node_modules/next/dist/build/manifests/formatter/format-manifest.js +19 -0
- package/frontend/node_modules/next/dist/build/next-config-ts/require-hook.js +85 -0
- package/frontend/node_modules/next/dist/build/next-config-ts/transpile-config.js +172 -0
- package/frontend/node_modules/next/dist/build/next-dir-paths.js +37 -0
- package/frontend/node_modules/next/dist/build/normalize-catchall-routes.js +76 -0
- package/frontend/node_modules/next/dist/build/output/format.js +84 -0
- package/frontend/node_modules/next/dist/build/output/index.js +186 -0
- package/frontend/node_modules/next/dist/build/output/log.js +135 -0
- package/frontend/node_modules/next/dist/build/output/store.js +204 -0
- package/frontend/node_modules/next/dist/build/page-extensions-type.js +6 -0
- package/frontend/node_modules/next/dist/build/polyfills/fetch/index.js +6 -0
- package/frontend/node_modules/next/dist/build/polyfills/fetch/whatwg-fetch.js +7 -0
- package/frontend/node_modules/next/dist/build/polyfills/object-assign.js +6 -0
- package/frontend/node_modules/next/dist/build/polyfills/object.assign/auto.js +4 -0
- package/frontend/node_modules/next/dist/build/polyfills/object.assign/implementation.js +4 -0
- package/frontend/node_modules/next/dist/build/polyfills/object.assign/index.js +19 -0
- package/frontend/node_modules/next/dist/build/polyfills/object.assign/polyfill.js +6 -0
- package/frontend/node_modules/next/dist/build/polyfills/object.assign/shim.js +6 -0
- package/frontend/node_modules/next/dist/build/polyfills/polyfill-module.js +1 -0
- package/frontend/node_modules/next/dist/build/polyfills/polyfill-nomodule.js +1 -0
- package/frontend/node_modules/next/dist/build/polyfills/process.js +5 -0
- package/frontend/node_modules/next/dist/build/preview-key-utils.js +91 -0
- package/frontend/node_modules/next/dist/build/progress.js +151 -0
- package/frontend/node_modules/next/dist/build/rendering-mode.js +26 -0
- package/frontend/node_modules/next/dist/build/segment-config/app/app-segment-config.js +145 -0
- package/frontend/node_modules/next/dist/build/segment-config/app/app-segments.js +137 -0
- package/frontend/node_modules/next/dist/build/segment-config/app/collect-root-param-keys.js +52 -0
- package/frontend/node_modules/next/dist/build/segment-config/middleware/middleware-config.js +121 -0
- package/frontend/node_modules/next/dist/build/segment-config/pages/pages-segment-config.js +62 -0
- package/frontend/node_modules/next/dist/build/sort-by-page-exts.js +30 -0
- package/frontend/node_modules/next/dist/build/spinner.js +138 -0
- package/frontend/node_modules/next/dist/build/static-paths/app/extract-pathname-route-param-segments-from-loader-tree.js +137 -0
- package/frontend/node_modules/next/dist/build/static-paths/app.js +682 -0
- package/frontend/node_modules/next/dist/build/static-paths/pages.js +169 -0
- package/frontend/node_modules/next/dist/build/static-paths/types.js +6 -0
- package/frontend/node_modules/next/dist/build/static-paths/utils.js +119 -0
- package/frontend/node_modules/next/dist/build/swc/helpers.js +15 -0
- package/frontend/node_modules/next/dist/build/swc/index.js +1271 -0
- package/frontend/node_modules/next/dist/build/swc/install-bindings.js +30 -0
- package/frontend/node_modules/next/dist/build/swc/jest-transformer.js +75 -0
- package/frontend/node_modules/next/dist/build/swc/options.js +386 -0
- package/frontend/node_modules/next/dist/build/swc/types.js +6 -0
- package/frontend/node_modules/next/dist/build/templates/app-page.js +1073 -0
- package/frontend/node_modules/next/dist/build/templates/app-route.js +420 -0
- package/frontend/node_modules/next/dist/build/templates/edge-app-route.js +85 -0
- package/frontend/node_modules/next/dist/build/templates/edge-ssr-app.js +311 -0
- package/frontend/node_modules/next/dist/build/templates/edge-ssr.js +335 -0
- package/frontend/node_modules/next/dist/build/templates/edge-wrapper.js +24 -0
- package/frontend/node_modules/next/dist/build/templates/helpers.js +36 -0
- package/frontend/node_modules/next/dist/build/templates/middleware.js +115 -0
- package/frontend/node_modules/next/dist/build/templates/pages-api.js +194 -0
- package/frontend/node_modules/next/dist/build/templates/pages-edge-api.js +39 -0
- package/frontend/node_modules/next/dist/build/templates/pages.js +155 -0
- package/frontend/node_modules/next/dist/build/turbopack-analyze/index.js +116 -0
- package/frontend/node_modules/next/dist/build/turbopack-build/impl.js +244 -0
- package/frontend/node_modules/next/dist/build/turbopack-build/index.js +85 -0
- package/frontend/node_modules/next/dist/build/turborepo-access-trace/env.js +29 -0
- package/frontend/node_modules/next/dist/build/turborepo-access-trace/helpers.js +104 -0
- package/frontend/node_modules/next/dist/build/turborepo-access-trace/index.js +30 -0
- package/frontend/node_modules/next/dist/build/turborepo-access-trace/result.js +51 -0
- package/frontend/node_modules/next/dist/build/turborepo-access-trace/tcp.js +41 -0
- package/frontend/node_modules/next/dist/build/turborepo-access-trace/types.js +8 -0
- package/frontend/node_modules/next/dist/build/type-check.js +151 -0
- package/frontend/node_modules/next/dist/build/utils.js +1261 -0
- package/frontend/node_modules/next/dist/build/validate-app-paths.js +242 -0
- package/frontend/node_modules/next/dist/build/webpack/alias/react-dom-server-experimental.js +32 -0
- package/frontend/node_modules/next/dist/build/webpack/alias/react-dom-server.js +32 -0
- package/frontend/node_modules/next/dist/build/webpack/cache-invalidation.js +91 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/base.js +82 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/index.js +562 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/loaders/client.js +49 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/loaders/file-resolve.js +21 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/loaders/getCssModuleLocalIdent.js +37 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/loaders/global.js +65 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/loaders/index.js +22 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/loaders/modules.js +86 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/loaders/next-font.js +62 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/messages.js +45 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/css/plugins.js +190 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/images/index.js +42 -0
- package/frontend/node_modules/next/dist/build/webpack/config/blocks/images/messages.js +16 -0
- package/frontend/node_modules/next/dist/build/webpack/config/helpers.js +78 -0
- package/frontend/node_modules/next/dist/build/webpack/config/index.js +46 -0
- package/frontend/node_modules/next/dist/build/webpack/config/utils.js +13 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/CssSyntaxError.js +32 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/camelcase.js +93 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js +287 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/index.js +36 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-icss-parser.js +105 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-import-parser.js +220 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/plugins/postcss-url-parser.js +307 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js +83 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/getUrl.js +23 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/css-loader/src/utils.js +459 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/devtool/devtool-style-inject.js +129 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/empty-loader.js +14 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/error-loader.js +36 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/get-module-build-info.js +15 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/codegen.js +156 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/index.js +27 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/interface.js +17 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/loader.js +429 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/minify.js +94 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/lightningcss-loader/src/utils.js +58 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/metadata/discover.js +122 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/metadata/resolve-route-data.js +171 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/metadata/types.js +7 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/modularize-import-loader.js +39 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader/create-app-route-code.js +65 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js +765 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-barrel-loader.js +268 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js +37 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-edge-app-route-loader/index.js +51 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-edge-function-loader.js +52 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-edge-ssr-loader/index.js +93 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-error-browser-binary-loader.js +21 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-action-entry-loader.js +32 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js +45 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-client-module-loader.js +49 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-css-loader.js +56 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/action-client-wrapper.js +33 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/action-validate.js +27 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/cache-wrapper.js +13 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/index.js +211 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js +14 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/server-reference.js +13 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-loader/track-dynamic-import.js +13 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-flight-server-reference-proxy-loader.js +29 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js +133 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-font-loader/postcss-next-font.js +169 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-image-loader/blur.js +73 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-image-loader/index.js +80 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-invalid-import-error-loader.js +28 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-metadata-image-loader.js +158 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-metadata-route-loader.js +342 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-middleware-asset-loader.js +46 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-middleware-loader.js +59 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-middleware-wasm-loader.js +46 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-root-params-loader.js +164 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js +141 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-style-loader/index.js +220 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-style-loader/runtime/injectStylesIntoLinkTag.js +61 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-style-loader/runtime/injectStylesIntoStyleTag.js +221 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-style-loader/runtime/isEqualLocals.js +27 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/next-swc-loader.js +241 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/Error.js +40 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/Warning.js +35 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js +125 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/utils.js +86 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js +101 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/file-protocol.js +78 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/join-function.js +190 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/postcss.js +92 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/resolve-url-loader/lib/value-processor.js +97 -0
- package/frontend/node_modules/next/dist/build/webpack/loaders/utils.js +100 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/build-manifest-plugin-utils.js +79 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/build-manifest-plugin.js +183 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/copy-file-plugin.js +67 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/css-chunking-plugin.js +277 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/css-minimizer-plugin.js +92 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/devtools-ignore-list-plugin.js +78 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/eval-source-map-dev-tool-plugin.js +191 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/flight-client-entry-plugin.js +793 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/flight-manifest-plugin.js +420 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/force-complete-runtime.js +42 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/jsconfig-paths-plugin.js +219 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/memory-with-gc-cache-plugin.js +114 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/middleware-plugin.js +614 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/mini-css-extract-plugin.js +24 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/minify-webpack-plugin/src/index.js +188 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/next-font-manifest-plugin.js +120 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/next-trace-entrypoints-plugin.js +542 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/next-types-plugin/index.js +428 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/next-types-plugin/shared.js +14 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/nextjs-require-cache-hot-reloader.js +57 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/optional-peer-dependency-resolve-plugin.js +45 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/pages-manifest-plugin.js +146 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/profiling-plugin.js +282 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/react-loadable-plugin.js +169 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/rspack-flight-client-entry-plugin.js +97 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/rspack-profiling-plugin.js +62 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/slow-module-detection-plugin.js +190 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/subresource-integrity-plugin.js +62 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/telemetry-plugin/telemetry-plugin.js +188 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/telemetry-plugin/update-telemetry-loader-context-from-swc.js +28 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/telemetry-plugin/use-cache-tracker-utils.js +43 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/getModuleTrace.js +89 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/index.js +43 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parse-dynamic-code-evaluation-error.js +19 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseBabel.js +29 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseCss.js +29 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextAppLoaderError.js +26 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextFontError.js +33 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNextInvalidImportError.js +26 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseNotFoundError.js +166 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/parseScss.js +42 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/simpleWebpackError.js +18 -0
- package/frontend/node_modules/next/dist/build/webpack/plugins/wellknown-errors-plugin/webpackModuleError.js +138 -0
- package/frontend/node_modules/next/dist/build/webpack/stringify-request.js +15 -0
- package/frontend/node_modules/next/dist/build/webpack/utils.js +109 -0
- package/frontend/node_modules/next/dist/build/webpack-build/impl.js +381 -0
- package/frontend/node_modules/next/dist/build/webpack-build/index.js +179 -0
- package/frontend/node_modules/next/dist/build/webpack-config-rules/resolve.js +55 -0
- package/frontend/node_modules/next/dist/build/webpack-config.js +2343 -0
- package/frontend/node_modules/next/dist/build/worker.js +35 -0
- package/frontend/node_modules/next/dist/build/write-build-id.js +19 -0
- package/frontend/node_modules/next/dist/cli/next-test.js +169 -0
- package/frontend/node_modules/next/dist/client/add-base-path.js +24 -0
- package/frontend/node_modules/next/dist/client/app-build-id.js +49 -0
- package/frontend/node_modules/next/dist/client/app-call-server.js +34 -0
- package/frontend/node_modules/next/dist/client/app-find-source-map-url.js +38 -0
- package/frontend/node_modules/next/dist/client/assign-location.js +29 -0
- package/frontend/node_modules/next/dist/client/components/app-router-announcer.js +78 -0
- package/frontend/node_modules/next/dist/client/components/app-router-headers.js +128 -0
- package/frontend/node_modules/next/dist/client/components/app-router-instance.js +319 -0
- package/frontend/node_modules/next/dist/client/components/app-router-utils.js +62 -0
- package/frontend/node_modules/next/dist/client/components/app-router.js +495 -0
- package/frontend/node_modules/next/dist/client/components/builtin/default.js +35 -0
- package/frontend/node_modules/next/dist/client/components/builtin/global-error.js +82 -0
- package/frontend/node_modules/next/dist/client/components/dev-root-http-access-fallback-boundary.js +52 -0
- package/frontend/node_modules/next/dist/client/components/error-boundary.js +134 -0
- package/frontend/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js +86 -0
- package/frontend/node_modules/next/dist/client/components/errors/root-error-boundary.js +41 -0
- package/frontend/node_modules/next/dist/client/components/forbidden.js +48 -0
- package/frontend/node_modules/next/dist/client/components/handle-isr-error.js +31 -0
- package/frontend/node_modules/next/dist/client/components/hooks-server-context.js +42 -0
- package/frontend/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js +125 -0
- package/frontend/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js +72 -0
- package/frontend/node_modules/next/dist/client/components/is-next-router-error.js +23 -0
- package/frontend/node_modules/next/dist/client/components/links.js +292 -0
- package/frontend/node_modules/next/dist/client/components/match-segments.js +32 -0
- package/frontend/node_modules/next/dist/client/components/nav-failure-handler.js +61 -0
- package/frontend/node_modules/next/dist/client/components/navigation-devtools.js +126 -0
- package/frontend/node_modules/next/dist/client/components/navigation-untracked.js +65 -0
- package/frontend/node_modules/next/dist/client/components/navigation.js +198 -0
- package/frontend/node_modules/next/dist/client/components/navigation.react-server.js +72 -0
- package/frontend/node_modules/next/dist/client/components/not-found.js +42 -0
- package/frontend/node_modules/next/dist/client/components/readonly-url-search-params.js +41 -0
- package/frontend/node_modules/next/dist/client/components/redirect-boundary.js +107 -0
- package/frontend/node_modules/next/dist/client/components/redirect-error.js +52 -0
- package/frontend/node_modules/next/dist/client/components/redirect-status-code.js +24 -0
- package/frontend/node_modules/next/dist/client/components/redirect.js +91 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js +128 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js +21 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js +59 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js +32 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js +340 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/handle-mutable.js +66 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js +51 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js +1129 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js +64 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js +38 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js +23 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js +168 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js +68 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js +78 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js +292 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js +56 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js +61 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/router-reducer.js +66 -0
- package/frontend/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js +60 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/cache-key.js +28 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/cache-map.js +305 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/cache.js +1432 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/lru.js +145 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/navigation.js +459 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/prefetch.js +31 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/scheduler.js +1150 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/types.js +69 -0
- package/frontend/node_modules/next/dist/client/components/segment-cache/vary-path.js +216 -0
- package/frontend/node_modules/next/dist/client/components/static-generation-bailout.js +42 -0
- package/frontend/node_modules/next/dist/client/components/unauthorized.js +49 -0
- package/frontend/node_modules/next/dist/client/components/unrecognized-action-error.js +39 -0
- package/frontend/node_modules/next/dist/client/components/unresolved-thenable.js +23 -0
- package/frontend/node_modules/next/dist/client/components/unstable-rethrow.browser.js +28 -0
- package/frontend/node_modules/next/dist/client/components/unstable-rethrow.js +25 -0
- package/frontend/node_modules/next/dist/client/components/unstable-rethrow.server.js +32 -0
- package/frontend/node_modules/next/dist/client/components/use-action-queue.js +102 -0
- package/frontend/node_modules/next/dist/client/dev/debug-channel.js +72 -0
- package/frontend/node_modules/next/dist/client/flight-data-helpers.js +219 -0
- package/frontend/node_modules/next/dist/client/has-base-path.js +23 -0
- package/frontend/node_modules/next/dist/client/lib/console.js +177 -0
- package/frontend/node_modules/next/dist/client/normalize-trailing-slash.js +36 -0
- package/frontend/node_modules/next/dist/client/remove-base-path.js +32 -0
- package/frontend/node_modules/next/dist/client/route-params.js +230 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js +339 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/cookies/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/ponyfill/index.js +46 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/ponyfill/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/abort-controller.js.text.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/console.js.text.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/events.js.text.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/index.js +5 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/load.js +18713 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/stream.js +44 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/timers.js.text.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@edge-runtime/primitives/url.js.text.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@hapi/accept/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@hapi/accept/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/@mswjs/interceptors/ClientRequest/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@mswjs/interceptors/ClientRequest/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/@napi-rs/triples/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@napi-rs/triples/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/@opentelemetry/api/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/@opentelemetry/api/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/async-retry/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/async-retry/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/async-sema/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/async-sema/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/babel/code-frame.js +1 -0
- package/frontend/node_modules/next/dist/compiled/babel/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/babel-code-frame/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/babel-code-frame/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/busboy/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/busboy/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/bytes/index.js +8 -0
- package/frontend/node_modules/next/dist/compiled/bytes/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/ci-info/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/ci-info/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/commander/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/commander/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/comment-json/index.js +7 -0
- package/frontend/node_modules/next/dist/compiled/comment-json/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/compression/index.js +58 -0
- package/frontend/node_modules/next/dist/compiled/compression/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/conf/index.js +15 -0
- package/frontend/node_modules/next/dist/compiled/conf/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/content-disposition/index.js +6 -0
- package/frontend/node_modules/next/dist/compiled/content-disposition/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/cookie/index.js +7 -0
- package/frontend/node_modules/next/dist/compiled/cookie/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/cross-spawn/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/cross-spawn/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/debug/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/debug/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/edge-runtime/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/edge-runtime/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/find-up/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/find-up/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/fresh/index.js +8 -0
- package/frontend/node_modules/next/dist/compiled/fresh/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/http-proxy/index.js +34 -0
- package/frontend/node_modules/next/dist/compiled/http-proxy/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/image-detector/detector.js +1 -0
- package/frontend/node_modules/next/dist/compiled/image-size/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/image-size/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/ipaddr.js/ipaddr.js +1 -0
- package/frontend/node_modules/next/dist/compiled/ipaddr.js/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/is-animated/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/is-animated/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/is-docker/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/is-docker/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/is-wsl/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/is-wsl/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/jsonwebtoken/index.js +11 -0
- package/frontend/node_modules/next/dist/compiled/jsonwebtoken/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/nanoid/index.cjs +1 -0
- package/frontend/node_modules/next/dist/compiled/nanoid/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/next-server/app-page-turbo-experimental.runtime.prod.js +24 -0
- package/frontend/node_modules/next/dist/compiled/next-server/app-page-turbo.runtime.prod.js +24 -0
- package/frontend/node_modules/next/dist/compiled/next-server/app-route-turbo.runtime.prod.js +6 -0
- package/frontend/node_modules/next/dist/compiled/next-server/pages-turbo.runtime.prod.js +20 -0
- package/frontend/node_modules/next/dist/compiled/p-limit/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/p-limit/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/p-queue/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/p-queue/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/path-browserify/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/path-browserify/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/path-to-regexp/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/path-to-regexp/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/picomatch/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/picomatch/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/react-is/cjs/react-is.development.js +133 -0
- package/frontend/node_modules/next/dist/compiled/react-is/cjs/react-is.production.js +130 -0
- package/frontend/node_modules/next/dist/compiled/react-is/index.js +7 -0
- package/frontend/node_modules/next/dist/compiled/react-is/package.json +26 -0
- package/frontend/node_modules/next/dist/compiled/regenerator-runtime/package.json +19 -0
- package/frontend/node_modules/next/dist/compiled/regenerator-runtime/runtime.js +729 -0
- package/frontend/node_modules/next/dist/compiled/semver/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/semver/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/send/index.js +70 -0
- package/frontend/node_modules/next/dist/compiled/send/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/source-map/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/source-map/source-map.js +1 -0
- package/frontend/node_modules/next/dist/compiled/stacktrace-parser/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/stacktrace-parser/stack-trace-parser.cjs.js +1 -0
- package/frontend/node_modules/next/dist/compiled/string-hash/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/string-hash/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/strip-ansi/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/strip-ansi/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/superstruct/index.cjs +1 -0
- package/frontend/node_modules/next/dist/compiled/superstruct/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/tar/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/tar/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/text-table/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/text-table/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/watchpack/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/watchpack/watchpack.js +1 -0
- package/frontend/node_modules/next/dist/compiled/ws/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/ws/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/zod/index.cjs +1 -0
- package/frontend/node_modules/next/dist/compiled/zod/package.json +1 -0
- package/frontend/node_modules/next/dist/compiled/zod-validation-error/index.js +1 -0
- package/frontend/node_modules/next/dist/compiled/zod-validation-error/package.json +1 -0
- package/frontend/node_modules/next/dist/experimental/testmode/context.js +57 -0
- package/frontend/node_modules/next/dist/experimental/testmode/fetch.js +142 -0
- package/frontend/node_modules/next/dist/experimental/testmode/httpget.js +26 -0
- package/frontend/node_modules/next/dist/experimental/testmode/server-edge.js +32 -0
- package/frontend/node_modules/next/dist/experimental/testmode/server.js +62 -0
- package/frontend/node_modules/next/dist/export/helpers/create-incremental-cache.js +61 -0
- package/frontend/node_modules/next/dist/lib/batcher.js +65 -0
- package/frontend/node_modules/next/dist/lib/build-custom-route.js +46 -0
- package/frontend/node_modules/next/dist/lib/bundler.js +97 -0
- package/frontend/node_modules/next/dist/lib/client-and-server-references.js +54 -0
- package/frontend/node_modules/next/dist/lib/coalesced-function.js +39 -0
- package/frontend/node_modules/next/dist/lib/compile-error.js +14 -0
- package/frontend/node_modules/next/dist/lib/constants.js +405 -0
- package/frontend/node_modules/next/dist/lib/create-client-router-filter.js +67 -0
- package/frontend/node_modules/next/dist/lib/default-transpiled-packages.json +1 -0
- package/frontend/node_modules/next/dist/lib/detached-promise.js +32 -0
- package/frontend/node_modules/next/dist/lib/detect-typo.js +51 -0
- package/frontend/node_modules/next/dist/lib/download-swc.js +183 -0
- package/frontend/node_modules/next/dist/lib/error-telemetry-utils.js +42 -0
- package/frontend/node_modules/next/dist/lib/fallback.js +100 -0
- package/frontend/node_modules/next/dist/lib/fatal-error.js +14 -0
- package/frontend/node_modules/next/dist/lib/file-exists.js +53 -0
- package/frontend/node_modules/next/dist/lib/find-config.js +102 -0
- package/frontend/node_modules/next/dist/lib/find-pages-dir.js +65 -0
- package/frontend/node_modules/next/dist/lib/find-root.js +122 -0
- package/frontend/node_modules/next/dist/lib/format-cli-help-output.js +84 -0
- package/frontend/node_modules/next/dist/lib/format-dynamic-import-path.js +24 -0
- package/frontend/node_modules/next/dist/lib/format-server-error.js +74 -0
- package/frontend/node_modules/next/dist/lib/framework/boundary-components.js +62 -0
- package/frontend/node_modules/next/dist/lib/framework/boundary-constants.js +36 -0
- package/frontend/node_modules/next/dist/lib/fs/rename.js +87 -0
- package/frontend/node_modules/next/dist/lib/fs/write-atomic.js +28 -0
- package/frontend/node_modules/next/dist/lib/generate-interception-routes-rewrites.js +69 -0
- package/frontend/node_modules/next/dist/lib/get-files-in-dir.js +33 -0
- package/frontend/node_modules/next/dist/lib/get-network-host.js +44 -0
- package/frontend/node_modules/next/dist/lib/get-package-version.js +118 -0
- package/frontend/node_modules/next/dist/lib/get-project-dir.js +51 -0
- package/frontend/node_modules/next/dist/lib/has-necessary-dependencies.js +49 -0
- package/frontend/node_modules/next/dist/lib/helpers/get-cache-directory.js +66 -0
- package/frontend/node_modules/next/dist/lib/helpers/get-npx-command.js +29 -0
- package/frontend/node_modules/next/dist/lib/helpers/get-online.js +50 -0
- package/frontend/node_modules/next/dist/lib/helpers/get-pkg-manager.js +63 -0
- package/frontend/node_modules/next/dist/lib/helpers/get-registry.js +45 -0
- package/frontend/node_modules/next/dist/lib/helpers/get-reserved-port.js +116 -0
- package/frontend/node_modules/next/dist/lib/helpers/install.js +83 -0
- package/frontend/node_modules/next/dist/lib/import-next-warning.js +50 -0
- package/frontend/node_modules/next/dist/lib/inline-static-env.js +112 -0
- package/frontend/node_modules/next/dist/lib/install-dependencies.js +40 -0
- package/frontend/node_modules/next/dist/lib/interop-default.js +15 -0
- package/frontend/node_modules/next/dist/lib/is-api-route.js +15 -0
- package/frontend/node_modules/next/dist/lib/is-app-page-route.js +15 -0
- package/frontend/node_modules/next/dist/lib/is-app-route-route.js +15 -0
- package/frontend/node_modules/next/dist/lib/is-edge-runtime.js +16 -0
- package/frontend/node_modules/next/dist/lib/is-error.js +78 -0
- package/frontend/node_modules/next/dist/lib/is-internal-component.js +36 -0
- package/frontend/node_modules/next/dist/lib/is-serializable-props.js +106 -0
- package/frontend/node_modules/next/dist/lib/known-edge-safe-packages.json +1 -0
- package/frontend/node_modules/next/dist/lib/load-custom-routes.js +550 -0
- package/frontend/node_modules/next/dist/lib/memory/gc-observer.js +53 -0
- package/frontend/node_modules/next/dist/lib/memory/shutdown.js +29 -0
- package/frontend/node_modules/next/dist/lib/memory/startup.js +47 -0
- package/frontend/node_modules/next/dist/lib/memory/trace.js +109 -0
- package/frontend/node_modules/next/dist/lib/metadata/constants.js +40 -0
- package/frontend/node_modules/next/dist/lib/metadata/default-metadata.js +82 -0
- package/frontend/node_modules/next/dist/lib/metadata/generate/alternate.js +55 -0
- package/frontend/node_modules/next/dist/lib/metadata/generate/basic.js +307 -0
- package/frontend/node_modules/next/dist/lib/metadata/generate/icon-mark.js +22 -0
- package/frontend/node_modules/next/dist/lib/metadata/generate/icons.js +64 -0
- package/frontend/node_modules/next/dist/lib/metadata/generate/meta.js +123 -0
- package/frontend/node_modules/next/dist/lib/metadata/generate/opengraph.js +478 -0
- package/frontend/node_modules/next/dist/lib/metadata/generate/utils.js +52 -0
- package/frontend/node_modules/next/dist/lib/metadata/get-metadata-route.js +114 -0
- package/frontend/node_modules/next/dist/lib/metadata/is-metadata-route.js +221 -0
- package/frontend/node_modules/next/dist/lib/metadata/metadata-context.js +18 -0
- package/frontend/node_modules/next/dist/lib/metadata/metadata.js +243 -0
- package/frontend/node_modules/next/dist/lib/metadata/resolve-metadata.js +859 -0
- package/frontend/node_modules/next/dist/lib/metadata/resolvers/resolve-basics.js +232 -0
- package/frontend/node_modules/next/dist/lib/metadata/resolvers/resolve-icons.js +56 -0
- package/frontend/node_modules/next/dist/lib/metadata/resolvers/resolve-opengraph.js +199 -0
- package/frontend/node_modules/next/dist/lib/metadata/resolvers/resolve-title.js +40 -0
- package/frontend/node_modules/next/dist/lib/metadata/resolvers/resolve-url.js +135 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/alternative-urls-types.js +7 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/extra-types.js +9 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/icons.js +6 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/manifest-types.js +6 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/metadata-interface.js +18 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/metadata-types.js +10 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/opengraph-types.js +6 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/resolvers.js +6 -0
- package/frontend/node_modules/next/dist/lib/metadata/types/twitter-types.js +7 -0
- package/frontend/node_modules/next/dist/lib/mime-type.js +20 -0
- package/frontend/node_modules/next/dist/lib/mkcert.js +204 -0
- package/frontend/node_modules/next/dist/lib/multi-file-writer.js +75 -0
- package/frontend/node_modules/next/dist/lib/needs-experimental-react.js +16 -0
- package/frontend/node_modules/next/dist/lib/non-nullable.js +15 -0
- package/frontend/node_modules/next/dist/lib/normalize-path.js +21 -0
- package/frontend/node_modules/next/dist/lib/oxford-comma-list.js +15 -0
- package/frontend/node_modules/next/dist/lib/page-types.js +18 -0
- package/frontend/node_modules/next/dist/lib/patch-incorrect-lockfile.js +185 -0
- package/frontend/node_modules/next/dist/lib/pick.js +19 -0
- package/frontend/node_modules/next/dist/lib/picocolors.js +177 -0
- package/frontend/node_modules/next/dist/lib/pretty-bytes.js +74 -0
- package/frontend/node_modules/next/dist/lib/realpath.js +20 -0
- package/frontend/node_modules/next/dist/lib/recursive-copy.js +76 -0
- package/frontend/node_modules/next/dist/lib/recursive-delete.js +137 -0
- package/frontend/node_modules/next/dist/lib/recursive-readdir.js +124 -0
- package/frontend/node_modules/next/dist/lib/redirect-status.js +46 -0
- package/frontend/node_modules/next/dist/lib/require-instrumentation-client.js +26 -0
- package/frontend/node_modules/next/dist/lib/resolve-build-paths.js +149 -0
- package/frontend/node_modules/next/dist/lib/resolve-from.js +65 -0
- package/frontend/node_modules/next/dist/lib/route-pattern-normalizer.js +107 -0
- package/frontend/node_modules/next/dist/lib/scheduler.js +64 -0
- package/frontend/node_modules/next/dist/lib/semver-noop.js +18 -0
- package/frontend/node_modules/next/dist/lib/server-external-packages.jsonc +103 -0
- package/frontend/node_modules/next/dist/lib/setup-exception-listeners.js +11 -0
- package/frontend/node_modules/next/dist/lib/static-env.js +92 -0
- package/frontend/node_modules/next/dist/lib/try-to-parse-path.js +68 -0
- package/frontend/node_modules/next/dist/lib/turbopack-warning.js +186 -0
- package/frontend/node_modules/next/dist/lib/typescript/diagnosticFormatter.js +240 -0
- package/frontend/node_modules/next/dist/lib/typescript/getTypeScriptConfiguration.js +73 -0
- package/frontend/node_modules/next/dist/lib/typescript/getTypeScriptIntent.js +52 -0
- package/frontend/node_modules/next/dist/lib/typescript/missingDependencyError.js +27 -0
- package/frontend/node_modules/next/dist/lib/typescript/runTypeCheck.js +151 -0
- package/frontend/node_modules/next/dist/lib/typescript/type-paths.js +56 -0
- package/frontend/node_modules/next/dist/lib/typescript/writeAppTypeDeclarations.js +65 -0
- package/frontend/node_modules/next/dist/lib/typescript/writeConfigurationDefaults.js +394 -0
- package/frontend/node_modules/next/dist/lib/url.js +75 -0
- package/frontend/node_modules/next/dist/lib/verify-partytown-setup.js +115 -0
- package/frontend/node_modules/next/dist/lib/verify-root-layout.js +165 -0
- package/frontend/node_modules/next/dist/lib/verify-typescript-setup.js +178 -0
- package/frontend/node_modules/next/dist/lib/wait.js +19 -0
- package/frontend/node_modules/next/dist/lib/with-promise-cache.js +24 -0
- package/frontend/node_modules/next/dist/lib/worker.js +223 -0
- package/frontend/node_modules/next/dist/next-devtools/server/shared.js +61 -0
- package/frontend/node_modules/next/dist/server/ReactDOMServerPages.js +16 -0
- package/frontend/node_modules/next/dist/server/accept-header.js +132 -0
- package/frontend/node_modules/next/dist/server/after/after-context.js +140 -0
- package/frontend/node_modules/next/dist/server/after/after.js +26 -0
- package/frontend/node_modules/next/dist/server/after/awaiter.js +74 -0
- package/frontend/node_modules/next/dist/server/after/builtin-request-context.js +38 -0
- package/frontend/node_modules/next/dist/server/after/index.js +21 -0
- package/frontend/node_modules/next/dist/server/after/run-with-after.js +35 -0
- package/frontend/node_modules/next/dist/server/api-utils/get-cookie-parser.js +22 -0
- package/frontend/node_modules/next/dist/server/api-utils/index.js +201 -0
- package/frontend/node_modules/next/dist/server/api-utils/node/api-resolver.js +395 -0
- package/frontend/node_modules/next/dist/server/api-utils/node/parse-body.js +79 -0
- package/frontend/node_modules/next/dist/server/api-utils/node/try-get-preview-data.js +86 -0
- package/frontend/node_modules/next/dist/server/api-utils/web.js +17 -0
- package/frontend/node_modules/next/dist/server/app-render/action-async-storage-instance.js +14 -0
- package/frontend/node_modules/next/dist/server/app-render/action-async-storage.external.js +13 -0
- package/frontend/node_modules/next/dist/server/app-render/action-handler.js +952 -0
- package/frontend/node_modules/next/dist/server/app-render/after-task-async-storage-instance.js +14 -0
- package/frontend/node_modules/next/dist/server/app-render/after-task-async-storage.external.js +13 -0
- package/frontend/node_modules/next/dist/server/app-render/app-render-prerender-utils.js +249 -0
- package/frontend/node_modules/next/dist/server/app-render/app-render-render-utils.js +112 -0
- package/frontend/node_modules/next/dist/server/app-render/app-render-scheduling.js +188 -0
- package/frontend/node_modules/next/dist/server/app-render/app-render.js +3526 -0
- package/frontend/node_modules/next/dist/server/app-render/async-local-storage.js +76 -0
- package/frontend/node_modules/next/dist/server/app-render/cache-signal.js +181 -0
- package/frontend/node_modules/next/dist/server/app-render/collect-segment-data.js +276 -0
- package/frontend/node_modules/next/dist/server/app-render/console-async-storage-instance.js +14 -0
- package/frontend/node_modules/next/dist/server/app-render/console-async-storage.external.js +13 -0
- package/frontend/node_modules/next/dist/server/app-render/create-component-styles-and-scripts.js +33 -0
- package/frontend/node_modules/next/dist/server/app-render/create-component-tree.js +754 -0
- package/frontend/node_modules/next/dist/server/app-render/create-error-handler.js +187 -0
- package/frontend/node_modules/next/dist/server/app-render/create-flight-router-state-from-loader-tree.js +76 -0
- package/frontend/node_modules/next/dist/server/app-render/csrf-protection.js +75 -0
- package/frontend/node_modules/next/dist/server/app-render/dynamic-access-async-storage-instance.js +14 -0
- package/frontend/node_modules/next/dist/server/app-render/dynamic-access-async-storage.external.js +13 -0
- package/frontend/node_modules/next/dist/server/app-render/dynamic-rendering.js +828 -0
- package/frontend/node_modules/next/dist/server/app-render/encryption-utils-server.js +114 -0
- package/frontend/node_modules/next/dist/server/app-render/encryption-utils.js +93 -0
- package/frontend/node_modules/next/dist/server/app-render/encryption.js +238 -0
- package/frontend/node_modules/next/dist/server/app-render/entry-base.js +237 -0
- package/frontend/node_modules/next/dist/server/app-render/flight-render-result.js +28 -0
- package/frontend/node_modules/next/dist/server/app-render/get-asset-query-string.js +29 -0
- package/frontend/node_modules/next/dist/server/app-render/get-css-inlined-link-tags.js +49 -0
- package/frontend/node_modules/next/dist/server/app-render/get-layer-assets.js +65 -0
- package/frontend/node_modules/next/dist/server/app-render/get-preloadable-fonts.js +39 -0
- package/frontend/node_modules/next/dist/server/app-render/get-script-nonce-from-header.js +44 -0
- package/frontend/node_modules/next/dist/server/app-render/get-short-dynamic-param-type.js +25 -0
- package/frontend/node_modules/next/dist/server/app-render/has-loading-component-in-tree.js +19 -0
- package/frontend/node_modules/next/dist/server/app-render/interop-default.js +17 -0
- package/frontend/node_modules/next/dist/server/app-render/make-get-server-inserted-html.js +92 -0
- package/frontend/node_modules/next/dist/server/app-render/manifests-singleton.js +257 -0
- package/frontend/node_modules/next/dist/server/app-render/metadata-insertion/create-server-inserted-metadata.js +28 -0
- package/frontend/node_modules/next/dist/server/app-render/module-loading/track-dynamic-import.js +57 -0
- package/frontend/node_modules/next/dist/server/app-render/module-loading/track-module-loading.external.js +32 -0
- package/frontend/node_modules/next/dist/server/app-render/module-loading/track-module-loading.instance.js +66 -0
- package/frontend/node_modules/next/dist/server/app-render/parse-and-validate-flight-router-state.js +49 -0
- package/frontend/node_modules/next/dist/server/app-render/postponed-state.js +156 -0
- package/frontend/node_modules/next/dist/server/app-render/prospective-render-utils.js +73 -0
- package/frontend/node_modules/next/dist/server/app-render/react-large-shell-error.js +17 -0
- package/frontend/node_modules/next/dist/server/app-render/react-server.node.js +39 -0
- package/frontend/node_modules/next/dist/server/app-render/render-css-resource.js +52 -0
- package/frontend/node_modules/next/dist/server/app-render/required-scripts.js +76 -0
- package/frontend/node_modules/next/dist/server/app-render/rsc/postpone.js +18 -0
- package/frontend/node_modules/next/dist/server/app-render/rsc/preloads.js +74 -0
- package/frontend/node_modules/next/dist/server/app-render/rsc/taint.js +79 -0
- package/frontend/node_modules/next/dist/server/app-render/segment-explorer-path.js +103 -0
- package/frontend/node_modules/next/dist/server/app-render/server-inserted-html.js +77 -0
- package/frontend/node_modules/next/dist/server/app-render/staged-rendering.js +273 -0
- package/frontend/node_modules/next/dist/server/app-render/staged-validation.js +32 -0
- package/frontend/node_modules/next/dist/server/app-render/strip-flight-headers.js +18 -0
- package/frontend/node_modules/next/dist/server/app-render/types.js +59 -0
- package/frontend/node_modules/next/dist/server/app-render/use-flight-response.js +212 -0
- package/frontend/node_modules/next/dist/server/app-render/walk-tree-with-flight-router-state.js +185 -0
- package/frontend/node_modules/next/dist/server/app-render/work-async-storage-instance.js +14 -0
- package/frontend/node_modules/next/dist/server/app-render/work-async-storage.external.js +13 -0
- package/frontend/node_modules/next/dist/server/app-render/work-unit-async-storage-instance.js +14 -0
- package/frontend/node_modules/next/dist/server/app-render/work-unit-async-storage.external.js +252 -0
- package/frontend/node_modules/next/dist/server/async-storage/draft-mode-provider.js +62 -0
- package/frontend/node_modules/next/dist/server/async-storage/request-store.js +144 -0
- package/frontend/node_modules/next/dist/server/async-storage/with-store.js +6 -0
- package/frontend/node_modules/next/dist/server/async-storage/work-store.js +94 -0
- package/frontend/node_modules/next/dist/server/base-http/helpers.js +36 -0
- package/frontend/node_modules/next/dist/server/base-http/index.js +54 -0
- package/frontend/node_modules/next/dist/server/base-http/node.js +147 -0
- package/frontend/node_modules/next/dist/server/base-http/web.js +124 -0
- package/frontend/node_modules/next/dist/server/base-server.js +1862 -0
- package/frontend/node_modules/next/dist/server/body-streams.js +114 -0
- package/frontend/node_modules/next/dist/server/cache-dir.js +26 -0
- package/frontend/node_modules/next/dist/server/capsize-font-metrics.json +181516 -0
- package/frontend/node_modules/next/dist/server/ci-info.js +41 -0
- package/frontend/node_modules/next/dist/server/client-component-renderer-logger.js +70 -0
- package/frontend/node_modules/next/dist/server/config-schema.js +632 -0
- package/frontend/node_modules/next/dist/server/config-shared.js +319 -0
- package/frontend/node_modules/next/dist/server/config-utils.js +185 -0
- package/frontend/node_modules/next/dist/server/config.js +1474 -0
- package/frontend/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js +96 -0
- package/frontend/node_modules/next/dist/server/crypto-utils.js +70 -0
- package/frontend/node_modules/next/dist/server/dev/browser-logs/file-logger.js +183 -0
- package/frontend/node_modules/next/dist/server/dev/browser-logs/receive-logs.js +512 -0
- package/frontend/node_modules/next/dist/server/dev/browser-logs/source-map.js +225 -0
- package/frontend/node_modules/next/dist/server/dev/debug-channel.js +87 -0
- package/frontend/node_modules/next/dist/server/dev/dev-indicator-server-state.js +15 -0
- package/frontend/node_modules/next/dist/server/dev/get-source-map-from-file.js +100 -0
- package/frontend/node_modules/next/dist/server/dev/hot-middleware.js +274 -0
- package/frontend/node_modules/next/dist/server/dev/hot-reloader-rspack.js +171 -0
- package/frontend/node_modules/next/dist/server/dev/hot-reloader-shared-utils.js +56 -0
- package/frontend/node_modules/next/dist/server/dev/hot-reloader-turbopack.js +1247 -0
- package/frontend/node_modules/next/dist/server/dev/hot-reloader-types.js +58 -0
- package/frontend/node_modules/next/dist/server/dev/hot-reloader-webpack.js +1382 -0
- package/frontend/node_modules/next/dist/server/dev/log-requests.js +141 -0
- package/frontend/node_modules/next/dist/server/dev/messages.js +74 -0
- package/frontend/node_modules/next/dist/server/dev/middleware-turbopack.js +393 -0
- package/frontend/node_modules/next/dist/server/dev/middleware-webpack.js +473 -0
- package/frontend/node_modules/next/dist/server/dev/node-stack-frames.js +72 -0
- package/frontend/node_modules/next/dist/server/dev/on-demand-entry-handler.js +704 -0
- package/frontend/node_modules/next/dist/server/dev/parse-version-info.js +108 -0
- package/frontend/node_modules/next/dist/server/dev/require-cache.js +49 -0
- package/frontend/node_modules/next/dist/server/dev/serialized-errors.js +67 -0
- package/frontend/node_modules/next/dist/server/dev/static-paths-worker.js +103 -0
- package/frontend/node_modules/next/dist/server/dev/turbopack-utils.js +696 -0
- package/frontend/node_modules/next/dist/server/dynamic-rendering-utils.js +86 -0
- package/frontend/node_modules/next/dist/server/font-utils.js +43 -0
- package/frontend/node_modules/next/dist/server/get-app-route-from-entrypoint.js +30 -0
- package/frontend/node_modules/next/dist/server/get-page-files.js +23 -0
- package/frontend/node_modules/next/dist/server/get-route-from-entrypoint.js +35 -0
- package/frontend/node_modules/next/dist/server/htmlescape.js +37 -0
- package/frontend/node_modules/next/dist/server/image-optimizer.js +1090 -0
- package/frontend/node_modules/next/dist/server/instrumentation/types.js +6 -0
- package/frontend/node_modules/next/dist/server/instrumentation/utils.js +21 -0
- package/frontend/node_modules/next/dist/server/internal-utils.js +39 -0
- package/frontend/node_modules/next/dist/server/is-private-ip.js +36 -0
- package/frontend/node_modules/next/dist/server/lib/app-dir-module.js +59 -0
- package/frontend/node_modules/next/dist/server/lib/app-info-log.js +154 -0
- package/frontend/node_modules/next/dist/server/lib/async-callback-set.js +29 -0
- package/frontend/node_modules/next/dist/server/lib/cache-control.js +22 -0
- package/frontend/node_modules/next/dist/server/lib/cache-handlers/default.external.js +18 -0
- package/frontend/node_modules/next/dist/server/lib/cache-handlers/default.js +160 -0
- package/frontend/node_modules/next/dist/server/lib/cache-handlers/types.js +8 -0
- package/frontend/node_modules/next/dist/server/lib/chrome-devtools-workspace.js +116 -0
- package/frontend/node_modules/next/dist/server/lib/clone-response.js +77 -0
- package/frontend/node_modules/next/dist/server/lib/cpu-profile.js +28 -0
- package/frontend/node_modules/next/dist/server/lib/decode-query-path-parameter.js +26 -0
- package/frontend/node_modules/next/dist/server/lib/dedupe-fetch.js +163 -0
- package/frontend/node_modules/next/dist/server/lib/dev-bundler-service.js +95 -0
- package/frontend/node_modules/next/dist/server/lib/etag.js +56 -0
- package/frontend/node_modules/next/dist/server/lib/experimental/create-env-definitions.js +48 -0
- package/frontend/node_modules/next/dist/server/lib/experimental/ppr.js +47 -0
- package/frontend/node_modules/next/dist/server/lib/find-page-file.js +127 -0
- package/frontend/node_modules/next/dist/server/lib/fix-mojibake.js +25 -0
- package/frontend/node_modules/next/dist/server/lib/format-hostname.js +16 -0
- package/frontend/node_modules/next/dist/server/lib/i18n-provider.js +129 -0
- package/frontend/node_modules/next/dist/server/lib/implicit-tags.js +77 -0
- package/frontend/node_modules/next/dist/server/lib/incremental-cache/file-system-cache.js +333 -0
- package/frontend/node_modules/next/dist/server/lib/incremental-cache/index.js +479 -0
- package/frontend/node_modules/next/dist/server/lib/incremental-cache/memory-cache.external.js +40 -0
- package/frontend/node_modules/next/dist/server/lib/incremental-cache/shared-cache-controls.external.js +73 -0
- package/frontend/node_modules/next/dist/server/lib/incremental-cache/tags-manifest.external.js +55 -0
- package/frontend/node_modules/next/dist/server/lib/is-ipv6.js +41 -0
- package/frontend/node_modules/next/dist/server/lib/lazy-result.js +46 -0
- package/frontend/node_modules/next/dist/server/lib/lru-cache.js +183 -0
- package/frontend/node_modules/next/dist/server/lib/match-next-data-pathname.js +18 -0
- package/frontend/node_modules/next/dist/server/lib/mock-request.js +416 -0
- package/frontend/node_modules/next/dist/server/lib/module-loader/module-loader.js +8 -0
- package/frontend/node_modules/next/dist/server/lib/module-loader/node-module-loader.js +25 -0
- package/frontend/node_modules/next/dist/server/lib/module-loader/route-module-loader.js +26 -0
- package/frontend/node_modules/next/dist/server/lib/node-fs-methods.js +28 -0
- package/frontend/node_modules/next/dist/server/lib/parse-stack.js +46 -0
- package/frontend/node_modules/next/dist/server/lib/patch-fetch.js +945 -0
- package/frontend/node_modules/next/dist/server/lib/patch-set-header.js +38 -0
- package/frontend/node_modules/next/dist/server/lib/render-server.js +152 -0
- package/frontend/node_modules/next/dist/server/lib/router-server.js +672 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/block-cross-site.js +76 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/build-data-route.js +48 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/build-prefetch-segment-data-route.js +50 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/cache-life-type-utils.js +211 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/decode-path-params.js +42 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/filesystem.js +590 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/instrumentation-globals.external.js +89 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/instrumentation-node-extensions.js +96 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/is-postpone.js +16 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/proxy-request.js +118 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/resolve-routes.js +608 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/route-types-utils.js +286 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/router-server-context.js +26 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/typegen.js +613 -0
- package/frontend/node_modules/next/dist/server/lib/router-utils/types.js +6 -0
- package/frontend/node_modules/next/dist/server/lib/server-action-request-meta.js +53 -0
- package/frontend/node_modules/next/dist/server/lib/server-ipc/utils.js +80 -0
- package/frontend/node_modules/next/dist/server/lib/source-maps.js +196 -0
- package/frontend/node_modules/next/dist/server/lib/start-server.js +460 -0
- package/frontend/node_modules/next/dist/server/lib/streaming-metadata.js +38 -0
- package/frontend/node_modules/next/dist/server/lib/to-route.js +37 -0
- package/frontend/node_modules/next/dist/server/lib/trace/constants.js +203 -0
- package/frontend/node_modules/next/dist/server/lib/trace/tracer.js +270 -0
- package/frontend/node_modules/next/dist/server/lib/trace/utils.js +16 -0
- package/frontend/node_modules/next/dist/server/lib/types.js +6 -0
- package/frontend/node_modules/next/dist/server/lib/utils.js +249 -0
- package/frontend/node_modules/next/dist/server/lib/worker-utils.js +36 -0
- package/frontend/node_modules/next/dist/server/load-components.js +177 -0
- package/frontend/node_modules/next/dist/server/load-default-error-components.js +41 -0
- package/frontend/node_modules/next/dist/server/load-manifest.external.js +97 -0
- package/frontend/node_modules/next/dist/server/match-bundle.js +25 -0
- package/frontend/node_modules/next/dist/server/mcp/get-mcp-middleware.js +49 -0
- package/frontend/node_modules/next/dist/server/mcp/get-or-create-mcp-server.js +41 -0
- package/frontend/node_modules/next/dist/server/mcp/mcp-telemetry-tracker.js +82 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/get-errors.js +107 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/get-logs.js +61 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/get-page-metadata.js +180 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/get-project-metadata.js +55 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/get-routes.js +171 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/get-server-action-by-id.js +113 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/next-instance-error-state.js +31 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/utils/browser-communication.js +90 -0
- package/frontend/node_modules/next/dist/server/mcp/tools/utils/format-errors.js +147 -0
- package/frontend/node_modules/next/dist/server/next-server.js +1459 -0
- package/frontend/node_modules/next/dist/server/next-typescript.js +13 -0
- package/frontend/node_modules/next/dist/server/next.js +452 -0
- package/frontend/node_modules/next/dist/server/node-environment-baseline.js +25 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/console-dim.external.js +246 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/console-exit.js +49 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/console-file.js +56 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/date.js +52 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/error-inspect.js +8 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/fast-set-immediate.external.js +570 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/global-behaviors.js +33 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/node-crypto.js +103 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/random.js +28 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/unhandled-rejection.js +489 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/utils.js +186 -0
- package/frontend/node_modules/next/dist/server/node-environment-extensions/web-crypto.js +45 -0
- package/frontend/node_modules/next/dist/server/node-environment.js +19 -0
- package/frontend/node_modules/next/dist/server/node-polyfill-crypto.js +21 -0
- package/frontend/node_modules/next/dist/server/normalizers/absolute-filename-normalizer.js +33 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/app/app-bundle-path-normalizer.js +54 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/app/app-filename-normalizer.js +22 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/app/app-page-normalizer.js +40 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/app/app-pathname-normalizer.js +55 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/app/index.js +42 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/pages/index.js +44 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/pages/pages-bundle-path-normalizer.js +55 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/pages/pages-filename-normalizer.js +22 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/pages/pages-page-normalizer.js +19 -0
- package/frontend/node_modules/next/dist/server/normalizers/built/pages/pages-pathname-normalizer.js +19 -0
- package/frontend/node_modules/next/dist/server/normalizers/locale-route-normalizer.js +26 -0
- package/frontend/node_modules/next/dist/server/normalizers/normalizer.js +6 -0
- package/frontend/node_modules/next/dist/server/normalizers/normalizers.js +23 -0
- package/frontend/node_modules/next/dist/server/normalizers/prefixing-normalizer.js +26 -0
- package/frontend/node_modules/next/dist/server/normalizers/request/base-path.js +25 -0
- package/frontend/node_modules/next/dist/server/normalizers/request/next-data.js +38 -0
- package/frontend/node_modules/next/dist/server/normalizers/request/pathname-normalizer.js +6 -0
- package/frontend/node_modules/next/dist/server/normalizers/request/prefix.js +39 -0
- package/frontend/node_modules/next/dist/server/normalizers/request/rsc.js +19 -0
- package/frontend/node_modules/next/dist/server/normalizers/request/segment-prefix-rsc.js +32 -0
- package/frontend/node_modules/next/dist/server/normalizers/request/suffix.js +27 -0
- package/frontend/node_modules/next/dist/server/normalizers/underscore-normalizer.js +17 -0
- package/frontend/node_modules/next/dist/server/normalizers/wrap-normalizer-fn.js +17 -0
- package/frontend/node_modules/next/dist/server/og/image-response.js +53 -0
- package/frontend/node_modules/next/dist/server/patch-error-inspect.js +436 -0
- package/frontend/node_modules/next/dist/server/pipe-readable.js +140 -0
- package/frontend/node_modules/next/dist/server/post-process.js +39 -0
- package/frontend/node_modules/next/dist/server/render-result.js +195 -0
- package/frontend/node_modules/next/dist/server/render.js +1138 -0
- package/frontend/node_modules/next/dist/server/request/connection.js +111 -0
- package/frontend/node_modules/next/dist/server/request/cookies.js +220 -0
- package/frontend/node_modules/next/dist/server/request/draft-mode.js +207 -0
- package/frontend/node_modules/next/dist/server/request/fallback-params.js +69 -0
- package/frontend/node_modules/next/dist/server/request/headers.js +219 -0
- package/frontend/node_modules/next/dist/server/request/params.js +415 -0
- package/frontend/node_modules/next/dist/server/request/pathname.js +104 -0
- package/frontend/node_modules/next/dist/server/request/root-params.js +157 -0
- package/frontend/node_modules/next/dist/server/request/search-params.js +432 -0
- package/frontend/node_modules/next/dist/server/request/utils.js +51 -0
- package/frontend/node_modules/next/dist/server/request-meta.js +55 -0
- package/frontend/node_modules/next/dist/server/require-hook.js +71 -0
- package/frontend/node_modules/next/dist/server/require.js +109 -0
- package/frontend/node_modules/next/dist/server/response-cache/index.js +311 -0
- package/frontend/node_modules/next/dist/server/response-cache/types.js +41 -0
- package/frontend/node_modules/next/dist/server/response-cache/utils.js +103 -0
- package/frontend/node_modules/next/dist/server/response-cache/web.js +101 -0
- package/frontend/node_modules/next/dist/server/resume-data-cache/cache-store.js +84 -0
- package/frontend/node_modules/next/dist/server/resume-data-cache/resume-data-cache.js +115 -0
- package/frontend/node_modules/next/dist/server/revalidation-utils.js +152 -0
- package/frontend/node_modules/next/dist/server/route-definitions/app-page-route-definition.js +16 -0
- package/frontend/node_modules/next/dist/server/route-definitions/app-route-route-definition.js +6 -0
- package/frontend/node_modules/next/dist/server/route-definitions/locale-route-definition.js +6 -0
- package/frontend/node_modules/next/dist/server/route-definitions/pages-api-route-definition.js +6 -0
- package/frontend/node_modules/next/dist/server/route-definitions/pages-route-definition.js +6 -0
- package/frontend/node_modules/next/dist/server/route-definitions/route-definition.js +6 -0
- package/frontend/node_modules/next/dist/server/route-kind.js +32 -0
- package/frontend/node_modules/next/dist/server/route-matcher-managers/default-route-matcher-manager.js +239 -0
- package/frontend/node_modules/next/dist/server/route-matcher-managers/dev-route-matcher-manager.js +120 -0
- package/frontend/node_modules/next/dist/server/route-matcher-managers/route-matcher-manager.js +6 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/app-page-route-matcher-provider.js +55 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/app-route-route-matcher-provider.js +43 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/dev/dev-app-page-route-matcher-provider.js +90 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/dev/dev-app-route-route-matcher-provider.js +112 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/dev/dev-pages-api-route-matcher-provider.js +77 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/dev/dev-pages-route-matcher-provider.js +77 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/dev/file-cache-route-matcher-provider.js +28 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/dev/helpers/file-reader/batched-file-reader.js +106 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/dev/helpers/file-reader/default-file-reader.js +42 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/dev/helpers/file-reader/file-reader.js +6 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/helpers/cached-route-matcher-provider.js +30 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/helpers/manifest-loaders/manifest-loader.js +6 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/helpers/manifest-loaders/node-manifest-loader.js +34 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/helpers/manifest-loaders/server-manifest-loader.js +20 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/manifest-route-matcher-provider.js +21 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/pages-api-route-matcher-provider.js +55 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/pages-route-matcher-provider.js +64 -0
- package/frontend/node_modules/next/dist/server/route-matcher-providers/route-matcher-provider.js +6 -0
- package/frontend/node_modules/next/dist/server/route-matchers/app-page-route-matcher.js +18 -0
- package/frontend/node_modules/next/dist/server/route-matchers/app-route-route-matcher.js +15 -0
- package/frontend/node_modules/next/dist/server/route-matchers/locale-route-matcher.js +68 -0
- package/frontend/node_modules/next/dist/server/route-matchers/pages-api-route-matcher.js +30 -0
- package/frontend/node_modules/next/dist/server/route-matchers/pages-route-matcher.js +30 -0
- package/frontend/node_modules/next/dist/server/route-matchers/route-matcher.js +54 -0
- package/frontend/node_modules/next/dist/server/route-matches/app-page-route-match.js +6 -0
- package/frontend/node_modules/next/dist/server/route-matches/app-route-route-match.js +6 -0
- package/frontend/node_modules/next/dist/server/route-matches/locale-route-match.js +6 -0
- package/frontend/node_modules/next/dist/server/route-matches/pages-api-route-match.js +16 -0
- package/frontend/node_modules/next/dist/server/route-matches/pages-route-match.js +6 -0
- package/frontend/node_modules/next/dist/server/route-matches/route-match.js +6 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/helpers/prerender-manifest-matcher.js +48 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/module.compiled.js +36 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/module.js +132 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/module.render.js +24 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/entrypoints.js +87 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/entrypoints.js +140 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-compiler-runtime.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-dev-runtime.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-server.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-turbopack-static.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-static.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/entrypoints.js +125 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-compiler-runtime.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom-server.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-dev-runtime.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-turbopack-client.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-route/helpers/auto-implement-methods.js +85 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-route/helpers/clean-url.js +24 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-route/helpers/get-pathname-from-absolute-path.js +29 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-route/helpers/is-static-gen-enabled.js +15 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-route/helpers/parsed-url-query-to-params.js +20 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-route/module.compiled.js +36 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-route/module.js +889 -0
- package/frontend/node_modules/next/dist/server/route-modules/app-route/shared-modules.js +56 -0
- package/frontend/node_modules/next/dist/server/route-modules/checks.js +45 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/builtin/_error.js +100 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/module.compiled.js +20 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/module.js +92 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/module.render.js +24 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/pages-handler.js +522 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/app-router-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/entrypoints.js +102 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/head-manager-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/hooks-client-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/html-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/image-config-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/loadable-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/loadable.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/router-context.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages/vendored/contexts/server-inserted-html.js +4 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages-api/module.compiled.js +20 -0
- package/frontend/node_modules/next/dist/server/route-modules/pages-api/module.js +58 -0
- package/frontend/node_modules/next/dist/server/route-modules/route-module.js +597 -0
- package/frontend/node_modules/next/dist/server/runtime-reacts.external.js +46 -0
- package/frontend/node_modules/next/dist/server/send-payload.js +88 -0
- package/frontend/node_modules/next/dist/server/send-response.js +70 -0
- package/frontend/node_modules/next/dist/server/serve-static.js +66 -0
- package/frontend/node_modules/next/dist/server/server-route-utils.js +30 -0
- package/frontend/node_modules/next/dist/server/server-utils.js +323 -0
- package/frontend/node_modules/next/dist/server/setup-http-agent-env.js +31 -0
- package/frontend/node_modules/next/dist/server/stream-utils/encoded-tags.js +114 -0
- package/frontend/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js +737 -0
- package/frontend/node_modules/next/dist/server/stream-utils/uint8array-helpers.js +69 -0
- package/frontend/node_modules/next/dist/server/typescript/constant.js +97 -0
- package/frontend/node_modules/next/dist/server/typescript/index.js +199 -0
- package/frontend/node_modules/next/dist/server/typescript/rules/client-boundary.js +97 -0
- package/frontend/node_modules/next/dist/server/typescript/rules/config.js +501 -0
- package/frontend/node_modules/next/dist/server/typescript/rules/entry.js +149 -0
- package/frontend/node_modules/next/dist/server/typescript/rules/error.js +38 -0
- package/frontend/node_modules/next/dist/server/typescript/rules/metadata.js +234 -0
- package/frontend/node_modules/next/dist/server/typescript/rules/server-boundary.js +115 -0
- package/frontend/node_modules/next/dist/server/typescript/rules/server.js +79 -0
- package/frontend/node_modules/next/dist/server/typescript/utils.js +212 -0
- package/frontend/node_modules/next/dist/server/use-cache/cache-life.js +161 -0
- package/frontend/node_modules/next/dist/server/use-cache/cache-tag.js +50 -0
- package/frontend/node_modules/next/dist/server/use-cache/constants.js +28 -0
- package/frontend/node_modules/next/dist/server/use-cache/handlers.js +121 -0
- package/frontend/node_modules/next/dist/server/use-cache/use-cache-errors.js +36 -0
- package/frontend/node_modules/next/dist/server/use-cache/use-cache-wrapper.js +1336 -0
- package/frontend/node_modules/next/dist/server/utils.js +73 -0
- package/frontend/node_modules/next/dist/server/web/adapter.js +388 -0
- package/frontend/node_modules/next/dist/server/web/edge-route-module-wrapper.js +122 -0
- package/frontend/node_modules/next/dist/server/web/error.js +54 -0
- package/frontend/node_modules/next/dist/server/web/exports/index.js +56 -0
- package/frontend/node_modules/next/dist/server/web/get-edge-preview-props.js +23 -0
- package/frontend/node_modules/next/dist/server/web/globals.js +128 -0
- package/frontend/node_modules/next/dist/server/web/http.js +39 -0
- package/frontend/node_modules/next/dist/server/web/internal-edge-wait-until.js +64 -0
- package/frontend/node_modules/next/dist/server/web/next-url.js +195 -0
- package/frontend/node_modules/next/dist/server/web/sandbox/context.js +462 -0
- package/frontend/node_modules/next/dist/server/web/sandbox/fetch-inline-assets.js +35 -0
- package/frontend/node_modules/next/dist/server/web/sandbox/index.js +28 -0
- package/frontend/node_modules/next/dist/server/web/sandbox/resource-managers.js +88 -0
- package/frontend/node_modules/next/dist/server/web/sandbox/sandbox.js +134 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/adapters/headers.js +192 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js +142 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js +30 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/adapters/request-cookies.js +211 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/cookies.js +29 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/fetch-event.js +98 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/image-response.js +22 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/request.js +99 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/response.js +136 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/revalidate.js +206 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/unstable-cache.js +284 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/unstable-no-store.js +49 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/url-pattern.js +14 -0
- package/frontend/node_modules/next/dist/server/web/spec-extension/user-agent.js +46 -0
- package/frontend/node_modules/next/dist/server/web/types.js +6 -0
- package/frontend/node_modules/next/dist/server/web/utils.js +151 -0
- package/frontend/node_modules/next/dist/server/web/web-on-close.js +87 -0
- package/frontend/node_modules/next/dist/shared/lib/action-revalidation-kind.js +31 -0
- package/frontend/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js +50 -0
- package/frontend/node_modules/next/dist/shared/lib/app-router-types.js +27 -0
- package/frontend/node_modules/next/dist/shared/lib/constants.js +448 -0
- package/frontend/node_modules/next/dist/shared/lib/deep-freeze.js +30 -0
- package/frontend/node_modules/next/dist/shared/lib/deployment-id.js +36 -0
- package/frontend/node_modules/next/dist/shared/lib/dset.js +34 -0
- package/frontend/node_modules/next/dist/shared/lib/encode-uri-path.js +15 -0
- package/frontend/node_modules/next/dist/shared/lib/entry-constants.js +36 -0
- package/frontend/node_modules/next/dist/shared/lib/error-source.js +36 -0
- package/frontend/node_modules/next/dist/shared/lib/errors/canary-only-config-error.js +39 -0
- package/frontend/node_modules/next/dist/shared/lib/errors/constants.js +19 -0
- package/frontend/node_modules/next/dist/shared/lib/errors/empty-generate-static-params-error.js +24 -0
- package/frontend/node_modules/next/dist/shared/lib/errors/hard-deprecated-config-error.js +20 -0
- package/frontend/node_modules/next/dist/shared/lib/escape-regexp.js +22 -0
- package/frontend/node_modules/next/dist/shared/lib/get-hostname.js +23 -0
- package/frontend/node_modules/next/dist/shared/lib/hash.js +42 -0
- package/frontend/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js +18 -0
- package/frontend/node_modules/next/dist/shared/lib/head.js +163 -0
- package/frontend/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js +60 -0
- package/frontend/node_modules/next/dist/shared/lib/html-context.shared-runtime.js +40 -0
- package/frontend/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js +25 -0
- package/frontend/node_modules/next/dist/shared/lib/i18n/get-locale-redirect.js +59 -0
- package/frontend/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js +54 -0
- package/frontend/node_modules/next/dist/shared/lib/image-blur-svg.js +22 -0
- package/frontend/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js +19 -0
- package/frontend/node_modules/next/dist/shared/lib/image-config.js +75 -0
- package/frontend/node_modules/next/dist/shared/lib/invariant-error.js +18 -0
- package/frontend/node_modules/next/dist/shared/lib/is-internal.js +39 -0
- package/frontend/node_modules/next/dist/shared/lib/is-plain-object.js +42 -0
- package/frontend/node_modules/next/dist/shared/lib/is-thenable.js +20 -0
- package/frontend/node_modules/next/dist/shared/lib/isomorphic/path.js +14 -0
- package/frontend/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js +37 -0
- package/frontend/node_modules/next/dist/shared/lib/loadable-context.shared-runtime.js +19 -0
- package/frontend/node_modules/next/dist/shared/lib/loadable.shared-runtime.js +246 -0
- package/frontend/node_modules/next/dist/shared/lib/magic-identifier.js +218 -0
- package/frontend/node_modules/next/dist/shared/lib/match-local-pattern.js +46 -0
- package/frontend/node_modules/next/dist/shared/lib/match-remote-pattern.js +63 -0
- package/frontend/node_modules/next/dist/shared/lib/modern-browserslist-target.js +15 -0
- package/frontend/node_modules/next/dist/shared/lib/no-fallback-error.external.js +18 -0
- package/frontend/node_modules/next/dist/shared/lib/normalized-asset-prefix.js +28 -0
- package/frontend/node_modules/next/dist/shared/lib/page-path/absolute-path-to-page.js +26 -0
- package/frontend/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js +18 -0
- package/frontend/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js +18 -0
- package/frontend/node_modules/next/dist/shared/lib/page-path/get-page-paths.js +40 -0
- package/frontend/node_modules/next/dist/shared/lib/page-path/normalize-data-path.js +23 -0
- package/frontend/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js +26 -0
- package/frontend/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js +19 -0
- package/frontend/node_modules/next/dist/shared/lib/page-path/remove-page-path-tail.js +20 -0
- package/frontend/node_modules/next/dist/shared/lib/promise-with-resolvers.js +26 -0
- package/frontend/node_modules/next/dist/shared/lib/router/adapters.js +136 -0
- package/frontend/node_modules/next/dist/shared/lib/router/routes/app.js +122 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/add-locale.js +28 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js +20 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js +20 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/app-paths.js +51 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js +17 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js +24 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/escape-path-delimiters.js +16 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js +27 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/format-url.js +111 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js +167 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js +52 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/get-route-from-asset-path.js +25 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/get-segment-param.js +90 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/html-bots.js +17 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/index.js +30 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/interception-prefix-from-param-type.js +33 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/interception-routes.js +108 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/is-bot.js +57 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js +26 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/middleware-route-matcher.js +31 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/parse-loader-tree.js +29 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/parse-path.js +33 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js +36 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/parse-url.js +32 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js +20 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/path-match.js +49 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/prepare-destination.js +292 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/querystring.js +79 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/relativize-url.js +40 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js +39 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js +21 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/resolve-param-value.js +116 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js +113 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/route-matcher.js +45 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/route-regex.js +256 -0
- package/frontend/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js +244 -0
- package/frontend/node_modules/next/dist/shared/lib/router-context.shared-runtime.js +18 -0
- package/frontend/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js +52 -0
- package/frontend/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js +99 -0
- package/frontend/node_modules/next/dist/shared/lib/segment.js +102 -0
- package/frontend/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js +35 -0
- package/frontend/node_modules/next/dist/shared/lib/server-reference-info.js +52 -0
- package/frontend/node_modules/next/dist/shared/lib/side-effect.js +63 -0
- package/frontend/node_modules/next/dist/shared/lib/size-limit.js +35 -0
- package/frontend/node_modules/next/dist/shared/lib/turbopack/internal-error.js +53 -0
- package/frontend/node_modules/next/dist/shared/lib/turbopack/utils.js +279 -0
- package/frontend/node_modules/next/dist/shared/lib/utils/warn-once.js +22 -0
- package/frontend/node_modules/next/dist/shared/lib/utils.js +207 -0
- package/frontend/node_modules/next/dist/shared/lib/zod.js +101 -0
- package/frontend/node_modules/next/dist/telemetry/anonymous-meta.js +89 -0
- package/frontend/node_modules/next/dist/telemetry/detached-flush.js +56 -0
- package/frontend/node_modules/next/dist/telemetry/events/build.js +174 -0
- package/frontend/node_modules/next/dist/telemetry/events/index.js +41 -0
- package/frontend/node_modules/next/dist/telemetry/events/plugins.js +51 -0
- package/frontend/node_modules/next/dist/telemetry/events/swc-load-failure.js +55 -0
- package/frontend/node_modules/next/dist/telemetry/events/version.js +66 -0
- package/frontend/node_modules/next/dist/telemetry/flush-telemetry.js +19 -0
- package/frontend/node_modules/next/dist/telemetry/post-telemetry-payload.js +48 -0
- package/frontend/node_modules/next/dist/telemetry/project-id.js +48 -0
- package/frontend/node_modules/next/dist/telemetry/storage.js +301 -0
- package/frontend/node_modules/next/dist/trace/index.js +54 -0
- package/frontend/node_modules/next/dist/trace/report/index.js +37 -0
- package/frontend/node_modules/next/dist/trace/report/to-json-build.js +137 -0
- package/frontend/node_modules/next/dist/trace/report/to-json.js +151 -0
- package/frontend/node_modules/next/dist/trace/report/to-telemetry.js +36 -0
- package/frontend/node_modules/next/dist/trace/shared.js +39 -0
- package/frontend/node_modules/next/dist/trace/trace.js +197 -0
- package/frontend/node_modules/next/package.json +380 -0
- package/frontend/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/frontend/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/frontend/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/frontend/node_modules/react/cjs/react.production.js +542 -0
- package/frontend/node_modules/react/compiler-runtime.js +14 -0
- package/frontend/node_modules/react/index.js +7 -0
- package/frontend/node_modules/react/jsx-dev-runtime.js +7 -0
- package/frontend/node_modules/react/jsx-runtime.js +7 -0
- package/frontend/node_modules/react/package.json +51 -0
- package/frontend/node_modules/react-dom/cjs/react-dom-server-legacy.browser.production.js +6603 -0
- package/frontend/node_modules/react-dom/cjs/react-dom-server-legacy.node.production.js +6692 -0
- package/frontend/node_modules/react-dom/cjs/react-dom-server.browser.production.js +7410 -0
- package/frontend/node_modules/react-dom/cjs/react-dom-server.edge.production.js +7512 -0
- package/frontend/node_modules/react-dom/cjs/react-dom-server.node.production.js +7707 -0
- package/frontend/node_modules/react-dom/cjs/react-dom.production.js +210 -0
- package/frontend/node_modules/react-dom/index.js +38 -0
- package/frontend/node_modules/react-dom/package.json +117 -0
- package/frontend/node_modules/react-dom/server.browser.js +16 -0
- package/frontend/node_modules/react-dom/server.edge.js +17 -0
- package/frontend/node_modules/react-dom/server.node.js +18 -0
- package/frontend/node_modules/react-dom/static.node.js +14 -0
- package/frontend/node_modules/sharp/lib/channel.js +177 -0
- package/frontend/node_modules/sharp/lib/colour.js +195 -0
- package/frontend/node_modules/sharp/lib/composite.js +212 -0
- package/frontend/node_modules/sharp/lib/constructor.js +499 -0
- package/frontend/node_modules/sharp/lib/index.js +16 -0
- package/frontend/node_modules/sharp/lib/input.js +809 -0
- package/frontend/node_modules/sharp/lib/is.js +143 -0
- package/frontend/node_modules/sharp/lib/libvips.js +207 -0
- package/frontend/node_modules/sharp/lib/operation.js +1016 -0
- package/frontend/node_modules/sharp/lib/output.js +1666 -0
- package/frontend/node_modules/sharp/lib/resize.js +595 -0
- package/frontend/node_modules/sharp/lib/sharp.js +121 -0
- package/frontend/node_modules/sharp/lib/utility.js +291 -0
- package/frontend/node_modules/sharp/node_modules/semver/classes/comparator.js +143 -0
- package/frontend/node_modules/sharp/node_modules/semver/classes/range.js +557 -0
- package/frontend/node_modules/sharp/node_modules/semver/classes/semver.js +333 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/cmp.js +54 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/coerce.js +62 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/compare.js +7 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/eq.js +5 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/gt.js +5 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/gte.js +5 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/lt.js +5 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/lte.js +5 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/neq.js +5 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/parse.js +18 -0
- package/frontend/node_modules/sharp/node_modules/semver/functions/satisfies.js +12 -0
- package/frontend/node_modules/sharp/node_modules/semver/internal/constants.js +37 -0
- package/frontend/node_modules/sharp/node_modules/semver/internal/debug.js +11 -0
- package/frontend/node_modules/sharp/node_modules/semver/internal/identifiers.js +29 -0
- package/frontend/node_modules/sharp/node_modules/semver/internal/lrucache.js +42 -0
- package/frontend/node_modules/sharp/node_modules/semver/internal/parse-options.js +17 -0
- package/frontend/node_modules/sharp/node_modules/semver/internal/re.js +223 -0
- package/frontend/node_modules/sharp/node_modules/semver/package.json +78 -0
- package/frontend/node_modules/sharp/package.json +202 -0
- package/frontend/node_modules/styled-jsx/dist/index/index.js +499 -0
- package/frontend/node_modules/styled-jsx/index.js +1 -0
- package/frontend/node_modules/styled-jsx/package.json +132 -0
- package/frontend/node_modules/styled-jsx/style.js +1 -0
- package/frontend/package.json +33 -0
- package/frontend/public/file.svg +1 -0
- package/frontend/public/globe.svg +1 -0
- package/frontend/public/next.svg +1 -0
- package/frontend/public/vercel.svg +1 -0
- package/frontend/public/window.svg +1 -0
- package/frontend/server.js +38 -0
- package/package.json +2 -1
- package/backend/node_modules/@cypress/request/LICENSE +0 -55
- package/backend/node_modules/@cypress/request/README.md +0 -1031
- package/backend/node_modules/@cypress/request-promise/LICENSE +0 -15
- package/backend/node_modules/@cypress/request-promise/README.md +0 -760
- package/backend/node_modules/accepts/HISTORY.md +0 -243
- package/backend/node_modules/accepts/LICENSE +0 -23
- package/backend/node_modules/accepts/README.md +0 -140
- package/backend/node_modules/ajv/LICENSE +0 -22
- package/backend/node_modules/ajv/README.md +0 -1505
- package/backend/node_modules/ajv/scripts/.eslintrc.yml +0 -3
- package/backend/node_modules/array-buffer-byte-length/.eslintrc +0 -9
- package/backend/node_modules/array-buffer-byte-length/CHANGELOG.md +0 -43
- package/backend/node_modules/array-buffer-byte-length/LICENSE +0 -21
- package/backend/node_modules/array-buffer-byte-length/README.md +0 -40
- package/backend/node_modules/array-buffer-byte-length/test/index.js +0 -29
- package/backend/node_modules/array-flatten/LICENSE +0 -21
- package/backend/node_modules/array-flatten/README.md +0 -43
- package/backend/node_modules/array.prototype.findindex/.eslintrc +0 -39
- package/backend/node_modules/array.prototype.findindex/.github/SECURITY.md +0 -3
- package/backend/node_modules/array.prototype.findindex/CHANGELOG.md +0 -94
- package/backend/node_modules/array.prototype.findindex/LICENSE +0 -21
- package/backend/node_modules/array.prototype.findindex/README.md +0 -57
- package/backend/node_modules/array.prototype.findindex/test/implementation.js +0 -20
- package/backend/node_modules/array.prototype.findindex/test/index.js +0 -17
- package/backend/node_modules/array.prototype.findindex/test/index.mjs +0 -31
- package/backend/node_modules/array.prototype.findindex/test/shimmed.js +0 -36
- package/backend/node_modules/array.prototype.findindex/test/tests.js +0 -82
- package/backend/node_modules/arraybuffer.prototype.slice/.eslintrc +0 -34
- package/backend/node_modules/arraybuffer.prototype.slice/CHANGELOG.md +0 -52
- package/backend/node_modules/arraybuffer.prototype.slice/LICENSE +0 -21
- package/backend/node_modules/arraybuffer.prototype.slice/README.md +0 -61
- package/backend/node_modules/arraybuffer.prototype.slice/test/implementation.js +0 -32
- package/backend/node_modules/arraybuffer.prototype.slice/test/index.js +0 -29
- package/backend/node_modules/arraybuffer.prototype.slice/test/shimmed.js +0 -54
- package/backend/node_modules/arraybuffer.prototype.slice/test/tests.js +0 -81
- package/backend/node_modules/asn1/LICENSE +0 -19
- package/backend/node_modules/asn1/README.md +0 -50
- package/backend/node_modules/assert-plus/CHANGES.md +0 -14
- package/backend/node_modules/assert-plus/README.md +0 -162
- package/backend/node_modules/async-function/.eslintrc +0 -16
- package/backend/node_modules/async-function/CHANGELOG.md +0 -16
- package/backend/node_modules/async-function/LICENSE +0 -21
- package/backend/node_modules/async-function/README.md +0 -51
- package/backend/node_modules/async-function/test/index.js +0 -40
- package/backend/node_modules/asynckit/LICENSE +0 -21
- package/backend/node_modules/asynckit/README.md +0 -233
- package/backend/node_modules/available-typed-arrays/.eslintrc +0 -5
- package/backend/node_modules/available-typed-arrays/CHANGELOG.md +0 -100
- package/backend/node_modules/available-typed-arrays/LICENSE +0 -21
- package/backend/node_modules/available-typed-arrays/README.md +0 -55
- package/backend/node_modules/available-typed-arrays/test/index.js +0 -18
- package/backend/node_modules/aws-sign2/LICENSE +0 -55
- package/backend/node_modules/aws-sign2/README.md +0 -4
- package/backend/node_modules/aws4/LICENSE +0 -19
- package/backend/node_modules/aws4/README.md +0 -211
- package/backend/node_modules/base64-js/LICENSE +0 -21
- package/backend/node_modules/base64-js/README.md +0 -34
- package/backend/node_modules/bcrypt-pbkdf/CONTRIBUTING.md +0 -13
- package/backend/node_modules/bcrypt-pbkdf/LICENSE +0 -66
- package/backend/node_modules/bcrypt-pbkdf/README.md +0 -45
- package/backend/node_modules/better-sqlite3/LICENSE +0 -21
- package/backend/node_modules/better-sqlite3/README.md +0 -99
- package/backend/node_modules/bindings/LICENSE.md +0 -22
- package/backend/node_modules/bindings/README.md +0 -98
- package/backend/node_modules/bl/LICENSE.md +0 -13
- package/backend/node_modules/bl/README.md +0 -208
- package/backend/node_modules/bl/test/test.js +0 -718
- package/backend/node_modules/bluebird/LICENSE +0 -21
- package/backend/node_modules/bluebird/README.md +0 -57
- package/backend/node_modules/bluebird/changelog.md +0 -1
- package/backend/node_modules/body-parser/HISTORY.md +0 -680
- package/backend/node_modules/body-parser/LICENSE +0 -23
- package/backend/node_modules/body-parser/README.md +0 -476
- package/backend/node_modules/buffer/AUTHORS.md +0 -70
- package/backend/node_modules/buffer/LICENSE +0 -21
- package/backend/node_modules/buffer/README.md +0 -410
- package/backend/node_modules/bytes/History.md +0 -97
- package/backend/node_modules/bytes/LICENSE +0 -23
- package/backend/node_modules/bytes/Readme.md +0 -152
- package/backend/node_modules/call-bind/.eslintrc +0 -16
- package/backend/node_modules/call-bind/CHANGELOG.md +0 -106
- package/backend/node_modules/call-bind/LICENSE +0 -21
- package/backend/node_modules/call-bind/README.md +0 -64
- package/backend/node_modules/call-bind/test/callBound.js +0 -54
- package/backend/node_modules/call-bind/test/index.js +0 -74
- package/backend/node_modules/call-bind-apply-helpers/.eslintrc +0 -17
- package/backend/node_modules/call-bind-apply-helpers/CHANGELOG.md +0 -30
- package/backend/node_modules/call-bind-apply-helpers/LICENSE +0 -21
- package/backend/node_modules/call-bind-apply-helpers/README.md +0 -62
- package/backend/node_modules/call-bind-apply-helpers/test/index.js +0 -63
- package/backend/node_modules/call-bound/.eslintrc +0 -13
- package/backend/node_modules/call-bound/CHANGELOG.md +0 -42
- package/backend/node_modules/call-bound/LICENSE +0 -21
- package/backend/node_modules/call-bound/README.md +0 -53
- package/backend/node_modules/call-bound/test/index.js +0 -61
- package/backend/node_modules/caseless/LICENSE +0 -28
- package/backend/node_modules/caseless/README.md +0 -45
- package/backend/node_modules/chownr/LICENSE +0 -15
- package/backend/node_modules/chownr/README.md +0 -3
- package/backend/node_modules/combined-stream/Readme.md +0 -138
- package/backend/node_modules/content-disposition/HISTORY.md +0 -60
- package/backend/node_modules/content-disposition/LICENSE +0 -22
- package/backend/node_modules/content-disposition/README.md +0 -142
- package/backend/node_modules/content-type/HISTORY.md +0 -29
- package/backend/node_modules/content-type/LICENSE +0 -22
- package/backend/node_modules/content-type/README.md +0 -94
- package/backend/node_modules/cookie/LICENSE +0 -24
- package/backend/node_modules/cookie/README.md +0 -317
- package/backend/node_modules/cookie/SECURITY.md +0 -25
- package/backend/node_modules/cookie-signature/History.md +0 -42
- package/backend/node_modules/cookie-signature/Readme.md +0 -42
- package/backend/node_modules/core-util-is/LICENSE +0 -19
- package/backend/node_modules/core-util-is/README.md +0 -3
- package/backend/node_modules/cors/LICENSE +0 -22
- package/backend/node_modules/cors/README.md +0 -277
- package/backend/node_modules/dashdash/CHANGES.md +0 -364
- package/backend/node_modules/dashdash/LICENSE.txt +0 -24
- package/backend/node_modules/dashdash/README.md +0 -574
- package/backend/node_modules/data-view-buffer/.eslintrc +0 -17
- package/backend/node_modules/data-view-buffer/CHANGELOG.md +0 -38
- package/backend/node_modules/data-view-buffer/LICENSE +0 -21
- package/backend/node_modules/data-view-buffer/README.md +0 -43
- package/backend/node_modules/data-view-buffer/test/index.js +0 -31
- package/backend/node_modules/data-view-byte-length/.eslintrc +0 -17
- package/backend/node_modules/data-view-byte-length/CHANGELOG.md +0 -36
- package/backend/node_modules/data-view-byte-length/LICENSE +0 -21
- package/backend/node_modules/data-view-byte-length/README.md +0 -43
- package/backend/node_modules/data-view-byte-length/test/index.js +0 -31
- package/backend/node_modules/data-view-byte-offset/.eslintrc +0 -17
- package/backend/node_modules/data-view-byte-offset/CHANGELOG.md +0 -31
- package/backend/node_modules/data-view-byte-offset/LICENSE +0 -21
- package/backend/node_modules/data-view-byte-offset/README.md +0 -43
- package/backend/node_modules/data-view-byte-offset/test/index.js +0 -31
- package/backend/node_modules/debug/.eslintrc +0 -11
- package/backend/node_modules/debug/CHANGELOG.md +0 -362
- package/backend/node_modules/debug/LICENSE +0 -19
- package/backend/node_modules/debug/README.md +0 -312
- package/backend/node_modules/decompress-response/readme.md +0 -48
- package/backend/node_modules/deep-extend/CHANGELOG.md +0 -46
- package/backend/node_modules/deep-extend/LICENSE +0 -20
- package/backend/node_modules/deep-extend/README.md +0 -91
- package/backend/node_modules/define-data-property/.eslintrc +0 -24
- package/backend/node_modules/define-data-property/CHANGELOG.md +0 -70
- package/backend/node_modules/define-data-property/LICENSE +0 -21
- package/backend/node_modules/define-data-property/README.md +0 -67
- package/backend/node_modules/define-data-property/test/index.js +0 -392
- package/backend/node_modules/define-properties/.eslintrc +0 -19
- package/backend/node_modules/define-properties/CHANGELOG.md +0 -91
- package/backend/node_modules/define-properties/LICENSE +0 -21
- package/backend/node_modules/define-properties/README.md +0 -84
- package/backend/node_modules/delayed-stream/Readme.md +0 -141
- package/backend/node_modules/depd/History.md +0 -103
- package/backend/node_modules/depd/LICENSE +0 -22
- package/backend/node_modules/depd/Readme.md +0 -280
- package/backend/node_modules/destroy/LICENSE +0 -23
- package/backend/node_modules/destroy/README.md +0 -63
- package/backend/node_modules/detect-libc/LICENSE +0 -201
- package/backend/node_modules/detect-libc/README.md +0 -163
- package/backend/node_modules/dotenv/CHANGELOG.md +0 -520
- package/backend/node_modules/dotenv/LICENSE +0 -23
- package/backend/node_modules/dotenv/README-es.md +0 -411
- package/backend/node_modules/dotenv/README.md +0 -645
- package/backend/node_modules/dotenv/SECURITY.md +0 -1
- package/backend/node_modules/dunder-proto/.eslintrc +0 -5
- package/backend/node_modules/dunder-proto/CHANGELOG.md +0 -24
- package/backend/node_modules/dunder-proto/LICENSE +0 -21
- package/backend/node_modules/dunder-proto/README.md +0 -54
- package/backend/node_modules/dunder-proto/test/get.js +0 -34
- package/backend/node_modules/dunder-proto/test/index.js +0 -4
- package/backend/node_modules/dunder-proto/test/set.js +0 -50
- package/backend/node_modules/ecc-jsbn/LICENSE +0 -21
- package/backend/node_modules/ecc-jsbn/README.md +0 -8
- package/backend/node_modules/ecc-jsbn/lib/LICENSE-jsbn +0 -40
- package/backend/node_modules/ee-first/LICENSE +0 -22
- package/backend/node_modules/ee-first/README.md +0 -80
- package/backend/node_modules/encodeurl/LICENSE +0 -22
- package/backend/node_modules/encodeurl/README.md +0 -109
- package/backend/node_modules/end-of-stream/LICENSE +0 -21
- package/backend/node_modules/end-of-stream/README.md +0 -54
- package/backend/node_modules/es-abstract/.claude/settings.local.json +0 -12
- package/backend/node_modules/es-abstract/.editorconfig +0 -15
- package/backend/node_modules/es-abstract/.nycrc +0 -15
- package/backend/node_modules/es-abstract/2015/AbstractEqualityComparison.js +0 -38
- package/backend/node_modules/es-abstract/2015/AbstractRelationalComparison.js +0 -62
- package/backend/node_modules/es-abstract/2015/AdvanceStringIndex.js +0 -44
- package/backend/node_modules/es-abstract/2015/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2015/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2015/ArraySpeciesCreate.js +0 -46
- package/backend/node_modules/es-abstract/2015/Call.js +0 -20
- package/backend/node_modules/es-abstract/2015/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2015/Canonicalize.js +0 -51
- package/backend/node_modules/es-abstract/2015/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2015/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2015/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2015/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2015/CreateDataPropertyOrThrow.js +0 -24
- package/backend/node_modules/es-abstract/2015/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2015/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2015/CreateListFromArrayLike.js +0 -43
- package/backend/node_modules/es-abstract/2015/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2015/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2015/Day.js +0 -11
- package/backend/node_modules/es-abstract/2015/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2015/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2015/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2015/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2015/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2015/DetachArrayBuffer.js +0 -38
- package/backend/node_modules/es-abstract/2015/EnumerableOwnNames.js +0 -16
- package/backend/node_modules/es-abstract/2015/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2015/Get.js +0 -24
- package/backend/node_modules/es-abstract/2015/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2015/GetIterator.js +0 -30
- package/backend/node_modules/es-abstract/2015/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2015/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2015/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2015/GetSubstitution.js +0 -98
- package/backend/node_modules/es-abstract/2015/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2015/GetValueFromBuffer.js +0 -86
- package/backend/node_modules/es-abstract/2015/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2015/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2015/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2015/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2015/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2015/IntegerIndexedElementGet.js +0 -57
- package/backend/node_modules/es-abstract/2015/IntegerIndexedElementSet.js +0 -62
- package/backend/node_modules/es-abstract/2015/InternalizeJSONProperty.js +0 -68
- package/backend/node_modules/es-abstract/2015/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2015/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2015/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2015/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2015/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2015/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2015/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2015/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2015/IsDetachedBuffer.js +0 -25
- package/backend/node_modules/es-abstract/2015/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2015/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2015/IsInteger.js +0 -9
- package/backend/node_modules/es-abstract/2015/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2015/IsPropertyDescriptor.js +0 -11
- package/backend/node_modules/es-abstract/2015/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2015/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2015/IsWordChar.js +0 -37
- package/backend/node_modules/es-abstract/2015/IteratorClose.js +0 -51
- package/backend/node_modules/es-abstract/2015/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2015/IteratorNext.js +0 -16
- package/backend/node_modules/es-abstract/2015/IteratorStep.js +0 -13
- package/backend/node_modules/es-abstract/2015/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2015/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2015/MakeDay.js +0 -33
- package/backend/node_modules/es-abstract/2015/MakeTime.js +0 -24
- package/backend/node_modules/es-abstract/2015/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2015/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2015/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2015/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2015/ObjectCreate.js +0 -50
- package/backend/node_modules/es-abstract/2015/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2015/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2015/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2015/OrdinaryGetOwnProperty.js +0 -40
- package/backend/node_modules/es-abstract/2015/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2015/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2015/QuoteJSONString.js +0 -48
- package/backend/node_modules/es-abstract/2015/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2015/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2015/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2015/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2015/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2015/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2015/Set.js +0 -45
- package/backend/node_modules/es-abstract/2015/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2015/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2015/SetValueInBuffer.js +0 -110
- package/backend/node_modules/es-abstract/2015/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2015/SplitMatch.js +0 -35
- package/backend/node_modules/es-abstract/2015/StrictEqualityComparison.js +0 -15
- package/backend/node_modules/es-abstract/2015/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2015/StringGetIndexProperty.js +0 -50
- package/backend/node_modules/es-abstract/2015/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2015/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2015/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2015/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2015/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2015/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2015/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2015/ToInt16.js +0 -10
- package/backend/node_modules/es-abstract/2015/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/2015/ToInt8.js +0 -10
- package/backend/node_modules/es-abstract/2015/ToInteger.js +0 -12
- package/backend/node_modules/es-abstract/2015/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2015/ToNumber.js +0 -48
- package/backend/node_modules/es-abstract/2015/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2015/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2015/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2015/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2015/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2015/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/2015/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/2015/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2015/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2015/Type.js +0 -12
- package/backend/node_modules/es-abstract/2015/ValidateAndApplyPropertyDescriptor.js +0 -159
- package/backend/node_modules/es-abstract/2015/ValidateTypedArray.js +0 -28
- package/backend/node_modules/es-abstract/2015/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2015/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2015/abs.js +0 -9
- package/backend/node_modules/es-abstract/2015/floor.js +0 -11
- package/backend/node_modules/es-abstract/2015/max.js +0 -5
- package/backend/node_modules/es-abstract/2015/min.js +0 -5
- package/backend/node_modules/es-abstract/2015/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2015/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2015/tables/typed-array-objects.js +0 -32
- package/backend/node_modules/es-abstract/2015/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2015/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2015/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2015/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2016/AbstractEqualityComparison.js +0 -38
- package/backend/node_modules/es-abstract/2016/AbstractRelationalComparison.js +0 -62
- package/backend/node_modules/es-abstract/2016/AdvanceStringIndex.js +0 -44
- package/backend/node_modules/es-abstract/2016/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2016/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2016/ArraySpeciesCreate.js +0 -46
- package/backend/node_modules/es-abstract/2016/Call.js +0 -20
- package/backend/node_modules/es-abstract/2016/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2016/Canonicalize.js +0 -51
- package/backend/node_modules/es-abstract/2016/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2016/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2016/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2016/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2016/CreateDataPropertyOrThrow.js +0 -24
- package/backend/node_modules/es-abstract/2016/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2016/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2016/CreateListFromArrayLike.js +0 -43
- package/backend/node_modules/es-abstract/2016/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2016/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2016/Day.js +0 -11
- package/backend/node_modules/es-abstract/2016/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2016/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2016/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2016/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2016/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2016/DetachArrayBuffer.js +0 -38
- package/backend/node_modules/es-abstract/2016/EnumerableOwnNames.js +0 -16
- package/backend/node_modules/es-abstract/2016/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2016/Get.js +0 -24
- package/backend/node_modules/es-abstract/2016/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2016/GetIterator.js +0 -30
- package/backend/node_modules/es-abstract/2016/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2016/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2016/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2016/GetSubstitution.js +0 -98
- package/backend/node_modules/es-abstract/2016/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2016/GetValueFromBuffer.js +0 -86
- package/backend/node_modules/es-abstract/2016/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2016/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2016/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2016/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2016/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2016/IntegerIndexedElementGet.js +0 -57
- package/backend/node_modules/es-abstract/2016/IntegerIndexedElementSet.js +0 -62
- package/backend/node_modules/es-abstract/2016/InternalizeJSONProperty.js +0 -68
- package/backend/node_modules/es-abstract/2016/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2016/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2016/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2016/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2016/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2016/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2016/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2016/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2016/IsDetachedBuffer.js +0 -25
- package/backend/node_modules/es-abstract/2016/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2016/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2016/IsInteger.js +0 -9
- package/backend/node_modules/es-abstract/2016/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2016/IsPropertyDescriptor.js +0 -11
- package/backend/node_modules/es-abstract/2016/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2016/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2016/IsWordChar.js +0 -37
- package/backend/node_modules/es-abstract/2016/IterableToArrayLike.js +0 -34
- package/backend/node_modules/es-abstract/2016/IteratorClose.js +0 -51
- package/backend/node_modules/es-abstract/2016/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2016/IteratorNext.js +0 -16
- package/backend/node_modules/es-abstract/2016/IteratorStep.js +0 -13
- package/backend/node_modules/es-abstract/2016/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2016/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2016/MakeDay.js +0 -33
- package/backend/node_modules/es-abstract/2016/MakeTime.js +0 -24
- package/backend/node_modules/es-abstract/2016/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2016/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2016/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2016/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2016/ObjectCreate.js +0 -50
- package/backend/node_modules/es-abstract/2016/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2016/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2016/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2016/OrdinaryGetOwnProperty.js +0 -40
- package/backend/node_modules/es-abstract/2016/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2016/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2016/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2016/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2016/QuoteJSONString.js +0 -48
- package/backend/node_modules/es-abstract/2016/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2016/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2016/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2016/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2016/SameValueNonNumber.js +0 -14
- package/backend/node_modules/es-abstract/2016/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2016/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2016/Set.js +0 -45
- package/backend/node_modules/es-abstract/2016/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2016/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2016/SetValueInBuffer.js +0 -110
- package/backend/node_modules/es-abstract/2016/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2016/SplitMatch.js +0 -35
- package/backend/node_modules/es-abstract/2016/StrictEqualityComparison.js +0 -15
- package/backend/node_modules/es-abstract/2016/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2016/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2016/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2016/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2016/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2016/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2016/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2016/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2016/ToInt16.js +0 -10
- package/backend/node_modules/es-abstract/2016/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/2016/ToInt8.js +0 -10
- package/backend/node_modules/es-abstract/2016/ToInteger.js +0 -12
- package/backend/node_modules/es-abstract/2016/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2016/ToNumber.js +0 -48
- package/backend/node_modules/es-abstract/2016/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2016/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2016/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2016/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2016/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2016/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/2016/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/2016/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2016/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2016/Type.js +0 -12
- package/backend/node_modules/es-abstract/2016/TypedArrayCreate.js +0 -47
- package/backend/node_modules/es-abstract/2016/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2016/UTF16Decode.js +0 -21
- package/backend/node_modules/es-abstract/2016/UTF16Encoding.js +0 -25
- package/backend/node_modules/es-abstract/2016/ValidateAndApplyPropertyDescriptor.js +0 -159
- package/backend/node_modules/es-abstract/2016/ValidateTypedArray.js +0 -28
- package/backend/node_modules/es-abstract/2016/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2016/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2016/abs.js +0 -9
- package/backend/node_modules/es-abstract/2016/floor.js +0 -11
- package/backend/node_modules/es-abstract/2016/max.js +0 -5
- package/backend/node_modules/es-abstract/2016/min.js +0 -5
- package/backend/node_modules/es-abstract/2016/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2016/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2016/tables/typed-array-objects.js +0 -32
- package/backend/node_modules/es-abstract/2016/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2016/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2016/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2016/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2017/AbstractEqualityComparison.js +0 -38
- package/backend/node_modules/es-abstract/2017/AbstractRelationalComparison.js +0 -62
- package/backend/node_modules/es-abstract/2017/AdvanceStringIndex.js +0 -44
- package/backend/node_modules/es-abstract/2017/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2017/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2017/ArraySpeciesCreate.js +0 -46
- package/backend/node_modules/es-abstract/2017/Call.js +0 -20
- package/backend/node_modules/es-abstract/2017/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2017/Canonicalize.js +0 -51
- package/backend/node_modules/es-abstract/2017/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2017/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2017/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2017/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2017/CreateDataPropertyOrThrow.js +0 -24
- package/backend/node_modules/es-abstract/2017/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2017/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2017/CreateListFromArrayLike.js +0 -43
- package/backend/node_modules/es-abstract/2017/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2017/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2017/Day.js +0 -11
- package/backend/node_modules/es-abstract/2017/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2017/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2017/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2017/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2017/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2017/DetachArrayBuffer.js +0 -39
- package/backend/node_modules/es-abstract/2017/EnumerableOwnProperties.js +0 -37
- package/backend/node_modules/es-abstract/2017/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2017/Get.js +0 -24
- package/backend/node_modules/es-abstract/2017/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2017/GetIterator.js +0 -30
- package/backend/node_modules/es-abstract/2017/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2017/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2017/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2017/GetSubstitution.js +0 -98
- package/backend/node_modules/es-abstract/2017/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2017/GetValueFromBuffer.js +0 -96
- package/backend/node_modules/es-abstract/2017/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2017/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2017/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2017/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2017/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2017/IntegerIndexedElementGet.js +0 -58
- package/backend/node_modules/es-abstract/2017/IntegerIndexedElementSet.js +0 -62
- package/backend/node_modules/es-abstract/2017/InternalizeJSONProperty.js +0 -68
- package/backend/node_modules/es-abstract/2017/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2017/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2017/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2017/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2017/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2017/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2017/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2017/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2017/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2017/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2017/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2017/IsInteger.js +0 -9
- package/backend/node_modules/es-abstract/2017/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2017/IsPropertyDescriptor.js +0 -11
- package/backend/node_modules/es-abstract/2017/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2017/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2017/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2017/IsWordChar.js +0 -45
- package/backend/node_modules/es-abstract/2017/IterableToList.js +0 -21
- package/backend/node_modules/es-abstract/2017/IteratorClose.js +0 -51
- package/backend/node_modules/es-abstract/2017/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2017/IteratorNext.js +0 -16
- package/backend/node_modules/es-abstract/2017/IteratorStep.js +0 -13
- package/backend/node_modules/es-abstract/2017/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2017/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2017/MakeDay.js +0 -33
- package/backend/node_modules/es-abstract/2017/MakeTime.js +0 -24
- package/backend/node_modules/es-abstract/2017/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2017/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2017/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2017/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2017/NumberToRawBytes.js +0 -59
- package/backend/node_modules/es-abstract/2017/ObjectCreate.js +0 -50
- package/backend/node_modules/es-abstract/2017/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2017/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2017/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2017/OrdinaryGetOwnProperty.js +0 -40
- package/backend/node_modules/es-abstract/2017/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2017/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2017/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2017/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2017/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2017/QuoteJSONString.js +0 -48
- package/backend/node_modules/es-abstract/2017/RawBytesToNumber.js +0 -58
- package/backend/node_modules/es-abstract/2017/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2017/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2017/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2017/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2017/SameValueNonNumber.js +0 -14
- package/backend/node_modules/es-abstract/2017/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2017/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2017/Set.js +0 -45
- package/backend/node_modules/es-abstract/2017/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2017/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2017/SetValueInBuffer.js +0 -94
- package/backend/node_modules/es-abstract/2017/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2017/SplitMatch.js +0 -35
- package/backend/node_modules/es-abstract/2017/StrictEqualityComparison.js +0 -15
- package/backend/node_modules/es-abstract/2017/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2017/StringGetOwnProperty.js +0 -47
- package/backend/node_modules/es-abstract/2017/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2017/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2017/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2017/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2017/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2017/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2017/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2017/ToIndex.js +0 -24
- package/backend/node_modules/es-abstract/2017/ToInt16.js +0 -10
- package/backend/node_modules/es-abstract/2017/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/2017/ToInt8.js +0 -10
- package/backend/node_modules/es-abstract/2017/ToInteger.js +0 -12
- package/backend/node_modules/es-abstract/2017/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2017/ToNumber.js +0 -48
- package/backend/node_modules/es-abstract/2017/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2017/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2017/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2017/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2017/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2017/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/2017/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/2017/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2017/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2017/Type.js +0 -12
- package/backend/node_modules/es-abstract/2017/TypedArrayCreate.js +0 -47
- package/backend/node_modules/es-abstract/2017/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2017/UTF16Decode.js +0 -21
- package/backend/node_modules/es-abstract/2017/UTF16Encoding.js +0 -25
- package/backend/node_modules/es-abstract/2017/ValidateAndApplyPropertyDescriptor.js +0 -159
- package/backend/node_modules/es-abstract/2017/ValidateAtomicAccess.js +0 -34
- package/backend/node_modules/es-abstract/2017/ValidateTypedArray.js +0 -28
- package/backend/node_modules/es-abstract/2017/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2017/WordCharacters.js +0 -46
- package/backend/node_modules/es-abstract/2017/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2017/abs.js +0 -9
- package/backend/node_modules/es-abstract/2017/floor.js +0 -11
- package/backend/node_modules/es-abstract/2017/max.js +0 -5
- package/backend/node_modules/es-abstract/2017/min.js +0 -5
- package/backend/node_modules/es-abstract/2017/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2017/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2017/tables/typed-array-objects.js +0 -32
- package/backend/node_modules/es-abstract/2017/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2017/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2017/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2017/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2018/AbstractEqualityComparison.js +0 -38
- package/backend/node_modules/es-abstract/2018/AbstractRelationalComparison.js +0 -59
- package/backend/node_modules/es-abstract/2018/AdvanceStringIndex.js +0 -44
- package/backend/node_modules/es-abstract/2018/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2018/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2018/ArraySpeciesCreate.js +0 -46
- package/backend/node_modules/es-abstract/2018/AsyncIteratorClose.js +0 -64
- package/backend/node_modules/es-abstract/2018/Call.js +0 -20
- package/backend/node_modules/es-abstract/2018/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2018/Canonicalize.js +0 -51
- package/backend/node_modules/es-abstract/2018/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2018/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2018/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2018/CopyDataProperties.js +0 -62
- package/backend/node_modules/es-abstract/2018/CreateAsyncFromSyncIterator.js +0 -169
- package/backend/node_modules/es-abstract/2018/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2018/CreateDataPropertyOrThrow.js +0 -24
- package/backend/node_modules/es-abstract/2018/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2018/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2018/CreateListFromArrayLike.js +0 -43
- package/backend/node_modules/es-abstract/2018/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2018/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2018/DateString.js +0 -27
- package/backend/node_modules/es-abstract/2018/Day.js +0 -11
- package/backend/node_modules/es-abstract/2018/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2018/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2018/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2018/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2018/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2018/DetachArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2018/EnumerableOwnPropertyNames.js +0 -37
- package/backend/node_modules/es-abstract/2018/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2018/Get.js +0 -24
- package/backend/node_modules/es-abstract/2018/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2018/GetIterator.js +0 -30
- package/backend/node_modules/es-abstract/2018/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2018/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2018/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2018/GetSubstitution.js +0 -120
- package/backend/node_modules/es-abstract/2018/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2018/GetValueFromBuffer.js +0 -96
- package/backend/node_modules/es-abstract/2018/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2018/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2018/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2018/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2018/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2018/IntegerIndexedElementGet.js +0 -58
- package/backend/node_modules/es-abstract/2018/IntegerIndexedElementSet.js +0 -62
- package/backend/node_modules/es-abstract/2018/InternalizeJSONProperty.js +0 -68
- package/backend/node_modules/es-abstract/2018/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2018/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2018/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2018/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2018/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2018/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2018/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2018/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2018/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2018/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2018/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2018/IsInteger.js +0 -9
- package/backend/node_modules/es-abstract/2018/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2018/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2018/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2018/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2018/IsStringPrefix.js +0 -43
- package/backend/node_modules/es-abstract/2018/IsWordChar.js +0 -45
- package/backend/node_modules/es-abstract/2018/IterableToList.js +0 -21
- package/backend/node_modules/es-abstract/2018/IteratorClose.js +0 -51
- package/backend/node_modules/es-abstract/2018/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2018/IteratorNext.js +0 -16
- package/backend/node_modules/es-abstract/2018/IteratorStep.js +0 -13
- package/backend/node_modules/es-abstract/2018/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2018/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2018/MakeDay.js +0 -33
- package/backend/node_modules/es-abstract/2018/MakeTime.js +0 -24
- package/backend/node_modules/es-abstract/2018/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2018/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2018/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2018/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2018/NumberToRawBytes.js +0 -59
- package/backend/node_modules/es-abstract/2018/NumberToString.js +0 -17
- package/backend/node_modules/es-abstract/2018/ObjectCreate.js +0 -50
- package/backend/node_modules/es-abstract/2018/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2018/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2018/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2018/OrdinaryGetOwnProperty.js +0 -40
- package/backend/node_modules/es-abstract/2018/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2018/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2018/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2018/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2018/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2018/PromiseResolve.js +0 -18
- package/backend/node_modules/es-abstract/2018/QuoteJSONString.js +0 -45
- package/backend/node_modules/es-abstract/2018/RawBytesToNumber.js +0 -58
- package/backend/node_modules/es-abstract/2018/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2018/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2018/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2018/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2018/SameValueNonNumber.js +0 -14
- package/backend/node_modules/es-abstract/2018/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2018/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2018/Set.js +0 -45
- package/backend/node_modules/es-abstract/2018/SetFunctionLength.js +0 -28
- package/backend/node_modules/es-abstract/2018/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2018/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2018/SetValueInBuffer.js +0 -94
- package/backend/node_modules/es-abstract/2018/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2018/SplitMatch.js +0 -35
- package/backend/node_modules/es-abstract/2018/StrictEqualityComparison.js +0 -15
- package/backend/node_modules/es-abstract/2018/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2018/StringGetOwnProperty.js +0 -47
- package/backend/node_modules/es-abstract/2018/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2018/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2018/ThrowCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2018/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2018/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2018/TimeString.js +0 -22
- package/backend/node_modules/es-abstract/2018/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2018/TimeZoneString.js +0 -33
- package/backend/node_modules/es-abstract/2018/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2018/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2018/ToIndex.js +0 -24
- package/backend/node_modules/es-abstract/2018/ToInt16.js +0 -10
- package/backend/node_modules/es-abstract/2018/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/2018/ToInt8.js +0 -10
- package/backend/node_modules/es-abstract/2018/ToInteger.js +0 -12
- package/backend/node_modules/es-abstract/2018/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2018/ToNumber.js +0 -48
- package/backend/node_modules/es-abstract/2018/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2018/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2018/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2018/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2018/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2018/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/2018/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/2018/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2018/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2018/Type.js +0 -12
- package/backend/node_modules/es-abstract/2018/TypedArrayCreate.js +0 -47
- package/backend/node_modules/es-abstract/2018/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2018/UTF16Decode.js +0 -21
- package/backend/node_modules/es-abstract/2018/UTF16Encoding.js +0 -25
- package/backend/node_modules/es-abstract/2018/UnicodeEscape.js +0 -24
- package/backend/node_modules/es-abstract/2018/ValidateAndApplyPropertyDescriptor.js +0 -159
- package/backend/node_modules/es-abstract/2018/ValidateAtomicAccess.js +0 -34
- package/backend/node_modules/es-abstract/2018/ValidateTypedArray.js +0 -28
- package/backend/node_modules/es-abstract/2018/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2018/WordCharacters.js +0 -46
- package/backend/node_modules/es-abstract/2018/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2018/abs.js +0 -9
- package/backend/node_modules/es-abstract/2018/floor.js +0 -11
- package/backend/node_modules/es-abstract/2018/max.js +0 -5
- package/backend/node_modules/es-abstract/2018/min.js +0 -5
- package/backend/node_modules/es-abstract/2018/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2018/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2018/tables/typed-array-objects.js +0 -32
- package/backend/node_modules/es-abstract/2018/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2018/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2018/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2018/thisSymbolValue.js +0 -20
- package/backend/node_modules/es-abstract/2018/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2019/AbstractEqualityComparison.js +0 -38
- package/backend/node_modules/es-abstract/2019/AbstractRelationalComparison.js +0 -59
- package/backend/node_modules/es-abstract/2019/AddEntriesFromIterable.js +0 -44
- package/backend/node_modules/es-abstract/2019/AdvanceStringIndex.js +0 -44
- package/backend/node_modules/es-abstract/2019/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2019/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2019/ArraySpeciesCreate.js +0 -46
- package/backend/node_modules/es-abstract/2019/AsyncFromSyncIteratorContinuation.js +0 -45
- package/backend/node_modules/es-abstract/2019/AsyncIteratorClose.js +0 -64
- package/backend/node_modules/es-abstract/2019/Call.js +0 -20
- package/backend/node_modules/es-abstract/2019/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2019/Canonicalize.js +0 -51
- package/backend/node_modules/es-abstract/2019/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2019/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2019/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2019/CopyDataProperties.js +0 -62
- package/backend/node_modules/es-abstract/2019/CreateAsyncFromSyncIterator.js +0 -137
- package/backend/node_modules/es-abstract/2019/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2019/CreateDataPropertyOrThrow.js +0 -24
- package/backend/node_modules/es-abstract/2019/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2019/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2019/CreateListFromArrayLike.js +0 -43
- package/backend/node_modules/es-abstract/2019/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2019/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2019/DateString.js +0 -27
- package/backend/node_modules/es-abstract/2019/Day.js +0 -11
- package/backend/node_modules/es-abstract/2019/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2019/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2019/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2019/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2019/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2019/DetachArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2019/EnumerableOwnPropertyNames.js +0 -37
- package/backend/node_modules/es-abstract/2019/FlattenIntoArray.js +0 -55
- package/backend/node_modules/es-abstract/2019/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2019/Get.js +0 -24
- package/backend/node_modules/es-abstract/2019/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2019/GetIterator.js +0 -30
- package/backend/node_modules/es-abstract/2019/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2019/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2019/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2019/GetSubstitution.js +0 -120
- package/backend/node_modules/es-abstract/2019/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2019/GetValueFromBuffer.js +0 -94
- package/backend/node_modules/es-abstract/2019/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2019/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2019/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2019/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2019/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2019/IntegerIndexedElementGet.js +0 -58
- package/backend/node_modules/es-abstract/2019/IntegerIndexedElementSet.js +0 -62
- package/backend/node_modules/es-abstract/2019/InternalizeJSONProperty.js +0 -68
- package/backend/node_modules/es-abstract/2019/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2019/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2019/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2019/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2019/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2019/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2019/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2019/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2019/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2019/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2019/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2019/IsInteger.js +0 -9
- package/backend/node_modules/es-abstract/2019/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2019/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2019/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2019/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2019/IsStringPrefix.js +0 -43
- package/backend/node_modules/es-abstract/2019/IsWordChar.js +0 -45
- package/backend/node_modules/es-abstract/2019/IterableToList.js +0 -21
- package/backend/node_modules/es-abstract/2019/IteratorClose.js +0 -51
- package/backend/node_modules/es-abstract/2019/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2019/IteratorNext.js +0 -16
- package/backend/node_modules/es-abstract/2019/IteratorStep.js +0 -13
- package/backend/node_modules/es-abstract/2019/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2019/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2019/MakeDay.js +0 -33
- package/backend/node_modules/es-abstract/2019/MakeTime.js +0 -24
- package/backend/node_modules/es-abstract/2019/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2019/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2019/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2019/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2019/NumberToRawBytes.js +0 -59
- package/backend/node_modules/es-abstract/2019/NumberToString.js +0 -17
- package/backend/node_modules/es-abstract/2019/ObjectCreate.js +0 -50
- package/backend/node_modules/es-abstract/2019/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2019/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2019/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2019/OrdinaryGetOwnProperty.js +0 -40
- package/backend/node_modules/es-abstract/2019/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2019/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2019/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2019/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2019/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2019/PromiseResolve.js +0 -18
- package/backend/node_modules/es-abstract/2019/QuoteJSONString.js +0 -51
- package/backend/node_modules/es-abstract/2019/RawBytesToNumber.js +0 -58
- package/backend/node_modules/es-abstract/2019/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2019/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2019/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2019/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2019/SameValueNonNumber.js +0 -14
- package/backend/node_modules/es-abstract/2019/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2019/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2019/Set.js +0 -45
- package/backend/node_modules/es-abstract/2019/SetFunctionLength.js +0 -28
- package/backend/node_modules/es-abstract/2019/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2019/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2019/SetValueInBuffer.js +0 -94
- package/backend/node_modules/es-abstract/2019/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2019/SplitMatch.js +0 -35
- package/backend/node_modules/es-abstract/2019/StrictEqualityComparison.js +0 -15
- package/backend/node_modules/es-abstract/2019/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2019/StringGetOwnProperty.js +0 -47
- package/backend/node_modules/es-abstract/2019/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2019/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2019/ThrowCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2019/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2019/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2019/TimeString.js +0 -22
- package/backend/node_modules/es-abstract/2019/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2019/TimeZoneString.js +0 -33
- package/backend/node_modules/es-abstract/2019/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2019/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2019/ToIndex.js +0 -24
- package/backend/node_modules/es-abstract/2019/ToInt16.js +0 -10
- package/backend/node_modules/es-abstract/2019/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/2019/ToInt8.js +0 -10
- package/backend/node_modules/es-abstract/2019/ToInteger.js +0 -12
- package/backend/node_modules/es-abstract/2019/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2019/ToNumber.js +0 -48
- package/backend/node_modules/es-abstract/2019/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2019/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2019/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2019/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2019/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2019/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/2019/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/2019/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2019/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2019/TrimString.js +0 -27
- package/backend/node_modules/es-abstract/2019/Type.js +0 -12
- package/backend/node_modules/es-abstract/2019/TypedArrayCreate.js +0 -47
- package/backend/node_modules/es-abstract/2019/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2019/UTF16Decode.js +0 -21
- package/backend/node_modules/es-abstract/2019/UTF16Encoding.js +0 -25
- package/backend/node_modules/es-abstract/2019/UnicodeEscape.js +0 -24
- package/backend/node_modules/es-abstract/2019/ValidateAndApplyPropertyDescriptor.js +0 -159
- package/backend/node_modules/es-abstract/2019/ValidateAtomicAccess.js +0 -34
- package/backend/node_modules/es-abstract/2019/ValidateTypedArray.js +0 -28
- package/backend/node_modules/es-abstract/2019/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2019/WordCharacters.js +0 -46
- package/backend/node_modules/es-abstract/2019/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2019/abs.js +0 -9
- package/backend/node_modules/es-abstract/2019/floor.js +0 -11
- package/backend/node_modules/es-abstract/2019/max.js +0 -5
- package/backend/node_modules/es-abstract/2019/min.js +0 -5
- package/backend/node_modules/es-abstract/2019/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2019/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2019/tables/typed-array-objects.js +0 -32
- package/backend/node_modules/es-abstract/2019/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2019/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2019/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2019/thisSymbolValue.js +0 -20
- package/backend/node_modules/es-abstract/2019/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2020/AbstractEqualityComparison.js +0 -56
- package/backend/node_modules/es-abstract/2020/AbstractRelationalComparison.js +0 -80
- package/backend/node_modules/es-abstract/2020/AddEntriesFromIterable.js +0 -44
- package/backend/node_modules/es-abstract/2020/AdvanceStringIndex.js +0 -30
- package/backend/node_modules/es-abstract/2020/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2020/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2020/ArraySpeciesCreate.js +0 -46
- package/backend/node_modules/es-abstract/2020/AsyncFromSyncIteratorContinuation.js +0 -45
- package/backend/node_modules/es-abstract/2020/AsyncIteratorClose.js +0 -64
- package/backend/node_modules/es-abstract/2020/BigInt/add.js +0 -14
- package/backend/node_modules/es-abstract/2020/BigInt/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2020/BigInt/bitwiseNOT.js +0 -15
- package/backend/node_modules/es-abstract/2020/BigInt/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2020/BigInt/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2020/BigInt/divide.js +0 -20
- package/backend/node_modules/es-abstract/2020/BigInt/equal.js +0 -13
- package/backend/node_modules/es-abstract/2020/BigInt/exponentiate.js +0 -29
- package/backend/node_modules/es-abstract/2020/BigInt/index.js +0 -43
- package/backend/node_modules/es-abstract/2020/BigInt/leftShift.js +0 -14
- package/backend/node_modules/es-abstract/2020/BigInt/lessThan.js +0 -14
- package/backend/node_modules/es-abstract/2020/BigInt/multiply.js +0 -14
- package/backend/node_modules/es-abstract/2020/BigInt/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2020/BigInt/sameValue.js +0 -15
- package/backend/node_modules/es-abstract/2020/BigInt/sameValueZero.js +0 -15
- package/backend/node_modules/es-abstract/2020/BigInt/signedRightShift.js +0 -15
- package/backend/node_modules/es-abstract/2020/BigInt/subtract.js +0 -14
- package/backend/node_modules/es-abstract/2020/BigInt/toString.js +0 -16
- package/backend/node_modules/es-abstract/2020/BigInt/unaryMinus.js +0 -22
- package/backend/node_modules/es-abstract/2020/BigInt/unsignedRightShift.js +0 -13
- package/backend/node_modules/es-abstract/2020/BigIntBitwiseOp.js +0 -63
- package/backend/node_modules/es-abstract/2020/BinaryAnd.js +0 -12
- package/backend/node_modules/es-abstract/2020/BinaryOr.js +0 -12
- package/backend/node_modules/es-abstract/2020/BinaryXor.js +0 -12
- package/backend/node_modules/es-abstract/2020/Call.js +0 -20
- package/backend/node_modules/es-abstract/2020/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2020/Canonicalize.js +0 -51
- package/backend/node_modules/es-abstract/2020/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2020/CodePointAt.js +0 -55
- package/backend/node_modules/es-abstract/2020/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2020/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2020/CopyDataProperties.js +0 -62
- package/backend/node_modules/es-abstract/2020/CreateAsyncFromSyncIterator.js +0 -137
- package/backend/node_modules/es-abstract/2020/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2020/CreateDataPropertyOrThrow.js +0 -24
- package/backend/node_modules/es-abstract/2020/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2020/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2020/CreateListFromArrayLike.js +0 -46
- package/backend/node_modules/es-abstract/2020/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2020/CreateRegExpStringIterator.js +0 -100
- package/backend/node_modules/es-abstract/2020/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2020/DateString.js +0 -27
- package/backend/node_modules/es-abstract/2020/Day.js +0 -11
- package/backend/node_modules/es-abstract/2020/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2020/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2020/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2020/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2020/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2020/DetachArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2020/EnumerableOwnPropertyNames.js +0 -37
- package/backend/node_modules/es-abstract/2020/FlattenIntoArray.js +0 -55
- package/backend/node_modules/es-abstract/2020/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2020/Get.js +0 -24
- package/backend/node_modules/es-abstract/2020/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2020/GetIterator.js +0 -63
- package/backend/node_modules/es-abstract/2020/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2020/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2020/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2020/GetSubstitution.js +0 -120
- package/backend/node_modules/es-abstract/2020/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2020/GetValueFromBuffer.js +0 -96
- package/backend/node_modules/es-abstract/2020/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2020/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2020/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2020/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2020/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2020/IntegerIndexedElementGet.js +0 -53
- package/backend/node_modules/es-abstract/2020/IntegerIndexedElementSet.js +0 -60
- package/backend/node_modules/es-abstract/2020/InternalizeJSONProperty.js +0 -66
- package/backend/node_modules/es-abstract/2020/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2020/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2020/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2020/IsBigIntElementType.js +0 -7
- package/backend/node_modules/es-abstract/2020/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2020/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2020/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2020/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2020/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2020/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2020/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2020/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2020/IsInteger.js +0 -9
- package/backend/node_modules/es-abstract/2020/IsNoTearConfiguration.js +0 -16
- package/backend/node_modules/es-abstract/2020/IsNonNegativeInteger.js +0 -9
- package/backend/node_modules/es-abstract/2020/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2020/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2020/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2020/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2020/IsStringPrefix.js +0 -43
- package/backend/node_modules/es-abstract/2020/IsUnclampedIntegerElementType.js +0 -12
- package/backend/node_modules/es-abstract/2020/IsUnsignedElementType.js +0 -11
- package/backend/node_modules/es-abstract/2020/IsValidIntegerIndex.js +0 -32
- package/backend/node_modules/es-abstract/2020/IsWordChar.js +0 -45
- package/backend/node_modules/es-abstract/2020/IterableToList.js +0 -21
- package/backend/node_modules/es-abstract/2020/IteratorClose.js +0 -51
- package/backend/node_modules/es-abstract/2020/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2020/IteratorNext.js +0 -16
- package/backend/node_modules/es-abstract/2020/IteratorStep.js +0 -13
- package/backend/node_modules/es-abstract/2020/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2020/LengthOfArrayLike.js +0 -18
- package/backend/node_modules/es-abstract/2020/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2020/MakeDay.js +0 -33
- package/backend/node_modules/es-abstract/2020/MakeTime.js +0 -24
- package/backend/node_modules/es-abstract/2020/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2020/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2020/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2020/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2020/Number/add.js +0 -40
- package/backend/node_modules/es-abstract/2020/Number/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2020/Number/bitwiseNOT.js +0 -16
- package/backend/node_modules/es-abstract/2020/Number/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2020/Number/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2020/Number/divide.js +0 -18
- package/backend/node_modules/es-abstract/2020/Number/equal.js +0 -18
- package/backend/node_modules/es-abstract/2020/Number/exponentiate.js +0 -74
- package/backend/node_modules/es-abstract/2020/Number/index.js +0 -43
- package/backend/node_modules/es-abstract/2020/Number/leftShift.js +0 -21
- package/backend/node_modules/es-abstract/2020/Number/lessThan.js +0 -22
- package/backend/node_modules/es-abstract/2020/Number/multiply.js +0 -29
- package/backend/node_modules/es-abstract/2020/Number/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2020/Number/sameValue.js +0 -18
- package/backend/node_modules/es-abstract/2020/Number/sameValueZero.js +0 -20
- package/backend/node_modules/es-abstract/2020/Number/signedRightShift.js +0 -21
- package/backend/node_modules/es-abstract/2020/Number/subtract.js +0 -12
- package/backend/node_modules/es-abstract/2020/Number/toString.js +0 -16
- package/backend/node_modules/es-abstract/2020/Number/unaryMinus.js +0 -17
- package/backend/node_modules/es-abstract/2020/Number/unsignedRightShift.js +0 -21
- package/backend/node_modules/es-abstract/2020/NumberBitwiseOp.js +0 -26
- package/backend/node_modules/es-abstract/2020/NumberToBigInt.js +0 -24
- package/backend/node_modules/es-abstract/2020/NumericToRawBytes.js +0 -62
- package/backend/node_modules/es-abstract/2020/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2020/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2020/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2020/OrdinaryGetOwnProperty.js +0 -40
- package/backend/node_modules/es-abstract/2020/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2020/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2020/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2020/OrdinaryObjectCreate.js +0 -56
- package/backend/node_modules/es-abstract/2020/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2020/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2020/PromiseResolve.js +0 -18
- package/backend/node_modules/es-abstract/2020/QuoteJSONString.js +0 -52
- package/backend/node_modules/es-abstract/2020/RawBytesToNumeric.js +0 -67
- package/backend/node_modules/es-abstract/2020/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2020/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2020/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2020/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2020/SameValueNonNumeric.js +0 -18
- package/backend/node_modules/es-abstract/2020/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2020/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2020/Set.js +0 -45
- package/backend/node_modules/es-abstract/2020/SetFunctionLength.js +0 -28
- package/backend/node_modules/es-abstract/2020/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2020/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2020/SetValueInBuffer.js +0 -96
- package/backend/node_modules/es-abstract/2020/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2020/SplitMatch.js +0 -35
- package/backend/node_modules/es-abstract/2020/StrictEqualityComparison.js +0 -15
- package/backend/node_modules/es-abstract/2020/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2020/StringGetOwnProperty.js +0 -47
- package/backend/node_modules/es-abstract/2020/StringPad.js +0 -41
- package/backend/node_modules/es-abstract/2020/StringToBigInt.js +0 -23
- package/backend/node_modules/es-abstract/2020/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2020/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2020/ThrowCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2020/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2020/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2020/TimeString.js +0 -22
- package/backend/node_modules/es-abstract/2020/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2020/TimeZoneString.js +0 -33
- package/backend/node_modules/es-abstract/2020/ToBigInt.js +0 -53
- package/backend/node_modules/es-abstract/2020/ToBigInt64.js +0 -25
- package/backend/node_modules/es-abstract/2020/ToBigUint64.js +0 -23
- package/backend/node_modules/es-abstract/2020/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2020/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2020/ToIndex.js +0 -24
- package/backend/node_modules/es-abstract/2020/ToInt16.js +0 -10
- package/backend/node_modules/es-abstract/2020/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/2020/ToInt8.js +0 -10
- package/backend/node_modules/es-abstract/2020/ToInteger.js +0 -15
- package/backend/node_modules/es-abstract/2020/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2020/ToNumber.js +0 -51
- package/backend/node_modules/es-abstract/2020/ToNumeric.js +0 -20
- package/backend/node_modules/es-abstract/2020/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2020/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2020/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2020/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2020/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2020/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/2020/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/2020/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2020/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2020/TrimString.js +0 -27
- package/backend/node_modules/es-abstract/2020/Type.js +0 -15
- package/backend/node_modules/es-abstract/2020/TypedArrayCreate.js +0 -47
- package/backend/node_modules/es-abstract/2020/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2020/UTF16DecodeString.js +0 -22
- package/backend/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js +0 -19
- package/backend/node_modules/es-abstract/2020/UTF16Encoding.js +0 -25
- package/backend/node_modules/es-abstract/2020/UnicodeEscape.js +0 -25
- package/backend/node_modules/es-abstract/2020/ValidateAndApplyPropertyDescriptor.js +0 -159
- package/backend/node_modules/es-abstract/2020/ValidateAtomicAccess.js +0 -34
- package/backend/node_modules/es-abstract/2020/ValidateTypedArray.js +0 -28
- package/backend/node_modules/es-abstract/2020/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2020/WordCharacters.js +0 -46
- package/backend/node_modules/es-abstract/2020/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2020/abs.js +0 -9
- package/backend/node_modules/es-abstract/2020/floor.js +0 -14
- package/backend/node_modules/es-abstract/2020/max.js +0 -5
- package/backend/node_modules/es-abstract/2020/min.js +0 -5
- package/backend/node_modules/es-abstract/2020/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2020/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2020/tables/typed-array-objects.js +0 -36
- package/backend/node_modules/es-abstract/2020/thisBigIntValue.js +0 -18
- package/backend/node_modules/es-abstract/2020/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2020/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2020/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2020/thisSymbolValue.js +0 -20
- package/backend/node_modules/es-abstract/2020/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2021/AbstractEqualityComparison.js +0 -56
- package/backend/node_modules/es-abstract/2021/AbstractRelationalComparison.js +0 -80
- package/backend/node_modules/es-abstract/2021/AddEntriesFromIterable.js +0 -44
- package/backend/node_modules/es-abstract/2021/AddToKeptObjects.js +0 -18
- package/backend/node_modules/es-abstract/2021/AdvanceStringIndex.js +0 -30
- package/backend/node_modules/es-abstract/2021/ApplyStringOrNumericBinaryOperator.js +0 -77
- package/backend/node_modules/es-abstract/2021/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2021/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2021/ArraySpeciesCreate.js +0 -48
- package/backend/node_modules/es-abstract/2021/AsyncFromSyncIteratorContinuation.js +0 -45
- package/backend/node_modules/es-abstract/2021/AsyncIteratorClose.js +0 -70
- package/backend/node_modules/es-abstract/2021/BigInt/add.js +0 -14
- package/backend/node_modules/es-abstract/2021/BigInt/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2021/BigInt/bitwiseNOT.js +0 -15
- package/backend/node_modules/es-abstract/2021/BigInt/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2021/BigInt/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2021/BigInt/divide.js +0 -20
- package/backend/node_modules/es-abstract/2021/BigInt/equal.js +0 -13
- package/backend/node_modules/es-abstract/2021/BigInt/exponentiate.js +0 -29
- package/backend/node_modules/es-abstract/2021/BigInt/index.js +0 -43
- package/backend/node_modules/es-abstract/2021/BigInt/leftShift.js +0 -14
- package/backend/node_modules/es-abstract/2021/BigInt/lessThan.js +0 -14
- package/backend/node_modules/es-abstract/2021/BigInt/multiply.js +0 -14
- package/backend/node_modules/es-abstract/2021/BigInt/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2021/BigInt/sameValue.js +0 -15
- package/backend/node_modules/es-abstract/2021/BigInt/sameValueZero.js +0 -15
- package/backend/node_modules/es-abstract/2021/BigInt/signedRightShift.js +0 -15
- package/backend/node_modules/es-abstract/2021/BigInt/subtract.js +0 -14
- package/backend/node_modules/es-abstract/2021/BigInt/toString.js +0 -16
- package/backend/node_modules/es-abstract/2021/BigInt/unaryMinus.js +0 -22
- package/backend/node_modules/es-abstract/2021/BigInt/unsignedRightShift.js +0 -13
- package/backend/node_modules/es-abstract/2021/BigIntBitwiseOp.js +0 -63
- package/backend/node_modules/es-abstract/2021/BinaryAnd.js +0 -12
- package/backend/node_modules/es-abstract/2021/BinaryOr.js +0 -12
- package/backend/node_modules/es-abstract/2021/BinaryXor.js +0 -12
- package/backend/node_modules/es-abstract/2021/ByteListBitwiseOp.js +0 -39
- package/backend/node_modules/es-abstract/2021/ByteListEqual.js +0 -31
- package/backend/node_modules/es-abstract/2021/Call.js +0 -20
- package/backend/node_modules/es-abstract/2021/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2021/Canonicalize.js +0 -51
- package/backend/node_modules/es-abstract/2021/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2021/ClearKeptObjects.js +0 -12
- package/backend/node_modules/es-abstract/2021/CloneArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2021/CodePointAt.js +0 -55
- package/backend/node_modules/es-abstract/2021/CodePointsToString.js +0 -25
- package/backend/node_modules/es-abstract/2021/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2021/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2021/CopyDataProperties.js +0 -69
- package/backend/node_modules/es-abstract/2021/CreateAsyncFromSyncIterator.js +0 -137
- package/backend/node_modules/es-abstract/2021/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2021/CreateDataPropertyOrThrow.js +0 -24
- package/backend/node_modules/es-abstract/2021/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2021/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2021/CreateListFromArrayLike.js +0 -44
- package/backend/node_modules/es-abstract/2021/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2021/CreateRegExpStringIterator.js +0 -100
- package/backend/node_modules/es-abstract/2021/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2021/DateString.js +0 -27
- package/backend/node_modules/es-abstract/2021/Day.js +0 -11
- package/backend/node_modules/es-abstract/2021/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2021/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2021/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2021/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2021/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2021/DetachArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2021/EnumerableOwnPropertyNames.js +0 -37
- package/backend/node_modules/es-abstract/2021/FlattenIntoArray.js +0 -55
- package/backend/node_modules/es-abstract/2021/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2021/Get.js +0 -24
- package/backend/node_modules/es-abstract/2021/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2021/GetIterator.js +0 -63
- package/backend/node_modules/es-abstract/2021/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2021/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2021/GetPromiseResolve.js +0 -20
- package/backend/node_modules/es-abstract/2021/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2021/GetSubstitution.js +0 -119
- package/backend/node_modules/es-abstract/2021/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2021/GetValueFromBuffer.js +0 -96
- package/backend/node_modules/es-abstract/2021/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2021/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2021/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2021/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2021/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2021/IntegerIndexedElementGet.js +0 -39
- package/backend/node_modules/es-abstract/2021/IntegerIndexedElementSet.js +0 -44
- package/backend/node_modules/es-abstract/2021/InternalizeJSONProperty.js +0 -66
- package/backend/node_modules/es-abstract/2021/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2021/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2021/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2021/IsBigIntElementType.js +0 -7
- package/backend/node_modules/es-abstract/2021/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2021/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2021/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2021/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2021/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2021/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2021/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2021/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2021/IsIntegralNumber.js +0 -9
- package/backend/node_modules/es-abstract/2021/IsNoTearConfiguration.js +0 -16
- package/backend/node_modules/es-abstract/2021/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2021/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2021/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2021/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2021/IsStringPrefix.js +0 -43
- package/backend/node_modules/es-abstract/2021/IsUnclampedIntegerElementType.js +0 -12
- package/backend/node_modules/es-abstract/2021/IsUnsignedElementType.js +0 -11
- package/backend/node_modules/es-abstract/2021/IsValidIntegerIndex.js +0 -30
- package/backend/node_modules/es-abstract/2021/IsWordChar.js +0 -46
- package/backend/node_modules/es-abstract/2021/IterableToList.js +0 -26
- package/backend/node_modules/es-abstract/2021/IteratorClose.js +0 -51
- package/backend/node_modules/es-abstract/2021/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2021/IteratorNext.js +0 -16
- package/backend/node_modules/es-abstract/2021/IteratorStep.js +0 -13
- package/backend/node_modules/es-abstract/2021/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2021/LengthOfArrayLike.js +0 -18
- package/backend/node_modules/es-abstract/2021/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2021/MakeDay.js +0 -36
- package/backend/node_modules/es-abstract/2021/MakeTime.js +0 -23
- package/backend/node_modules/es-abstract/2021/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2021/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2021/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2021/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2021/Number/add.js +0 -31
- package/backend/node_modules/es-abstract/2021/Number/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2021/Number/bitwiseNOT.js +0 -16
- package/backend/node_modules/es-abstract/2021/Number/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2021/Number/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2021/Number/divide.js +0 -18
- package/backend/node_modules/es-abstract/2021/Number/equal.js +0 -18
- package/backend/node_modules/es-abstract/2021/Number/exponentiate.js +0 -74
- package/backend/node_modules/es-abstract/2021/Number/index.js +0 -43
- package/backend/node_modules/es-abstract/2021/Number/leftShift.js +0 -22
- package/backend/node_modules/es-abstract/2021/Number/lessThan.js +0 -22
- package/backend/node_modules/es-abstract/2021/Number/multiply.js +0 -29
- package/backend/node_modules/es-abstract/2021/Number/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2021/Number/sameValue.js +0 -18
- package/backend/node_modules/es-abstract/2021/Number/sameValueZero.js +0 -20
- package/backend/node_modules/es-abstract/2021/Number/signedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2021/Number/subtract.js +0 -15
- package/backend/node_modules/es-abstract/2021/Number/toString.js +0 -16
- package/backend/node_modules/es-abstract/2021/Number/unaryMinus.js +0 -17
- package/backend/node_modules/es-abstract/2021/Number/unsignedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2021/NumberBitwiseOp.js +0 -26
- package/backend/node_modules/es-abstract/2021/NumberToBigInt.js +0 -25
- package/backend/node_modules/es-abstract/2021/NumericToRawBytes.js +0 -62
- package/backend/node_modules/es-abstract/2021/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2021/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2021/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2021/OrdinaryGetOwnProperty.js +0 -41
- package/backend/node_modules/es-abstract/2021/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2021/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2021/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2021/OrdinaryObjectCreate.js +0 -56
- package/backend/node_modules/es-abstract/2021/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2021/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2021/PromiseResolve.js +0 -18
- package/backend/node_modules/es-abstract/2021/QuoteJSONString.js +0 -52
- package/backend/node_modules/es-abstract/2021/RawBytesToNumeric.js +0 -67
- package/backend/node_modules/es-abstract/2021/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2021/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2021/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2021/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2021/SameValueNonNumeric.js +0 -18
- package/backend/node_modules/es-abstract/2021/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2021/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2021/Set.js +0 -45
- package/backend/node_modules/es-abstract/2021/SetFunctionLength.js +0 -28
- package/backend/node_modules/es-abstract/2021/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2021/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2021/SetTypedArrayFromArrayLike.js +0 -96
- package/backend/node_modules/es-abstract/2021/SetTypedArrayFromTypedArray.js +0 -138
- package/backend/node_modules/es-abstract/2021/SetValueInBuffer.js +0 -92
- package/backend/node_modules/es-abstract/2021/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2021/SplitMatch.js +0 -35
- package/backend/node_modules/es-abstract/2021/StrictEqualityComparison.js +0 -15
- package/backend/node_modules/es-abstract/2021/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2021/StringGetOwnProperty.js +0 -46
- package/backend/node_modules/es-abstract/2021/StringIndexOf.js +0 -36
- package/backend/node_modules/es-abstract/2021/StringPad.js +0 -41
- package/backend/node_modules/es-abstract/2021/StringToBigInt.js +0 -23
- package/backend/node_modules/es-abstract/2021/StringToCodePoints.js +0 -22
- package/backend/node_modules/es-abstract/2021/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2021/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2021/ThrowCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2021/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2021/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2021/TimeString.js +0 -22
- package/backend/node_modules/es-abstract/2021/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2021/TimeZoneString.js +0 -38
- package/backend/node_modules/es-abstract/2021/ToBigInt.js +0 -53
- package/backend/node_modules/es-abstract/2021/ToBigInt64.js +0 -25
- package/backend/node_modules/es-abstract/2021/ToBigUint64.js +0 -23
- package/backend/node_modules/es-abstract/2021/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2021/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2021/ToIndex.js +0 -24
- package/backend/node_modules/es-abstract/2021/ToInt16.js +0 -10
- package/backend/node_modules/es-abstract/2021/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/2021/ToInt8.js +0 -10
- package/backend/node_modules/es-abstract/2021/ToIntegerOrInfinity.js +0 -20
- package/backend/node_modules/es-abstract/2021/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2021/ToNumber.js +0 -51
- package/backend/node_modules/es-abstract/2021/ToNumeric.js +0 -20
- package/backend/node_modules/es-abstract/2021/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2021/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2021/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2021/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2021/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2021/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/2021/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/2021/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2021/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2021/TrimString.js +0 -27
- package/backend/node_modules/es-abstract/2021/Type.js +0 -15
- package/backend/node_modules/es-abstract/2021/TypedArrayCreate.js +0 -47
- package/backend/node_modules/es-abstract/2021/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2021/UTF16EncodeCodePoint.js +0 -25
- package/backend/node_modules/es-abstract/2021/UTF16SurrogatePairToCodePoint.js +0 -19
- package/backend/node_modules/es-abstract/2021/UnicodeEscape.js +0 -25
- package/backend/node_modules/es-abstract/2021/ValidateAndApplyPropertyDescriptor.js +0 -159
- package/backend/node_modules/es-abstract/2021/ValidateAtomicAccess.js +0 -45
- package/backend/node_modules/es-abstract/2021/ValidateIntegerTypedArray.js +0 -37
- package/backend/node_modules/es-abstract/2021/ValidateTypedArray.js +0 -28
- package/backend/node_modules/es-abstract/2021/WeakRefDeref.js +0 -23
- package/backend/node_modules/es-abstract/2021/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2021/WordCharacters.js +0 -46
- package/backend/node_modules/es-abstract/2021/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2021/abs.js +0 -9
- package/backend/node_modules/es-abstract/2021/clamp.js +0 -14
- package/backend/node_modules/es-abstract/2021/floor.js +0 -14
- package/backend/node_modules/es-abstract/2021/max.js +0 -5
- package/backend/node_modules/es-abstract/2021/min.js +0 -5
- package/backend/node_modules/es-abstract/2021/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2021/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2021/substring.js +0 -15
- package/backend/node_modules/es-abstract/2021/tables/typed-array-objects.js +0 -36
- package/backend/node_modules/es-abstract/2021/thisBigIntValue.js +0 -18
- package/backend/node_modules/es-abstract/2021/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2021/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2021/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2021/thisSymbolValue.js +0 -20
- package/backend/node_modules/es-abstract/2021/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2022/AddEntriesFromIterable.js +0 -44
- package/backend/node_modules/es-abstract/2022/AddToKeptObjects.js +0 -18
- package/backend/node_modules/es-abstract/2022/AdvanceStringIndex.js +0 -30
- package/backend/node_modules/es-abstract/2022/ApplyStringOrNumericBinaryOperator.js +0 -77
- package/backend/node_modules/es-abstract/2022/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2022/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2022/ArraySpeciesCreate.js +0 -48
- package/backend/node_modules/es-abstract/2022/AsyncFromSyncIteratorContinuation.js +0 -45
- package/backend/node_modules/es-abstract/2022/AsyncIteratorClose.js +0 -70
- package/backend/node_modules/es-abstract/2022/BigInt/add.js +0 -14
- package/backend/node_modules/es-abstract/2022/BigInt/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2022/BigInt/bitwiseNOT.js +0 -15
- package/backend/node_modules/es-abstract/2022/BigInt/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2022/BigInt/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2022/BigInt/divide.js +0 -20
- package/backend/node_modules/es-abstract/2022/BigInt/equal.js +0 -13
- package/backend/node_modules/es-abstract/2022/BigInt/exponentiate.js +0 -29
- package/backend/node_modules/es-abstract/2022/BigInt/index.js +0 -43
- package/backend/node_modules/es-abstract/2022/BigInt/leftShift.js +0 -14
- package/backend/node_modules/es-abstract/2022/BigInt/lessThan.js +0 -14
- package/backend/node_modules/es-abstract/2022/BigInt/multiply.js +0 -14
- package/backend/node_modules/es-abstract/2022/BigInt/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2022/BigInt/sameValue.js +0 -15
- package/backend/node_modules/es-abstract/2022/BigInt/sameValueZero.js +0 -15
- package/backend/node_modules/es-abstract/2022/BigInt/signedRightShift.js +0 -15
- package/backend/node_modules/es-abstract/2022/BigInt/subtract.js +0 -14
- package/backend/node_modules/es-abstract/2022/BigInt/toString.js +0 -16
- package/backend/node_modules/es-abstract/2022/BigInt/unaryMinus.js +0 -22
- package/backend/node_modules/es-abstract/2022/BigInt/unsignedRightShift.js +0 -13
- package/backend/node_modules/es-abstract/2022/BigIntBitwiseOp.js +0 -63
- package/backend/node_modules/es-abstract/2022/BinaryAnd.js +0 -12
- package/backend/node_modules/es-abstract/2022/BinaryOr.js +0 -12
- package/backend/node_modules/es-abstract/2022/BinaryXor.js +0 -12
- package/backend/node_modules/es-abstract/2022/ByteListBitwiseOp.js +0 -39
- package/backend/node_modules/es-abstract/2022/ByteListEqual.js +0 -31
- package/backend/node_modules/es-abstract/2022/Call.js +0 -20
- package/backend/node_modules/es-abstract/2022/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2022/Canonicalize.js +0 -51
- package/backend/node_modules/es-abstract/2022/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2022/ClearKeptObjects.js +0 -12
- package/backend/node_modules/es-abstract/2022/CloneArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2022/CodePointAt.js +0 -55
- package/backend/node_modules/es-abstract/2022/CodePointsToString.js +0 -25
- package/backend/node_modules/es-abstract/2022/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2022/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2022/CopyDataProperties.js +0 -69
- package/backend/node_modules/es-abstract/2022/CreateAsyncFromSyncIterator.js +0 -137
- package/backend/node_modules/es-abstract/2022/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2022/CreateDataPropertyOrThrow.js +0 -24
- package/backend/node_modules/es-abstract/2022/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2022/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2022/CreateListFromArrayLike.js +0 -44
- package/backend/node_modules/es-abstract/2022/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2022/CreateNonEnumerableDataPropertyOrThrow.js +0 -28
- package/backend/node_modules/es-abstract/2022/CreateRegExpStringIterator.js +0 -100
- package/backend/node_modules/es-abstract/2022/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2022/DateString.js +0 -27
- package/backend/node_modules/es-abstract/2022/Day.js +0 -11
- package/backend/node_modules/es-abstract/2022/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2022/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2022/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2022/DefineMethodProperty.js +0 -42
- package/backend/node_modules/es-abstract/2022/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2022/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2022/DetachArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2022/EnumerableOwnPropertyNames.js +0 -37
- package/backend/node_modules/es-abstract/2022/FlattenIntoArray.js +0 -55
- package/backend/node_modules/es-abstract/2022/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2022/Get.js +0 -24
- package/backend/node_modules/es-abstract/2022/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2022/GetIterator.js +0 -63
- package/backend/node_modules/es-abstract/2022/GetMatchIndexPair.js +0 -24
- package/backend/node_modules/es-abstract/2022/GetMatchString.js +0 -26
- package/backend/node_modules/es-abstract/2022/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2022/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2022/GetPromiseResolve.js +0 -20
- package/backend/node_modules/es-abstract/2022/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2022/GetStringIndex.js +0 -27
- package/backend/node_modules/es-abstract/2022/GetSubstitution.js +0 -137
- package/backend/node_modules/es-abstract/2022/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2022/GetValueFromBuffer.js +0 -96
- package/backend/node_modules/es-abstract/2022/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2022/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2022/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2022/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2022/InstallErrorCause.js +0 -21
- package/backend/node_modules/es-abstract/2022/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2022/IntegerIndexedElementGet.js +0 -38
- package/backend/node_modules/es-abstract/2022/IntegerIndexedElementSet.js +0 -42
- package/backend/node_modules/es-abstract/2022/InternalizeJSONProperty.js +0 -66
- package/backend/node_modules/es-abstract/2022/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2022/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2022/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2022/IsBigIntElementType.js +0 -7
- package/backend/node_modules/es-abstract/2022/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2022/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2022/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2022/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2022/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2022/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2022/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2022/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2022/IsIntegralNumber.js +0 -9
- package/backend/node_modules/es-abstract/2022/IsLessThan.js +0 -87
- package/backend/node_modules/es-abstract/2022/IsLooselyEqual.js +0 -58
- package/backend/node_modules/es-abstract/2022/IsNoTearConfiguration.js +0 -16
- package/backend/node_modules/es-abstract/2022/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2022/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2022/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2022/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2022/IsStrictlyEqual.js +0 -18
- package/backend/node_modules/es-abstract/2022/IsStringPrefix.js +0 -19
- package/backend/node_modules/es-abstract/2022/IsStringWellFormedUnicode.js +0 -23
- package/backend/node_modules/es-abstract/2022/IsUnclampedIntegerElementType.js +0 -12
- package/backend/node_modules/es-abstract/2022/IsUnsignedElementType.js +0 -11
- package/backend/node_modules/es-abstract/2022/IsValidIntegerIndex.js +0 -30
- package/backend/node_modules/es-abstract/2022/IsWordChar.js +0 -46
- package/backend/node_modules/es-abstract/2022/IterableToList.js +0 -26
- package/backend/node_modules/es-abstract/2022/IteratorClose.js +0 -51
- package/backend/node_modules/es-abstract/2022/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2022/IteratorNext.js +0 -16
- package/backend/node_modules/es-abstract/2022/IteratorStep.js +0 -13
- package/backend/node_modules/es-abstract/2022/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2022/LengthOfArrayLike.js +0 -18
- package/backend/node_modules/es-abstract/2022/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2022/MakeDay.js +0 -36
- package/backend/node_modules/es-abstract/2022/MakeMatchIndicesIndexPairArray.js +0 -66
- package/backend/node_modules/es-abstract/2022/MakeTime.js +0 -23
- package/backend/node_modules/es-abstract/2022/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2022/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2022/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2022/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2022/Number/add.js +0 -31
- package/backend/node_modules/es-abstract/2022/Number/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2022/Number/bitwiseNOT.js +0 -16
- package/backend/node_modules/es-abstract/2022/Number/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2022/Number/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2022/Number/divide.js +0 -18
- package/backend/node_modules/es-abstract/2022/Number/equal.js +0 -18
- package/backend/node_modules/es-abstract/2022/Number/exponentiate.js +0 -74
- package/backend/node_modules/es-abstract/2022/Number/index.js +0 -43
- package/backend/node_modules/es-abstract/2022/Number/leftShift.js +0 -22
- package/backend/node_modules/es-abstract/2022/Number/lessThan.js +0 -22
- package/backend/node_modules/es-abstract/2022/Number/multiply.js +0 -29
- package/backend/node_modules/es-abstract/2022/Number/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2022/Number/sameValue.js +0 -18
- package/backend/node_modules/es-abstract/2022/Number/sameValueZero.js +0 -20
- package/backend/node_modules/es-abstract/2022/Number/signedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2022/Number/subtract.js +0 -15
- package/backend/node_modules/es-abstract/2022/Number/toString.js +0 -16
- package/backend/node_modules/es-abstract/2022/Number/unaryMinus.js +0 -17
- package/backend/node_modules/es-abstract/2022/Number/unsignedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2022/NumberBitwiseOp.js +0 -26
- package/backend/node_modules/es-abstract/2022/NumberToBigInt.js +0 -25
- package/backend/node_modules/es-abstract/2022/NumericToRawBytes.js +0 -62
- package/backend/node_modules/es-abstract/2022/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2022/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2022/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2022/OrdinaryGetOwnProperty.js +0 -41
- package/backend/node_modules/es-abstract/2022/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2022/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2022/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2022/OrdinaryObjectCreate.js +0 -56
- package/backend/node_modules/es-abstract/2022/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2022/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2022/PromiseResolve.js +0 -18
- package/backend/node_modules/es-abstract/2022/QuoteJSONString.js +0 -52
- package/backend/node_modules/es-abstract/2022/RawBytesToNumeric.js +0 -67
- package/backend/node_modules/es-abstract/2022/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2022/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2022/RegExpHasFlag.js +0 -38
- package/backend/node_modules/es-abstract/2022/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2022/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2022/SameValueNonNumeric.js +0 -18
- package/backend/node_modules/es-abstract/2022/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2022/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2022/Set.js +0 -45
- package/backend/node_modules/es-abstract/2022/SetFunctionLength.js +0 -28
- package/backend/node_modules/es-abstract/2022/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2022/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2022/SetTypedArrayFromArrayLike.js +0 -94
- package/backend/node_modules/es-abstract/2022/SetTypedArrayFromTypedArray.js +0 -134
- package/backend/node_modules/es-abstract/2022/SetValueInBuffer.js +0 -92
- package/backend/node_modules/es-abstract/2022/SortIndexedProperties.js +0 -62
- package/backend/node_modules/es-abstract/2022/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2022/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2022/StringGetOwnProperty.js +0 -46
- package/backend/node_modules/es-abstract/2022/StringIndexOf.js +0 -36
- package/backend/node_modules/es-abstract/2022/StringPad.js +0 -41
- package/backend/node_modules/es-abstract/2022/StringToBigInt.js +0 -23
- package/backend/node_modules/es-abstract/2022/StringToCodePoints.js +0 -22
- package/backend/node_modules/es-abstract/2022/StringToNumber.js +0 -42
- package/backend/node_modules/es-abstract/2022/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2022/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2022/ThrowCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2022/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2022/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2022/TimeString.js +0 -26
- package/backend/node_modules/es-abstract/2022/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2022/TimeZoneString.js +0 -38
- package/backend/node_modules/es-abstract/2022/ToBigInt.js +0 -51
- package/backend/node_modules/es-abstract/2022/ToBigInt64.js +0 -25
- package/backend/node_modules/es-abstract/2022/ToBigUint64.js +0 -23
- package/backend/node_modules/es-abstract/2022/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2022/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2022/ToIndex.js +0 -24
- package/backend/node_modules/es-abstract/2022/ToInt16.js +0 -10
- package/backend/node_modules/es-abstract/2022/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/2022/ToInt8.js +0 -10
- package/backend/node_modules/es-abstract/2022/ToIntegerOrInfinity.js +0 -20
- package/backend/node_modules/es-abstract/2022/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2022/ToNumber.js +0 -26
- package/backend/node_modules/es-abstract/2022/ToNumeric.js +0 -20
- package/backend/node_modules/es-abstract/2022/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2022/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2022/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2022/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2022/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2022/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/2022/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/2022/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2022/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2022/ToZeroPaddedDecimalString.js +0 -19
- package/backend/node_modules/es-abstract/2022/TrimString.js +0 -27
- package/backend/node_modules/es-abstract/2022/Type.js +0 -15
- package/backend/node_modules/es-abstract/2022/TypedArrayCreate.js +0 -47
- package/backend/node_modules/es-abstract/2022/TypedArrayElementSize.js +0 -23
- package/backend/node_modules/es-abstract/2022/TypedArrayElementType.js +0 -23
- package/backend/node_modules/es-abstract/2022/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2022/UTF16EncodeCodePoint.js +0 -25
- package/backend/node_modules/es-abstract/2022/UTF16SurrogatePairToCodePoint.js +0 -19
- package/backend/node_modules/es-abstract/2022/UnicodeEscape.js +0 -25
- package/backend/node_modules/es-abstract/2022/ValidateAndApplyPropertyDescriptor.js +0 -171
- package/backend/node_modules/es-abstract/2022/ValidateAtomicAccess.js +0 -40
- package/backend/node_modules/es-abstract/2022/ValidateIntegerTypedArray.js +0 -38
- package/backend/node_modules/es-abstract/2022/ValidateTypedArray.js +0 -26
- package/backend/node_modules/es-abstract/2022/WeakRefDeref.js +0 -23
- package/backend/node_modules/es-abstract/2022/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2022/WordCharacters.js +0 -46
- package/backend/node_modules/es-abstract/2022/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2022/abs.js +0 -9
- package/backend/node_modules/es-abstract/2022/clamp.js +0 -14
- package/backend/node_modules/es-abstract/2022/floor.js +0 -14
- package/backend/node_modules/es-abstract/2022/max.js +0 -5
- package/backend/node_modules/es-abstract/2022/min.js +0 -5
- package/backend/node_modules/es-abstract/2022/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2022/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2022/substring.js +0 -15
- package/backend/node_modules/es-abstract/2022/tables/typed-array-objects.js +0 -36
- package/backend/node_modules/es-abstract/2022/thisBigIntValue.js +0 -18
- package/backend/node_modules/es-abstract/2022/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2022/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2022/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2022/thisSymbolValue.js +0 -20
- package/backend/node_modules/es-abstract/2022/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2023/AddEntriesFromIterable.js +0 -44
- package/backend/node_modules/es-abstract/2023/AddToKeptObjects.js +0 -18
- package/backend/node_modules/es-abstract/2023/AdvanceStringIndex.js +0 -30
- package/backend/node_modules/es-abstract/2023/ApplyStringOrNumericBinaryOperator.js +0 -77
- package/backend/node_modules/es-abstract/2023/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2023/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2023/ArraySpeciesCreate.js +0 -48
- package/backend/node_modules/es-abstract/2023/AsyncFromSyncIteratorContinuation.js +0 -45
- package/backend/node_modules/es-abstract/2023/AsyncIteratorClose.js +0 -70
- package/backend/node_modules/es-abstract/2023/BigInt/add.js +0 -14
- package/backend/node_modules/es-abstract/2023/BigInt/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2023/BigInt/bitwiseNOT.js +0 -15
- package/backend/node_modules/es-abstract/2023/BigInt/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2023/BigInt/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2023/BigInt/divide.js +0 -20
- package/backend/node_modules/es-abstract/2023/BigInt/equal.js +0 -13
- package/backend/node_modules/es-abstract/2023/BigInt/exponentiate.js +0 -29
- package/backend/node_modules/es-abstract/2023/BigInt/index.js +0 -39
- package/backend/node_modules/es-abstract/2023/BigInt/leftShift.js +0 -14
- package/backend/node_modules/es-abstract/2023/BigInt/lessThan.js +0 -14
- package/backend/node_modules/es-abstract/2023/BigInt/multiply.js +0 -14
- package/backend/node_modules/es-abstract/2023/BigInt/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2023/BigInt/signedRightShift.js +0 -15
- package/backend/node_modules/es-abstract/2023/BigInt/subtract.js +0 -14
- package/backend/node_modules/es-abstract/2023/BigInt/toString.js +0 -26
- package/backend/node_modules/es-abstract/2023/BigInt/unaryMinus.js +0 -22
- package/backend/node_modules/es-abstract/2023/BigInt/unsignedRightShift.js +0 -13
- package/backend/node_modules/es-abstract/2023/BigIntBitwiseOp.js +0 -63
- package/backend/node_modules/es-abstract/2023/BinaryAnd.js +0 -12
- package/backend/node_modules/es-abstract/2023/BinaryOr.js +0 -12
- package/backend/node_modules/es-abstract/2023/BinaryXor.js +0 -12
- package/backend/node_modules/es-abstract/2023/ByteListBitwiseOp.js +0 -39
- package/backend/node_modules/es-abstract/2023/ByteListEqual.js +0 -31
- package/backend/node_modules/es-abstract/2023/Call.js +0 -20
- package/backend/node_modules/es-abstract/2023/CanBeHeldWeakly.js +0 -17
- package/backend/node_modules/es-abstract/2023/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2023/Canonicalize.js +0 -52
- package/backend/node_modules/es-abstract/2023/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2023/ClearKeptObjects.js +0 -12
- package/backend/node_modules/es-abstract/2023/CloneArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2023/CodePointAt.js +0 -55
- package/backend/node_modules/es-abstract/2023/CodePointsToString.js +0 -25
- package/backend/node_modules/es-abstract/2023/CompareArrayElements.js +0 -50
- package/backend/node_modules/es-abstract/2023/CompareTypedArrayElements.js +0 -60
- package/backend/node_modules/es-abstract/2023/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2023/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2023/CopyDataProperties.js +0 -69
- package/backend/node_modules/es-abstract/2023/CreateAsyncFromSyncIterator.js +0 -137
- package/backend/node_modules/es-abstract/2023/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2023/CreateDataPropertyOrThrow.js +0 -23
- package/backend/node_modules/es-abstract/2023/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2023/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2023/CreateListFromArrayLike.js +0 -44
- package/backend/node_modules/es-abstract/2023/CreateMethodProperty.js +0 -38
- package/backend/node_modules/es-abstract/2023/CreateNonEnumerableDataPropertyOrThrow.js +0 -28
- package/backend/node_modules/es-abstract/2023/CreateRegExpStringIterator.js +0 -100
- package/backend/node_modules/es-abstract/2023/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2023/DateString.js +0 -27
- package/backend/node_modules/es-abstract/2023/Day.js +0 -11
- package/backend/node_modules/es-abstract/2023/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2023/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2023/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2023/DefaultTimeZone.js +0 -18
- package/backend/node_modules/es-abstract/2023/DefineMethodProperty.js +0 -42
- package/backend/node_modules/es-abstract/2023/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2023/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2023/DetachArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2023/EnumerableOwnProperties.js +0 -36
- package/backend/node_modules/es-abstract/2023/FindViaPredicate.js +0 -43
- package/backend/node_modules/es-abstract/2023/FlattenIntoArray.js +0 -55
- package/backend/node_modules/es-abstract/2023/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2023/Get.js +0 -24
- package/backend/node_modules/es-abstract/2023/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2023/GetIterator.js +0 -53
- package/backend/node_modules/es-abstract/2023/GetIteratorFromMethod.js +0 -28
- package/backend/node_modules/es-abstract/2023/GetMatchIndexPair.js +0 -24
- package/backend/node_modules/es-abstract/2023/GetMatchString.js +0 -26
- package/backend/node_modules/es-abstract/2023/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2023/GetNamedTimeZoneEpochNanoseconds.js +0 -72
- package/backend/node_modules/es-abstract/2023/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2023/GetPromiseResolve.js +0 -20
- package/backend/node_modules/es-abstract/2023/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2023/GetStringIndex.js +0 -27
- package/backend/node_modules/es-abstract/2023/GetSubstitution.js +0 -138
- package/backend/node_modules/es-abstract/2023/GetUTCEpochNanoseconds.js +0 -68
- package/backend/node_modules/es-abstract/2023/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2023/GetValueFromBuffer.js +0 -96
- package/backend/node_modules/es-abstract/2023/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2023/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2023/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2023/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2023/InstallErrorCause.js +0 -21
- package/backend/node_modules/es-abstract/2023/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2023/IntegerIndexedElementGet.js +0 -38
- package/backend/node_modules/es-abstract/2023/IntegerIndexedElementSet.js +0 -42
- package/backend/node_modules/es-abstract/2023/InternalizeJSONProperty.js +0 -68
- package/backend/node_modules/es-abstract/2023/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2023/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2023/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2023/IsBigIntElementType.js +0 -7
- package/backend/node_modules/es-abstract/2023/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2023/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2023/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2023/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2023/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2023/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2023/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2023/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2023/IsIntegralNumber.js +0 -14
- package/backend/node_modules/es-abstract/2023/IsLessThan.js +0 -97
- package/backend/node_modules/es-abstract/2023/IsLooselyEqual.js +0 -58
- package/backend/node_modules/es-abstract/2023/IsNoTearConfiguration.js +0 -16
- package/backend/node_modules/es-abstract/2023/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2023/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2023/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2023/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2023/IsStrictlyEqual.js +0 -14
- package/backend/node_modules/es-abstract/2023/IsStringWellFormedUnicode.js +0 -23
- package/backend/node_modules/es-abstract/2023/IsTimeZoneOffsetString.js +0 -20
- package/backend/node_modules/es-abstract/2023/IsUnclampedIntegerElementType.js +0 -12
- package/backend/node_modules/es-abstract/2023/IsUnsignedElementType.js +0 -11
- package/backend/node_modules/es-abstract/2023/IsValidIntegerIndex.js +0 -30
- package/backend/node_modules/es-abstract/2023/IsWordChar.js +0 -42
- package/backend/node_modules/es-abstract/2023/IteratorClose.js +0 -65
- package/backend/node_modules/es-abstract/2023/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2023/IteratorNext.js +0 -28
- package/backend/node_modules/es-abstract/2023/IteratorStep.js +0 -21
- package/backend/node_modules/es-abstract/2023/IteratorToList.js +0 -27
- package/backend/node_modules/es-abstract/2023/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2023/KeyForSymbol.js +0 -16
- package/backend/node_modules/es-abstract/2023/LengthOfArrayLike.js +0 -18
- package/backend/node_modules/es-abstract/2023/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2023/MakeDay.js +0 -36
- package/backend/node_modules/es-abstract/2023/MakeMatchIndicesIndexPairArray.js +0 -66
- package/backend/node_modules/es-abstract/2023/MakeTime.js +0 -23
- package/backend/node_modules/es-abstract/2023/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2023/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2023/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2023/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2023/Number/add.js +0 -31
- package/backend/node_modules/es-abstract/2023/Number/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2023/Number/bitwiseNOT.js +0 -16
- package/backend/node_modules/es-abstract/2023/Number/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2023/Number/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2023/Number/divide.js +0 -18
- package/backend/node_modules/es-abstract/2023/Number/equal.js +0 -18
- package/backend/node_modules/es-abstract/2023/Number/exponentiate.js +0 -74
- package/backend/node_modules/es-abstract/2023/Number/index.js +0 -43
- package/backend/node_modules/es-abstract/2023/Number/leftShift.js +0 -22
- package/backend/node_modules/es-abstract/2023/Number/lessThan.js +0 -22
- package/backend/node_modules/es-abstract/2023/Number/multiply.js +0 -29
- package/backend/node_modules/es-abstract/2023/Number/remainder.js +0 -38
- package/backend/node_modules/es-abstract/2023/Number/sameValue.js +0 -18
- package/backend/node_modules/es-abstract/2023/Number/sameValueZero.js +0 -20
- package/backend/node_modules/es-abstract/2023/Number/signedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2023/Number/subtract.js +0 -15
- package/backend/node_modules/es-abstract/2023/Number/toString.js +0 -20
- package/backend/node_modules/es-abstract/2023/Number/unaryMinus.js +0 -17
- package/backend/node_modules/es-abstract/2023/Number/unsignedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2023/NumberBitwiseOp.js +0 -26
- package/backend/node_modules/es-abstract/2023/NumberToBigInt.js +0 -25
- package/backend/node_modules/es-abstract/2023/NumericToRawBytes.js +0 -62
- package/backend/node_modules/es-abstract/2023/ObjectDefineProperties.js +0 -37
- package/backend/node_modules/es-abstract/2023/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2023/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2023/OrdinaryGetOwnProperty.js +0 -41
- package/backend/node_modules/es-abstract/2023/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2023/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2023/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2023/OrdinaryObjectCreate.js +0 -56
- package/backend/node_modules/es-abstract/2023/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2023/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2023/ParseHexOctet.js +0 -40
- package/backend/node_modules/es-abstract/2023/PromiseResolve.js +0 -18
- package/backend/node_modules/es-abstract/2023/QuoteJSONString.js +0 -52
- package/backend/node_modules/es-abstract/2023/RawBytesToNumeric.js +0 -67
- package/backend/node_modules/es-abstract/2023/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2023/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2023/RegExpHasFlag.js +0 -38
- package/backend/node_modules/es-abstract/2023/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2023/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2023/SameValueNonNumber.js +0 -18
- package/backend/node_modules/es-abstract/2023/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2023/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2023/Set.js +0 -45
- package/backend/node_modules/es-abstract/2023/SetFunctionLength.js +0 -28
- package/backend/node_modules/es-abstract/2023/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2023/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2023/SetTypedArrayFromArrayLike.js +0 -68
- package/backend/node_modules/es-abstract/2023/SetTypedArrayFromTypedArray.js +0 -129
- package/backend/node_modules/es-abstract/2023/SetValueInBuffer.js +0 -92
- package/backend/node_modules/es-abstract/2023/SortIndexedProperties.js +0 -49
- package/backend/node_modules/es-abstract/2023/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2023/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2023/StringGetOwnProperty.js +0 -46
- package/backend/node_modules/es-abstract/2023/StringIndexOf.js +0 -36
- package/backend/node_modules/es-abstract/2023/StringPad.js +0 -41
- package/backend/node_modules/es-abstract/2023/StringToBigInt.js +0 -23
- package/backend/node_modules/es-abstract/2023/StringToCodePoints.js +0 -22
- package/backend/node_modules/es-abstract/2023/StringToNumber.js +0 -42
- package/backend/node_modules/es-abstract/2023/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2023/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2023/ThrowCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2023/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2023/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2023/TimeString.js +0 -26
- package/backend/node_modules/es-abstract/2023/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2023/TimeZoneString.js +0 -41
- package/backend/node_modules/es-abstract/2023/ToBigInt.js +0 -51
- package/backend/node_modules/es-abstract/2023/ToBigInt64.js +0 -25
- package/backend/node_modules/es-abstract/2023/ToBigUint64.js +0 -23
- package/backend/node_modules/es-abstract/2023/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2023/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2023/ToIndex.js +0 -24
- package/backend/node_modules/es-abstract/2023/ToInt16.js +0 -21
- package/backend/node_modules/es-abstract/2023/ToInt32.js +0 -23
- package/backend/node_modules/es-abstract/2023/ToInt8.js +0 -19
- package/backend/node_modules/es-abstract/2023/ToIntegerOrInfinity.js +0 -16
- package/backend/node_modules/es-abstract/2023/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2023/ToNumber.js +0 -26
- package/backend/node_modules/es-abstract/2023/ToNumeric.js +0 -20
- package/backend/node_modules/es-abstract/2023/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2023/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2023/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2023/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2023/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2023/ToUint16.js +0 -21
- package/backend/node_modules/es-abstract/2023/ToUint32.js +0 -21
- package/backend/node_modules/es-abstract/2023/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2023/ToUint8Clamp.js +0 -19
- package/backend/node_modules/es-abstract/2023/ToZeroPaddedDecimalString.js +0 -19
- package/backend/node_modules/es-abstract/2023/TrimString.js +0 -27
- package/backend/node_modules/es-abstract/2023/Type.js +0 -15
- package/backend/node_modules/es-abstract/2023/TypedArrayCreate.js +0 -47
- package/backend/node_modules/es-abstract/2023/TypedArrayCreateSameType.js +0 -35
- package/backend/node_modules/es-abstract/2023/TypedArrayElementSize.js +0 -23
- package/backend/node_modules/es-abstract/2023/TypedArrayElementType.js +0 -23
- package/backend/node_modules/es-abstract/2023/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2023/UTF16EncodeCodePoint.js +0 -25
- package/backend/node_modules/es-abstract/2023/UTF16SurrogatePairToCodePoint.js +0 -19
- package/backend/node_modules/es-abstract/2023/UnicodeEscape.js +0 -25
- package/backend/node_modules/es-abstract/2023/ValidateAndApplyPropertyDescriptor.js +0 -171
- package/backend/node_modules/es-abstract/2023/ValidateAtomicAccess.js +0 -40
- package/backend/node_modules/es-abstract/2023/ValidateIntegerTypedArray.js +0 -38
- package/backend/node_modules/es-abstract/2023/ValidateTypedArray.js +0 -26
- package/backend/node_modules/es-abstract/2023/WeakRefDeref.js +0 -23
- package/backend/node_modules/es-abstract/2023/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2023/WordCharacters.js +0 -47
- package/backend/node_modules/es-abstract/2023/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2023/abs.js +0 -9
- package/backend/node_modules/es-abstract/2023/clamp.js +0 -14
- package/backend/node_modules/es-abstract/2023/floor.js +0 -14
- package/backend/node_modules/es-abstract/2023/max.js +0 -5
- package/backend/node_modules/es-abstract/2023/min.js +0 -5
- package/backend/node_modules/es-abstract/2023/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2023/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2023/substring.js +0 -15
- package/backend/node_modules/es-abstract/2023/tables/typed-array-objects.js +0 -36
- package/backend/node_modules/es-abstract/2023/thisBigIntValue.js +0 -18
- package/backend/node_modules/es-abstract/2023/thisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2023/thisNumberValue.js +0 -16
- package/backend/node_modules/es-abstract/2023/thisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2023/thisSymbolValue.js +0 -20
- package/backend/node_modules/es-abstract/2023/thisTimeValue.js +0 -9
- package/backend/node_modules/es-abstract/2023/truncate.js +0 -15
- package/backend/node_modules/es-abstract/2024/AddEntriesFromIterable.js +0 -44
- package/backend/node_modules/es-abstract/2024/AddToKeptObjects.js +0 -18
- package/backend/node_modules/es-abstract/2024/AddValueToKeyedGroup.js +0 -45
- package/backend/node_modules/es-abstract/2024/AdvanceStringIndex.js +0 -30
- package/backend/node_modules/es-abstract/2024/AllCharacters.js +0 -29
- package/backend/node_modules/es-abstract/2024/ApplyStringOrNumericBinaryOperator.js +0 -77
- package/backend/node_modules/es-abstract/2024/ArrayBufferByteLength.js +0 -41
- package/backend/node_modules/es-abstract/2024/ArrayBufferCopyAndDetach.js +0 -101
- package/backend/node_modules/es-abstract/2024/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2024/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2024/ArraySpeciesCreate.js +0 -48
- package/backend/node_modules/es-abstract/2024/AsyncFromSyncIteratorContinuation.js +0 -45
- package/backend/node_modules/es-abstract/2024/AsyncIteratorClose.js +0 -70
- package/backend/node_modules/es-abstract/2024/BigInt/add.js +0 -14
- package/backend/node_modules/es-abstract/2024/BigInt/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2024/BigInt/bitwiseNOT.js +0 -15
- package/backend/node_modules/es-abstract/2024/BigInt/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2024/BigInt/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2024/BigInt/divide.js +0 -20
- package/backend/node_modules/es-abstract/2024/BigInt/equal.js +0 -13
- package/backend/node_modules/es-abstract/2024/BigInt/exponentiate.js +0 -29
- package/backend/node_modules/es-abstract/2024/BigInt/index.js +0 -39
- package/backend/node_modules/es-abstract/2024/BigInt/leftShift.js +0 -14
- package/backend/node_modules/es-abstract/2024/BigInt/lessThan.js +0 -14
- package/backend/node_modules/es-abstract/2024/BigInt/multiply.js +0 -14
- package/backend/node_modules/es-abstract/2024/BigInt/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2024/BigInt/signedRightShift.js +0 -15
- package/backend/node_modules/es-abstract/2024/BigInt/subtract.js +0 -14
- package/backend/node_modules/es-abstract/2024/BigInt/toString.js +0 -26
- package/backend/node_modules/es-abstract/2024/BigInt/unaryMinus.js +0 -22
- package/backend/node_modules/es-abstract/2024/BigInt/unsignedRightShift.js +0 -13
- package/backend/node_modules/es-abstract/2024/BigIntBitwiseOp.js +0 -63
- package/backend/node_modules/es-abstract/2024/BinaryAnd.js +0 -12
- package/backend/node_modules/es-abstract/2024/BinaryOr.js +0 -12
- package/backend/node_modules/es-abstract/2024/BinaryXor.js +0 -12
- package/backend/node_modules/es-abstract/2024/ByteListBitwiseOp.js +0 -39
- package/backend/node_modules/es-abstract/2024/ByteListEqual.js +0 -31
- package/backend/node_modules/es-abstract/2024/Call.js +0 -20
- package/backend/node_modules/es-abstract/2024/CanBeHeldWeakly.js +0 -17
- package/backend/node_modules/es-abstract/2024/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2024/Canonicalize.js +0 -52
- package/backend/node_modules/es-abstract/2024/CharacterComplement.js +0 -34
- package/backend/node_modules/es-abstract/2024/CharacterRange.js +0 -53
- package/backend/node_modules/es-abstract/2024/ClearKeptObjects.js +0 -12
- package/backend/node_modules/es-abstract/2024/CloneArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2024/CodePointAt.js +0 -55
- package/backend/node_modules/es-abstract/2024/CodePointsToString.js +0 -25
- package/backend/node_modules/es-abstract/2024/CompareArrayElements.js +0 -50
- package/backend/node_modules/es-abstract/2024/CompareTypedArrayElements.js +0 -60
- package/backend/node_modules/es-abstract/2024/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2024/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2024/CopyDataProperties.js +0 -69
- package/backend/node_modules/es-abstract/2024/CreateAsyncFromSyncIterator.js +0 -137
- package/backend/node_modules/es-abstract/2024/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2024/CreateDataPropertyOrThrow.js +0 -23
- package/backend/node_modules/es-abstract/2024/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2024/CreateIterResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2024/CreateListFromArrayLike.js +0 -44
- package/backend/node_modules/es-abstract/2024/CreateNonEnumerableDataPropertyOrThrow.js +0 -28
- package/backend/node_modules/es-abstract/2024/CreateRegExpStringIterator.js +0 -101
- package/backend/node_modules/es-abstract/2024/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2024/DateString.js +0 -27
- package/backend/node_modules/es-abstract/2024/Day.js +0 -11
- package/backend/node_modules/es-abstract/2024/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2024/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2024/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2024/DefineMethodProperty.js +0 -42
- package/backend/node_modules/es-abstract/2024/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2024/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2024/DetachArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2024/EnumerableOwnProperties.js +0 -36
- package/backend/node_modules/es-abstract/2024/FindViaPredicate.js +0 -43
- package/backend/node_modules/es-abstract/2024/FlattenIntoArray.js +0 -55
- package/backend/node_modules/es-abstract/2024/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2024/Get.js +0 -24
- package/backend/node_modules/es-abstract/2024/GetArrayBufferMaxByteLengthOption.js +0 -22
- package/backend/node_modules/es-abstract/2024/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2024/GetIterator.js +0 -53
- package/backend/node_modules/es-abstract/2024/GetIteratorFromMethod.js +0 -28
- package/backend/node_modules/es-abstract/2024/GetMatchIndexPair.js +0 -24
- package/backend/node_modules/es-abstract/2024/GetMatchString.js +0 -26
- package/backend/node_modules/es-abstract/2024/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2024/GetNamedTimeZoneEpochNanoseconds.js +0 -72
- package/backend/node_modules/es-abstract/2024/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2024/GetPromiseResolve.js +0 -20
- package/backend/node_modules/es-abstract/2024/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2024/GetStringIndex.js +0 -27
- package/backend/node_modules/es-abstract/2024/GetSubstitution.js +0 -148
- package/backend/node_modules/es-abstract/2024/GetUTCEpochNanoseconds.js +0 -68
- package/backend/node_modules/es-abstract/2024/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2024/GetValueFromBuffer.js +0 -95
- package/backend/node_modules/es-abstract/2024/GetViewByteLength.js +0 -47
- package/backend/node_modules/es-abstract/2024/GroupBy.js +0 -75
- package/backend/node_modules/es-abstract/2024/HasEitherUnicodeFlag.js +0 -18
- package/backend/node_modules/es-abstract/2024/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2024/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2024/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2024/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2024/InstallErrorCause.js +0 -21
- package/backend/node_modules/es-abstract/2024/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2024/InternalizeJSONProperty.js +0 -68
- package/backend/node_modules/es-abstract/2024/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2024/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2024/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2024/IsArrayBufferViewOutOfBounds.js +0 -30
- package/backend/node_modules/es-abstract/2024/IsBigIntElementType.js +0 -7
- package/backend/node_modules/es-abstract/2024/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2024/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2024/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2024/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2024/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2024/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2024/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2024/IsFixedLengthArrayBuffer.js +0 -29
- package/backend/node_modules/es-abstract/2024/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2024/IsIntegralNumber.js +0 -14
- package/backend/node_modules/es-abstract/2024/IsLessThan.js +0 -97
- package/backend/node_modules/es-abstract/2024/IsLooselyEqual.js +0 -58
- package/backend/node_modules/es-abstract/2024/IsNoTearConfiguration.js +0 -16
- package/backend/node_modules/es-abstract/2024/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2024/IsPropertyKey.js +0 -9
- package/backend/node_modules/es-abstract/2024/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2024/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2024/IsStrictlyEqual.js +0 -14
- package/backend/node_modules/es-abstract/2024/IsStringWellFormedUnicode.js +0 -23
- package/backend/node_modules/es-abstract/2024/IsTimeZoneOffsetString.js +0 -20
- package/backend/node_modules/es-abstract/2024/IsTypedArrayOutOfBounds.js +0 -57
- package/backend/node_modules/es-abstract/2024/IsUnclampedIntegerElementType.js +0 -12
- package/backend/node_modules/es-abstract/2024/IsUnsignedElementType.js +0 -11
- package/backend/node_modules/es-abstract/2024/IsValidIntegerIndex.js +0 -43
- package/backend/node_modules/es-abstract/2024/IsViewOutOfBounds.js +0 -48
- package/backend/node_modules/es-abstract/2024/IsWordChar.js +0 -42
- package/backend/node_modules/es-abstract/2024/IteratorClose.js +0 -65
- package/backend/node_modules/es-abstract/2024/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2024/IteratorNext.js +0 -28
- package/backend/node_modules/es-abstract/2024/IteratorStep.js +0 -21
- package/backend/node_modules/es-abstract/2024/IteratorStepValue.js +0 -49
- package/backend/node_modules/es-abstract/2024/IteratorToList.js +0 -27
- package/backend/node_modules/es-abstract/2024/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2024/KeyForSymbol.js +0 -16
- package/backend/node_modules/es-abstract/2024/LengthOfArrayLike.js +0 -18
- package/backend/node_modules/es-abstract/2024/MakeDataViewWithBufferWitnessRecord.js +0 -26
- package/backend/node_modules/es-abstract/2024/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2024/MakeDay.js +0 -36
- package/backend/node_modules/es-abstract/2024/MakeFullYear.js +0 -26
- package/backend/node_modules/es-abstract/2024/MakeMatchIndicesIndexPairArray.js +0 -66
- package/backend/node_modules/es-abstract/2024/MakeTime.js +0 -23
- package/backend/node_modules/es-abstract/2024/MakeTypedArrayWithBufferWitnessRecord.js +0 -26
- package/backend/node_modules/es-abstract/2024/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2024/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2024/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2024/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2024/Number/add.js +0 -31
- package/backend/node_modules/es-abstract/2024/Number/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2024/Number/bitwiseNOT.js +0 -16
- package/backend/node_modules/es-abstract/2024/Number/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2024/Number/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2024/Number/divide.js +0 -18
- package/backend/node_modules/es-abstract/2024/Number/equal.js +0 -18
- package/backend/node_modules/es-abstract/2024/Number/exponentiate.js +0 -74
- package/backend/node_modules/es-abstract/2024/Number/index.js +0 -43
- package/backend/node_modules/es-abstract/2024/Number/leftShift.js +0 -22
- package/backend/node_modules/es-abstract/2024/Number/lessThan.js +0 -22
- package/backend/node_modules/es-abstract/2024/Number/multiply.js +0 -29
- package/backend/node_modules/es-abstract/2024/Number/remainder.js +0 -38
- package/backend/node_modules/es-abstract/2024/Number/sameValue.js +0 -18
- package/backend/node_modules/es-abstract/2024/Number/sameValueZero.js +0 -20
- package/backend/node_modules/es-abstract/2024/Number/signedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2024/Number/subtract.js +0 -15
- package/backend/node_modules/es-abstract/2024/Number/toString.js +0 -20
- package/backend/node_modules/es-abstract/2024/Number/unaryMinus.js +0 -17
- package/backend/node_modules/es-abstract/2024/Number/unsignedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2024/NumberBitwiseOp.js +0 -26
- package/backend/node_modules/es-abstract/2024/NumberToBigInt.js +0 -25
- package/backend/node_modules/es-abstract/2024/NumericToRawBytes.js +0 -62
- package/backend/node_modules/es-abstract/2024/ObjectDefineProperties.js +0 -33
- package/backend/node_modules/es-abstract/2024/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2024/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2024/OrdinaryGetOwnProperty.js +0 -41
- package/backend/node_modules/es-abstract/2024/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2024/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2024/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2024/OrdinaryObjectCreate.js +0 -56
- package/backend/node_modules/es-abstract/2024/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2024/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2024/ParseHexOctet.js +0 -40
- package/backend/node_modules/es-abstract/2024/PromiseResolve.js +0 -18
- package/backend/node_modules/es-abstract/2024/QuoteJSONString.js +0 -52
- package/backend/node_modules/es-abstract/2024/RawBytesToNumeric.js +0 -67
- package/backend/node_modules/es-abstract/2024/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2024/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2024/RegExpHasFlag.js +0 -38
- package/backend/node_modules/es-abstract/2024/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2024/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2024/SameValueNonNumber.js +0 -18
- package/backend/node_modules/es-abstract/2024/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2024/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2024/Set.js +0 -45
- package/backend/node_modules/es-abstract/2024/SetFunctionLength.js +0 -28
- package/backend/node_modules/es-abstract/2024/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2024/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2024/SetTypedArrayFromArrayLike.js +0 -64
- package/backend/node_modules/es-abstract/2024/SetTypedArrayFromTypedArray.js +0 -133
- package/backend/node_modules/es-abstract/2024/SetValueInBuffer.js +0 -92
- package/backend/node_modules/es-abstract/2024/SortIndexedProperties.js +0 -49
- package/backend/node_modules/es-abstract/2024/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2024/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2024/StringGetOwnProperty.js +0 -46
- package/backend/node_modules/es-abstract/2024/StringIndexOf.js +0 -36
- package/backend/node_modules/es-abstract/2024/StringPad.js +0 -43
- package/backend/node_modules/es-abstract/2024/StringPaddingBuiltinsImpl.js +0 -27
- package/backend/node_modules/es-abstract/2024/StringToBigInt.js +0 -23
- package/backend/node_modules/es-abstract/2024/StringToCodePoints.js +0 -22
- package/backend/node_modules/es-abstract/2024/StringToNumber.js +0 -42
- package/backend/node_modules/es-abstract/2024/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2024/SystemTimeZoneIdentifier.js +0 -18
- package/backend/node_modules/es-abstract/2024/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2024/ThisBigIntValue.js +0 -20
- package/backend/node_modules/es-abstract/2024/ThisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2024/ThisNumberValue.js +0 -15
- package/backend/node_modules/es-abstract/2024/ThisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2024/ThisSymbolValue.js +0 -20
- package/backend/node_modules/es-abstract/2024/ThrowCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2024/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2024/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2024/TimeString.js +0 -26
- package/backend/node_modules/es-abstract/2024/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2024/TimeZoneString.js +0 -41
- package/backend/node_modules/es-abstract/2024/ToBigInt.js +0 -51
- package/backend/node_modules/es-abstract/2024/ToBigInt64.js +0 -25
- package/backend/node_modules/es-abstract/2024/ToBigUint64.js +0 -23
- package/backend/node_modules/es-abstract/2024/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2024/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2024/ToIndex.js +0 -20
- package/backend/node_modules/es-abstract/2024/ToInt16.js +0 -21
- package/backend/node_modules/es-abstract/2024/ToInt32.js +0 -23
- package/backend/node_modules/es-abstract/2024/ToInt8.js +0 -19
- package/backend/node_modules/es-abstract/2024/ToIntegerOrInfinity.js +0 -16
- package/backend/node_modules/es-abstract/2024/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2024/ToNumber.js +0 -26
- package/backend/node_modules/es-abstract/2024/ToNumeric.js +0 -20
- package/backend/node_modules/es-abstract/2024/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2024/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2024/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2024/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2024/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2024/ToUint16.js +0 -21
- package/backend/node_modules/es-abstract/2024/ToUint32.js +0 -21
- package/backend/node_modules/es-abstract/2024/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2024/ToUint8Clamp.js +0 -26
- package/backend/node_modules/es-abstract/2024/ToZeroPaddedDecimalString.js +0 -19
- package/backend/node_modules/es-abstract/2024/TrimString.js +0 -27
- package/backend/node_modules/es-abstract/2024/Type.js +0 -15
- package/backend/node_modules/es-abstract/2024/TypedArrayByteLength.js +0 -43
- package/backend/node_modules/es-abstract/2024/TypedArrayCreateFromConstructor.js +0 -52
- package/backend/node_modules/es-abstract/2024/TypedArrayCreateSameType.js +0 -35
- package/backend/node_modules/es-abstract/2024/TypedArrayElementSize.js +0 -23
- package/backend/node_modules/es-abstract/2024/TypedArrayElementType.js +0 -23
- package/backend/node_modules/es-abstract/2024/TypedArrayGetElement.js +0 -37
- package/backend/node_modules/es-abstract/2024/TypedArrayLength.js +0 -51
- package/backend/node_modules/es-abstract/2024/TypedArraySetElement.js +0 -42
- package/backend/node_modules/es-abstract/2024/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2024/UTF16EncodeCodePoint.js +0 -25
- package/backend/node_modules/es-abstract/2024/UTF16SurrogatePairToCodePoint.js +0 -19
- package/backend/node_modules/es-abstract/2024/UnicodeEscape.js +0 -25
- package/backend/node_modules/es-abstract/2024/ValidateAndApplyPropertyDescriptor.js +0 -171
- package/backend/node_modules/es-abstract/2024/ValidateAtomicAccess.js +0 -43
- package/backend/node_modules/es-abstract/2024/ValidateAtomicAccessOnIntegerTypedArray.js +0 -19
- package/backend/node_modules/es-abstract/2024/ValidateIntegerTypedArray.js +0 -31
- package/backend/node_modules/es-abstract/2024/ValidateTypedArray.js +0 -32
- package/backend/node_modules/es-abstract/2024/WeakRefDeref.js +0 -23
- package/backend/node_modules/es-abstract/2024/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2024/WordCharacters.js +0 -47
- package/backend/node_modules/es-abstract/2024/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2024/abs.js +0 -9
- package/backend/node_modules/es-abstract/2024/clamp.js +0 -14
- package/backend/node_modules/es-abstract/2024/floor.js +0 -14
- package/backend/node_modules/es-abstract/2024/max.js +0 -5
- package/backend/node_modules/es-abstract/2024/min.js +0 -5
- package/backend/node_modules/es-abstract/2024/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2024/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2024/substring.js +0 -15
- package/backend/node_modules/es-abstract/2024/tables/typed-array-objects.js +0 -36
- package/backend/node_modules/es-abstract/2024/truncate.js +0 -15
- package/backend/node_modules/es-abstract/2025/AddEntriesFromIterable.js +0 -44
- package/backend/node_modules/es-abstract/2025/AddToKeptObjects.js +0 -18
- package/backend/node_modules/es-abstract/2025/AddValueToKeyedGroup.js +0 -45
- package/backend/node_modules/es-abstract/2025/AdvanceStringIndex.js +0 -30
- package/backend/node_modules/es-abstract/2025/AllCharacters.js +0 -29
- package/backend/node_modules/es-abstract/2025/ApplyStringOrNumericBinaryOperator.js +0 -77
- package/backend/node_modules/es-abstract/2025/ArrayBufferByteLength.js +0 -41
- package/backend/node_modules/es-abstract/2025/ArrayBufferCopyAndDetach.js +0 -101
- package/backend/node_modules/es-abstract/2025/ArrayCreate.js +0 -42
- package/backend/node_modules/es-abstract/2025/ArraySetLength.js +0 -77
- package/backend/node_modules/es-abstract/2025/ArraySpeciesCreate.js +0 -48
- package/backend/node_modules/es-abstract/2025/AsyncFromSyncIteratorContinuation.js +0 -45
- package/backend/node_modules/es-abstract/2025/AsyncIteratorClose.js +0 -70
- package/backend/node_modules/es-abstract/2025/BigInt/add.js +0 -14
- package/backend/node_modules/es-abstract/2025/BigInt/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2025/BigInt/bitwiseNOT.js +0 -15
- package/backend/node_modules/es-abstract/2025/BigInt/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2025/BigInt/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2025/BigInt/divide.js +0 -20
- package/backend/node_modules/es-abstract/2025/BigInt/equal.js +0 -13
- package/backend/node_modules/es-abstract/2025/BigInt/exponentiate.js +0 -29
- package/backend/node_modules/es-abstract/2025/BigInt/index.js +0 -39
- package/backend/node_modules/es-abstract/2025/BigInt/leftShift.js +0 -14
- package/backend/node_modules/es-abstract/2025/BigInt/lessThan.js +0 -14
- package/backend/node_modules/es-abstract/2025/BigInt/multiply.js +0 -14
- package/backend/node_modules/es-abstract/2025/BigInt/remainder.js +0 -28
- package/backend/node_modules/es-abstract/2025/BigInt/signedRightShift.js +0 -15
- package/backend/node_modules/es-abstract/2025/BigInt/subtract.js +0 -14
- package/backend/node_modules/es-abstract/2025/BigInt/toString.js +0 -26
- package/backend/node_modules/es-abstract/2025/BigInt/unaryMinus.js +0 -22
- package/backend/node_modules/es-abstract/2025/BigInt/unsignedRightShift.js +0 -13
- package/backend/node_modules/es-abstract/2025/BigIntBitwiseOp.js +0 -63
- package/backend/node_modules/es-abstract/2025/BinaryAnd.js +0 -12
- package/backend/node_modules/es-abstract/2025/BinaryOr.js +0 -12
- package/backend/node_modules/es-abstract/2025/BinaryXor.js +0 -12
- package/backend/node_modules/es-abstract/2025/ByteListBitwiseOp.js +0 -39
- package/backend/node_modules/es-abstract/2025/ByteListEqual.js +0 -31
- package/backend/node_modules/es-abstract/2025/Call.js +0 -20
- package/backend/node_modules/es-abstract/2025/CanBeHeldWeakly.js +0 -17
- package/backend/node_modules/es-abstract/2025/CanonicalNumericIndexString.js +0 -19
- package/backend/node_modules/es-abstract/2025/Canonicalize.js +0 -52
- package/backend/node_modules/es-abstract/2025/CanonicalizeKeyedCollectionKey.js +0 -7
- package/backend/node_modules/es-abstract/2025/CharacterComplement.js +0 -34
- package/backend/node_modules/es-abstract/2025/CharacterRange.js +0 -47
- package/backend/node_modules/es-abstract/2025/ClearKeptObjects.js +0 -12
- package/backend/node_modules/es-abstract/2025/CloneArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2025/CodePointAt.js +0 -55
- package/backend/node_modules/es-abstract/2025/CodePointsToString.js +0 -25
- package/backend/node_modules/es-abstract/2025/CompareArrayElements.js +0 -50
- package/backend/node_modules/es-abstract/2025/CompareTypedArrayElements.js +0 -60
- package/backend/node_modules/es-abstract/2025/CompletePropertyDescriptor.js +0 -43
- package/backend/node_modules/es-abstract/2025/CompletionRecord.js +0 -48
- package/backend/node_modules/es-abstract/2025/CopyDataProperties.js +0 -69
- package/backend/node_modules/es-abstract/2025/CreateAsyncFromSyncIterator.js +0 -137
- package/backend/node_modules/es-abstract/2025/CreateDataProperty.js +0 -25
- package/backend/node_modules/es-abstract/2025/CreateDataPropertyOrThrow.js +0 -23
- package/backend/node_modules/es-abstract/2025/CreateHTML.js +0 -27
- package/backend/node_modules/es-abstract/2025/CreateIteratorFromClosure.js +0 -51
- package/backend/node_modules/es-abstract/2025/CreateIteratorResultObject.js +0 -15
- package/backend/node_modules/es-abstract/2025/CreateListFromArrayLike.js +0 -40
- package/backend/node_modules/es-abstract/2025/CreateNonEnumerableDataPropertyOrThrow.js +0 -28
- package/backend/node_modules/es-abstract/2025/CreateRegExpStringIterator.js +0 -101
- package/backend/node_modules/es-abstract/2025/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/2025/DateString.js +0 -27
- package/backend/node_modules/es-abstract/2025/Day.js +0 -11
- package/backend/node_modules/es-abstract/2025/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/2025/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/2025/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/2025/DefineMethodProperty.js +0 -42
- package/backend/node_modules/es-abstract/2025/DefinePropertyOrThrow.js +0 -39
- package/backend/node_modules/es-abstract/2025/DeletePropertyOrThrow.js +0 -25
- package/backend/node_modules/es-abstract/2025/DetachArrayBuffer.js +0 -46
- package/backend/node_modules/es-abstract/2025/EncodeForRegExpEscape.js +0 -74
- package/backend/node_modules/es-abstract/2025/EnumerableOwnProperties.js +0 -36
- package/backend/node_modules/es-abstract/2025/FindViaPredicate.js +0 -43
- package/backend/node_modules/es-abstract/2025/FlattenIntoArray.js +0 -55
- package/backend/node_modules/es-abstract/2025/FromPropertyDescriptor.js +0 -16
- package/backend/node_modules/es-abstract/2025/GeneratorResume.js +0 -29
- package/backend/node_modules/es-abstract/2025/GeneratorResumeAbrupt.js +0 -55
- package/backend/node_modules/es-abstract/2025/GeneratorStart.js +0 -46
- package/backend/node_modules/es-abstract/2025/GeneratorValidate.js +0 -24
- package/backend/node_modules/es-abstract/2025/Get.js +0 -24
- package/backend/node_modules/es-abstract/2025/GetArrayBufferMaxByteLengthOption.js +0 -22
- package/backend/node_modules/es-abstract/2025/GetGlobalObject.js +0 -9
- package/backend/node_modules/es-abstract/2025/GetIterator.js +0 -53
- package/backend/node_modules/es-abstract/2025/GetIteratorDirect.js +0 -24
- package/backend/node_modules/es-abstract/2025/GetIteratorFlattenable.js +0 -48
- package/backend/node_modules/es-abstract/2025/GetIteratorFromMethod.js +0 -28
- package/backend/node_modules/es-abstract/2025/GetMatchIndexPair.js +0 -24
- package/backend/node_modules/es-abstract/2025/GetMatchString.js +0 -26
- package/backend/node_modules/es-abstract/2025/GetMethod.js +0 -34
- package/backend/node_modules/es-abstract/2025/GetNamedTimeZoneEpochNanoseconds.js +0 -72
- package/backend/node_modules/es-abstract/2025/GetOwnPropertyKeys.js +0 -30
- package/backend/node_modules/es-abstract/2025/GetPromiseResolve.js +0 -20
- package/backend/node_modules/es-abstract/2025/GetPrototypeFromConstructor.js +0 -33
- package/backend/node_modules/es-abstract/2025/GetSetRecord.js +0 -64
- package/backend/node_modules/es-abstract/2025/GetStringIndex.js +0 -27
- package/backend/node_modules/es-abstract/2025/GetSubstitution.js +0 -148
- package/backend/node_modules/es-abstract/2025/GetUTCEpochNanoseconds.js +0 -68
- package/backend/node_modules/es-abstract/2025/GetV.js +0 -23
- package/backend/node_modules/es-abstract/2025/GetValueFromBuffer.js +0 -95
- package/backend/node_modules/es-abstract/2025/GetViewByteLength.js +0 -47
- package/backend/node_modules/es-abstract/2025/GroupBy.js +0 -75
- package/backend/node_modules/es-abstract/2025/HasEitherUnicodeFlag.js +0 -18
- package/backend/node_modules/es-abstract/2025/HasOwnProperty.js +0 -20
- package/backend/node_modules/es-abstract/2025/HasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2025/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2025/IfAbruptCloseIterator.js +0 -19
- package/backend/node_modules/es-abstract/2025/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/2025/InstallErrorCause.js +0 -21
- package/backend/node_modules/es-abstract/2025/InstanceofOperator.js +0 -30
- package/backend/node_modules/es-abstract/2025/InternalizeJSONProperty.js +0 -68
- package/backend/node_modules/es-abstract/2025/Invoke.js +0 -22
- package/backend/node_modules/es-abstract/2025/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2025/IsArray.js +0 -4
- package/backend/node_modules/es-abstract/2025/IsArrayBufferViewOutOfBounds.js +0 -30
- package/backend/node_modules/es-abstract/2025/IsBigIntElementType.js +0 -7
- package/backend/node_modules/es-abstract/2025/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/2025/IsCompatiblePropertyDescriptor.js +0 -9
- package/backend/node_modules/es-abstract/2025/IsConcatSpreadable.js +0 -26
- package/backend/node_modules/es-abstract/2025/IsConstructor.js +0 -40
- package/backend/node_modules/es-abstract/2025/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/2025/IsDetachedBuffer.js +0 -28
- package/backend/node_modules/es-abstract/2025/IsExtensible.js +0 -18
- package/backend/node_modules/es-abstract/2025/IsFixedLengthArrayBuffer.js +0 -29
- package/backend/node_modules/es-abstract/2025/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/2025/IsLessThan.js +0 -97
- package/backend/node_modules/es-abstract/2025/IsLooselyEqual.js +0 -58
- package/backend/node_modules/es-abstract/2025/IsNoTearConfiguration.js +0 -16
- package/backend/node_modules/es-abstract/2025/IsPromise.js +0 -24
- package/backend/node_modules/es-abstract/2025/IsRegExp.js +0 -25
- package/backend/node_modules/es-abstract/2025/IsSharedArrayBuffer.js +0 -16
- package/backend/node_modules/es-abstract/2025/IsStrictlyEqual.js +0 -14
- package/backend/node_modules/es-abstract/2025/IsStringWellFormedUnicode.js +0 -23
- package/backend/node_modules/es-abstract/2025/IsTimeZoneOffsetString.js +0 -20
- package/backend/node_modules/es-abstract/2025/IsTypedArrayFixedLength.js +0 -34
- package/backend/node_modules/es-abstract/2025/IsTypedArrayOutOfBounds.js +0 -57
- package/backend/node_modules/es-abstract/2025/IsUnclampedIntegerElementType.js +0 -12
- package/backend/node_modules/es-abstract/2025/IsUnsignedElementType.js +0 -11
- package/backend/node_modules/es-abstract/2025/IsValidIntegerIndex.js +0 -43
- package/backend/node_modules/es-abstract/2025/IsViewOutOfBounds.js +0 -48
- package/backend/node_modules/es-abstract/2025/IsWordChar.js +0 -42
- package/backend/node_modules/es-abstract/2025/IteratorClose.js +0 -65
- package/backend/node_modules/es-abstract/2025/IteratorComplete.js +0 -16
- package/backend/node_modules/es-abstract/2025/IteratorNext.js +0 -36
- package/backend/node_modules/es-abstract/2025/IteratorStep.js +0 -35
- package/backend/node_modules/es-abstract/2025/IteratorStepValue.js +0 -32
- package/backend/node_modules/es-abstract/2025/IteratorToList.js +0 -27
- package/backend/node_modules/es-abstract/2025/IteratorValue.js +0 -16
- package/backend/node_modules/es-abstract/2025/KeyForSymbol.js +0 -16
- package/backend/node_modules/es-abstract/2025/LengthOfArrayLike.js +0 -18
- package/backend/node_modules/es-abstract/2025/MakeDataViewWithBufferWitnessRecord.js +0 -26
- package/backend/node_modules/es-abstract/2025/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/2025/MakeDay.js +0 -36
- package/backend/node_modules/es-abstract/2025/MakeFullYear.js +0 -26
- package/backend/node_modules/es-abstract/2025/MakeMatchIndicesIndexPairArray.js +0 -66
- package/backend/node_modules/es-abstract/2025/MakeTime.js +0 -23
- package/backend/node_modules/es-abstract/2025/MakeTypedArrayWithBufferWitnessRecord.js +0 -26
- package/backend/node_modules/es-abstract/2025/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2025/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/2025/NewPromiseCapability.js +0 -34
- package/backend/node_modules/es-abstract/2025/NormalCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2025/Number/add.js +0 -31
- package/backend/node_modules/es-abstract/2025/Number/bitwiseAND.js +0 -14
- package/backend/node_modules/es-abstract/2025/Number/bitwiseNOT.js +0 -16
- package/backend/node_modules/es-abstract/2025/Number/bitwiseOR.js +0 -14
- package/backend/node_modules/es-abstract/2025/Number/bitwiseXOR.js +0 -14
- package/backend/node_modules/es-abstract/2025/Number/divide.js +0 -18
- package/backend/node_modules/es-abstract/2025/Number/equal.js +0 -18
- package/backend/node_modules/es-abstract/2025/Number/exponentiate.js +0 -74
- package/backend/node_modules/es-abstract/2025/Number/index.js +0 -43
- package/backend/node_modules/es-abstract/2025/Number/leftShift.js +0 -22
- package/backend/node_modules/es-abstract/2025/Number/lessThan.js +0 -22
- package/backend/node_modules/es-abstract/2025/Number/multiply.js +0 -29
- package/backend/node_modules/es-abstract/2025/Number/remainder.js +0 -38
- package/backend/node_modules/es-abstract/2025/Number/sameValue.js +0 -18
- package/backend/node_modules/es-abstract/2025/Number/sameValueZero.js +0 -20
- package/backend/node_modules/es-abstract/2025/Number/signedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2025/Number/subtract.js +0 -15
- package/backend/node_modules/es-abstract/2025/Number/toString.js +0 -20
- package/backend/node_modules/es-abstract/2025/Number/unaryMinus.js +0 -17
- package/backend/node_modules/es-abstract/2025/Number/unsignedRightShift.js +0 -22
- package/backend/node_modules/es-abstract/2025/NumberBitwiseOp.js +0 -26
- package/backend/node_modules/es-abstract/2025/NumberToBigInt.js +0 -25
- package/backend/node_modules/es-abstract/2025/NumericToRawBytes.js +0 -65
- package/backend/node_modules/es-abstract/2025/ObjectDefineProperties.js +0 -33
- package/backend/node_modules/es-abstract/2025/OrdinaryCreateFromConstructor.js +0 -20
- package/backend/node_modules/es-abstract/2025/OrdinaryDefineOwnProperty.js +0 -54
- package/backend/node_modules/es-abstract/2025/OrdinaryGetOwnProperty.js +0 -41
- package/backend/node_modules/es-abstract/2025/OrdinaryGetPrototypeOf.js +0 -18
- package/backend/node_modules/es-abstract/2025/OrdinaryHasInstance.js +0 -23
- package/backend/node_modules/es-abstract/2025/OrdinaryHasProperty.js +0 -18
- package/backend/node_modules/es-abstract/2025/OrdinaryObjectCreate.js +0 -56
- package/backend/node_modules/es-abstract/2025/OrdinarySetPrototypeOf.js +0 -50
- package/backend/node_modules/es-abstract/2025/OrdinaryToPrimitive.js +0 -36
- package/backend/node_modules/es-abstract/2025/ParseHexOctet.js +0 -40
- package/backend/node_modules/es-abstract/2025/PromiseResolve.js +0 -18
- package/backend/node_modules/es-abstract/2025/QuoteJSONString.js +0 -52
- package/backend/node_modules/es-abstract/2025/RawBytesToNumeric.js +0 -72
- package/backend/node_modules/es-abstract/2025/RegExpCreate.js +0 -21
- package/backend/node_modules/es-abstract/2025/RegExpExec.js +0 -29
- package/backend/node_modules/es-abstract/2025/RegExpHasFlag.js +0 -38
- package/backend/node_modules/es-abstract/2025/RequireObjectCoercible.js +0 -3
- package/backend/node_modules/es-abstract/2025/ReturnCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2025/SameType.js +0 -16
- package/backend/node_modules/es-abstract/2025/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/2025/SameValueNonNumber.js +0 -18
- package/backend/node_modules/es-abstract/2025/SameValueZero.js +0 -9
- package/backend/node_modules/es-abstract/2025/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/2025/Set.js +0 -45
- package/backend/node_modules/es-abstract/2025/SetDataHas.js +0 -26
- package/backend/node_modules/es-abstract/2025/SetDataIndex.js +0 -32
- package/backend/node_modules/es-abstract/2025/SetDataSize.js +0 -30
- package/backend/node_modules/es-abstract/2025/SetFunctionLength.js +0 -28
- package/backend/node_modules/es-abstract/2025/SetFunctionName.js +0 -40
- package/backend/node_modules/es-abstract/2025/SetIntegrityLevel.js +0 -57
- package/backend/node_modules/es-abstract/2025/SetTypedArrayFromArrayLike.js +0 -64
- package/backend/node_modules/es-abstract/2025/SetTypedArrayFromTypedArray.js +0 -133
- package/backend/node_modules/es-abstract/2025/SetValueInBuffer.js +0 -92
- package/backend/node_modules/es-abstract/2025/SetterThatIgnoresPrototypeProperties.js +0 -38
- package/backend/node_modules/es-abstract/2025/SortIndexedProperties.js +0 -49
- package/backend/node_modules/es-abstract/2025/SpeciesConstructor.js +0 -32
- package/backend/node_modules/es-abstract/2025/StringCreate.js +0 -38
- package/backend/node_modules/es-abstract/2025/StringGetOwnProperty.js +0 -46
- package/backend/node_modules/es-abstract/2025/StringIndexOf.js +0 -36
- package/backend/node_modules/es-abstract/2025/StringLastIndexOf.js +0 -38
- package/backend/node_modules/es-abstract/2025/StringPad.js +0 -43
- package/backend/node_modules/es-abstract/2025/StringPaddingBuiltinsImpl.js +0 -27
- package/backend/node_modules/es-abstract/2025/StringToBigInt.js +0 -23
- package/backend/node_modules/es-abstract/2025/StringToCodePoints.js +0 -22
- package/backend/node_modules/es-abstract/2025/StringToNumber.js +0 -42
- package/backend/node_modules/es-abstract/2025/SymbolDescriptiveString.js +0 -16
- package/backend/node_modules/es-abstract/2025/SystemTimeZoneIdentifier.js +0 -18
- package/backend/node_modules/es-abstract/2025/TestIntegrityLevel.js +0 -40
- package/backend/node_modules/es-abstract/2025/ThisBigIntValue.js +0 -20
- package/backend/node_modules/es-abstract/2025/ThisBooleanValue.js +0 -13
- package/backend/node_modules/es-abstract/2025/ThisNumberValue.js +0 -15
- package/backend/node_modules/es-abstract/2025/ThisStringValue.js +0 -13
- package/backend/node_modules/es-abstract/2025/ThisSymbolValue.js +0 -20
- package/backend/node_modules/es-abstract/2025/ThrowCompletion.js +0 -9
- package/backend/node_modules/es-abstract/2025/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/2025/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/2025/TimeString.js +0 -26
- package/backend/node_modules/es-abstract/2025/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/2025/TimeZoneString.js +0 -41
- package/backend/node_modules/es-abstract/2025/ToBigInt.js +0 -51
- package/backend/node_modules/es-abstract/2025/ToBigInt64.js +0 -25
- package/backend/node_modules/es-abstract/2025/ToBigUint64.js +0 -23
- package/backend/node_modules/es-abstract/2025/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/2025/ToDateString.js +0 -21
- package/backend/node_modules/es-abstract/2025/ToIndex.js +0 -20
- package/backend/node_modules/es-abstract/2025/ToInt16.js +0 -21
- package/backend/node_modules/es-abstract/2025/ToInt32.js +0 -23
- package/backend/node_modules/es-abstract/2025/ToInt8.js +0 -19
- package/backend/node_modules/es-abstract/2025/ToIntegerOrInfinity.js +0 -16
- package/backend/node_modules/es-abstract/2025/ToLength.js +0 -14
- package/backend/node_modules/es-abstract/2025/ToNumber.js +0 -26
- package/backend/node_modules/es-abstract/2025/ToNumeric.js +0 -20
- package/backend/node_modules/es-abstract/2025/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/2025/ToPrimitive.js +0 -12
- package/backend/node_modules/es-abstract/2025/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/2025/ToPropertyKey.js +0 -15
- package/backend/node_modules/es-abstract/2025/ToString.js +0 -15
- package/backend/node_modules/es-abstract/2025/ToUint16.js +0 -21
- package/backend/node_modules/es-abstract/2025/ToUint32.js +0 -21
- package/backend/node_modules/es-abstract/2025/ToUint8.js +0 -19
- package/backend/node_modules/es-abstract/2025/ToUint8Clamp.js +0 -26
- package/backend/node_modules/es-abstract/2025/ToZeroPaddedDecimalString.js +0 -19
- package/backend/node_modules/es-abstract/2025/TrimString.js +0 -27
- package/backend/node_modules/es-abstract/2025/TypedArrayByteLength.js +0 -43
- package/backend/node_modules/es-abstract/2025/TypedArrayCreateFromConstructor.js +0 -52
- package/backend/node_modules/es-abstract/2025/TypedArrayCreateSameType.js +0 -35
- package/backend/node_modules/es-abstract/2025/TypedArrayElementSize.js +0 -23
- package/backend/node_modules/es-abstract/2025/TypedArrayElementType.js +0 -23
- package/backend/node_modules/es-abstract/2025/TypedArrayGetElement.js +0 -37
- package/backend/node_modules/es-abstract/2025/TypedArrayLength.js +0 -51
- package/backend/node_modules/es-abstract/2025/TypedArraySetElement.js +0 -42
- package/backend/node_modules/es-abstract/2025/TypedArraySpeciesCreate.js +0 -37
- package/backend/node_modules/es-abstract/2025/UTF16EncodeCodePoint.js +0 -25
- package/backend/node_modules/es-abstract/2025/UTF16SurrogatePairToCodePoint.js +0 -19
- package/backend/node_modules/es-abstract/2025/UnicodeEscape.js +0 -25
- package/backend/node_modules/es-abstract/2025/UpdateModifiers.js +0 -77
- package/backend/node_modules/es-abstract/2025/ValidateAndApplyPropertyDescriptor.js +0 -171
- package/backend/node_modules/es-abstract/2025/ValidateAtomicAccess.js +0 -43
- package/backend/node_modules/es-abstract/2025/ValidateAtomicAccessOnIntegerTypedArray.js +0 -19
- package/backend/node_modules/es-abstract/2025/ValidateIntegerTypedArray.js +0 -31
- package/backend/node_modules/es-abstract/2025/ValidateTypedArray.js +0 -32
- package/backend/node_modules/es-abstract/2025/WeakRefDeref.js +0 -23
- package/backend/node_modules/es-abstract/2025/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/2025/WordCharacters.js +0 -47
- package/backend/node_modules/es-abstract/2025/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/2025/abs.js +0 -9
- package/backend/node_modules/es-abstract/2025/clamp.js +0 -14
- package/backend/node_modules/es-abstract/2025/floor.js +0 -14
- package/backend/node_modules/es-abstract/2025/max.js +0 -5
- package/backend/node_modules/es-abstract/2025/min.js +0 -5
- package/backend/node_modules/es-abstract/2025/modulo.js +0 -9
- package/backend/node_modules/es-abstract/2025/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/2025/substring.js +0 -15
- package/backend/node_modules/es-abstract/2025/tables/typed-array-objects.js +0 -38
- package/backend/node_modules/es-abstract/2025/truncate.js +0 -15
- package/backend/node_modules/es-abstract/5/AbstractEqualityComparison.js +0 -38
- package/backend/node_modules/es-abstract/5/AbstractRelationalComparison.js +0 -62
- package/backend/node_modules/es-abstract/5/Canonicalize.js +0 -38
- package/backend/node_modules/es-abstract/5/CheckObjectCoercible.js +0 -9
- package/backend/node_modules/es-abstract/5/DateFromTime.js +0 -52
- package/backend/node_modules/es-abstract/5/Day.js +0 -11
- package/backend/node_modules/es-abstract/5/DayFromYear.js +0 -10
- package/backend/node_modules/es-abstract/5/DayWithinYear.js +0 -11
- package/backend/node_modules/es-abstract/5/DaysInYear.js +0 -18
- package/backend/node_modules/es-abstract/5/FromPropertyDescriptor.js +0 -38
- package/backend/node_modules/es-abstract/5/HourFromTime.js +0 -14
- package/backend/node_modules/es-abstract/5/InLeapYear.js +0 -19
- package/backend/node_modules/es-abstract/5/IsAccessorDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/5/IsCallable.js +0 -5
- package/backend/node_modules/es-abstract/5/IsDataDescriptor.js +0 -25
- package/backend/node_modules/es-abstract/5/IsGenericDescriptor.js +0 -26
- package/backend/node_modules/es-abstract/5/IsPropertyDescriptor.js +0 -11
- package/backend/node_modules/es-abstract/5/MakeDate.js +0 -14
- package/backend/node_modules/es-abstract/5/MakeDay.js +0 -33
- package/backend/node_modules/es-abstract/5/MakeTime.js +0 -24
- package/backend/node_modules/es-abstract/5/MinFromTime.js +0 -14
- package/backend/node_modules/es-abstract/5/MonthFromTime.js +0 -51
- package/backend/node_modules/es-abstract/5/SameValue.js +0 -13
- package/backend/node_modules/es-abstract/5/SecFromTime.js +0 -14
- package/backend/node_modules/es-abstract/5/StrictEqualityComparison.js +0 -15
- package/backend/node_modules/es-abstract/5/TimeClip.js +0 -20
- package/backend/node_modules/es-abstract/5/TimeFromYear.js +0 -11
- package/backend/node_modules/es-abstract/5/TimeWithinDay.js +0 -12
- package/backend/node_modules/es-abstract/5/ToBoolean.js +0 -5
- package/backend/node_modules/es-abstract/5/ToInt32.js +0 -9
- package/backend/node_modules/es-abstract/5/ToInteger.js +0 -18
- package/backend/node_modules/es-abstract/5/ToNumber.js +0 -34
- package/backend/node_modules/es-abstract/5/ToObject.js +0 -5
- package/backend/node_modules/es-abstract/5/ToPrimitive.js +0 -5
- package/backend/node_modules/es-abstract/5/ToPropertyDescriptor.js +0 -50
- package/backend/node_modules/es-abstract/5/ToString.js +0 -12
- package/backend/node_modules/es-abstract/5/ToUint16.js +0 -19
- package/backend/node_modules/es-abstract/5/ToUint32.js +0 -9
- package/backend/node_modules/es-abstract/5/Type.js +0 -26
- package/backend/node_modules/es-abstract/5/WeekDay.js +0 -10
- package/backend/node_modules/es-abstract/5/YearFromTime.js +0 -16
- package/backend/node_modules/es-abstract/5/abs.js +0 -9
- package/backend/node_modules/es-abstract/5/floor.js +0 -11
- package/backend/node_modules/es-abstract/5/modulo.js +0 -9
- package/backend/node_modules/es-abstract/5/msFromTime.js +0 -11
- package/backend/node_modules/es-abstract/CHANGELOG.md +0 -962
- package/backend/node_modules/es-abstract/GetIntrinsic.js +0 -5
- package/backend/node_modules/es-abstract/LICENSE +0 -21
- package/backend/node_modules/es-abstract/README.md +0 -43
- package/backend/node_modules/es-abstract/es2015.js +0 -142
- package/backend/node_modules/es-abstract/es2016.js +0 -149
- package/backend/node_modules/es-abstract/es2017.js +0 -157
- package/backend/node_modules/es-abstract/es2018.js +0 -169
- package/backend/node_modules/es-abstract/es2019.js +0 -173
- package/backend/node_modules/es-abstract/es2020.js +0 -197
- package/backend/node_modules/es-abstract/es2021.js +0 -211
- package/backend/node_modules/es-abstract/es2022.js +0 -224
- package/backend/node_modules/es-abstract/es2023.js +0 -236
- package/backend/node_modules/es-abstract/es2024.js +0 -255
- package/backend/node_modules/es-abstract/es2025.js +0 -272
- package/backend/node_modules/es-abstract/es5.js +0 -52
- package/backend/node_modules/es-abstract/es6.js +0 -3
- package/backend/node_modules/es-abstract/es7.js +0 -3
- package/backend/node_modules/es-abstract/eslint.config.mjs +0 -129
- package/backend/node_modules/es-abstract/helpers/CharSet.js +0 -130
- package/backend/node_modules/es-abstract/helpers/DefineOwnProperty.js +0 -53
- package/backend/node_modules/es-abstract/helpers/IsArray.js +0 -12
- package/backend/node_modules/es-abstract/helpers/OwnPropertyKeys.js +0 -4
- package/backend/node_modules/es-abstract/helpers/assertRecord.js +0 -32
- package/backend/node_modules/es-abstract/helpers/assign.js +0 -22
- package/backend/node_modules/es-abstract/helpers/bytesAsFloat16.js +0 -47
- package/backend/node_modules/es-abstract/helpers/bytesAsFloat32.js +0 -36
- package/backend/node_modules/es-abstract/helpers/bytesAsFloat64.js +0 -42
- package/backend/node_modules/es-abstract/helpers/bytesAsInteger.js +0 -32
- package/backend/node_modules/es-abstract/helpers/callBind.js +0 -5
- package/backend/node_modules/es-abstract/helpers/callBound.js +0 -5
- package/backend/node_modules/es-abstract/helpers/caseFolding.json +0 -1430
- package/backend/node_modules/es-abstract/helpers/defaultEndianness.js +0 -21
- package/backend/node_modules/es-abstract/helpers/every.js +0 -10
- package/backend/node_modules/es-abstract/helpers/forEach.js +0 -7
- package/backend/node_modules/es-abstract/helpers/fractionToBinaryString.js +0 -33
- package/backend/node_modules/es-abstract/helpers/fromPropertyDescriptor.js +0 -27
- package/backend/node_modules/es-abstract/helpers/getInferredName.js +0 -4
- package/backend/node_modules/es-abstract/helpers/getIteratorMethod.js +0 -50
- package/backend/node_modules/es-abstract/helpers/getOwnPropertyDescriptor.js +0 -5
- package/backend/node_modules/es-abstract/helpers/getProto.js +0 -4
- package/backend/node_modules/es-abstract/helpers/getSymbolDescription.js +0 -4
- package/backend/node_modules/es-abstract/helpers/intToBinaryString.js +0 -21
- package/backend/node_modules/es-abstract/helpers/integerToNBytes.js +0 -28
- package/backend/node_modules/es-abstract/helpers/isAbstractClosure.js +0 -9
- package/backend/node_modules/es-abstract/helpers/isByteValue.js +0 -5
- package/backend/node_modules/es-abstract/helpers/isCodePoint.js +0 -5
- package/backend/node_modules/es-abstract/helpers/isFinite.js +0 -4
- package/backend/node_modules/es-abstract/helpers/isFullyPopulatedPropertyDescriptor.js +0 -10
- package/backend/node_modules/es-abstract/helpers/isInteger.js +0 -4
- package/backend/node_modules/es-abstract/helpers/isLeadingSurrogate.js +0 -5
- package/backend/node_modules/es-abstract/helpers/isLineTerminator.js +0 -7
- package/backend/node_modules/es-abstract/helpers/isNaN.js +0 -5
- package/backend/node_modules/es-abstract/helpers/isNegativeZero.js +0 -6
- package/backend/node_modules/es-abstract/helpers/isObject.js +0 -5
- package/backend/node_modules/es-abstract/helpers/isPrefixOf.js +0 -13
- package/backend/node_modules/es-abstract/helpers/isPrimitive.js +0 -5
- package/backend/node_modules/es-abstract/helpers/isPropertyKey.js +0 -5
- package/backend/node_modules/es-abstract/helpers/isSamePropertyDescriptor.js +0 -20
- package/backend/node_modules/es-abstract/helpers/isSameType.js +0 -16
- package/backend/node_modules/es-abstract/helpers/isStringOrHole.js +0 -9
- package/backend/node_modules/es-abstract/helpers/isStringOrUndefined.js +0 -5
- package/backend/node_modules/es-abstract/helpers/isTrailingSurrogate.js +0 -5
- package/backend/node_modules/es-abstract/helpers/maxSafeInteger.js +0 -4
- package/backend/node_modules/es-abstract/helpers/maxValue.js +0 -3
- package/backend/node_modules/es-abstract/helpers/mod.js +0 -4
- package/backend/node_modules/es-abstract/helpers/modBigInt.js +0 -6
- package/backend/node_modules/es-abstract/helpers/padTimeComponent.js +0 -9
- package/backend/node_modules/es-abstract/helpers/records/async-generator-request-record.js +0 -13
- package/backend/node_modules/es-abstract/helpers/records/data-view-with-buffer-witness-record.js +0 -18
- package/backend/node_modules/es-abstract/helpers/records/iterator-record-2023.js +0 -7
- package/backend/node_modules/es-abstract/helpers/records/iterator-record.js +0 -12
- package/backend/node_modules/es-abstract/helpers/records/match-record.js +0 -18
- package/backend/node_modules/es-abstract/helpers/records/promise-capability-record.js +0 -16
- package/backend/node_modules/es-abstract/helpers/records/property-descriptor.js +0 -36
- package/backend/node_modules/es-abstract/helpers/records/regexp-record.js +0 -23
- package/backend/node_modules/es-abstract/helpers/records/set-record.js +0 -21
- package/backend/node_modules/es-abstract/helpers/records/typed-array-with-buffer-witness-record.js +0 -18
- package/backend/node_modules/es-abstract/helpers/reduce.js +0 -9
- package/backend/node_modules/es-abstract/helpers/regexTester.js +0 -5
- package/backend/node_modules/es-abstract/helpers/setProto.js +0 -4
- package/backend/node_modules/es-abstract/helpers/sign.js +0 -4
- package/backend/node_modules/es-abstract/helpers/some.js +0 -10
- package/backend/node_modules/es-abstract/helpers/timeConstants.js +0 -19
- package/backend/node_modules/es-abstract/helpers/timeValue.js +0 -7
- package/backend/node_modules/es-abstract/helpers/typedArrayConstructors.js +0 -23
- package/backend/node_modules/es-abstract/helpers/valueToFloat16Bytes.js +0 -73
- package/backend/node_modules/es-abstract/helpers/valueToFloat32Bytes.js +0 -67
- package/backend/node_modules/es-abstract/helpers/valueToFloat64Bytes.js +0 -83
- package/backend/node_modules/es-abstract/index.js +0 -38
- package/backend/node_modules/es-abstract/operations/2015.js +0 -744
- package/backend/node_modules/es-abstract/operations/2016.js +0 -813
- package/backend/node_modules/es-abstract/operations/2017.js +0 -954
- package/backend/node_modules/es-abstract/operations/2018.js +0 -1033
- package/backend/node_modules/es-abstract/operations/2019.js +0 -1048
- package/backend/node_modules/es-abstract/operations/2020.js +0 -1228
- package/backend/node_modules/es-abstract/operations/2021.js +0 -1282
- package/backend/node_modules/es-abstract/operations/2022.js +0 -1372
- package/backend/node_modules/es-abstract/operations/2023.js +0 -1441
- package/backend/node_modules/es-abstract/operations/2024.js +0 -1537
- package/backend/node_modules/es-abstract/operations/2025.js +0 -1603
- package/backend/node_modules/es-abstract/operations/es5.js +0 -50
- package/backend/node_modules/es-abstract/package.json +0 -188
- package/backend/node_modules/es-define-property/.eslintrc +0 -13
- package/backend/node_modules/es-define-property/CHANGELOG.md +0 -29
- package/backend/node_modules/es-define-property/LICENSE +0 -21
- package/backend/node_modules/es-define-property/README.md +0 -49
- package/backend/node_modules/es-define-property/test/index.js +0 -56
- package/backend/node_modules/es-errors/.eslintrc +0 -5
- package/backend/node_modules/es-errors/CHANGELOG.md +0 -40
- package/backend/node_modules/es-errors/LICENSE +0 -21
- package/backend/node_modules/es-errors/README.md +0 -55
- package/backend/node_modules/es-errors/test/index.js +0 -19
- package/backend/node_modules/es-object-atoms/.eslintrc +0 -16
- package/backend/node_modules/es-object-atoms/CHANGELOG.md +0 -37
- package/backend/node_modules/es-object-atoms/LICENSE +0 -21
- package/backend/node_modules/es-object-atoms/README.md +0 -63
- package/backend/node_modules/es-object-atoms/test/index.js +0 -38
- package/backend/node_modules/es-set-tostringtag/.eslintrc +0 -13
- package/backend/node_modules/es-set-tostringtag/CHANGELOG.md +0 -67
- package/backend/node_modules/es-set-tostringtag/LICENSE +0 -21
- package/backend/node_modules/es-set-tostringtag/README.md +0 -53
- package/backend/node_modules/es-set-tostringtag/test/index.js +0 -85
- package/backend/node_modules/es-shim-unscopables/.eslintrc +0 -37
- package/backend/node_modules/es-shim-unscopables/CHANGELOG.md +0 -35
- package/backend/node_modules/es-shim-unscopables/LICENSE +0 -21
- package/backend/node_modules/es-shim-unscopables/README.md +0 -57
- package/backend/node_modules/es-shim-unscopables/test/index.js +0 -70
- package/backend/node_modules/es-shim-unscopables/test/with.js +0 -43
- package/backend/node_modules/es-to-primitive/.eslintrc +0 -20
- package/backend/node_modules/es-to-primitive/CHANGELOG.md +0 -101
- package/backend/node_modules/es-to-primitive/LICENSE +0 -22
- package/backend/node_modules/es-to-primitive/README.md +0 -52
- package/backend/node_modules/es-to-primitive/test/es2015.js +0 -140
- package/backend/node_modules/es-to-primitive/test/es5.js +0 -98
- package/backend/node_modules/es-to-primitive/test/es6.js +0 -140
- package/backend/node_modules/es-to-primitive/test/index.js +0 -20
- package/backend/node_modules/escape-html/LICENSE +0 -24
- package/backend/node_modules/escape-html/Readme.md +0 -43
- package/backend/node_modules/etag/HISTORY.md +0 -83
- package/backend/node_modules/etag/LICENSE +0 -22
- package/backend/node_modules/etag/README.md +0 -159
- package/backend/node_modules/eventemitter3/LICENSE +0 -21
- package/backend/node_modules/eventemitter3/README.md +0 -92
- package/backend/node_modules/expand-template/LICENSE +0 -21
- package/backend/node_modules/expand-template/README.md +0 -43
- package/backend/node_modules/express/History.md +0 -3667
- package/backend/node_modules/express/LICENSE +0 -24
- package/backend/node_modules/express/Readme.md +0 -260
- package/backend/node_modules/extend/.eslintrc +0 -17
- package/backend/node_modules/extend/CHANGELOG.md +0 -83
- package/backend/node_modules/extend/LICENSE +0 -23
- package/backend/node_modules/extend/README.md +0 -81
- package/backend/node_modules/extsprintf/LICENSE +0 -19
- package/backend/node_modules/extsprintf/README.md +0 -46
- package/backend/node_modules/fast-deep-equal/LICENSE +0 -21
- package/backend/node_modules/fast-deep-equal/README.md +0 -96
- package/backend/node_modules/fast-json-stable-stringify/.eslintrc.yml +0 -26
- package/backend/node_modules/fast-json-stable-stringify/LICENSE +0 -21
- package/backend/node_modules/fast-json-stable-stringify/README.md +0 -131
- package/backend/node_modules/fast-json-stable-stringify/example/key_cmp.js +0 -7
- package/backend/node_modules/fast-json-stable-stringify/example/nested.js +0 -3
- package/backend/node_modules/fast-json-stable-stringify/example/str.js +0 -3
- package/backend/node_modules/fast-json-stable-stringify/example/value_cmp.js +0 -7
- package/backend/node_modules/fast-json-stable-stringify/test/cmp.js +0 -13
- package/backend/node_modules/fast-json-stable-stringify/test/nested.js +0 -44
- package/backend/node_modules/fast-json-stable-stringify/test/str.js +0 -46
- package/backend/node_modules/fast-json-stable-stringify/test/to-json.js +0 -22
- package/backend/node_modules/file-type/readme.md +0 -149
- package/backend/node_modules/file-uri-to-path/History.md +0 -21
- package/backend/node_modules/file-uri-to-path/LICENSE +0 -20
- package/backend/node_modules/file-uri-to-path/README.md +0 -74
- package/backend/node_modules/file-uri-to-path/test/test.js +0 -24
- package/backend/node_modules/file-uri-to-path/test/tests.json +0 -13
- package/backend/node_modules/finalhandler/HISTORY.md +0 -216
- package/backend/node_modules/finalhandler/LICENSE +0 -22
- package/backend/node_modules/finalhandler/README.md +0 -147
- package/backend/node_modules/finalhandler/SECURITY.md +0 -25
- package/backend/node_modules/for-each/.eslintrc +0 -30
- package/backend/node_modules/for-each/.github/SECURITY.md +0 -3
- package/backend/node_modules/for-each/CHANGELOG.md +0 -107
- package/backend/node_modules/for-each/LICENSE +0 -22
- package/backend/node_modules/for-each/README.md +0 -39
- package/backend/node_modules/for-each/test/test.js +0 -224
- package/backend/node_modules/forever-agent/LICENSE +0 -55
- package/backend/node_modules/forever-agent/README.md +0 -4
- package/backend/node_modules/forwarded/HISTORY.md +0 -21
- package/backend/node_modules/forwarded/LICENSE +0 -22
- package/backend/node_modules/forwarded/README.md +0 -57
- package/backend/node_modules/fresh/HISTORY.md +0 -70
- package/backend/node_modules/fresh/LICENSE +0 -23
- package/backend/node_modules/fresh/README.md +0 -119
- package/backend/node_modules/fs-constants/LICENSE +0 -21
- package/backend/node_modules/fs-constants/README.md +0 -26
- package/backend/node_modules/function-bind/.eslintrc +0 -21
- package/backend/node_modules/function-bind/.github/SECURITY.md +0 -3
- package/backend/node_modules/function-bind/CHANGELOG.md +0 -136
- package/backend/node_modules/function-bind/LICENSE +0 -20
- package/backend/node_modules/function-bind/README.md +0 -46
- package/backend/node_modules/function-bind/test/.eslintrc +0 -9
- package/backend/node_modules/function-bind/test/index.js +0 -252
- package/backend/node_modules/function.prototype.name/.eslintrc +0 -15
- package/backend/node_modules/function.prototype.name/CHANGELOG.md +0 -141
- package/backend/node_modules/function.prototype.name/LICENSE +0 -21
- package/backend/node_modules/function.prototype.name/README.md +0 -55
- package/backend/node_modules/function.prototype.name/test/implementation.js +0 -20
- package/backend/node_modules/function.prototype.name/test/index.js +0 -23
- package/backend/node_modules/function.prototype.name/test/shimmed.js +0 -21
- package/backend/node_modules/function.prototype.name/test/tests.js +0 -104
- package/backend/node_modules/function.prototype.name/test/uglified.js +0 -17
- package/backend/node_modules/functions-have-names/.eslintrc +0 -19
- package/backend/node_modules/functions-have-names/CHANGELOG.md +0 -89
- package/backend/node_modules/functions-have-names/LICENSE +0 -21
- package/backend/node_modules/functions-have-names/README.md +0 -40
- package/backend/node_modules/functions-have-names/test/index.js +0 -65
- package/backend/node_modules/generator-function/.eslintrc +0 -16
- package/backend/node_modules/generator-function/CHANGELOG.md +0 -27
- package/backend/node_modules/generator-function/LICENSE.md +0 -7
- package/backend/node_modules/generator-function/README.md +0 -51
- package/backend/node_modules/generator-function/test/index.js +0 -42
- package/backend/node_modules/get-intrinsic/.eslintrc +0 -42
- package/backend/node_modules/get-intrinsic/CHANGELOG.md +0 -186
- package/backend/node_modules/get-intrinsic/LICENSE +0 -21
- package/backend/node_modules/get-intrinsic/README.md +0 -71
- package/backend/node_modules/get-intrinsic/test/GetIntrinsic.js +0 -274
- package/backend/node_modules/get-proto/.eslintrc +0 -10
- package/backend/node_modules/get-proto/CHANGELOG.md +0 -21
- package/backend/node_modules/get-proto/LICENSE +0 -21
- package/backend/node_modules/get-proto/README.md +0 -50
- package/backend/node_modules/get-proto/test/index.js +0 -68
- package/backend/node_modules/get-symbol-description/.eslintrc +0 -14
- package/backend/node_modules/get-symbol-description/CHANGELOG.md +0 -61
- package/backend/node_modules/get-symbol-description/LICENSE +0 -21
- package/backend/node_modules/get-symbol-description/README.md +0 -43
- package/backend/node_modules/get-symbol-description/test/index.js +0 -74
- package/backend/node_modules/getpass/LICENSE +0 -18
- package/backend/node_modules/getpass/README.md +0 -32
- package/backend/node_modules/github-from-package/LICENSE +0 -18
- package/backend/node_modules/github-from-package/example/package.json +0 -8
- package/backend/node_modules/github-from-package/example/url.js +0 -3
- package/backend/node_modules/github-from-package/test/a.json +0 -8
- package/backend/node_modules/github-from-package/test/b.json +0 -5
- package/backend/node_modules/github-from-package/test/c.json +0 -5
- package/backend/node_modules/github-from-package/test/d.json +0 -7
- package/backend/node_modules/github-from-package/test/e.json +0 -5
- package/backend/node_modules/github-from-package/test/url.js +0 -19
- package/backend/node_modules/globalthis/.eslintrc +0 -18
- package/backend/node_modules/globalthis/CHANGELOG.md +0 -109
- package/backend/node_modules/globalthis/LICENSE +0 -21
- package/backend/node_modules/globalthis/README.md +0 -70
- package/backend/node_modules/globalthis/test/implementation.js +0 -11
- package/backend/node_modules/globalthis/test/index.js +0 -11
- package/backend/node_modules/globalthis/test/native.js +0 -26
- package/backend/node_modules/globalthis/test/shimmed.js +0 -29
- package/backend/node_modules/globalthis/test/tests.js +0 -36
- package/backend/node_modules/gopd/.eslintrc +0 -16
- package/backend/node_modules/gopd/CHANGELOG.md +0 -45
- package/backend/node_modules/gopd/LICENSE +0 -21
- package/backend/node_modules/gopd/README.md +0 -40
- package/backend/node_modules/gopd/test/index.js +0 -36
- package/backend/node_modules/har-schema/LICENSE +0 -13
- package/backend/node_modules/har-schema/README.md +0 -49
- package/backend/node_modules/har-validator/LICENSE +0 -9
- package/backend/node_modules/har-validator/README.md +0 -43
- package/backend/node_modules/has-bigints/.eslintrc +0 -5
- package/backend/node_modules/has-bigints/CHANGELOG.md +0 -74
- package/backend/node_modules/has-bigints/LICENSE +0 -21
- package/backend/node_modules/has-bigints/README.md +0 -39
- package/backend/node_modules/has-bigints/test/index.js +0 -44
- package/backend/node_modules/has-property-descriptors/.eslintrc +0 -13
- package/backend/node_modules/has-property-descriptors/CHANGELOG.md +0 -35
- package/backend/node_modules/has-property-descriptors/LICENSE +0 -21
- package/backend/node_modules/has-property-descriptors/README.md +0 -43
- package/backend/node_modules/has-property-descriptors/test/index.js +0 -57
- package/backend/node_modules/has-proto/.eslintrc +0 -5
- package/backend/node_modules/has-proto/CHANGELOG.md +0 -61
- package/backend/node_modules/has-proto/LICENSE +0 -21
- package/backend/node_modules/has-proto/README.md +0 -57
- package/backend/node_modules/has-proto/test/accessor.js +0 -34
- package/backend/node_modules/has-proto/test/index.js +0 -28
- package/backend/node_modules/has-proto/test/mutator.js +0 -34
- package/backend/node_modules/has-symbols/.eslintrc +0 -11
- package/backend/node_modules/has-symbols/CHANGELOG.md +0 -91
- package/backend/node_modules/has-symbols/LICENSE +0 -21
- package/backend/node_modules/has-symbols/README.md +0 -46
- package/backend/node_modules/has-symbols/test/index.js +0 -22
- package/backend/node_modules/has-symbols/test/shams/core-js.js +0 -29
- package/backend/node_modules/has-symbols/test/shams/get-own-property-symbols.js +0 -29
- package/backend/node_modules/has-symbols/test/tests.js +0 -58
- package/backend/node_modules/has-tostringtag/.eslintrc +0 -5
- package/backend/node_modules/has-tostringtag/CHANGELOG.md +0 -42
- package/backend/node_modules/has-tostringtag/LICENSE +0 -21
- package/backend/node_modules/has-tostringtag/README.md +0 -46
- package/backend/node_modules/has-tostringtag/test/index.js +0 -21
- package/backend/node_modules/has-tostringtag/test/shams/core-js.js +0 -31
- package/backend/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +0 -30
- package/backend/node_modules/has-tostringtag/test/tests.js +0 -15
- package/backend/node_modules/hasown/.eslintrc +0 -5
- package/backend/node_modules/hasown/CHANGELOG.md +0 -40
- package/backend/node_modules/hasown/LICENSE +0 -21
- package/backend/node_modules/hasown/README.md +0 -40
- package/backend/node_modules/http-errors/HISTORY.md +0 -186
- package/backend/node_modules/http-errors/LICENSE +0 -23
- package/backend/node_modules/http-errors/README.md +0 -169
- package/backend/node_modules/http-signature/LICENSE +0 -18
- package/backend/node_modules/http-signature/README.md +0 -80
- package/backend/node_modules/iconv-lite/Changelog.md +0 -162
- package/backend/node_modules/iconv-lite/LICENSE +0 -21
- package/backend/node_modules/iconv-lite/README.md +0 -156
- package/backend/node_modules/ieee754/LICENSE +0 -11
- package/backend/node_modules/ieee754/README.md +0 -51
- package/backend/node_modules/inherits/LICENSE +0 -16
- package/backend/node_modules/inherits/README.md +0 -42
- package/backend/node_modules/ini/LICENSE +0 -15
- package/backend/node_modules/ini/README.md +0 -102
- package/backend/node_modules/internal-slot/.eslintrc +0 -11
- package/backend/node_modules/internal-slot/CHANGELOG.md +0 -114
- package/backend/node_modules/internal-slot/LICENSE +0 -21
- package/backend/node_modules/internal-slot/README.md +0 -58
- package/backend/node_modules/internal-slot/test/index.js +0 -129
- package/backend/node_modules/ipaddr.js/LICENSE +0 -19
- package/backend/node_modules/ipaddr.js/README.md +0 -233
- package/backend/node_modules/is-array-buffer/.eslintrc +0 -17
- package/backend/node_modules/is-array-buffer/CHANGELOG.md +0 -91
- package/backend/node_modules/is-array-buffer/LICENSE +0 -21
- package/backend/node_modules/is-array-buffer/README.md +0 -56
- package/backend/node_modules/is-array-buffer/test/index.js +0 -49
- package/backend/node_modules/is-async-function/.eslintrc +0 -9
- package/backend/node_modules/is-async-function/CHANGELOG.md +0 -189
- package/backend/node_modules/is-async-function/LICENSE +0 -20
- package/backend/node_modules/is-async-function/README.md +0 -41
- package/backend/node_modules/is-async-function/test/index.js +0 -91
- package/backend/node_modules/is-async-function/test/uglified.js +0 -9
- package/backend/node_modules/is-bigint/.eslintrc +0 -5
- package/backend/node_modules/is-bigint/CHANGELOG.md +0 -91
- package/backend/node_modules/is-bigint/LICENSE +0 -21
- package/backend/node_modules/is-bigint/README.md +0 -44
- package/backend/node_modules/is-bigint/test/index.js +0 -65
- package/backend/node_modules/is-boolean-object/.eslintrc +0 -12
- package/backend/node_modules/is-boolean-object/CHANGELOG.md +0 -143
- package/backend/node_modules/is-boolean-object/LICENSE +0 -22
- package/backend/node_modules/is-boolean-object/README.md +0 -57
- package/backend/node_modules/is-boolean-object/test/index.js +0 -73
- package/backend/node_modules/is-callable/.eslintrc +0 -10
- package/backend/node_modules/is-callable/CHANGELOG.md +0 -158
- package/backend/node_modules/is-callable/LICENSE +0 -22
- package/backend/node_modules/is-callable/README.md +0 -83
- package/backend/node_modules/is-callable/test/index.js +0 -244
- package/backend/node_modules/is-data-view/.eslintrc +0 -17
- package/backend/node_modules/is-data-view/CHANGELOG.md +0 -35
- package/backend/node_modules/is-data-view/LICENSE +0 -21
- package/backend/node_modules/is-data-view/README.md +0 -69
- package/backend/node_modules/is-data-view/test/index.js +0 -60
- package/backend/node_modules/is-date-object/.eslintrc +0 -9
- package/backend/node_modules/is-date-object/CHANGELOG.md +0 -134
- package/backend/node_modules/is-date-object/LICENSE +0 -22
- package/backend/node_modules/is-date-object/README.md +0 -52
- package/backend/node_modules/is-date-object/test/index.js +0 -38
- package/backend/node_modules/is-finalizationregistry/.eslintrc +0 -9
- package/backend/node_modules/is-finalizationregistry/CHANGELOG.md +0 -78
- package/backend/node_modules/is-finalizationregistry/LICENSE +0 -21
- package/backend/node_modules/is-finalizationregistry/README.md +0 -54
- package/backend/node_modules/is-finalizationregistry/test/index.js +0 -26
- package/backend/node_modules/is-generator-function/.eslintrc +0 -9
- package/backend/node_modules/is-generator-function/CHANGELOG.md +0 -254
- package/backend/node_modules/is-generator-function/LICENSE +0 -20
- package/backend/node_modules/is-generator-function/README.md +0 -40
- package/backend/node_modules/is-generator-function/test/corejs.js +0 -6
- package/backend/node_modules/is-generator-function/test/index.js +0 -80
- package/backend/node_modules/is-generator-function/test/uglified.js +0 -9
- package/backend/node_modules/is-map/.eslintrc +0 -5
- package/backend/node_modules/is-map/CHANGELOG.md +0 -89
- package/backend/node_modules/is-map/LICENSE +0 -21
- package/backend/node_modules/is-map/README.md +0 -52
- package/backend/node_modules/is-map/test/index.js +0 -59
- package/backend/node_modules/is-negative-zero/.eslintrc +0 -9
- package/backend/node_modules/is-negative-zero/CHANGELOG.md +0 -147
- package/backend/node_modules/is-negative-zero/LICENSE +0 -20
- package/backend/node_modules/is-negative-zero/README.md +0 -54
- package/backend/node_modules/is-negative-zero/test/index.js +0 -29
- package/backend/node_modules/is-number-object/.eslintrc +0 -16
- package/backend/node_modules/is-number-object/CHANGELOG.md +0 -149
- package/backend/node_modules/is-number-object/LICENSE +0 -22
- package/backend/node_modules/is-number-object/README.md +0 -55
- package/backend/node_modules/is-number-object/test/index.js +0 -40
- package/backend/node_modules/is-regex/.eslintrc +0 -10
- package/backend/node_modules/is-regex/CHANGELOG.md +0 -233
- package/backend/node_modules/is-regex/LICENSE +0 -20
- package/backend/node_modules/is-regex/README.md +0 -52
- package/backend/node_modules/is-regex/test/index.js +0 -121
- package/backend/node_modules/is-set/.eslintrc +0 -5
- package/backend/node_modules/is-set/CHANGELOG.md +0 -81
- package/backend/node_modules/is-set/LICENSE +0 -21
- package/backend/node_modules/is-set/README.md +0 -50
- package/backend/node_modules/is-set/test/index.js +0 -59
- package/backend/node_modules/is-shared-array-buffer/.eslintrc +0 -5
- package/backend/node_modules/is-shared-array-buffer/CHANGELOG.md +0 -75
- package/backend/node_modules/is-shared-array-buffer/LICENSE +0 -21
- package/backend/node_modules/is-shared-array-buffer/README.md +0 -56
- package/backend/node_modules/is-shared-array-buffer/test/index.js +0 -39
- package/backend/node_modules/is-string/.eslintrc +0 -9
- package/backend/node_modules/is-string/CHANGELOG.md +0 -146
- package/backend/node_modules/is-string/LICENSE +0 -22
- package/backend/node_modules/is-string/README.md +0 -56
- package/backend/node_modules/is-string/test/index.js +0 -41
- package/backend/node_modules/is-symbol/.eslintrc +0 -14
- package/backend/node_modules/is-symbol/CHANGELOG.md +0 -145
- package/backend/node_modules/is-symbol/LICENSE +0 -22
- package/backend/node_modules/is-symbol/README.md +0 -45
- package/backend/node_modules/is-symbol/test/index.js +0 -88
- package/backend/node_modules/is-typed-array/.eslintrc +0 -13
- package/backend/node_modules/is-typed-array/CHANGELOG.md +0 -166
- package/backend/node_modules/is-typed-array/LICENSE +0 -22
- package/backend/node_modules/is-typed-array/README.md +0 -70
- package/backend/node_modules/is-typed-array/test/index.js +0 -111
- package/backend/node_modules/is-typedarray/LICENSE.md +0 -18
- package/backend/node_modules/is-typedarray/README.md +0 -16
- package/backend/node_modules/is-weakmap/.eslintrc +0 -5
- package/backend/node_modules/is-weakmap/CHANGELOG.md +0 -83
- package/backend/node_modules/is-weakmap/LICENSE +0 -21
- package/backend/node_modules/is-weakmap/README.md +0 -50
- package/backend/node_modules/is-weakmap/test/index.js +0 -59
- package/backend/node_modules/is-weakref/.eslintrc +0 -5
- package/backend/node_modules/is-weakref/CHANGELOG.md +0 -82
- package/backend/node_modules/is-weakref/LICENSE +0 -21
- package/backend/node_modules/is-weakref/README.md +0 -52
- package/backend/node_modules/is-weakref/test/index.js +0 -26
- package/backend/node_modules/is-weakset/.eslintrc +0 -13
- package/backend/node_modules/is-weakset/CHANGELOG.md +0 -107
- package/backend/node_modules/is-weakset/LICENSE +0 -21
- package/backend/node_modules/is-weakset/README.md +0 -50
- package/backend/node_modules/is-weakset/test/index.js +0 -59
- package/backend/node_modules/isarray/README.md +0 -60
- package/backend/node_modules/isstream/LICENSE.md +0 -11
- package/backend/node_modules/isstream/README.md +0 -66
- package/backend/node_modules/jsbn/LICENSE +0 -40
- package/backend/node_modules/jsbn/README.md +0 -175
- package/backend/node_modules/json-schema/LICENSE +0 -195
- package/backend/node_modules/json-schema/README.md +0 -3
- package/backend/node_modules/json-schema-traverse/.eslintrc.yml +0 -27
- package/backend/node_modules/json-schema-traverse/LICENSE +0 -21
- package/backend/node_modules/json-schema-traverse/README.md +0 -83
- package/backend/node_modules/json-schema-traverse/spec/.eslintrc.yml +0 -6
- package/backend/node_modules/json-stringify-safe/CHANGELOG.md +0 -14
- package/backend/node_modules/json-stringify-safe/LICENSE +0 -15
- package/backend/node_modules/json-stringify-safe/README.md +0 -52
- package/backend/node_modules/json-stringify-safe/test/mocha.opts +0 -2
- package/backend/node_modules/json-stringify-safe/test/stringify_test.js +0 -246
- package/backend/node_modules/jsprim/CHANGES.md +0 -65
- package/backend/node_modules/jsprim/CONTRIBUTING.md +0 -16
- package/backend/node_modules/jsprim/LICENSE +0 -19
- package/backend/node_modules/jsprim/README.md +0 -287
- package/backend/node_modules/lodash/LICENSE +0 -47
- package/backend/node_modules/lodash/README.md +0 -39
- package/backend/node_modules/lodash/_DataView.js +0 -7
- package/backend/node_modules/lodash/_Hash.js +0 -32
- package/backend/node_modules/lodash/_LazyWrapper.js +0 -28
- package/backend/node_modules/lodash/_ListCache.js +0 -32
- package/backend/node_modules/lodash/_LodashWrapper.js +0 -22
- package/backend/node_modules/lodash/_Map.js +0 -7
- package/backend/node_modules/lodash/_MapCache.js +0 -32
- package/backend/node_modules/lodash/_Promise.js +0 -7
- package/backend/node_modules/lodash/_Set.js +0 -7
- package/backend/node_modules/lodash/_SetCache.js +0 -27
- package/backend/node_modules/lodash/_Stack.js +0 -27
- package/backend/node_modules/lodash/_Symbol.js +0 -6
- package/backend/node_modules/lodash/_Uint8Array.js +0 -6
- package/backend/node_modules/lodash/_WeakMap.js +0 -7
- package/backend/node_modules/lodash/_apply.js +0 -21
- package/backend/node_modules/lodash/_arrayAggregator.js +0 -22
- package/backend/node_modules/lodash/_arrayEach.js +0 -22
- package/backend/node_modules/lodash/_arrayEachRight.js +0 -21
- package/backend/node_modules/lodash/_arrayEvery.js +0 -23
- package/backend/node_modules/lodash/_arrayFilter.js +0 -25
- package/backend/node_modules/lodash/_arrayIncludes.js +0 -17
- package/backend/node_modules/lodash/_arrayIncludesWith.js +0 -22
- package/backend/node_modules/lodash/_arrayLikeKeys.js +0 -49
- package/backend/node_modules/lodash/_arrayMap.js +0 -21
- package/backend/node_modules/lodash/_arrayPush.js +0 -20
- package/backend/node_modules/lodash/_arrayReduce.js +0 -26
- package/backend/node_modules/lodash/_arrayReduceRight.js +0 -24
- package/backend/node_modules/lodash/_arraySample.js +0 -15
- package/backend/node_modules/lodash/_arraySampleSize.js +0 -17
- package/backend/node_modules/lodash/_arrayShuffle.js +0 -15
- package/backend/node_modules/lodash/_arraySome.js +0 -23
- package/backend/node_modules/lodash/_asciiSize.js +0 -12
- package/backend/node_modules/lodash/_asciiToArray.js +0 -12
- package/backend/node_modules/lodash/_asciiWords.js +0 -15
- package/backend/node_modules/lodash/_assignMergeValue.js +0 -20
- package/backend/node_modules/lodash/_assignValue.js +0 -28
- package/backend/node_modules/lodash/_assocIndexOf.js +0 -21
- package/backend/node_modules/lodash/_baseAggregator.js +0 -21
- package/backend/node_modules/lodash/_baseAssign.js +0 -17
- package/backend/node_modules/lodash/_baseAssignIn.js +0 -17
- package/backend/node_modules/lodash/_baseAssignValue.js +0 -25
- package/backend/node_modules/lodash/_baseAt.js +0 -23
- package/backend/node_modules/lodash/_baseClamp.js +0 -22
- package/backend/node_modules/lodash/_baseClone.js +0 -166
- package/backend/node_modules/lodash/_baseConforms.js +0 -18
- package/backend/node_modules/lodash/_baseConformsTo.js +0 -27
- package/backend/node_modules/lodash/_baseCreate.js +0 -30
- package/backend/node_modules/lodash/_baseDelay.js +0 -21
- package/backend/node_modules/lodash/_baseDifference.js +0 -67
- package/backend/node_modules/lodash/_baseEach.js +0 -14
- package/backend/node_modules/lodash/_baseEachRight.js +0 -14
- package/backend/node_modules/lodash/_baseEvery.js +0 -21
- package/backend/node_modules/lodash/_baseExtremum.js +0 -32
- package/backend/node_modules/lodash/_baseFill.js +0 -32
- package/backend/node_modules/lodash/_baseFilter.js +0 -21
- package/backend/node_modules/lodash/_baseFindIndex.js +0 -24
- package/backend/node_modules/lodash/_baseFindKey.js +0 -23
- package/backend/node_modules/lodash/_baseFlatten.js +0 -38
- package/backend/node_modules/lodash/_baseFor.js +0 -16
- package/backend/node_modules/lodash/_baseForOwn.js +0 -16
- package/backend/node_modules/lodash/_baseForOwnRight.js +0 -16
- package/backend/node_modules/lodash/_baseForRight.js +0 -15
- package/backend/node_modules/lodash/_baseFunctions.js +0 -19
- package/backend/node_modules/lodash/_baseGet.js +0 -24
- package/backend/node_modules/lodash/_baseGetAllKeys.js +0 -20
- package/backend/node_modules/lodash/_baseGetTag.js +0 -28
- package/backend/node_modules/lodash/_baseGt.js +0 -14
- package/backend/node_modules/lodash/_baseHas.js +0 -19
- package/backend/node_modules/lodash/_baseHasIn.js +0 -13
- package/backend/node_modules/lodash/_baseInRange.js +0 -18
- package/backend/node_modules/lodash/_baseIndexOf.js +0 -20
- package/backend/node_modules/lodash/_baseIndexOfWith.js +0 -23
- package/backend/node_modules/lodash/_baseIntersection.js +0 -74
- package/backend/node_modules/lodash/_baseInverter.js +0 -21
- package/backend/node_modules/lodash/_baseInvoke.js +0 -24
- package/backend/node_modules/lodash/_baseIsArguments.js +0 -18
- package/backend/node_modules/lodash/_baseIsArrayBuffer.js +0 -17
- package/backend/node_modules/lodash/_baseIsDate.js +0 -18
- package/backend/node_modules/lodash/_baseIsEqual.js +0 -28
- package/backend/node_modules/lodash/_baseIsEqualDeep.js +0 -83
- package/backend/node_modules/lodash/_baseIsMap.js +0 -18
- package/backend/node_modules/lodash/_baseIsMatch.js +0 -62
- package/backend/node_modules/lodash/_baseIsNaN.js +0 -12
- package/backend/node_modules/lodash/_baseIsNative.js +0 -47
- package/backend/node_modules/lodash/_baseIsRegExp.js +0 -18
- package/backend/node_modules/lodash/_baseIsSet.js +0 -18
- package/backend/node_modules/lodash/_baseIsTypedArray.js +0 -60
- package/backend/node_modules/lodash/_baseIteratee.js +0 -31
- package/backend/node_modules/lodash/_baseKeys.js +0 -30
- package/backend/node_modules/lodash/_baseKeysIn.js +0 -33
- package/backend/node_modules/lodash/_baseLodash.js +0 -10
- package/backend/node_modules/lodash/_baseLt.js +0 -14
- package/backend/node_modules/lodash/_baseMap.js +0 -22
- package/backend/node_modules/lodash/_baseMatches.js +0 -22
- package/backend/node_modules/lodash/_baseMatchesProperty.js +0 -33
- package/backend/node_modules/lodash/_baseMean.js +0 -20
- package/backend/node_modules/lodash/_baseMerge.js +0 -42
- package/backend/node_modules/lodash/_baseMergeDeep.js +0 -94
- package/backend/node_modules/lodash/_baseNth.js +0 -20
- package/backend/node_modules/lodash/_baseOrderBy.js +0 -49
- package/backend/node_modules/lodash/_basePick.js +0 -19
- package/backend/node_modules/lodash/_basePickBy.js +0 -30
- package/backend/node_modules/lodash/_baseProperty.js +0 -14
- package/backend/node_modules/lodash/_basePropertyDeep.js +0 -16
- package/backend/node_modules/lodash/_basePropertyOf.js +0 -14
- package/backend/node_modules/lodash/_basePullAll.js +0 -51
- package/backend/node_modules/lodash/_basePullAt.js +0 -37
- package/backend/node_modules/lodash/_baseRandom.js +0 -18
- package/backend/node_modules/lodash/_baseRange.js +0 -28
- package/backend/node_modules/lodash/_baseReduce.js +0 -23
- package/backend/node_modules/lodash/_baseRepeat.js +0 -35
- package/backend/node_modules/lodash/_baseRest.js +0 -17
- package/backend/node_modules/lodash/_baseSample.js +0 -15
- package/backend/node_modules/lodash/_baseSampleSize.js +0 -18
- package/backend/node_modules/lodash/_baseSet.js +0 -51
- package/backend/node_modules/lodash/_baseSetData.js +0 -17
- package/backend/node_modules/lodash/_baseSetToString.js +0 -22
- package/backend/node_modules/lodash/_baseShuffle.js +0 -15
- package/backend/node_modules/lodash/_baseSlice.js +0 -31
- package/backend/node_modules/lodash/_baseSome.js +0 -22
- package/backend/node_modules/lodash/_baseSortBy.js +0 -21
- package/backend/node_modules/lodash/_baseSortedIndex.js +0 -42
- package/backend/node_modules/lodash/_baseSortedIndexBy.js +0 -67
- package/backend/node_modules/lodash/_baseSortedUniq.js +0 -30
- package/backend/node_modules/lodash/_baseSum.js +0 -24
- package/backend/node_modules/lodash/_baseTimes.js +0 -20
- package/backend/node_modules/lodash/_baseToNumber.js +0 -24
- package/backend/node_modules/lodash/_baseToPairs.js +0 -18
- package/backend/node_modules/lodash/_baseToString.js +0 -37
- package/backend/node_modules/lodash/_baseTrim.js +0 -19
- package/backend/node_modules/lodash/_baseUnary.js +0 -14
- package/backend/node_modules/lodash/_baseUniq.js +0 -72
- package/backend/node_modules/lodash/_baseUnset.js +0 -65
- package/backend/node_modules/lodash/_baseUpdate.js +0 -18
- package/backend/node_modules/lodash/_baseValues.js +0 -19
- package/backend/node_modules/lodash/_baseWhile.js +0 -26
- package/backend/node_modules/lodash/_baseWrapperValue.js +0 -25
- package/backend/node_modules/lodash/_baseXor.js +0 -36
- package/backend/node_modules/lodash/_baseZipObject.js +0 -23
- package/backend/node_modules/lodash/_cacheHas.js +0 -13
- package/backend/node_modules/lodash/_castArrayLikeObject.js +0 -14
- package/backend/node_modules/lodash/_castFunction.js +0 -14
- package/backend/node_modules/lodash/_castPath.js +0 -21
- package/backend/node_modules/lodash/_castRest.js +0 -14
- package/backend/node_modules/lodash/_castSlice.js +0 -18
- package/backend/node_modules/lodash/_charsEndIndex.js +0 -19
- package/backend/node_modules/lodash/_charsStartIndex.js +0 -20
- package/backend/node_modules/lodash/_cloneArrayBuffer.js +0 -16
- package/backend/node_modules/lodash/_cloneBuffer.js +0 -35
- package/backend/node_modules/lodash/_cloneDataView.js +0 -16
- package/backend/node_modules/lodash/_cloneRegExp.js +0 -17
- package/backend/node_modules/lodash/_cloneSymbol.js +0 -18
- package/backend/node_modules/lodash/_cloneTypedArray.js +0 -16
- package/backend/node_modules/lodash/_compareAscending.js +0 -41
- package/backend/node_modules/lodash/_compareMultiple.js +0 -44
- package/backend/node_modules/lodash/_composeArgs.js +0 -39
- package/backend/node_modules/lodash/_composeArgsRight.js +0 -41
- package/backend/node_modules/lodash/_copyArray.js +0 -20
- package/backend/node_modules/lodash/_copyObject.js +0 -40
- package/backend/node_modules/lodash/_copySymbols.js +0 -16
- package/backend/node_modules/lodash/_copySymbolsIn.js +0 -16
- package/backend/node_modules/lodash/_coreJsData.js +0 -6
- package/backend/node_modules/lodash/_countHolders.js +0 -21
- package/backend/node_modules/lodash/_createAggregator.js +0 -23
- package/backend/node_modules/lodash/_createAssigner.js +0 -37
- package/backend/node_modules/lodash/_createBaseEach.js +0 -32
- package/backend/node_modules/lodash/_createBaseFor.js +0 -25
- package/backend/node_modules/lodash/_createBind.js +0 -28
- package/backend/node_modules/lodash/_createCaseFirst.js +0 -33
- package/backend/node_modules/lodash/_createCompounder.js +0 -24
- package/backend/node_modules/lodash/_createCtor.js +0 -37
- package/backend/node_modules/lodash/_createCurry.js +0 -46
- package/backend/node_modules/lodash/_createFind.js +0 -25
- package/backend/node_modules/lodash/_createFlow.js +0 -78
- package/backend/node_modules/lodash/_createHybrid.js +0 -92
- package/backend/node_modules/lodash/_createInverter.js +0 -17
- package/backend/node_modules/lodash/_createMathOperation.js +0 -38
- package/backend/node_modules/lodash/_createOver.js +0 -27
- package/backend/node_modules/lodash/_createPadding.js +0 -33
- package/backend/node_modules/lodash/_createPartial.js +0 -43
- package/backend/node_modules/lodash/_createRange.js +0 -30
- package/backend/node_modules/lodash/_createRecurry.js +0 -56
- package/backend/node_modules/lodash/_createRelationalOperation.js +0 -20
- package/backend/node_modules/lodash/_createRound.js +0 -35
- package/backend/node_modules/lodash/_createSet.js +0 -19
- package/backend/node_modules/lodash/_createToPairs.js +0 -30
- package/backend/node_modules/lodash/_createWrap.js +0 -106
- package/backend/node_modules/lodash/_customDefaultsAssignIn.js +0 -29
- package/backend/node_modules/lodash/_customDefaultsMerge.js +0 -28
- package/backend/node_modules/lodash/_customOmitClone.js +0 -16
- package/backend/node_modules/lodash/_deburrLetter.js +0 -71
- package/backend/node_modules/lodash/_defineProperty.js +0 -11
- package/backend/node_modules/lodash/_equalArrays.js +0 -84
- package/backend/node_modules/lodash/_equalByTag.js +0 -112
- package/backend/node_modules/lodash/_equalObjects.js +0 -90
- package/backend/node_modules/lodash/_escapeHtmlChar.js +0 -21
- package/backend/node_modules/lodash/_escapeStringChar.js +0 -22
- package/backend/node_modules/lodash/_flatRest.js +0 -16
- package/backend/node_modules/lodash/_freeGlobal.js +0 -4
- package/backend/node_modules/lodash/_getAllKeys.js +0 -16
- package/backend/node_modules/lodash/_getAllKeysIn.js +0 -17
- package/backend/node_modules/lodash/_getData.js +0 -15
- package/backend/node_modules/lodash/_getFuncName.js +0 -31
- package/backend/node_modules/lodash/_getHolder.js +0 -13
- package/backend/node_modules/lodash/_getMapData.js +0 -18
- package/backend/node_modules/lodash/_getMatchData.js +0 -24
- package/backend/node_modules/lodash/_getNative.js +0 -17
- package/backend/node_modules/lodash/_getPrototype.js +0 -6
- package/backend/node_modules/lodash/_getRawTag.js +0 -46
- package/backend/node_modules/lodash/_getSymbols.js +0 -30
- package/backend/node_modules/lodash/_getSymbolsIn.js +0 -25
- package/backend/node_modules/lodash/_getTag.js +0 -58
- package/backend/node_modules/lodash/_getValue.js +0 -13
- package/backend/node_modules/lodash/_getView.js +0 -33
- package/backend/node_modules/lodash/_getWrapDetails.js +0 -17
- package/backend/node_modules/lodash/_hasPath.js +0 -39
- package/backend/node_modules/lodash/_hasUnicode.js +0 -26
- package/backend/node_modules/lodash/_hasUnicodeWord.js +0 -15
- package/backend/node_modules/lodash/_hashClear.js +0 -15
- package/backend/node_modules/lodash/_hashDelete.js +0 -17
- package/backend/node_modules/lodash/_hashGet.js +0 -30
- package/backend/node_modules/lodash/_hashHas.js +0 -23
- package/backend/node_modules/lodash/_hashSet.js +0 -23
- package/backend/node_modules/lodash/_initCloneArray.js +0 -26
- package/backend/node_modules/lodash/_initCloneByTag.js +0 -77
- package/backend/node_modules/lodash/_initCloneObject.js +0 -18
- package/backend/node_modules/lodash/_insertWrapDetails.js +0 -23
- package/backend/node_modules/lodash/_isFlattenable.js +0 -20
- package/backend/node_modules/lodash/_isIndex.js +0 -25
- package/backend/node_modules/lodash/_isIterateeCall.js +0 -30
- package/backend/node_modules/lodash/_isKey.js +0 -29
- package/backend/node_modules/lodash/_isKeyable.js +0 -15
- package/backend/node_modules/lodash/_isLaziable.js +0 -28
- package/backend/node_modules/lodash/_isMaskable.js +0 -14
- package/backend/node_modules/lodash/_isMasked.js +0 -20
- package/backend/node_modules/lodash/_isPrototype.js +0 -18
- package/backend/node_modules/lodash/_isStrictComparable.js +0 -15
- package/backend/node_modules/lodash/_iteratorToArray.js +0 -18
- package/backend/node_modules/lodash/_lazyClone.js +0 -23
- package/backend/node_modules/lodash/_lazyReverse.js +0 -23
- package/backend/node_modules/lodash/_lazyValue.js +0 -69
- package/backend/node_modules/lodash/_listCacheClear.js +0 -13
- package/backend/node_modules/lodash/_listCacheDelete.js +0 -35
- package/backend/node_modules/lodash/_listCacheGet.js +0 -19
- package/backend/node_modules/lodash/_listCacheHas.js +0 -16
- package/backend/node_modules/lodash/_listCacheSet.js +0 -26
- package/backend/node_modules/lodash/_mapCacheClear.js +0 -21
- package/backend/node_modules/lodash/_mapCacheDelete.js +0 -18
- package/backend/node_modules/lodash/_mapCacheGet.js +0 -16
- package/backend/node_modules/lodash/_mapCacheHas.js +0 -16
- package/backend/node_modules/lodash/_mapCacheSet.js +0 -22
- package/backend/node_modules/lodash/_mapToArray.js +0 -18
- package/backend/node_modules/lodash/_matchesStrictComparable.js +0 -20
- package/backend/node_modules/lodash/_memoizeCapped.js +0 -26
- package/backend/node_modules/lodash/_mergeData.js +0 -90
- package/backend/node_modules/lodash/_metaMap.js +0 -6
- package/backend/node_modules/lodash/_nativeCreate.js +0 -6
- package/backend/node_modules/lodash/_nativeKeys.js +0 -6
- package/backend/node_modules/lodash/_nativeKeysIn.js +0 -20
- package/backend/node_modules/lodash/_nodeUtil.js +0 -30
- package/backend/node_modules/lodash/_objectToString.js +0 -22
- package/backend/node_modules/lodash/_overArg.js +0 -15
- package/backend/node_modules/lodash/_overRest.js +0 -36
- package/backend/node_modules/lodash/_parent.js +0 -16
- package/backend/node_modules/lodash/_reEscape.js +0 -4
- package/backend/node_modules/lodash/_reEvaluate.js +0 -4
- package/backend/node_modules/lodash/_reInterpolate.js +0 -4
- package/backend/node_modules/lodash/_realNames.js +0 -4
- package/backend/node_modules/lodash/_reorder.js +0 -29
- package/backend/node_modules/lodash/_replaceHolders.js +0 -29
- package/backend/node_modules/lodash/_root.js +0 -9
- package/backend/node_modules/lodash/_safeGet.js +0 -21
- package/backend/node_modules/lodash/_setCacheAdd.js +0 -19
- package/backend/node_modules/lodash/_setCacheHas.js +0 -14
- package/backend/node_modules/lodash/_setData.js +0 -20
- package/backend/node_modules/lodash/_setToArray.js +0 -18
- package/backend/node_modules/lodash/_setToPairs.js +0 -18
- package/backend/node_modules/lodash/_setToString.js +0 -14
- package/backend/node_modules/lodash/_setWrapToString.js +0 -21
- package/backend/node_modules/lodash/_shortOut.js +0 -37
- package/backend/node_modules/lodash/_shuffleSelf.js +0 -28
- package/backend/node_modules/lodash/_stackClear.js +0 -15
- package/backend/node_modules/lodash/_stackDelete.js +0 -18
- package/backend/node_modules/lodash/_stackGet.js +0 -14
- package/backend/node_modules/lodash/_stackHas.js +0 -14
- package/backend/node_modules/lodash/_stackSet.js +0 -34
- package/backend/node_modules/lodash/_strictIndexOf.js +0 -23
- package/backend/node_modules/lodash/_strictLastIndexOf.js +0 -21
- package/backend/node_modules/lodash/_stringSize.js +0 -18
- package/backend/node_modules/lodash/_stringToArray.js +0 -18
- package/backend/node_modules/lodash/_stringToPath.js +0 -27
- package/backend/node_modules/lodash/_toKey.js +0 -21
- package/backend/node_modules/lodash/_toSource.js +0 -26
- package/backend/node_modules/lodash/_trimmedEndIndex.js +0 -19
- package/backend/node_modules/lodash/_unescapeHtmlChar.js +0 -21
- package/backend/node_modules/lodash/_unicodeSize.js +0 -44
- package/backend/node_modules/lodash/_unicodeToArray.js +0 -40
- package/backend/node_modules/lodash/_unicodeWords.js +0 -69
- package/backend/node_modules/lodash/_updateWrapDetails.js +0 -46
- package/backend/node_modules/lodash/_wrapperClone.js +0 -23
- package/backend/node_modules/lodash/add.js +0 -22
- package/backend/node_modules/lodash/after.js +0 -42
- package/backend/node_modules/lodash/array.js +0 -67
- package/backend/node_modules/lodash/ary.js +0 -29
- package/backend/node_modules/lodash/assign.js +0 -58
- package/backend/node_modules/lodash/assignIn.js +0 -40
- package/backend/node_modules/lodash/assignInWith.js +0 -38
- package/backend/node_modules/lodash/assignWith.js +0 -37
- package/backend/node_modules/lodash/at.js +0 -23
- package/backend/node_modules/lodash/attempt.js +0 -35
- package/backend/node_modules/lodash/before.js +0 -40
- package/backend/node_modules/lodash/bind.js +0 -57
- package/backend/node_modules/lodash/bindAll.js +0 -41
- package/backend/node_modules/lodash/bindKey.js +0 -68
- package/backend/node_modules/lodash/camelCase.js +0 -29
- package/backend/node_modules/lodash/capitalize.js +0 -23
- package/backend/node_modules/lodash/castArray.js +0 -44
- package/backend/node_modules/lodash/ceil.js +0 -26
- package/backend/node_modules/lodash/chain.js +0 -38
- package/backend/node_modules/lodash/chunk.js +0 -50
- package/backend/node_modules/lodash/clamp.js +0 -39
- package/backend/node_modules/lodash/clone.js +0 -36
- package/backend/node_modules/lodash/cloneDeep.js +0 -29
- package/backend/node_modules/lodash/cloneDeepWith.js +0 -40
- package/backend/node_modules/lodash/cloneWith.js +0 -42
- package/backend/node_modules/lodash/collection.js +0 -30
- package/backend/node_modules/lodash/commit.js +0 -33
- package/backend/node_modules/lodash/compact.js +0 -31
- package/backend/node_modules/lodash/concat.js +0 -43
- package/backend/node_modules/lodash/cond.js +0 -60
- package/backend/node_modules/lodash/conforms.js +0 -35
- package/backend/node_modules/lodash/conformsTo.js +0 -32
- package/backend/node_modules/lodash/constant.js +0 -26
- package/backend/node_modules/lodash/core.js +0 -3877
- package/backend/node_modules/lodash/core.min.js +0 -29
- package/backend/node_modules/lodash/countBy.js +0 -40
- package/backend/node_modules/lodash/create.js +0 -43
- package/backend/node_modules/lodash/curry.js +0 -57
- package/backend/node_modules/lodash/curryRight.js +0 -54
- package/backend/node_modules/lodash/date.js +0 -3
- package/backend/node_modules/lodash/debounce.js +0 -191
- package/backend/node_modules/lodash/deburr.js +0 -45
- package/backend/node_modules/lodash/defaultTo.js +0 -25
- package/backend/node_modules/lodash/defaults.js +0 -64
- package/backend/node_modules/lodash/defaultsDeep.js +0 -30
- package/backend/node_modules/lodash/defer.js +0 -26
- package/backend/node_modules/lodash/delay.js +0 -28
- package/backend/node_modules/lodash/difference.js +0 -33
- package/backend/node_modules/lodash/differenceBy.js +0 -44
- package/backend/node_modules/lodash/differenceWith.js +0 -40
- package/backend/node_modules/lodash/divide.js +0 -22
- package/backend/node_modules/lodash/drop.js +0 -38
- package/backend/node_modules/lodash/dropRight.js +0 -39
- package/backend/node_modules/lodash/dropRightWhile.js +0 -45
- package/backend/node_modules/lodash/dropWhile.js +0 -45
- package/backend/node_modules/lodash/each.js +0 -1
- package/backend/node_modules/lodash/eachRight.js +0 -1
- package/backend/node_modules/lodash/endsWith.js +0 -43
- package/backend/node_modules/lodash/entries.js +0 -1
- package/backend/node_modules/lodash/entriesIn.js +0 -1
- package/backend/node_modules/lodash/eq.js +0 -37
- package/backend/node_modules/lodash/escape.js +0 -43
- package/backend/node_modules/lodash/escapeRegExp.js +0 -32
- package/backend/node_modules/lodash/every.js +0 -56
- package/backend/node_modules/lodash/extend.js +0 -1
- package/backend/node_modules/lodash/extendWith.js +0 -1
- package/backend/node_modules/lodash/fill.js +0 -45
- package/backend/node_modules/lodash/filter.js +0 -52
- package/backend/node_modules/lodash/find.js +0 -42
- package/backend/node_modules/lodash/findIndex.js +0 -55
- package/backend/node_modules/lodash/findKey.js +0 -44
- package/backend/node_modules/lodash/findLast.js +0 -25
- package/backend/node_modules/lodash/findLastIndex.js +0 -59
- package/backend/node_modules/lodash/findLastKey.js +0 -44
- package/backend/node_modules/lodash/first.js +0 -1
- package/backend/node_modules/lodash/flatMap.js +0 -29
- package/backend/node_modules/lodash/flatMapDeep.js +0 -31
- package/backend/node_modules/lodash/flatMapDepth.js +0 -31
- package/backend/node_modules/lodash/flatten.js +0 -22
- package/backend/node_modules/lodash/flattenDeep.js +0 -25
- package/backend/node_modules/lodash/flattenDepth.js +0 -33
- package/backend/node_modules/lodash/flip.js +0 -28
- package/backend/node_modules/lodash/floor.js +0 -26
- package/backend/node_modules/lodash/flow.js +0 -27
- package/backend/node_modules/lodash/flowRight.js +0 -26
- package/backend/node_modules/lodash/forEach.js +0 -41
- package/backend/node_modules/lodash/forEachRight.js +0 -31
- package/backend/node_modules/lodash/forIn.js +0 -39
- package/backend/node_modules/lodash/forInRight.js +0 -37
- package/backend/node_modules/lodash/forOwn.js +0 -36
- package/backend/node_modules/lodash/forOwnRight.js +0 -34
- package/backend/node_modules/lodash/fp/F.js +0 -1
- package/backend/node_modules/lodash/fp/T.js +0 -1
- package/backend/node_modules/lodash/fp/__.js +0 -1
- package/backend/node_modules/lodash/fp/_baseConvert.js +0 -569
- package/backend/node_modules/lodash/fp/_convertBrowser.js +0 -18
- package/backend/node_modules/lodash/fp/_falseOptions.js +0 -7
- package/backend/node_modules/lodash/fp/_mapping.js +0 -358
- package/backend/node_modules/lodash/fp/_util.js +0 -16
- package/backend/node_modules/lodash/fp/add.js +0 -5
- package/backend/node_modules/lodash/fp/after.js +0 -5
- package/backend/node_modules/lodash/fp/all.js +0 -1
- package/backend/node_modules/lodash/fp/allPass.js +0 -1
- package/backend/node_modules/lodash/fp/always.js +0 -1
- package/backend/node_modules/lodash/fp/any.js +0 -1
- package/backend/node_modules/lodash/fp/anyPass.js +0 -1
- package/backend/node_modules/lodash/fp/apply.js +0 -1
- package/backend/node_modules/lodash/fp/array.js +0 -2
- package/backend/node_modules/lodash/fp/ary.js +0 -5
- package/backend/node_modules/lodash/fp/assign.js +0 -5
- package/backend/node_modules/lodash/fp/assignAll.js +0 -5
- package/backend/node_modules/lodash/fp/assignAllWith.js +0 -5
- package/backend/node_modules/lodash/fp/assignIn.js +0 -5
- package/backend/node_modules/lodash/fp/assignInAll.js +0 -5
- package/backend/node_modules/lodash/fp/assignInAllWith.js +0 -5
- package/backend/node_modules/lodash/fp/assignInWith.js +0 -5
- package/backend/node_modules/lodash/fp/assignWith.js +0 -5
- package/backend/node_modules/lodash/fp/assoc.js +0 -1
- package/backend/node_modules/lodash/fp/assocPath.js +0 -1
- package/backend/node_modules/lodash/fp/at.js +0 -5
- package/backend/node_modules/lodash/fp/attempt.js +0 -5
- package/backend/node_modules/lodash/fp/before.js +0 -5
- package/backend/node_modules/lodash/fp/bind.js +0 -5
- package/backend/node_modules/lodash/fp/bindAll.js +0 -5
- package/backend/node_modules/lodash/fp/bindKey.js +0 -5
- package/backend/node_modules/lodash/fp/camelCase.js +0 -5
- package/backend/node_modules/lodash/fp/capitalize.js +0 -5
- package/backend/node_modules/lodash/fp/castArray.js +0 -5
- package/backend/node_modules/lodash/fp/ceil.js +0 -5
- package/backend/node_modules/lodash/fp/chain.js +0 -5
- package/backend/node_modules/lodash/fp/chunk.js +0 -5
- package/backend/node_modules/lodash/fp/clamp.js +0 -5
- package/backend/node_modules/lodash/fp/clone.js +0 -5
- package/backend/node_modules/lodash/fp/cloneDeep.js +0 -5
- package/backend/node_modules/lodash/fp/cloneDeepWith.js +0 -5
- package/backend/node_modules/lodash/fp/cloneWith.js +0 -5
- package/backend/node_modules/lodash/fp/collection.js +0 -2
- package/backend/node_modules/lodash/fp/commit.js +0 -5
- package/backend/node_modules/lodash/fp/compact.js +0 -5
- package/backend/node_modules/lodash/fp/complement.js +0 -1
- package/backend/node_modules/lodash/fp/compose.js +0 -1
- package/backend/node_modules/lodash/fp/concat.js +0 -5
- package/backend/node_modules/lodash/fp/cond.js +0 -5
- package/backend/node_modules/lodash/fp/conforms.js +0 -1
- package/backend/node_modules/lodash/fp/conformsTo.js +0 -5
- package/backend/node_modules/lodash/fp/constant.js +0 -5
- package/backend/node_modules/lodash/fp/contains.js +0 -1
- package/backend/node_modules/lodash/fp/convert.js +0 -18
- package/backend/node_modules/lodash/fp/countBy.js +0 -5
- package/backend/node_modules/lodash/fp/create.js +0 -5
- package/backend/node_modules/lodash/fp/curry.js +0 -5
- package/backend/node_modules/lodash/fp/curryN.js +0 -5
- package/backend/node_modules/lodash/fp/curryRight.js +0 -5
- package/backend/node_modules/lodash/fp/curryRightN.js +0 -5
- package/backend/node_modules/lodash/fp/date.js +0 -2
- package/backend/node_modules/lodash/fp/debounce.js +0 -5
- package/backend/node_modules/lodash/fp/deburr.js +0 -5
- package/backend/node_modules/lodash/fp/defaultTo.js +0 -5
- package/backend/node_modules/lodash/fp/defaults.js +0 -5
- package/backend/node_modules/lodash/fp/defaultsAll.js +0 -5
- package/backend/node_modules/lodash/fp/defaultsDeep.js +0 -5
- package/backend/node_modules/lodash/fp/defaultsDeepAll.js +0 -5
- package/backend/node_modules/lodash/fp/defer.js +0 -5
- package/backend/node_modules/lodash/fp/delay.js +0 -5
- package/backend/node_modules/lodash/fp/difference.js +0 -5
- package/backend/node_modules/lodash/fp/differenceBy.js +0 -5
- package/backend/node_modules/lodash/fp/differenceWith.js +0 -5
- package/backend/node_modules/lodash/fp/dissoc.js +0 -1
- package/backend/node_modules/lodash/fp/dissocPath.js +0 -1
- package/backend/node_modules/lodash/fp/divide.js +0 -5
- package/backend/node_modules/lodash/fp/drop.js +0 -5
- package/backend/node_modules/lodash/fp/dropLast.js +0 -1
- package/backend/node_modules/lodash/fp/dropLastWhile.js +0 -1
- package/backend/node_modules/lodash/fp/dropRight.js +0 -5
- package/backend/node_modules/lodash/fp/dropRightWhile.js +0 -5
- package/backend/node_modules/lodash/fp/dropWhile.js +0 -5
- package/backend/node_modules/lodash/fp/each.js +0 -1
- package/backend/node_modules/lodash/fp/eachRight.js +0 -1
- package/backend/node_modules/lodash/fp/endsWith.js +0 -5
- package/backend/node_modules/lodash/fp/entries.js +0 -1
- package/backend/node_modules/lodash/fp/entriesIn.js +0 -1
- package/backend/node_modules/lodash/fp/eq.js +0 -5
- package/backend/node_modules/lodash/fp/equals.js +0 -1
- package/backend/node_modules/lodash/fp/escape.js +0 -5
- package/backend/node_modules/lodash/fp/escapeRegExp.js +0 -5
- package/backend/node_modules/lodash/fp/every.js +0 -5
- package/backend/node_modules/lodash/fp/extend.js +0 -1
- package/backend/node_modules/lodash/fp/extendAll.js +0 -1
- package/backend/node_modules/lodash/fp/extendAllWith.js +0 -1
- package/backend/node_modules/lodash/fp/extendWith.js +0 -1
- package/backend/node_modules/lodash/fp/fill.js +0 -5
- package/backend/node_modules/lodash/fp/filter.js +0 -5
- package/backend/node_modules/lodash/fp/find.js +0 -5
- package/backend/node_modules/lodash/fp/findFrom.js +0 -5
- package/backend/node_modules/lodash/fp/findIndex.js +0 -5
- package/backend/node_modules/lodash/fp/findIndexFrom.js +0 -5
- package/backend/node_modules/lodash/fp/findKey.js +0 -5
- package/backend/node_modules/lodash/fp/findLast.js +0 -5
- package/backend/node_modules/lodash/fp/findLastFrom.js +0 -5
- package/backend/node_modules/lodash/fp/findLastIndex.js +0 -5
- package/backend/node_modules/lodash/fp/findLastIndexFrom.js +0 -5
- package/backend/node_modules/lodash/fp/findLastKey.js +0 -5
- package/backend/node_modules/lodash/fp/first.js +0 -1
- package/backend/node_modules/lodash/fp/flatMap.js +0 -5
- package/backend/node_modules/lodash/fp/flatMapDeep.js +0 -5
- package/backend/node_modules/lodash/fp/flatMapDepth.js +0 -5
- package/backend/node_modules/lodash/fp/flatten.js +0 -5
- package/backend/node_modules/lodash/fp/flattenDeep.js +0 -5
- package/backend/node_modules/lodash/fp/flattenDepth.js +0 -5
- package/backend/node_modules/lodash/fp/flip.js +0 -5
- package/backend/node_modules/lodash/fp/floor.js +0 -5
- package/backend/node_modules/lodash/fp/flow.js +0 -5
- package/backend/node_modules/lodash/fp/flowRight.js +0 -5
- package/backend/node_modules/lodash/fp/forEach.js +0 -5
- package/backend/node_modules/lodash/fp/forEachRight.js +0 -5
- package/backend/node_modules/lodash/fp/forIn.js +0 -5
- package/backend/node_modules/lodash/fp/forInRight.js +0 -5
- package/backend/node_modules/lodash/fp/forOwn.js +0 -5
- package/backend/node_modules/lodash/fp/forOwnRight.js +0 -5
- package/backend/node_modules/lodash/fp/fromPairs.js +0 -5
- package/backend/node_modules/lodash/fp/function.js +0 -2
- package/backend/node_modules/lodash/fp/functions.js +0 -5
- package/backend/node_modules/lodash/fp/functionsIn.js +0 -5
- package/backend/node_modules/lodash/fp/get.js +0 -5
- package/backend/node_modules/lodash/fp/getOr.js +0 -5
- package/backend/node_modules/lodash/fp/groupBy.js +0 -5
- package/backend/node_modules/lodash/fp/gt.js +0 -5
- package/backend/node_modules/lodash/fp/gte.js +0 -5
- package/backend/node_modules/lodash/fp/has.js +0 -5
- package/backend/node_modules/lodash/fp/hasIn.js +0 -5
- package/backend/node_modules/lodash/fp/head.js +0 -5
- package/backend/node_modules/lodash/fp/identical.js +0 -1
- package/backend/node_modules/lodash/fp/identity.js +0 -5
- package/backend/node_modules/lodash/fp/inRange.js +0 -5
- package/backend/node_modules/lodash/fp/includes.js +0 -5
- package/backend/node_modules/lodash/fp/includesFrom.js +0 -5
- package/backend/node_modules/lodash/fp/indexBy.js +0 -1
- package/backend/node_modules/lodash/fp/indexOf.js +0 -5
- package/backend/node_modules/lodash/fp/indexOfFrom.js +0 -5
- package/backend/node_modules/lodash/fp/init.js +0 -1
- package/backend/node_modules/lodash/fp/initial.js +0 -5
- package/backend/node_modules/lodash/fp/intersection.js +0 -5
- package/backend/node_modules/lodash/fp/intersectionBy.js +0 -5
- package/backend/node_modules/lodash/fp/intersectionWith.js +0 -5
- package/backend/node_modules/lodash/fp/invert.js +0 -5
- package/backend/node_modules/lodash/fp/invertBy.js +0 -5
- package/backend/node_modules/lodash/fp/invertObj.js +0 -1
- package/backend/node_modules/lodash/fp/invoke.js +0 -5
- package/backend/node_modules/lodash/fp/invokeArgs.js +0 -5
- package/backend/node_modules/lodash/fp/invokeArgsMap.js +0 -5
- package/backend/node_modules/lodash/fp/invokeMap.js +0 -5
- package/backend/node_modules/lodash/fp/isArguments.js +0 -5
- package/backend/node_modules/lodash/fp/isArray.js +0 -5
- package/backend/node_modules/lodash/fp/isArrayBuffer.js +0 -5
- package/backend/node_modules/lodash/fp/isArrayLike.js +0 -5
- package/backend/node_modules/lodash/fp/isArrayLikeObject.js +0 -5
- package/backend/node_modules/lodash/fp/isBoolean.js +0 -5
- package/backend/node_modules/lodash/fp/isBuffer.js +0 -5
- package/backend/node_modules/lodash/fp/isDate.js +0 -5
- package/backend/node_modules/lodash/fp/isElement.js +0 -5
- package/backend/node_modules/lodash/fp/isEmpty.js +0 -5
- package/backend/node_modules/lodash/fp/isEqual.js +0 -5
- package/backend/node_modules/lodash/fp/isEqualWith.js +0 -5
- package/backend/node_modules/lodash/fp/isError.js +0 -5
- package/backend/node_modules/lodash/fp/isFinite.js +0 -5
- package/backend/node_modules/lodash/fp/isFunction.js +0 -5
- package/backend/node_modules/lodash/fp/isInteger.js +0 -5
- package/backend/node_modules/lodash/fp/isLength.js +0 -5
- package/backend/node_modules/lodash/fp/isMap.js +0 -5
- package/backend/node_modules/lodash/fp/isMatch.js +0 -5
- package/backend/node_modules/lodash/fp/isMatchWith.js +0 -5
- package/backend/node_modules/lodash/fp/isNaN.js +0 -5
- package/backend/node_modules/lodash/fp/isNative.js +0 -5
- package/backend/node_modules/lodash/fp/isNil.js +0 -5
- package/backend/node_modules/lodash/fp/isNull.js +0 -5
- package/backend/node_modules/lodash/fp/isNumber.js +0 -5
- package/backend/node_modules/lodash/fp/isObject.js +0 -5
- package/backend/node_modules/lodash/fp/isObjectLike.js +0 -5
- package/backend/node_modules/lodash/fp/isPlainObject.js +0 -5
- package/backend/node_modules/lodash/fp/isRegExp.js +0 -5
- package/backend/node_modules/lodash/fp/isSafeInteger.js +0 -5
- package/backend/node_modules/lodash/fp/isSet.js +0 -5
- package/backend/node_modules/lodash/fp/isString.js +0 -5
- package/backend/node_modules/lodash/fp/isSymbol.js +0 -5
- package/backend/node_modules/lodash/fp/isTypedArray.js +0 -5
- package/backend/node_modules/lodash/fp/isUndefined.js +0 -5
- package/backend/node_modules/lodash/fp/isWeakMap.js +0 -5
- package/backend/node_modules/lodash/fp/isWeakSet.js +0 -5
- package/backend/node_modules/lodash/fp/iteratee.js +0 -5
- package/backend/node_modules/lodash/fp/join.js +0 -5
- package/backend/node_modules/lodash/fp/juxt.js +0 -1
- package/backend/node_modules/lodash/fp/kebabCase.js +0 -5
- package/backend/node_modules/lodash/fp/keyBy.js +0 -5
- package/backend/node_modules/lodash/fp/keys.js +0 -5
- package/backend/node_modules/lodash/fp/keysIn.js +0 -5
- package/backend/node_modules/lodash/fp/lang.js +0 -2
- package/backend/node_modules/lodash/fp/last.js +0 -5
- package/backend/node_modules/lodash/fp/lastIndexOf.js +0 -5
- package/backend/node_modules/lodash/fp/lastIndexOfFrom.js +0 -5
- package/backend/node_modules/lodash/fp/lowerCase.js +0 -5
- package/backend/node_modules/lodash/fp/lowerFirst.js +0 -5
- package/backend/node_modules/lodash/fp/lt.js +0 -5
- package/backend/node_modules/lodash/fp/lte.js +0 -5
- package/backend/node_modules/lodash/fp/map.js +0 -5
- package/backend/node_modules/lodash/fp/mapKeys.js +0 -5
- package/backend/node_modules/lodash/fp/mapValues.js +0 -5
- package/backend/node_modules/lodash/fp/matches.js +0 -1
- package/backend/node_modules/lodash/fp/matchesProperty.js +0 -5
- package/backend/node_modules/lodash/fp/math.js +0 -2
- package/backend/node_modules/lodash/fp/max.js +0 -5
- package/backend/node_modules/lodash/fp/maxBy.js +0 -5
- package/backend/node_modules/lodash/fp/mean.js +0 -5
- package/backend/node_modules/lodash/fp/meanBy.js +0 -5
- package/backend/node_modules/lodash/fp/memoize.js +0 -5
- package/backend/node_modules/lodash/fp/merge.js +0 -5
- package/backend/node_modules/lodash/fp/mergeAll.js +0 -5
- package/backend/node_modules/lodash/fp/mergeAllWith.js +0 -5
- package/backend/node_modules/lodash/fp/mergeWith.js +0 -5
- package/backend/node_modules/lodash/fp/method.js +0 -5
- package/backend/node_modules/lodash/fp/methodOf.js +0 -5
- package/backend/node_modules/lodash/fp/min.js +0 -5
- package/backend/node_modules/lodash/fp/minBy.js +0 -5
- package/backend/node_modules/lodash/fp/mixin.js +0 -5
- package/backend/node_modules/lodash/fp/multiply.js +0 -5
- package/backend/node_modules/lodash/fp/nAry.js +0 -1
- package/backend/node_modules/lodash/fp/negate.js +0 -5
- package/backend/node_modules/lodash/fp/next.js +0 -5
- package/backend/node_modules/lodash/fp/noop.js +0 -5
- package/backend/node_modules/lodash/fp/now.js +0 -5
- package/backend/node_modules/lodash/fp/nth.js +0 -5
- package/backend/node_modules/lodash/fp/nthArg.js +0 -5
- package/backend/node_modules/lodash/fp/number.js +0 -2
- package/backend/node_modules/lodash/fp/object.js +0 -2
- package/backend/node_modules/lodash/fp/omit.js +0 -5
- package/backend/node_modules/lodash/fp/omitAll.js +0 -1
- package/backend/node_modules/lodash/fp/omitBy.js +0 -5
- package/backend/node_modules/lodash/fp/once.js +0 -5
- package/backend/node_modules/lodash/fp/orderBy.js +0 -5
- package/backend/node_modules/lodash/fp/over.js +0 -5
- package/backend/node_modules/lodash/fp/overArgs.js +0 -5
- package/backend/node_modules/lodash/fp/overEvery.js +0 -5
- package/backend/node_modules/lodash/fp/overSome.js +0 -5
- package/backend/node_modules/lodash/fp/pad.js +0 -5
- package/backend/node_modules/lodash/fp/padChars.js +0 -5
- package/backend/node_modules/lodash/fp/padCharsEnd.js +0 -5
- package/backend/node_modules/lodash/fp/padCharsStart.js +0 -5
- package/backend/node_modules/lodash/fp/padEnd.js +0 -5
- package/backend/node_modules/lodash/fp/padStart.js +0 -5
- package/backend/node_modules/lodash/fp/parseInt.js +0 -5
- package/backend/node_modules/lodash/fp/partial.js +0 -5
- package/backend/node_modules/lodash/fp/partialRight.js +0 -5
- package/backend/node_modules/lodash/fp/partition.js +0 -5
- package/backend/node_modules/lodash/fp/path.js +0 -1
- package/backend/node_modules/lodash/fp/pathEq.js +0 -1
- package/backend/node_modules/lodash/fp/pathOr.js +0 -1
- package/backend/node_modules/lodash/fp/paths.js +0 -1
- package/backend/node_modules/lodash/fp/pick.js +0 -5
- package/backend/node_modules/lodash/fp/pickAll.js +0 -1
- package/backend/node_modules/lodash/fp/pickBy.js +0 -5
- package/backend/node_modules/lodash/fp/pipe.js +0 -1
- package/backend/node_modules/lodash/fp/placeholder.js +0 -6
- package/backend/node_modules/lodash/fp/plant.js +0 -5
- package/backend/node_modules/lodash/fp/pluck.js +0 -1
- package/backend/node_modules/lodash/fp/prop.js +0 -1
- package/backend/node_modules/lodash/fp/propEq.js +0 -1
- package/backend/node_modules/lodash/fp/propOr.js +0 -1
- package/backend/node_modules/lodash/fp/property.js +0 -1
- package/backend/node_modules/lodash/fp/propertyOf.js +0 -5
- package/backend/node_modules/lodash/fp/props.js +0 -1
- package/backend/node_modules/lodash/fp/pull.js +0 -5
- package/backend/node_modules/lodash/fp/pullAll.js +0 -5
- package/backend/node_modules/lodash/fp/pullAllBy.js +0 -5
- package/backend/node_modules/lodash/fp/pullAllWith.js +0 -5
- package/backend/node_modules/lodash/fp/pullAt.js +0 -5
- package/backend/node_modules/lodash/fp/random.js +0 -5
- package/backend/node_modules/lodash/fp/range.js +0 -5
- package/backend/node_modules/lodash/fp/rangeRight.js +0 -5
- package/backend/node_modules/lodash/fp/rangeStep.js +0 -5
- package/backend/node_modules/lodash/fp/rangeStepRight.js +0 -5
- package/backend/node_modules/lodash/fp/rearg.js +0 -5
- package/backend/node_modules/lodash/fp/reduce.js +0 -5
- package/backend/node_modules/lodash/fp/reduceRight.js +0 -5
- package/backend/node_modules/lodash/fp/reject.js +0 -5
- package/backend/node_modules/lodash/fp/remove.js +0 -5
- package/backend/node_modules/lodash/fp/repeat.js +0 -5
- package/backend/node_modules/lodash/fp/replace.js +0 -5
- package/backend/node_modules/lodash/fp/rest.js +0 -5
- package/backend/node_modules/lodash/fp/restFrom.js +0 -5
- package/backend/node_modules/lodash/fp/result.js +0 -5
- package/backend/node_modules/lodash/fp/reverse.js +0 -5
- package/backend/node_modules/lodash/fp/round.js +0 -5
- package/backend/node_modules/lodash/fp/sample.js +0 -5
- package/backend/node_modules/lodash/fp/sampleSize.js +0 -5
- package/backend/node_modules/lodash/fp/seq.js +0 -2
- package/backend/node_modules/lodash/fp/set.js +0 -5
- package/backend/node_modules/lodash/fp/setWith.js +0 -5
- package/backend/node_modules/lodash/fp/shuffle.js +0 -5
- package/backend/node_modules/lodash/fp/size.js +0 -5
- package/backend/node_modules/lodash/fp/slice.js +0 -5
- package/backend/node_modules/lodash/fp/snakeCase.js +0 -5
- package/backend/node_modules/lodash/fp/some.js +0 -5
- package/backend/node_modules/lodash/fp/sortBy.js +0 -5
- package/backend/node_modules/lodash/fp/sortedIndex.js +0 -5
- package/backend/node_modules/lodash/fp/sortedIndexBy.js +0 -5
- package/backend/node_modules/lodash/fp/sortedIndexOf.js +0 -5
- package/backend/node_modules/lodash/fp/sortedLastIndex.js +0 -5
- package/backend/node_modules/lodash/fp/sortedLastIndexBy.js +0 -5
- package/backend/node_modules/lodash/fp/sortedLastIndexOf.js +0 -5
- package/backend/node_modules/lodash/fp/sortedUniq.js +0 -5
- package/backend/node_modules/lodash/fp/sortedUniqBy.js +0 -5
- package/backend/node_modules/lodash/fp/split.js +0 -5
- package/backend/node_modules/lodash/fp/spread.js +0 -5
- package/backend/node_modules/lodash/fp/spreadFrom.js +0 -5
- package/backend/node_modules/lodash/fp/startCase.js +0 -5
- package/backend/node_modules/lodash/fp/startsWith.js +0 -5
- package/backend/node_modules/lodash/fp/string.js +0 -2
- package/backend/node_modules/lodash/fp/stubArray.js +0 -5
- package/backend/node_modules/lodash/fp/stubFalse.js +0 -5
- package/backend/node_modules/lodash/fp/stubObject.js +0 -5
- package/backend/node_modules/lodash/fp/stubString.js +0 -5
- package/backend/node_modules/lodash/fp/stubTrue.js +0 -5
- package/backend/node_modules/lodash/fp/subtract.js +0 -5
- package/backend/node_modules/lodash/fp/sum.js +0 -5
- package/backend/node_modules/lodash/fp/sumBy.js +0 -5
- package/backend/node_modules/lodash/fp/symmetricDifference.js +0 -1
- package/backend/node_modules/lodash/fp/symmetricDifferenceBy.js +0 -1
- package/backend/node_modules/lodash/fp/symmetricDifferenceWith.js +0 -1
- package/backend/node_modules/lodash/fp/tail.js +0 -5
- package/backend/node_modules/lodash/fp/take.js +0 -5
- package/backend/node_modules/lodash/fp/takeLast.js +0 -1
- package/backend/node_modules/lodash/fp/takeLastWhile.js +0 -1
- package/backend/node_modules/lodash/fp/takeRight.js +0 -5
- package/backend/node_modules/lodash/fp/takeRightWhile.js +0 -5
- package/backend/node_modules/lodash/fp/takeWhile.js +0 -5
- package/backend/node_modules/lodash/fp/tap.js +0 -5
- package/backend/node_modules/lodash/fp/template.js +0 -5
- package/backend/node_modules/lodash/fp/templateSettings.js +0 -5
- package/backend/node_modules/lodash/fp/throttle.js +0 -5
- package/backend/node_modules/lodash/fp/thru.js +0 -5
- package/backend/node_modules/lodash/fp/times.js +0 -5
- package/backend/node_modules/lodash/fp/toArray.js +0 -5
- package/backend/node_modules/lodash/fp/toFinite.js +0 -5
- package/backend/node_modules/lodash/fp/toInteger.js +0 -5
- package/backend/node_modules/lodash/fp/toIterator.js +0 -5
- package/backend/node_modules/lodash/fp/toJSON.js +0 -5
- package/backend/node_modules/lodash/fp/toLength.js +0 -5
- package/backend/node_modules/lodash/fp/toLower.js +0 -5
- package/backend/node_modules/lodash/fp/toNumber.js +0 -5
- package/backend/node_modules/lodash/fp/toPairs.js +0 -5
- package/backend/node_modules/lodash/fp/toPairsIn.js +0 -5
- package/backend/node_modules/lodash/fp/toPath.js +0 -5
- package/backend/node_modules/lodash/fp/toPlainObject.js +0 -5
- package/backend/node_modules/lodash/fp/toSafeInteger.js +0 -5
- package/backend/node_modules/lodash/fp/toString.js +0 -5
- package/backend/node_modules/lodash/fp/toUpper.js +0 -5
- package/backend/node_modules/lodash/fp/transform.js +0 -5
- package/backend/node_modules/lodash/fp/trim.js +0 -5
- package/backend/node_modules/lodash/fp/trimChars.js +0 -5
- package/backend/node_modules/lodash/fp/trimCharsEnd.js +0 -5
- package/backend/node_modules/lodash/fp/trimCharsStart.js +0 -5
- package/backend/node_modules/lodash/fp/trimEnd.js +0 -5
- package/backend/node_modules/lodash/fp/trimStart.js +0 -5
- package/backend/node_modules/lodash/fp/truncate.js +0 -5
- package/backend/node_modules/lodash/fp/unapply.js +0 -1
- package/backend/node_modules/lodash/fp/unary.js +0 -5
- package/backend/node_modules/lodash/fp/unescape.js +0 -5
- package/backend/node_modules/lodash/fp/union.js +0 -5
- package/backend/node_modules/lodash/fp/unionBy.js +0 -5
- package/backend/node_modules/lodash/fp/unionWith.js +0 -5
- package/backend/node_modules/lodash/fp/uniq.js +0 -5
- package/backend/node_modules/lodash/fp/uniqBy.js +0 -5
- package/backend/node_modules/lodash/fp/uniqWith.js +0 -5
- package/backend/node_modules/lodash/fp/uniqueId.js +0 -5
- package/backend/node_modules/lodash/fp/unnest.js +0 -1
- package/backend/node_modules/lodash/fp/unset.js +0 -5
- package/backend/node_modules/lodash/fp/unzip.js +0 -5
- package/backend/node_modules/lodash/fp/unzipWith.js +0 -5
- package/backend/node_modules/lodash/fp/update.js +0 -5
- package/backend/node_modules/lodash/fp/updateWith.js +0 -5
- package/backend/node_modules/lodash/fp/upperCase.js +0 -5
- package/backend/node_modules/lodash/fp/upperFirst.js +0 -5
- package/backend/node_modules/lodash/fp/useWith.js +0 -1
- package/backend/node_modules/lodash/fp/util.js +0 -2
- package/backend/node_modules/lodash/fp/value.js +0 -5
- package/backend/node_modules/lodash/fp/valueOf.js +0 -5
- package/backend/node_modules/lodash/fp/values.js +0 -5
- package/backend/node_modules/lodash/fp/valuesIn.js +0 -5
- package/backend/node_modules/lodash/fp/where.js +0 -1
- package/backend/node_modules/lodash/fp/whereEq.js +0 -1
- package/backend/node_modules/lodash/fp/without.js +0 -5
- package/backend/node_modules/lodash/fp/words.js +0 -5
- package/backend/node_modules/lodash/fp/wrap.js +0 -5
- package/backend/node_modules/lodash/fp/wrapperAt.js +0 -5
- package/backend/node_modules/lodash/fp/wrapperChain.js +0 -5
- package/backend/node_modules/lodash/fp/wrapperLodash.js +0 -5
- package/backend/node_modules/lodash/fp/wrapperReverse.js +0 -5
- package/backend/node_modules/lodash/fp/wrapperValue.js +0 -5
- package/backend/node_modules/lodash/fp/xor.js +0 -5
- package/backend/node_modules/lodash/fp/xorBy.js +0 -5
- package/backend/node_modules/lodash/fp/xorWith.js +0 -5
- package/backend/node_modules/lodash/fp/zip.js +0 -5
- package/backend/node_modules/lodash/fp/zipAll.js +0 -5
- package/backend/node_modules/lodash/fp/zipObj.js +0 -1
- package/backend/node_modules/lodash/fp/zipObject.js +0 -5
- package/backend/node_modules/lodash/fp/zipObjectDeep.js +0 -5
- package/backend/node_modules/lodash/fp/zipWith.js +0 -5
- package/backend/node_modules/lodash/fp.js +0 -2
- package/backend/node_modules/lodash/fromPairs.js +0 -28
- package/backend/node_modules/lodash/function.js +0 -25
- package/backend/node_modules/lodash/functions.js +0 -31
- package/backend/node_modules/lodash/functionsIn.js +0 -31
- package/backend/node_modules/lodash/get.js +0 -33
- package/backend/node_modules/lodash/groupBy.js +0 -41
- package/backend/node_modules/lodash/gt.js +0 -29
- package/backend/node_modules/lodash/gte.js +0 -30
- package/backend/node_modules/lodash/has.js +0 -35
- package/backend/node_modules/lodash/hasIn.js +0 -34
- package/backend/node_modules/lodash/head.js +0 -23
- package/backend/node_modules/lodash/identity.js +0 -21
- package/backend/node_modules/lodash/inRange.js +0 -55
- package/backend/node_modules/lodash/includes.js +0 -53
- package/backend/node_modules/lodash/index.js +0 -1
- package/backend/node_modules/lodash/indexOf.js +0 -42
- package/backend/node_modules/lodash/initial.js +0 -22
- package/backend/node_modules/lodash/intersection.js +0 -30
- package/backend/node_modules/lodash/intersectionBy.js +0 -45
- package/backend/node_modules/lodash/intersectionWith.js +0 -41
- package/backend/node_modules/lodash/invert.js +0 -42
- package/backend/node_modules/lodash/invertBy.js +0 -56
- package/backend/node_modules/lodash/invoke.js +0 -24
- package/backend/node_modules/lodash/invokeMap.js +0 -41
- package/backend/node_modules/lodash/isArguments.js +0 -36
- package/backend/node_modules/lodash/isArray.js +0 -26
- package/backend/node_modules/lodash/isArrayBuffer.js +0 -27
- package/backend/node_modules/lodash/isArrayLike.js +0 -33
- package/backend/node_modules/lodash/isArrayLikeObject.js +0 -33
- package/backend/node_modules/lodash/isBoolean.js +0 -29
- package/backend/node_modules/lodash/isBuffer.js +0 -38
- package/backend/node_modules/lodash/isDate.js +0 -27
- package/backend/node_modules/lodash/isElement.js +0 -25
- package/backend/node_modules/lodash/isEmpty.js +0 -77
- package/backend/node_modules/lodash/isEqual.js +0 -35
- package/backend/node_modules/lodash/isEqualWith.js +0 -41
- package/backend/node_modules/lodash/isError.js +0 -36
- package/backend/node_modules/lodash/isFinite.js +0 -36
- package/backend/node_modules/lodash/isFunction.js +0 -37
- package/backend/node_modules/lodash/isInteger.js +0 -33
- package/backend/node_modules/lodash/isLength.js +0 -35
- package/backend/node_modules/lodash/isMap.js +0 -27
- package/backend/node_modules/lodash/isMatch.js +0 -36
- package/backend/node_modules/lodash/isMatchWith.js +0 -41
- package/backend/node_modules/lodash/isNaN.js +0 -38
- package/backend/node_modules/lodash/isNative.js +0 -40
- package/backend/node_modules/lodash/isNil.js +0 -25
- package/backend/node_modules/lodash/isNull.js +0 -22
- package/backend/node_modules/lodash/isNumber.js +0 -38
- package/backend/node_modules/lodash/isObject.js +0 -31
- package/backend/node_modules/lodash/isObjectLike.js +0 -29
- package/backend/node_modules/lodash/isPlainObject.js +0 -62
- package/backend/node_modules/lodash/isRegExp.js +0 -27
- package/backend/node_modules/lodash/isSafeInteger.js +0 -37
- package/backend/node_modules/lodash/isSet.js +0 -27
- package/backend/node_modules/lodash/isString.js +0 -30
- package/backend/node_modules/lodash/isSymbol.js +0 -29
- package/backend/node_modules/lodash/isTypedArray.js +0 -27
- package/backend/node_modules/lodash/isUndefined.js +0 -22
- package/backend/node_modules/lodash/isWeakMap.js +0 -28
- package/backend/node_modules/lodash/isWeakSet.js +0 -28
- package/backend/node_modules/lodash/iteratee.js +0 -53
- package/backend/node_modules/lodash/join.js +0 -26
- package/backend/node_modules/lodash/kebabCase.js +0 -28
- package/backend/node_modules/lodash/keyBy.js +0 -36
- package/backend/node_modules/lodash/keys.js +0 -37
- package/backend/node_modules/lodash/keysIn.js +0 -32
- package/backend/node_modules/lodash/lang.js +0 -58
- package/backend/node_modules/lodash/last.js +0 -20
- package/backend/node_modules/lodash/lastIndexOf.js +0 -46
- package/backend/node_modules/lodash/lodash.js +0 -17248
- package/backend/node_modules/lodash/lodash.min.js +0 -140
- package/backend/node_modules/lodash/lowerCase.js +0 -27
- package/backend/node_modules/lodash/lowerFirst.js +0 -22
- package/backend/node_modules/lodash/lt.js +0 -29
- package/backend/node_modules/lodash/lte.js +0 -30
- package/backend/node_modules/lodash/map.js +0 -53
- package/backend/node_modules/lodash/mapKeys.js +0 -36
- package/backend/node_modules/lodash/mapValues.js +0 -43
- package/backend/node_modules/lodash/matches.js +0 -46
- package/backend/node_modules/lodash/matchesProperty.js +0 -44
- package/backend/node_modules/lodash/math.js +0 -17
- package/backend/node_modules/lodash/max.js +0 -29
- package/backend/node_modules/lodash/maxBy.js +0 -34
- package/backend/node_modules/lodash/mean.js +0 -22
- package/backend/node_modules/lodash/meanBy.js +0 -31
- package/backend/node_modules/lodash/memoize.js +0 -73
- package/backend/node_modules/lodash/merge.js +0 -39
- package/backend/node_modules/lodash/mergeWith.js +0 -39
- package/backend/node_modules/lodash/method.js +0 -34
- package/backend/node_modules/lodash/methodOf.js +0 -33
- package/backend/node_modules/lodash/min.js +0 -29
- package/backend/node_modules/lodash/minBy.js +0 -34
- package/backend/node_modules/lodash/mixin.js +0 -74
- package/backend/node_modules/lodash/multiply.js +0 -22
- package/backend/node_modules/lodash/negate.js +0 -40
- package/backend/node_modules/lodash/next.js +0 -35
- package/backend/node_modules/lodash/noop.js +0 -17
- package/backend/node_modules/lodash/now.js +0 -23
- package/backend/node_modules/lodash/nth.js +0 -29
- package/backend/node_modules/lodash/nthArg.js +0 -32
- package/backend/node_modules/lodash/number.js +0 -5
- package/backend/node_modules/lodash/object.js +0 -49
- package/backend/node_modules/lodash/omit.js +0 -57
- package/backend/node_modules/lodash/omitBy.js +0 -29
- package/backend/node_modules/lodash/once.js +0 -25
- package/backend/node_modules/lodash/orderBy.js +0 -47
- package/backend/node_modules/lodash/over.js +0 -24
- package/backend/node_modules/lodash/overArgs.js +0 -61
- package/backend/node_modules/lodash/overEvery.js +0 -34
- package/backend/node_modules/lodash/overSome.js +0 -37
- package/backend/node_modules/lodash/package.json +0 -17
- package/backend/node_modules/lodash/pad.js +0 -49
- package/backend/node_modules/lodash/padEnd.js +0 -39
- package/backend/node_modules/lodash/padStart.js +0 -39
- package/backend/node_modules/lodash/parseInt.js +0 -43
- package/backend/node_modules/lodash/partial.js +0 -50
- package/backend/node_modules/lodash/partialRight.js +0 -49
- package/backend/node_modules/lodash/partition.js +0 -43
- package/backend/node_modules/lodash/pick.js +0 -25
- package/backend/node_modules/lodash/pickBy.js +0 -37
- package/backend/node_modules/lodash/plant.js +0 -48
- package/backend/node_modules/lodash/property.js +0 -32
- package/backend/node_modules/lodash/propertyOf.js +0 -30
- package/backend/node_modules/lodash/pull.js +0 -29
- package/backend/node_modules/lodash/pullAll.js +0 -29
- package/backend/node_modules/lodash/pullAllBy.js +0 -33
- package/backend/node_modules/lodash/pullAllWith.js +0 -32
- package/backend/node_modules/lodash/pullAt.js +0 -43
- package/backend/node_modules/lodash/random.js +0 -82
- package/backend/node_modules/lodash/range.js +0 -46
- package/backend/node_modules/lodash/rangeRight.js +0 -41
- package/backend/node_modules/lodash/rearg.js +0 -33
- package/backend/node_modules/lodash/reduce.js +0 -51
- package/backend/node_modules/lodash/reduceRight.js +0 -36
- package/backend/node_modules/lodash/reject.js +0 -46
- package/backend/node_modules/lodash/remove.js +0 -53
- package/backend/node_modules/lodash/repeat.js +0 -37
- package/backend/node_modules/lodash/replace.js +0 -29
- package/backend/node_modules/lodash/rest.js +0 -40
- package/backend/node_modules/lodash/result.js +0 -56
- package/backend/node_modules/lodash/reverse.js +0 -34
- package/backend/node_modules/lodash/round.js +0 -26
- package/backend/node_modules/lodash/sample.js +0 -24
- package/backend/node_modules/lodash/sampleSize.js +0 -37
- package/backend/node_modules/lodash/seq.js +0 -16
- package/backend/node_modules/lodash/set.js +0 -35
- package/backend/node_modules/lodash/setWith.js +0 -32
- package/backend/node_modules/lodash/shuffle.js +0 -25
- package/backend/node_modules/lodash/size.js +0 -46
- package/backend/node_modules/lodash/slice.js +0 -37
- package/backend/node_modules/lodash/snakeCase.js +0 -28
- package/backend/node_modules/lodash/some.js +0 -51
- package/backend/node_modules/lodash/sortBy.js +0 -48
- package/backend/node_modules/lodash/sortedIndex.js +0 -24
- package/backend/node_modules/lodash/sortedIndexBy.js +0 -33
- package/backend/node_modules/lodash/sortedIndexOf.js +0 -31
- package/backend/node_modules/lodash/sortedLastIndex.js +0 -25
- package/backend/node_modules/lodash/sortedLastIndexBy.js +0 -33
- package/backend/node_modules/lodash/sortedLastIndexOf.js +0 -31
- package/backend/node_modules/lodash/sortedUniq.js +0 -24
- package/backend/node_modules/lodash/sortedUniqBy.js +0 -26
- package/backend/node_modules/lodash/split.js +0 -52
- package/backend/node_modules/lodash/spread.js +0 -63
- package/backend/node_modules/lodash/startCase.js +0 -29
- package/backend/node_modules/lodash/startsWith.js +0 -39
- package/backend/node_modules/lodash/string.js +0 -33
- package/backend/node_modules/lodash/stubArray.js +0 -23
- package/backend/node_modules/lodash/stubFalse.js +0 -18
- package/backend/node_modules/lodash/stubObject.js +0 -23
- package/backend/node_modules/lodash/stubString.js +0 -18
- package/backend/node_modules/lodash/stubTrue.js +0 -18
- package/backend/node_modules/lodash/subtract.js +0 -22
- package/backend/node_modules/lodash/sum.js +0 -24
- package/backend/node_modules/lodash/sumBy.js +0 -33
- package/backend/node_modules/lodash/tail.js +0 -22
- package/backend/node_modules/lodash/take.js +0 -37
- package/backend/node_modules/lodash/takeRight.js +0 -39
- package/backend/node_modules/lodash/takeRightWhile.js +0 -45
- package/backend/node_modules/lodash/takeWhile.js +0 -45
- package/backend/node_modules/lodash/tap.js +0 -29
- package/backend/node_modules/lodash/template.js +0 -272
- package/backend/node_modules/lodash/templateSettings.js +0 -67
- package/backend/node_modules/lodash/throttle.js +0 -69
- package/backend/node_modules/lodash/thru.js +0 -28
- package/backend/node_modules/lodash/times.js +0 -51
- package/backend/node_modules/lodash/toArray.js +0 -58
- package/backend/node_modules/lodash/toFinite.js +0 -42
- package/backend/node_modules/lodash/toInteger.js +0 -36
- package/backend/node_modules/lodash/toIterator.js +0 -23
- package/backend/node_modules/lodash/toJSON.js +0 -1
- package/backend/node_modules/lodash/toLength.js +0 -38
- package/backend/node_modules/lodash/toLower.js +0 -28
- package/backend/node_modules/lodash/toNumber.js +0 -64
- package/backend/node_modules/lodash/toPairs.js +0 -30
- package/backend/node_modules/lodash/toPairsIn.js +0 -30
- package/backend/node_modules/lodash/toPath.js +0 -33
- package/backend/node_modules/lodash/toPlainObject.js +0 -32
- package/backend/node_modules/lodash/toSafeInteger.js +0 -37
- package/backend/node_modules/lodash/toString.js +0 -28
- package/backend/node_modules/lodash/toUpper.js +0 -28
- package/backend/node_modules/lodash/transform.js +0 -65
- package/backend/node_modules/lodash/trim.js +0 -47
- package/backend/node_modules/lodash/trimEnd.js +0 -41
- package/backend/node_modules/lodash/trimStart.js +0 -43
- package/backend/node_modules/lodash/truncate.js +0 -111
- package/backend/node_modules/lodash/unary.js +0 -22
- package/backend/node_modules/lodash/unescape.js +0 -34
- package/backend/node_modules/lodash/union.js +0 -26
- package/backend/node_modules/lodash/unionBy.js +0 -39
- package/backend/node_modules/lodash/unionWith.js +0 -34
- package/backend/node_modules/lodash/uniq.js +0 -25
- package/backend/node_modules/lodash/uniqBy.js +0 -31
- package/backend/node_modules/lodash/uniqWith.js +0 -28
- package/backend/node_modules/lodash/uniqueId.js +0 -28
- package/backend/node_modules/lodash/unset.js +0 -34
- package/backend/node_modules/lodash/unzip.js +0 -45
- package/backend/node_modules/lodash/unzipWith.js +0 -39
- package/backend/node_modules/lodash/update.js +0 -35
- package/backend/node_modules/lodash/updateWith.js +0 -33
- package/backend/node_modules/lodash/upperCase.js +0 -27
- package/backend/node_modules/lodash/upperFirst.js +0 -22
- package/backend/node_modules/lodash/util.js +0 -34
- package/backend/node_modules/lodash/value.js +0 -1
- package/backend/node_modules/lodash/valueOf.js +0 -1
- package/backend/node_modules/lodash/values.js +0 -34
- package/backend/node_modules/lodash/valuesIn.js +0 -32
- package/backend/node_modules/lodash/without.js +0 -31
- package/backend/node_modules/lodash/words.js +0 -35
- package/backend/node_modules/lodash/wrap.js +0 -30
- package/backend/node_modules/lodash/wrapperAt.js +0 -48
- package/backend/node_modules/lodash/wrapperChain.js +0 -34
- package/backend/node_modules/lodash/wrapperLodash.js +0 -147
- package/backend/node_modules/lodash/wrapperReverse.js +0 -44
- package/backend/node_modules/lodash/wrapperValue.js +0 -21
- package/backend/node_modules/lodash/xor.js +0 -28
- package/backend/node_modules/lodash/xorBy.js +0 -39
- package/backend/node_modules/lodash/xorWith.js +0 -34
- package/backend/node_modules/lodash/zip.js +0 -22
- package/backend/node_modules/lodash/zipObject.js +0 -24
- package/backend/node_modules/lodash/zipObjectDeep.js +0 -23
- package/backend/node_modules/lodash/zipWith.js +0 -32
- package/backend/node_modules/math-intrinsics/.eslintrc +0 -16
- package/backend/node_modules/math-intrinsics/CHANGELOG.md +0 -24
- package/backend/node_modules/math-intrinsics/LICENSE +0 -21
- package/backend/node_modules/math-intrinsics/README.md +0 -50
- package/backend/node_modules/math-intrinsics/test/index.js +0 -192
- package/backend/node_modules/media-typer/HISTORY.md +0 -22
- package/backend/node_modules/media-typer/LICENSE +0 -22
- package/backend/node_modules/media-typer/README.md +0 -81
- package/backend/node_modules/merge-descriptors/HISTORY.md +0 -21
- package/backend/node_modules/merge-descriptors/LICENSE +0 -23
- package/backend/node_modules/merge-descriptors/README.md +0 -49
- package/backend/node_modules/methods/HISTORY.md +0 -29
- package/backend/node_modules/methods/LICENSE +0 -24
- package/backend/node_modules/methods/README.md +0 -51
- package/backend/node_modules/mime/CHANGELOG.md +0 -164
- package/backend/node_modules/mime/LICENSE +0 -21
- package/backend/node_modules/mime/README.md +0 -90
- package/backend/node_modules/mime-db/HISTORY.md +0 -507
- package/backend/node_modules/mime-db/LICENSE +0 -23
- package/backend/node_modules/mime-db/README.md +0 -100
- package/backend/node_modules/mime-types/HISTORY.md +0 -397
- package/backend/node_modules/mime-types/LICENSE +0 -23
- package/backend/node_modules/mime-types/README.md +0 -113
- package/backend/node_modules/mimic-response/readme.md +0 -78
- package/backend/node_modules/minimist/.eslintrc +0 -29
- package/backend/node_modules/minimist/CHANGELOG.md +0 -298
- package/backend/node_modules/minimist/LICENSE +0 -18
- package/backend/node_modules/minimist/README.md +0 -121
- package/backend/node_modules/minimist/example/parse.js +0 -4
- package/backend/node_modules/minimist/test/all_bool.js +0 -34
- package/backend/node_modules/minimist/test/bool.js +0 -177
- package/backend/node_modules/minimist/test/dash.js +0 -43
- package/backend/node_modules/minimist/test/default_bool.js +0 -37
- package/backend/node_modules/minimist/test/dotted.js +0 -24
- package/backend/node_modules/minimist/test/kv_short.js +0 -32
- package/backend/node_modules/minimist/test/long.js +0 -33
- package/backend/node_modules/minimist/test/num.js +0 -38
- package/backend/node_modules/minimist/test/parse.js +0 -209
- package/backend/node_modules/minimist/test/parse_modified.js +0 -11
- package/backend/node_modules/minimist/test/proto.js +0 -64
- package/backend/node_modules/minimist/test/short.js +0 -69
- package/backend/node_modules/minimist/test/stop_early.js +0 -17
- package/backend/node_modules/minimist/test/unknown.js +0 -104
- package/backend/node_modules/minimist/test/whitespace.js +0 -10
- package/backend/node_modules/mkdirp-classic/LICENSE +0 -21
- package/backend/node_modules/mkdirp-classic/README.md +0 -18
- package/backend/node_modules/ms/license.md +0 -21
- package/backend/node_modules/ms/readme.md +0 -51
- package/backend/node_modules/napi-build-utils/LICENSE +0 -21
- package/backend/node_modules/napi-build-utils/README.md +0 -52
- package/backend/node_modules/negotiator/HISTORY.md +0 -108
- package/backend/node_modules/negotiator/LICENSE +0 -24
- package/backend/node_modules/negotiator/README.md +0 -203
- package/backend/node_modules/node-abi/LICENSE +0 -21
- package/backend/node_modules/node-abi/README.md +0 -54
- package/backend/node_modules/node-telegram-bot-api/.github/ISSUE_TEMPLATE.md +0 -68
- package/backend/node_modules/node-telegram-bot-api/.github/PULL_REQUEST_TEMPLATE.md +0 -23
- package/backend/node_modules/node-telegram-bot-api/CHANGELOG.md +0 -515
- package/backend/node_modules/node-telegram-bot-api/CODE_OF_CONDUCT.md +0 -74
- package/backend/node_modules/node-telegram-bot-api/CONTRIBUTING.md +0 -45
- package/backend/node_modules/node-telegram-bot-api/LICENSE.md +0 -21
- package/backend/node_modules/node-telegram-bot-api/README.md +0 -130
- package/backend/node_modules/node-telegram-bot-api/doc/api.md +0 -2470
- package/backend/node_modules/node-telegram-bot-api/doc/experimental.md +0 -28
- package/backend/node_modules/node-telegram-bot-api/doc/help.md +0 -151
- package/backend/node_modules/node-telegram-bot-api/doc/tutorials.md +0 -12
- package/backend/node_modules/node-telegram-bot-api/doc/usage.md +0 -269
- package/backend/node_modules/oauth-sign/LICENSE +0 -55
- package/backend/node_modules/oauth-sign/README.md +0 -11
- package/backend/node_modules/object-assign/readme.md +0 -61
- package/backend/node_modules/object-inspect/.eslintrc +0 -53
- package/backend/node_modules/object-inspect/CHANGELOG.md +0 -424
- package/backend/node_modules/object-inspect/LICENSE +0 -21
- package/backend/node_modules/object-inspect/example/all.js +0 -23
- package/backend/node_modules/object-inspect/example/circular.js +0 -6
- package/backend/node_modules/object-inspect/example/fn.js +0 -5
- package/backend/node_modules/object-inspect/example/inspect.js +0 -10
- package/backend/node_modules/object-inspect/test/bigint.js +0 -58
- package/backend/node_modules/object-inspect/test/browser/dom.js +0 -15
- package/backend/node_modules/object-inspect/test/circular.js +0 -16
- package/backend/node_modules/object-inspect/test/deep.js +0 -12
- package/backend/node_modules/object-inspect/test/element.js +0 -53
- package/backend/node_modules/object-inspect/test/err.js +0 -48
- package/backend/node_modules/object-inspect/test/fakes.js +0 -29
- package/backend/node_modules/object-inspect/test/fn.js +0 -76
- package/backend/node_modules/object-inspect/test/global.js +0 -17
- package/backend/node_modules/object-inspect/test/has.js +0 -15
- package/backend/node_modules/object-inspect/test/holes.js +0 -15
- package/backend/node_modules/object-inspect/test/indent-option.js +0 -271
- package/backend/node_modules/object-inspect/test/inspect.js +0 -139
- package/backend/node_modules/object-inspect/test/lowbyte.js +0 -12
- package/backend/node_modules/object-inspect/test/number.js +0 -58
- package/backend/node_modules/object-inspect/test/quoteStyle.js +0 -26
- package/backend/node_modules/object-inspect/test/toStringTag.js +0 -40
- package/backend/node_modules/object-inspect/test/undef.js +0 -12
- package/backend/node_modules/object-inspect/test/values.js +0 -261
- package/backend/node_modules/object-keys/.eslintrc +0 -17
- package/backend/node_modules/object-keys/CHANGELOG.md +0 -232
- package/backend/node_modules/object-keys/LICENSE +0 -21
- package/backend/node_modules/object-keys/README.md +0 -76
- package/backend/node_modules/object-keys/test/index.js +0 -5
- package/backend/node_modules/object.assign/.eslintrc +0 -28
- package/backend/node_modules/object.assign/CHANGELOG.md +0 -246
- package/backend/node_modules/object.assign/LICENSE +0 -21
- package/backend/node_modules/object.assign/README.md +0 -136
- package/backend/node_modules/object.assign/test/implementation.js +0 -19
- package/backend/node_modules/object.assign/test/index.js +0 -17
- package/backend/node_modules/object.assign/test/native.js +0 -49
- package/backend/node_modules/object.assign/test/ses-compat.js +0 -12
- package/backend/node_modules/object.assign/test/shimmed.js +0 -52
- package/backend/node_modules/object.assign/test/tests.js +0 -232
- package/backend/node_modules/on-finished/HISTORY.md +0 -98
- package/backend/node_modules/on-finished/LICENSE +0 -23
- package/backend/node_modules/on-finished/README.md +0 -162
- package/backend/node_modules/once/LICENSE +0 -15
- package/backend/node_modules/once/README.md +0 -79
- package/backend/node_modules/own-keys/.eslintrc +0 -16
- package/backend/node_modules/own-keys/CHANGELOG.md +0 -23
- package/backend/node_modules/own-keys/LICENSE +0 -21
- package/backend/node_modules/own-keys/README.md +0 -45
- package/backend/node_modules/own-keys/test/index.js +0 -72
- package/backend/node_modules/parseurl/HISTORY.md +0 -58
- package/backend/node_modules/parseurl/LICENSE +0 -24
- package/backend/node_modules/parseurl/README.md +0 -133
- package/backend/node_modules/path-to-regexp/LICENSE +0 -21
- package/backend/node_modules/path-to-regexp/Readme.md +0 -35
- package/backend/node_modules/performance-now/README.md +0 -30
- package/backend/node_modules/performance-now/test/mocha.opts +0 -3
- package/backend/node_modules/performance-now/test/performance-now.coffee +0 -43
- package/backend/node_modules/performance-now/test/scripts/delayed-call.coffee +0 -11
- package/backend/node_modules/performance-now/test/scripts/delayed-require.coffee +0 -12
- package/backend/node_modules/performance-now/test/scripts/difference.coffee +0 -6
- package/backend/node_modules/performance-now/test/scripts/initial-value.coffee +0 -10
- package/backend/node_modules/performance-now/test/scripts.coffee +0 -27
- package/backend/node_modules/possible-typed-array-names/.eslintrc +0 -5
- package/backend/node_modules/possible-typed-array-names/CHANGELOG.md +0 -29
- package/backend/node_modules/possible-typed-array-names/LICENSE +0 -21
- package/backend/node_modules/possible-typed-array-names/README.md +0 -50
- package/backend/node_modules/possible-typed-array-names/test/index.js +0 -19
- package/backend/node_modules/prebuild-install/CHANGELOG.md +0 -131
- package/backend/node_modules/prebuild-install/CONTRIBUTING.md +0 -6
- package/backend/node_modules/prebuild-install/LICENSE +0 -21
- package/backend/node_modules/prebuild-install/README.md +0 -163
- package/backend/node_modules/process-nextick-args/license.md +0 -19
- package/backend/node_modules/process-nextick-args/readme.md +0 -18
- package/backend/node_modules/proxy-addr/HISTORY.md +0 -161
- package/backend/node_modules/proxy-addr/LICENSE +0 -22
- package/backend/node_modules/proxy-addr/README.md +0 -139
- package/backend/node_modules/psl/LICENSE +0 -9
- package/backend/node_modules/psl/README.md +0 -260
- package/backend/node_modules/psl/SECURITY.md +0 -13
- package/backend/node_modules/pump/LICENSE +0 -21
- package/backend/node_modules/pump/README.md +0 -56
- package/backend/node_modules/punycode/LICENSE-MIT.txt +0 -20
- package/backend/node_modules/punycode/README.md +0 -148
- package/backend/node_modules/qs/.github/SECURITY.md +0 -11
- package/backend/node_modules/qs/.github/THREAT_MODEL.md +0 -78
- package/backend/node_modules/qs/CHANGELOG.md +0 -644
- package/backend/node_modules/qs/LICENSE.md +0 -29
- package/backend/node_modules/qs/README.md +0 -740
- package/backend/node_modules/qs/test/empty-keys-cases.js +0 -267
- package/backend/node_modules/qs/test/parse.js +0 -1512
- package/backend/node_modules/qs/test/stringify.js +0 -1310
- package/backend/node_modules/qs/test/utils.js +0 -397
- package/backend/node_modules/querystringify/LICENSE +0 -22
- package/backend/node_modules/querystringify/README.md +0 -61
- package/backend/node_modules/range-parser/HISTORY.md +0 -56
- package/backend/node_modules/range-parser/LICENSE +0 -23
- package/backend/node_modules/range-parser/README.md +0 -84
- package/backend/node_modules/raw-body/LICENSE +0 -22
- package/backend/node_modules/raw-body/README.md +0 -223
- package/backend/node_modules/rc/LICENSE.APACHE2 +0 -15
- package/backend/node_modules/rc/LICENSE.BSD +0 -26
- package/backend/node_modules/rc/LICENSE.MIT +0 -24
- package/backend/node_modules/rc/README.md +0 -227
- package/backend/node_modules/rc/test/ini.js +0 -16
- package/backend/node_modules/rc/test/nested-env-vars.js +0 -50
- package/backend/node_modules/rc/test/test.js +0 -59
- package/backend/node_modules/readable-stream/CONTRIBUTING.md +0 -38
- package/backend/node_modules/readable-stream/GOVERNANCE.md +0 -136
- package/backend/node_modules/readable-stream/LICENSE +0 -47
- package/backend/node_modules/readable-stream/README.md +0 -58
- package/backend/node_modules/reflect.getprototypeof/.eslintrc +0 -17
- package/backend/node_modules/reflect.getprototypeof/CHANGELOG.md +0 -115
- package/backend/node_modules/reflect.getprototypeof/LICENSE +0 -21
- package/backend/node_modules/reflect.getprototypeof/README.md +0 -77
- package/backend/node_modules/reflect.getprototypeof/test/implementation.js +0 -11
- package/backend/node_modules/reflect.getprototypeof/test/index.js +0 -11
- package/backend/node_modules/reflect.getprototypeof/test/shimmed.js +0 -28
- package/backend/node_modules/reflect.getprototypeof/test/tests.js +0 -33
- package/backend/node_modules/regexp.prototype.flags/.eslintrc +0 -20
- package/backend/node_modules/regexp.prototype.flags/CHANGELOG.md +0 -249
- package/backend/node_modules/regexp.prototype.flags/LICENSE +0 -22
- package/backend/node_modules/regexp.prototype.flags/README.md +0 -55
- package/backend/node_modules/regexp.prototype.flags/test/builtin.js +0 -46
- package/backend/node_modules/regexp.prototype.flags/test/implementation.js +0 -20
- package/backend/node_modules/regexp.prototype.flags/test/index.js +0 -17
- package/backend/node_modules/regexp.prototype.flags/test/shimmed.js +0 -48
- package/backend/node_modules/regexp.prototype.flags/test/tests.js +0 -143
- package/backend/node_modules/request/CHANGELOG.md +0 -717
- package/backend/node_modules/request/LICENSE +0 -55
- package/backend/node_modules/request/README.md +0 -1133
- package/backend/node_modules/request/node_modules/qs/test/index.js +0 -7
- package/backend/node_modules/request/node_modules/qs/test/parse.js +0 -658
- package/backend/node_modules/request/node_modules/qs/test/stringify.js +0 -648
- package/backend/node_modules/request/node_modules/qs/test/utils.js +0 -65
- package/backend/node_modules/request-promise-core/LICENSE +0 -15
- package/backend/node_modules/request-promise-core/README.md +0 -128
- package/backend/node_modules/requires-port/LICENSE +0 -22
- package/backend/node_modules/requires-port/README.md +0 -47
- package/backend/node_modules/safe-array-concat/.eslintrc +0 -15
- package/backend/node_modules/safe-array-concat/CHANGELOG.md +0 -69
- package/backend/node_modules/safe-array-concat/LICENSE +0 -21
- package/backend/node_modules/safe-array-concat/README.md +0 -53
- package/backend/node_modules/safe-array-concat/test/index.js +0 -100
- package/backend/node_modules/safe-buffer/LICENSE +0 -21
- package/backend/node_modules/safe-buffer/README.md +0 -584
- package/backend/node_modules/safe-push-apply/.eslintrc +0 -15
- package/backend/node_modules/safe-push-apply/CHANGELOG.md +0 -15
- package/backend/node_modules/safe-push-apply/LICENSE +0 -21
- package/backend/node_modules/safe-push-apply/README.md +0 -59
- package/backend/node_modules/safe-push-apply/test/index.js +0 -30
- package/backend/node_modules/safe-regex-test/.eslintrc +0 -9
- package/backend/node_modules/safe-regex-test/CHANGELOG.md +0 -55
- package/backend/node_modules/safe-regex-test/LICENSE +0 -21
- package/backend/node_modules/safe-regex-test/README.md +0 -46
- package/backend/node_modules/safe-regex-test/test/index.js +0 -41
- package/backend/node_modules/safer-buffer/LICENSE +0 -21
- package/backend/node_modules/safer-buffer/Porting-Buffer.md +0 -268
- package/backend/node_modules/safer-buffer/Readme.md +0 -156
- package/backend/node_modules/semver/LICENSE +0 -15
- package/backend/node_modules/semver/README.md +0 -665
- package/backend/node_modules/send/HISTORY.md +0 -538
- package/backend/node_modules/send/LICENSE +0 -23
- package/backend/node_modules/send/README.md +0 -327
- package/backend/node_modules/send/SECURITY.md +0 -24
- package/backend/node_modules/serve-static/HISTORY.md +0 -493
- package/backend/node_modules/serve-static/LICENSE +0 -25
- package/backend/node_modules/serve-static/README.md +0 -257
- package/backend/node_modules/set-function-length/.eslintrc +0 -27
- package/backend/node_modules/set-function-length/CHANGELOG.md +0 -70
- package/backend/node_modules/set-function-length/LICENSE +0 -21
- package/backend/node_modules/set-function-length/README.md +0 -56
- package/backend/node_modules/set-function-name/.eslintrc +0 -21
- package/backend/node_modules/set-function-name/CHANGELOG.md +0 -48
- package/backend/node_modules/set-function-name/LICENSE +0 -21
- package/backend/node_modules/set-function-name/README.md +0 -61
- package/backend/node_modules/set-proto/.eslintrc +0 -10
- package/backend/node_modules/set-proto/CHANGELOG.md +0 -15
- package/backend/node_modules/set-proto/LICENSE +0 -21
- package/backend/node_modules/set-proto/README.md +0 -52
- package/backend/node_modules/set-proto/test/index.js +0 -40
- package/backend/node_modules/setprototypeof/LICENSE +0 -13
- package/backend/node_modules/setprototypeof/README.md +0 -31
- package/backend/node_modules/setprototypeof/test/index.js +0 -24
- package/backend/node_modules/side-channel/.eslintrc +0 -12
- package/backend/node_modules/side-channel/CHANGELOG.md +0 -110
- package/backend/node_modules/side-channel/LICENSE +0 -21
- package/backend/node_modules/side-channel/README.md +0 -61
- package/backend/node_modules/side-channel/test/index.js +0 -104
- package/backend/node_modules/side-channel-list/.eslintrc +0 -11
- package/backend/node_modules/side-channel-list/CHANGELOG.md +0 -15
- package/backend/node_modules/side-channel-list/LICENSE +0 -21
- package/backend/node_modules/side-channel-list/README.md +0 -62
- package/backend/node_modules/side-channel-list/test/index.js +0 -104
- package/backend/node_modules/side-channel-map/.eslintrc +0 -11
- package/backend/node_modules/side-channel-map/CHANGELOG.md +0 -22
- package/backend/node_modules/side-channel-map/LICENSE +0 -21
- package/backend/node_modules/side-channel-map/README.md +0 -62
- package/backend/node_modules/side-channel-map/test/index.js +0 -114
- package/backend/node_modules/side-channel-weakmap/.eslintrc +0 -12
- package/backend/node_modules/side-channel-weakmap/CHANGELOG.md +0 -28
- package/backend/node_modules/side-channel-weakmap/LICENSE +0 -21
- package/backend/node_modules/side-channel-weakmap/README.md +0 -62
- package/backend/node_modules/side-channel-weakmap/test/index.js +0 -114
- package/backend/node_modules/simple-concat/LICENSE +0 -20
- package/backend/node_modules/simple-concat/README.md +0 -44
- package/backend/node_modules/simple-concat/test/basic.js +0 -41
- package/backend/node_modules/simple-get/LICENSE +0 -20
- package/backend/node_modules/simple-get/README.md +0 -333
- package/backend/node_modules/sshpk/LICENSE +0 -18
- package/backend/node_modules/sshpk/README.md +0 -804
- package/backend/node_modules/statuses/HISTORY.md +0 -87
- package/backend/node_modules/statuses/LICENSE +0 -23
- package/backend/node_modules/statuses/README.md +0 -139
- package/backend/node_modules/stealthy-require/LICENSE +0 -15
- package/backend/node_modules/stealthy-require/README.md +0 -192
- package/backend/node_modules/stop-iteration-iterator/.eslintrc +0 -14
- package/backend/node_modules/stop-iteration-iterator/CHANGELOG.md +0 -31
- package/backend/node_modules/stop-iteration-iterator/LICENSE +0 -21
- package/backend/node_modules/stop-iteration-iterator/README.md +0 -42
- package/backend/node_modules/stop-iteration-iterator/test/index.js +0 -51
- package/backend/node_modules/string.prototype.trim/.eslintrc +0 -25
- package/backend/node_modules/string.prototype.trim/CHANGELOG.md +0 -202
- package/backend/node_modules/string.prototype.trim/LICENSE +0 -21
- package/backend/node_modules/string.prototype.trim/README.md +0 -48
- package/backend/node_modules/string.prototype.trim/test/implementation.js +0 -21
- package/backend/node_modules/string.prototype.trim/test/index.js +0 -17
- package/backend/node_modules/string.prototype.trim/test/shimmed.js +0 -36
- package/backend/node_modules/string.prototype.trim/test/tests.js +0 -62
- package/backend/node_modules/string.prototype.trimend/.eslintrc +0 -24
- package/backend/node_modules/string.prototype.trimend/CHANGELOG.md +0 -128
- package/backend/node_modules/string.prototype.trimend/LICENSE +0 -21
- package/backend/node_modules/string.prototype.trimend/README.md +0 -46
- package/backend/node_modules/string.prototype.trimend/test/implementation.js +0 -20
- package/backend/node_modules/string.prototype.trimend/test/index.js +0 -17
- package/backend/node_modules/string.prototype.trimend/test/shimmed.js +0 -36
- package/backend/node_modules/string.prototype.trimend/test/tests.js +0 -31
- package/backend/node_modules/string.prototype.trimstart/.eslintrc +0 -24
- package/backend/node_modules/string.prototype.trimstart/CHANGELOG.md +0 -118
- package/backend/node_modules/string.prototype.trimstart/LICENSE +0 -21
- package/backend/node_modules/string.prototype.trimstart/README.md +0 -46
- package/backend/node_modules/string.prototype.trimstart/test/implementation.js +0 -20
- package/backend/node_modules/string.prototype.trimstart/test/index.js +0 -18
- package/backend/node_modules/string.prototype.trimstart/test/shimmed.js +0 -36
- package/backend/node_modules/string.prototype.trimstart/test/tests.js +0 -31
- package/backend/node_modules/string_decoder/LICENSE +0 -48
- package/backend/node_modules/string_decoder/README.md +0 -47
- package/backend/node_modules/strip-json-comments/readme.md +0 -64
- package/backend/node_modules/tar-fs/LICENSE +0 -21
- package/backend/node_modules/tar-fs/README.md +0 -165
- package/backend/node_modules/tar-fs/test/fixtures/a/hello.txt +0 -1
- package/backend/node_modules/tar-fs/test/fixtures/b/a/test.txt +0 -1
- package/backend/node_modules/tar-fs/test/fixtures/d/file1 +0 -0
- package/backend/node_modules/tar-fs/test/fixtures/d/file2 +0 -0
- package/backend/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 +0 -0
- package/backend/node_modules/tar-fs/test/fixtures/d/sub-files/file3 +0 -0
- package/backend/node_modules/tar-fs/test/fixtures/d/sub-files/file4 +0 -0
- package/backend/node_modules/tar-fs/test/fixtures/e/directory/.ignore +0 -0
- package/backend/node_modules/tar-fs/test/fixtures/e/file +0 -0
- package/backend/node_modules/tar-fs/test/fixtures/invalid.tar +0 -0
- package/backend/node_modules/tar-fs/test/index.js +0 -346
- package/backend/node_modules/tar-stream/LICENSE +0 -21
- package/backend/node_modules/tar-stream/README.md +0 -168
- package/backend/node_modules/tar-stream/node_modules/bl/test/convert.js +0 -21
- package/backend/node_modules/tar-stream/node_modules/bl/test/indexOf.js +0 -492
- package/backend/node_modules/tar-stream/node_modules/bl/test/isBufferList.js +0 -32
- package/backend/node_modules/tar-stream/node_modules/bl/test/test.js +0 -869
- package/backend/node_modules/tldts/LICENSE +0 -13
- package/backend/node_modules/tldts/README.md +0 -327
- package/backend/node_modules/tldts-core/LICENSE +0 -13
- package/backend/node_modules/tldts-core/README.md +0 -3
- package/backend/node_modules/toidentifier/HISTORY.md +0 -9
- package/backend/node_modules/toidentifier/LICENSE +0 -21
- package/backend/node_modules/toidentifier/README.md +0 -61
- package/backend/node_modules/tough-cookie/LICENSE +0 -12
- package/backend/node_modules/tough-cookie/README.md +0 -154
- package/backend/node_modules/tunnel-agent/LICENSE +0 -55
- package/backend/node_modules/tunnel-agent/README.md +0 -4
- package/backend/node_modules/tweetnacl/AUTHORS.md +0 -28
- package/backend/node_modules/tweetnacl/CHANGELOG.md +0 -221
- package/backend/node_modules/tweetnacl/LICENSE +0 -24
- package/backend/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +0 -20
- package/backend/node_modules/tweetnacl/README.md +0 -459
- package/backend/node_modules/type-is/HISTORY.md +0 -259
- package/backend/node_modules/type-is/LICENSE +0 -23
- package/backend/node_modules/type-is/README.md +0 -170
- package/backend/node_modules/typed-array-buffer/.eslintrc +0 -13
- package/backend/node_modules/typed-array-buffer/CHANGELOG.md +0 -50
- package/backend/node_modules/typed-array-buffer/LICENSE +0 -21
- package/backend/node_modules/typed-array-buffer/README.md +0 -42
- package/backend/node_modules/typed-array-buffer/test/index.js +0 -23
- package/backend/node_modules/typed-array-byte-length/.eslintrc +0 -12
- package/backend/node_modules/typed-array-byte-length/CHANGELOG.md +0 -44
- package/backend/node_modules/typed-array-byte-length/LICENSE +0 -21
- package/backend/node_modules/typed-array-byte-length/README.md +0 -70
- package/backend/node_modules/typed-array-byte-length/test/index.js +0 -83
- package/backend/node_modules/typed-array-byte-offset/.eslintrc +0 -8
- package/backend/node_modules/typed-array-byte-offset/CHANGELOG.md +0 -61
- package/backend/node_modules/typed-array-byte-offset/LICENSE +0 -21
- package/backend/node_modules/typed-array-byte-offset/README.md +0 -70
- package/backend/node_modules/typed-array-byte-offset/test/index.js +0 -78
- package/backend/node_modules/typed-array-length/.eslintrc +0 -11
- package/backend/node_modules/typed-array-length/CHANGELOG.md +0 -106
- package/backend/node_modules/typed-array-length/LICENSE +0 -21
- package/backend/node_modules/typed-array-length/README.md +0 -64
- package/backend/node_modules/typed-array-length/test/index.js +0 -74
- package/backend/node_modules/unbox-primitive/.eslintrc +0 -5
- package/backend/node_modules/unbox-primitive/CHANGELOG.md +0 -79
- package/backend/node_modules/unbox-primitive/LICENSE +0 -21
- package/backend/node_modules/unbox-primitive/README.md +0 -47
- package/backend/node_modules/unbox-primitive/test/index.js +0 -59
- package/backend/node_modules/universalify/LICENSE +0 -20
- package/backend/node_modules/universalify/README.md +0 -76
- package/backend/node_modules/unpipe/HISTORY.md +0 -4
- package/backend/node_modules/unpipe/LICENSE +0 -22
- package/backend/node_modules/unpipe/README.md +0 -43
- package/backend/node_modules/uri-js/LICENSE +0 -11
- package/backend/node_modules/uri-js/README.md +0 -203
- package/backend/node_modules/url-parse/LICENSE +0 -22
- package/backend/node_modules/url-parse/README.md +0 -153
- package/backend/node_modules/util-deprecate/History.md +0 -16
- package/backend/node_modules/util-deprecate/LICENSE +0 -24
- package/backend/node_modules/util-deprecate/README.md +0 -53
- package/backend/node_modules/utils-merge/LICENSE +0 -20
- package/backend/node_modules/utils-merge/README.md +0 -34
- package/backend/node_modules/uuid/LICENSE.md +0 -9
- package/backend/node_modules/uuid/README.md +0 -510
- package/backend/node_modules/vary/HISTORY.md +0 -39
- package/backend/node_modules/vary/LICENSE +0 -22
- package/backend/node_modules/vary/README.md +0 -101
- package/backend/node_modules/verror/CHANGES.md +0 -28
- package/backend/node_modules/verror/CONTRIBUTING.md +0 -19
- package/backend/node_modules/verror/LICENSE +0 -19
- package/backend/node_modules/verror/README.md +0 -528
- package/backend/node_modules/which-boxed-primitive/.eslintrc +0 -5
- package/backend/node_modules/which-boxed-primitive/CHANGELOG.md +0 -82
- package/backend/node_modules/which-boxed-primitive/LICENSE +0 -21
- package/backend/node_modules/which-boxed-primitive/README.md +0 -73
- package/backend/node_modules/which-boxed-primitive/test/index.js +0 -46
- package/backend/node_modules/which-builtin-type/.eslintrc +0 -14
- package/backend/node_modules/which-builtin-type/CHANGELOG.md +0 -113
- package/backend/node_modules/which-builtin-type/LICENSE +0 -21
- package/backend/node_modules/which-builtin-type/README.md +0 -67
- package/backend/node_modules/which-builtin-type/test/index.js +0 -184
- package/backend/node_modules/which-collection/.eslintrc +0 -5
- package/backend/node_modules/which-collection/CHANGELOG.md +0 -63
- package/backend/node_modules/which-collection/LICENSE +0 -21
- package/backend/node_modules/which-collection/README.md +0 -65
- package/backend/node_modules/which-collection/test/index.js +0 -59
- package/backend/node_modules/which-typed-array/.eslintrc +0 -10
- package/backend/node_modules/which-typed-array/CHANGELOG.md +0 -269
- package/backend/node_modules/which-typed-array/LICENSE +0 -22
- package/backend/node_modules/which-typed-array/README.md +0 -70
- package/backend/node_modules/which-typed-array/test/index.js +0 -105
- package/backend/node_modules/wrappy/LICENSE +0 -15
- package/backend/node_modules/wrappy/README.md +0 -36
- /package/{backend/node_modules/napi-build-utils/index.md → frontend/node_modules/client-only/index.js} +0 -0
|
@@ -0,0 +1,3526 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "renderToHTMLOrFlight", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return renderToHTMLOrFlight;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const _jsxruntime = require("react/jsx-runtime");
|
|
12
|
+
const _workasyncstorageexternal = require("../app-render/work-async-storage.external");
|
|
13
|
+
const _react = /*#__PURE__*/ _interop_require_wildcard(require("react"));
|
|
14
|
+
const _renderresult = /*#__PURE__*/ _interop_require_default(require("../render-result"));
|
|
15
|
+
const _nodewebstreamshelper = require("../stream-utils/node-web-streams-helper");
|
|
16
|
+
const _internalutils = require("../internal-utils");
|
|
17
|
+
const _approuterheaders = require("../../client/components/app-router-headers");
|
|
18
|
+
const _metadatacontext = require("../../lib/metadata/metadata-context");
|
|
19
|
+
const _requeststore = require("../async-storage/request-store");
|
|
20
|
+
const _workstore = require("../async-storage/work-store");
|
|
21
|
+
const _httpaccessfallback = require("../../client/components/http-access-fallback/http-access-fallback");
|
|
22
|
+
const _redirect = require("../../client/components/redirect");
|
|
23
|
+
const _redirecterror = require("../../client/components/redirect-error");
|
|
24
|
+
const _implicittags = require("../lib/implicit-tags");
|
|
25
|
+
const _constants = require("../lib/trace/constants");
|
|
26
|
+
const _tracer = require("../lib/trace/tracer");
|
|
27
|
+
const _flightrenderresult = require("./flight-render-result");
|
|
28
|
+
const _createerrorhandler = require("./create-error-handler");
|
|
29
|
+
const _getshortdynamicparamtype = require("./get-short-dynamic-param-type");
|
|
30
|
+
const _getsegmentparam = require("../../shared/lib/router/utils/get-segment-param");
|
|
31
|
+
const _getscriptnoncefromheader = require("./get-script-nonce-from-header");
|
|
32
|
+
const _parseandvalidateflightrouterstate = require("./parse-and-validate-flight-router-state");
|
|
33
|
+
const _createflightrouterstatefromloadertree = require("./create-flight-router-state-from-loader-tree");
|
|
34
|
+
const _actionhandler = require("./action-handler");
|
|
35
|
+
const _bailouttocsr = require("../../shared/lib/lazy-dynamic/bailout-to-csr");
|
|
36
|
+
const _log = require("../../build/output/log");
|
|
37
|
+
const _requestcookies = require("../web/spec-extension/adapters/request-cookies");
|
|
38
|
+
const _serverinsertedhtml = require("./server-inserted-html");
|
|
39
|
+
const _requiredscripts = require("./required-scripts");
|
|
40
|
+
const _addpathprefix = require("../../shared/lib/router/utils/add-path-prefix");
|
|
41
|
+
const _makegetserverinsertedhtml = require("./make-get-server-inserted-html");
|
|
42
|
+
const _walktreewithflightrouterstate = require("./walk-tree-with-flight-router-state");
|
|
43
|
+
const _createcomponenttree = require("./create-component-tree");
|
|
44
|
+
const _getassetquerystring = require("./get-asset-query-string");
|
|
45
|
+
const _manifestssingleton = require("./manifests-singleton");
|
|
46
|
+
const _postponedstate = require("./postponed-state");
|
|
47
|
+
const _hooksservercontext = require("../../client/components/hooks-server-context");
|
|
48
|
+
const _useflightresponse = require("./use-flight-response");
|
|
49
|
+
const _staticgenerationbailout = require("../../client/components/static-generation-bailout");
|
|
50
|
+
const _formatservererror = require("../../lib/format-server-error");
|
|
51
|
+
const _dynamicrendering = require("./dynamic-rendering");
|
|
52
|
+
const _clientcomponentrendererlogger = require("../client-component-renderer-logger");
|
|
53
|
+
const _helpers = require("../base-http/helpers");
|
|
54
|
+
const _parserelativeurl = require("../../shared/lib/router/utils/parse-relative-url");
|
|
55
|
+
const _approuter = /*#__PURE__*/ _interop_require_default(require("../../client/components/app-router"));
|
|
56
|
+
const _serveractionrequestmeta = require("../lib/server-action-request-meta");
|
|
57
|
+
const _createinitialrouterstate = require("../../client/components/router-reducer/create-initial-router-state");
|
|
58
|
+
const _approuterinstance = require("../../client/components/app-router-instance");
|
|
59
|
+
const _utils = require("../instrumentation/utils");
|
|
60
|
+
const _segment = require("../../shared/lib/segment");
|
|
61
|
+
const _apprenderprerenderutils = require("./app-render-prerender-utils");
|
|
62
|
+
const _prospectiverenderutils = require("./prospective-render-utils");
|
|
63
|
+
const _apprenderrenderutils = require("./app-render-render-utils");
|
|
64
|
+
const _scheduler = require("../../lib/scheduler");
|
|
65
|
+
const _workunitasyncstorageexternal = require("./work-unit-async-storage.external");
|
|
66
|
+
const _consoleasyncstorageexternal = require("./console-async-storage.external");
|
|
67
|
+
const _cachesignal = require("./cache-signal");
|
|
68
|
+
const _utils1 = require("../lib/trace/utils");
|
|
69
|
+
const _invarianterror = require("../../shared/lib/invariant-error");
|
|
70
|
+
const _constants1 = require("../../lib/constants");
|
|
71
|
+
const _createcomponentstylesandscripts = require("./create-component-styles-and-scripts");
|
|
72
|
+
const _parseloadertree = require("../../shared/lib/router/utils/parse-loader-tree");
|
|
73
|
+
const _resumedatacache = require("../resume-data-cache/resume-data-cache");
|
|
74
|
+
const _iserror = /*#__PURE__*/ _interop_require_default(require("../../lib/is-error"));
|
|
75
|
+
const _createserverinsertedmetadata = require("./metadata-insertion/create-server-inserted-metadata");
|
|
76
|
+
const _serverutils = require("../server-utils");
|
|
77
|
+
const _revalidationutils = require("../revalidation-utils");
|
|
78
|
+
const _trackmoduleloadingexternal = require("./module-loading/track-module-loading.external");
|
|
79
|
+
const _reactlargeshellerror = require("./react-large-shell-error");
|
|
80
|
+
const _segmentexplorerpath = require("./segment-explorer-path");
|
|
81
|
+
const _requestmeta = require("../request-meta");
|
|
82
|
+
const _getdynamicparam = require("../../shared/lib/router/utils/get-dynamic-param");
|
|
83
|
+
const _promisewithresolvers = require("../../shared/lib/promise-with-resolvers");
|
|
84
|
+
const _imageconfigcontextsharedruntime = require("../../shared/lib/image-config-context.shared-runtime");
|
|
85
|
+
const _imageconfig = require("../../shared/lib/image-config");
|
|
86
|
+
const _stagedrendering = require("./staged-rendering");
|
|
87
|
+
const _stagedvalidation = require("./staged-validation");
|
|
88
|
+
const _warnonce = require("../../shared/lib/utils/warn-once");
|
|
89
|
+
function _interop_require_default(obj) {
|
|
90
|
+
return obj && obj.__esModule ? obj : {
|
|
91
|
+
default: obj
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
function _getRequireWildcardCache(nodeInterop) {
|
|
95
|
+
if (typeof WeakMap !== "function") return null;
|
|
96
|
+
var cacheBabelInterop = new WeakMap();
|
|
97
|
+
var cacheNodeInterop = new WeakMap();
|
|
98
|
+
return (_getRequireWildcardCache = function(nodeInterop) {
|
|
99
|
+
return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
|
|
100
|
+
})(nodeInterop);
|
|
101
|
+
}
|
|
102
|
+
function _interop_require_wildcard(obj, nodeInterop) {
|
|
103
|
+
if (!nodeInterop && obj && obj.__esModule) {
|
|
104
|
+
return obj;
|
|
105
|
+
}
|
|
106
|
+
if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
|
|
107
|
+
return {
|
|
108
|
+
default: obj
|
|
109
|
+
};
|
|
110
|
+
}
|
|
111
|
+
var cache = _getRequireWildcardCache(nodeInterop);
|
|
112
|
+
if (cache && cache.has(obj)) {
|
|
113
|
+
return cache.get(obj);
|
|
114
|
+
}
|
|
115
|
+
var newObj = {
|
|
116
|
+
__proto__: null
|
|
117
|
+
};
|
|
118
|
+
var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
|
|
119
|
+
for(var key in obj){
|
|
120
|
+
if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
121
|
+
var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
|
|
122
|
+
if (desc && (desc.get || desc.set)) {
|
|
123
|
+
Object.defineProperty(newObj, key, desc);
|
|
124
|
+
} else {
|
|
125
|
+
newObj[key] = obj[key];
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
newObj.default = obj;
|
|
130
|
+
if (cache) {
|
|
131
|
+
cache.set(obj, newObj);
|
|
132
|
+
}
|
|
133
|
+
return newObj;
|
|
134
|
+
}
|
|
135
|
+
const flightDataPathHeadKey = 'h';
|
|
136
|
+
const getFlightViewportKey = (requestId)=>requestId + 'v';
|
|
137
|
+
const getFlightMetadataKey = (requestId)=>requestId + 'm';
|
|
138
|
+
const filterStackFrame = process.env.NODE_ENV !== 'production' ? require('../lib/source-maps').filterStackFrameDEV : undefined;
|
|
139
|
+
function parseRequestHeaders(headers, options) {
|
|
140
|
+
// runtime prefetch requests are *not* treated as prefetch requests
|
|
141
|
+
// (TODO: this is confusing, we should refactor this to express this better)
|
|
142
|
+
const isPrefetchRequest = headers[_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER] === '1';
|
|
143
|
+
const isRuntimePrefetchRequest = headers[_approuterheaders.NEXT_ROUTER_PREFETCH_HEADER] === '2';
|
|
144
|
+
const isHmrRefresh = headers[_approuterheaders.NEXT_HMR_REFRESH_HEADER] !== undefined;
|
|
145
|
+
const isRSCRequest = headers[_approuterheaders.RSC_HEADER] !== undefined;
|
|
146
|
+
const shouldProvideFlightRouterState = isRSCRequest && (!isPrefetchRequest || !options.isRoutePPREnabled);
|
|
147
|
+
const flightRouterState = shouldProvideFlightRouterState ? (0, _parseandvalidateflightrouterstate.parseAndValidateFlightRouterState)(headers[_approuterheaders.NEXT_ROUTER_STATE_TREE_HEADER]) : undefined;
|
|
148
|
+
// Checks if this is a prefetch of the Route Tree by the Segment Cache
|
|
149
|
+
const isRouteTreePrefetchRequest = headers[_approuterheaders.NEXT_ROUTER_SEGMENT_PREFETCH_HEADER] === '/_tree';
|
|
150
|
+
const csp = headers['content-security-policy'] || headers['content-security-policy-report-only'];
|
|
151
|
+
const nonce = typeof csp === 'string' ? (0, _getscriptnoncefromheader.getScriptNonceFromHeader)(csp) : undefined;
|
|
152
|
+
const previouslyRevalidatedTags = (0, _serverutils.getPreviouslyRevalidatedTags)(headers, options.previewModeId);
|
|
153
|
+
let requestId;
|
|
154
|
+
let htmlRequestId;
|
|
155
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
156
|
+
// The request IDs are only used in development mode to send debug
|
|
157
|
+
// information to the matching client (identified by the HTML request ID
|
|
158
|
+
// that was sent to the client with the HTML document) for the current
|
|
159
|
+
// request (identified by the request ID, as defined by the client).
|
|
160
|
+
requestId = typeof headers[_approuterheaders.NEXT_REQUEST_ID_HEADER] === 'string' ? headers[_approuterheaders.NEXT_REQUEST_ID_HEADER] : undefined;
|
|
161
|
+
htmlRequestId = typeof headers[_approuterheaders.NEXT_HTML_REQUEST_ID_HEADER] === 'string' ? headers[_approuterheaders.NEXT_HTML_REQUEST_ID_HEADER] : undefined;
|
|
162
|
+
}
|
|
163
|
+
return {
|
|
164
|
+
flightRouterState,
|
|
165
|
+
isPrefetchRequest,
|
|
166
|
+
isRuntimePrefetchRequest,
|
|
167
|
+
isRouteTreePrefetchRequest,
|
|
168
|
+
isHmrRefresh,
|
|
169
|
+
isRSCRequest,
|
|
170
|
+
nonce,
|
|
171
|
+
previouslyRevalidatedTags,
|
|
172
|
+
requestId,
|
|
173
|
+
htmlRequestId
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
function createNotFoundLoaderTree(loaderTree) {
|
|
177
|
+
const components = loaderTree[2];
|
|
178
|
+
const hasGlobalNotFound = !!components['global-not-found'];
|
|
179
|
+
const notFoundTreeComponents = hasGlobalNotFound ? {
|
|
180
|
+
layout: components['global-not-found'],
|
|
181
|
+
page: [
|
|
182
|
+
()=>null,
|
|
183
|
+
'next/dist/client/components/builtin/empty-stub'
|
|
184
|
+
]
|
|
185
|
+
} : {
|
|
186
|
+
page: components['not-found']
|
|
187
|
+
};
|
|
188
|
+
return [
|
|
189
|
+
'',
|
|
190
|
+
{
|
|
191
|
+
children: [
|
|
192
|
+
_segment.PAGE_SEGMENT_KEY,
|
|
193
|
+
{},
|
|
194
|
+
notFoundTreeComponents
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
// When global-not-found is present, skip layout from components
|
|
198
|
+
hasGlobalNotFound ? components : {}
|
|
199
|
+
];
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* Returns a function that parses the dynamic segment and return the associated value.
|
|
203
|
+
*/ function makeGetDynamicParamFromSegment(interpolatedParams, fallbackRouteParams) {
|
|
204
|
+
return function getDynamicParamFromSegment(// [slug] / [[slug]] / [...slug]
|
|
205
|
+
segment) {
|
|
206
|
+
const segmentParam = (0, _getsegmentparam.getSegmentParam)(segment);
|
|
207
|
+
if (!segmentParam) {
|
|
208
|
+
return null;
|
|
209
|
+
}
|
|
210
|
+
const segmentKey = segmentParam.paramName;
|
|
211
|
+
const dynamicParamType = _getshortdynamicparamtype.dynamicParamTypes[segmentParam.paramType];
|
|
212
|
+
return (0, _getdynamicparam.getDynamicParam)(interpolatedParams, segmentKey, dynamicParamType, fallbackRouteParams);
|
|
213
|
+
};
|
|
214
|
+
}
|
|
215
|
+
function NonIndex({ createElement, pagePath, statusCode, isPossibleServerAction }) {
|
|
216
|
+
const is404Page = pagePath === '/404';
|
|
217
|
+
const isInvalidStatusCode = typeof statusCode === 'number' && statusCode > 400;
|
|
218
|
+
// Only render noindex for page request, skip for server actions
|
|
219
|
+
// TODO: is this correct if `isPossibleServerAction` is a false positive?
|
|
220
|
+
if (!isPossibleServerAction && (is404Page || isInvalidStatusCode)) {
|
|
221
|
+
return createElement('meta', {
|
|
222
|
+
name: 'robots',
|
|
223
|
+
content: 'noindex'
|
|
224
|
+
});
|
|
225
|
+
}
|
|
226
|
+
return null;
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* This is used by server actions & client-side navigations to generate RSC data from a client-side request.
|
|
230
|
+
* This function is only called on "dynamic" requests (ie, there wasn't already a static response).
|
|
231
|
+
* It uses request headers (namely `next-router-state-tree`) to determine where to start rendering.
|
|
232
|
+
*/ async function generateDynamicRSCPayload(ctx, options) {
|
|
233
|
+
// Flight data that is going to be passed to the browser.
|
|
234
|
+
// Currently a single item array but in the future multiple patches might be combined in a single request.
|
|
235
|
+
// We initialize `flightData` to an empty string because the client router knows how to tolerate
|
|
236
|
+
// it (treating it as an MPA navigation). The only time this function wouldn't generate flight data
|
|
237
|
+
// is for server actions, if the server action handler instructs this function to skip it. When the server
|
|
238
|
+
// action reducer sees a falsy value, it'll simply resolve the action with no data.
|
|
239
|
+
let flightData = '';
|
|
240
|
+
const { componentMod: { routeModule: { userland: { loaderTree } }, createElement, createMetadataComponents, Fragment }, getDynamicParamFromSegment, query, requestId, flightRouterState, workStore, url } = ctx;
|
|
241
|
+
const serveStreamingMetadata = !!ctx.renderOpts.serveStreamingMetadata;
|
|
242
|
+
if (!(options == null ? void 0 : options.skipPageRendering)) {
|
|
243
|
+
const preloadCallbacks = [];
|
|
244
|
+
const { Viewport, Metadata, MetadataOutlet } = createMetadataComponents({
|
|
245
|
+
tree: loaderTree,
|
|
246
|
+
parsedQuery: query,
|
|
247
|
+
pathname: url.pathname,
|
|
248
|
+
metadataContext: (0, _metadatacontext.createMetadataContext)(ctx.renderOpts),
|
|
249
|
+
getDynamicParamFromSegment,
|
|
250
|
+
workStore,
|
|
251
|
+
serveStreamingMetadata
|
|
252
|
+
});
|
|
253
|
+
flightData = (await (0, _walktreewithflightrouterstate.walkTreeWithFlightRouterState)({
|
|
254
|
+
ctx,
|
|
255
|
+
loaderTreeToFilter: loaderTree,
|
|
256
|
+
parentParams: {},
|
|
257
|
+
flightRouterState,
|
|
258
|
+
// For flight, render metadata inside leaf page
|
|
259
|
+
rscHead: createElement(Fragment, {
|
|
260
|
+
key: flightDataPathHeadKey
|
|
261
|
+
}, createElement(NonIndex, {
|
|
262
|
+
createElement,
|
|
263
|
+
pagePath: ctx.pagePath,
|
|
264
|
+
statusCode: ctx.res.statusCode,
|
|
265
|
+
isPossibleServerAction: ctx.isPossibleServerAction
|
|
266
|
+
}), createElement(Viewport, {
|
|
267
|
+
key: getFlightViewportKey(requestId)
|
|
268
|
+
}), createElement(Metadata, {
|
|
269
|
+
key: getFlightMetadataKey(requestId)
|
|
270
|
+
})),
|
|
271
|
+
injectedCSS: new Set(),
|
|
272
|
+
injectedJS: new Set(),
|
|
273
|
+
injectedFontPreloadTags: new Set(),
|
|
274
|
+
rootLayoutIncluded: false,
|
|
275
|
+
preloadCallbacks,
|
|
276
|
+
MetadataOutlet
|
|
277
|
+
})).map((path)=>path.slice(1)) // remove the '' (root) segment
|
|
278
|
+
;
|
|
279
|
+
}
|
|
280
|
+
const varyHeader = ctx.res.getHeader('vary');
|
|
281
|
+
const couldBeIntercepted = typeof varyHeader === 'string' && varyHeader.includes(_approuterheaders.NEXT_URL);
|
|
282
|
+
// If we have an action result, then this is a server action response.
|
|
283
|
+
// We can rely on this because `ActionResult` will always be a promise, even if
|
|
284
|
+
// the result is falsey.
|
|
285
|
+
if (options == null ? void 0 : options.actionResult) {
|
|
286
|
+
return {
|
|
287
|
+
a: options.actionResult,
|
|
288
|
+
f: flightData,
|
|
289
|
+
b: ctx.sharedContext.buildId,
|
|
290
|
+
q: getRenderedSearch(query),
|
|
291
|
+
i: !!couldBeIntercepted
|
|
292
|
+
};
|
|
293
|
+
}
|
|
294
|
+
// Otherwise, it's a regular RSC response.
|
|
295
|
+
const baseResponse = {
|
|
296
|
+
b: ctx.sharedContext.buildId,
|
|
297
|
+
f: flightData,
|
|
298
|
+
q: getRenderedSearch(query),
|
|
299
|
+
i: !!couldBeIntercepted,
|
|
300
|
+
S: workStore.isStaticGeneration
|
|
301
|
+
};
|
|
302
|
+
// For runtime prefetches, we encode the stale time and isPartial flag in the response body
|
|
303
|
+
// rather than relying on response headers. Both of these values will be transformed
|
|
304
|
+
// by a transform stream before being sent to the client.
|
|
305
|
+
if ((options == null ? void 0 : options.runtimePrefetchSentinel) !== undefined) {
|
|
306
|
+
return {
|
|
307
|
+
...baseResponse,
|
|
308
|
+
rp: [
|
|
309
|
+
options.runtimePrefetchSentinel
|
|
310
|
+
]
|
|
311
|
+
};
|
|
312
|
+
}
|
|
313
|
+
return baseResponse;
|
|
314
|
+
}
|
|
315
|
+
function createErrorContext(ctx, renderSource) {
|
|
316
|
+
return {
|
|
317
|
+
routerKind: 'App Router',
|
|
318
|
+
routePath: ctx.pagePath,
|
|
319
|
+
// TODO: is this correct if `isPossibleServerAction` is a false positive?
|
|
320
|
+
routeType: ctx.isPossibleServerAction ? 'action' : 'render',
|
|
321
|
+
renderSource,
|
|
322
|
+
revalidateReason: (0, _utils.getRevalidateReason)(ctx.workStore)
|
|
323
|
+
};
|
|
324
|
+
}
|
|
325
|
+
/**
|
|
326
|
+
* Produces a RenderResult containing the Flight data for the given request. See
|
|
327
|
+
* `generateDynamicRSCPayload` for information on the contents of the render result.
|
|
328
|
+
*/ async function generateDynamicFlightRenderResult(req, ctx, requestStore, options) {
|
|
329
|
+
const { componentMod: { renderToReadableStream }, htmlRequestId, renderOpts, requestId, workStore } = ctx;
|
|
330
|
+
const { dev = false, onInstrumentationRequestError, setReactDebugChannel, nextExport = false } = renderOpts;
|
|
331
|
+
function onFlightDataRenderError(err, silenceLog) {
|
|
332
|
+
return onInstrumentationRequestError == null ? void 0 : onInstrumentationRequestError(err, req, createErrorContext(ctx, 'react-server-components-payload'), silenceLog);
|
|
333
|
+
}
|
|
334
|
+
const onError = (0, _createerrorhandler.createReactServerErrorHandler)(dev, nextExport, workStore.reactServerErrorsByDigest, onFlightDataRenderError);
|
|
335
|
+
const debugChannel = setReactDebugChannel && createDebugChannel();
|
|
336
|
+
if (debugChannel) {
|
|
337
|
+
setReactDebugChannel(debugChannel.clientSide, htmlRequestId, requestId);
|
|
338
|
+
}
|
|
339
|
+
const { clientModules } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
340
|
+
// For app dir, use the bundled version of Flight server renderer (renderToReadableStream)
|
|
341
|
+
// which contains the subset React.
|
|
342
|
+
const rscPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, generateDynamicRSCPayload, ctx, options);
|
|
343
|
+
const flightReadableStream = _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, renderToReadableStream, rscPayload, clientModules, {
|
|
344
|
+
onError,
|
|
345
|
+
temporaryReferences: options == null ? void 0 : options.temporaryReferences,
|
|
346
|
+
filterStackFrame,
|
|
347
|
+
debugChannel: debugChannel == null ? void 0 : debugChannel.serverSide
|
|
348
|
+
});
|
|
349
|
+
return new _flightrenderresult.FlightRenderResult(flightReadableStream, {
|
|
350
|
+
fetchMetrics: workStore.fetchMetrics
|
|
351
|
+
}, options == null ? void 0 : options.waitUntil);
|
|
352
|
+
}
|
|
353
|
+
async function stagedRenderToReadableStreamWithoutCachesInDev(ctx, requestStore, getPayload, options) {
|
|
354
|
+
const { componentMod: { renderToReadableStream } } = ctx;
|
|
355
|
+
// We're rendering while bypassing caches,
|
|
356
|
+
// so we have no hope of showing a useful runtime stage.
|
|
357
|
+
// But we still want things like `params` to show up in devtools correctly,
|
|
358
|
+
// which relies on mechanisms we've set up for staged rendering,
|
|
359
|
+
// so we do a 2-task version (Static -> Dynamic) instead.
|
|
360
|
+
// We aren't doing any validation in this kind of render so we say there
|
|
361
|
+
// is not runtime prefetch regardless of whether there is or not
|
|
362
|
+
const hasRuntimePrefetch = false;
|
|
363
|
+
// We aren't filling caches so we don't need to abort this render, it'll
|
|
364
|
+
// stream in a single pass
|
|
365
|
+
const abortSignal = null;
|
|
366
|
+
const stageController = new _stagedrendering.StagedRenderingController(abortSignal, hasRuntimePrefetch);
|
|
367
|
+
const environmentName = ()=>{
|
|
368
|
+
const currentStage = stageController.currentStage;
|
|
369
|
+
switch(currentStage){
|
|
370
|
+
case _stagedrendering.RenderStage.Before:
|
|
371
|
+
case _stagedrendering.RenderStage.Static:
|
|
372
|
+
return 'Prerender';
|
|
373
|
+
case _stagedrendering.RenderStage.Runtime:
|
|
374
|
+
case _stagedrendering.RenderStage.Dynamic:
|
|
375
|
+
case _stagedrendering.RenderStage.Abandoned:
|
|
376
|
+
return 'Server';
|
|
377
|
+
default:
|
|
378
|
+
currentStage;
|
|
379
|
+
throw Object.defineProperty(new _invarianterror.InvariantError(`Invalid render stage: ${currentStage}`), "__NEXT_ERROR_CODE", {
|
|
380
|
+
value: "E881",
|
|
381
|
+
enumerable: false,
|
|
382
|
+
configurable: true
|
|
383
|
+
});
|
|
384
|
+
}
|
|
385
|
+
};
|
|
386
|
+
requestStore.stagedRendering = stageController;
|
|
387
|
+
requestStore.asyncApiPromises = createAsyncApiPromisesInDev(stageController, requestStore.cookies, requestStore.mutableCookies, requestStore.headers);
|
|
388
|
+
const { clientModules } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
389
|
+
const rscPayload = await getPayload(requestStore);
|
|
390
|
+
return await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, _apprenderrenderutils.scheduleInSequentialTasks, ()=>{
|
|
391
|
+
stageController.advanceStage(_stagedrendering.RenderStage.Static);
|
|
392
|
+
return renderToReadableStream(rscPayload, clientModules, {
|
|
393
|
+
...options,
|
|
394
|
+
environmentName
|
|
395
|
+
});
|
|
396
|
+
}, ()=>{
|
|
397
|
+
stageController.advanceStage(_stagedrendering.RenderStage.Dynamic);
|
|
398
|
+
});
|
|
399
|
+
}
|
|
400
|
+
/**
|
|
401
|
+
* Fork of `generateDynamicFlightRenderResult` that renders using `renderWithRestartOnCacheMissInDev`
|
|
402
|
+
* to ensure correct separation of environments Prerender/Server (for use in Cache Components)
|
|
403
|
+
*/ async function generateDynamicFlightRenderResultWithStagesInDev(req, ctx, initialRequestStore, createRequestStore, devFallbackParams) {
|
|
404
|
+
const { htmlRequestId, renderOpts, requestId, workStore, componentMod: { createElement }, url } = ctx;
|
|
405
|
+
const { dev = false, onInstrumentationRequestError, setReactDebugChannel, setCacheStatus, nextExport = false } = renderOpts;
|
|
406
|
+
function onFlightDataRenderError(err, silenceLog) {
|
|
407
|
+
return onInstrumentationRequestError == null ? void 0 : onInstrumentationRequestError(err, req, createErrorContext(ctx, 'react-server-components-payload'), silenceLog);
|
|
408
|
+
}
|
|
409
|
+
const onError = (0, _createerrorhandler.createReactServerErrorHandler)(dev, nextExport, workStore.reactServerErrorsByDigest, onFlightDataRenderError);
|
|
410
|
+
// We only validate RSC requests if it is for HMR refreshes since we know we
|
|
411
|
+
// will render all the layouts necessary to perform the validation.
|
|
412
|
+
const shouldValidate = !isBypassingCachesInDev(renderOpts, initialRequestStore) && initialRequestStore.isHmrRefresh === true;
|
|
413
|
+
const getPayload = async (requestStore)=>{
|
|
414
|
+
const payload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, generateDynamicRSCPayload, ctx, undefined);
|
|
415
|
+
if (isBypassingCachesInDev(renderOpts, requestStore)) {
|
|
416
|
+
// Mark the RSC payload to indicate that caches were bypassed in dev.
|
|
417
|
+
// This lets the client know not to cache anything based on this render.
|
|
418
|
+
payload._bypassCachesInDev = createElement(WarnForBypassCachesInDev, {
|
|
419
|
+
route: workStore.route
|
|
420
|
+
});
|
|
421
|
+
} else if (shouldValidate) {
|
|
422
|
+
// If this payload will be used for validation, it needs to contain the
|
|
423
|
+
// canonical URL. Without it we'd get an error.
|
|
424
|
+
payload.c = prepareInitialCanonicalUrl(url);
|
|
425
|
+
}
|
|
426
|
+
return payload;
|
|
427
|
+
};
|
|
428
|
+
let debugChannel;
|
|
429
|
+
let stream;
|
|
430
|
+
if (// We only do this flow if we can safely recreate the store from scratch
|
|
431
|
+
// (which is not the case for renders after an action)
|
|
432
|
+
createRequestStore && // We only do this flow if we're not bypassing caches in dev using
|
|
433
|
+
// "disable cache" in devtools or a hard refresh (cache-control: "no-store")
|
|
434
|
+
!isBypassingCachesInDev(renderOpts, initialRequestStore)) {
|
|
435
|
+
// Before we kick off the render, we set the cache status back to it's initial state
|
|
436
|
+
// in case a previous render bypassed the cache.
|
|
437
|
+
if (setCacheStatus) {
|
|
438
|
+
setCacheStatus('ready', htmlRequestId);
|
|
439
|
+
}
|
|
440
|
+
const { stream: serverStream, accumulatedChunksPromise, staticInterruptReason, runtimeInterruptReason, staticStageEndTime, runtimeStageEndTime, debugChannel: returnedDebugChannel, requestStore: finalRequestStore } = await renderWithRestartOnCacheMissInDev(ctx, initialRequestStore, createRequestStore, getPayload, onError);
|
|
441
|
+
if (shouldValidate) {
|
|
442
|
+
let validationDebugChannelClient = undefined;
|
|
443
|
+
if (returnedDebugChannel) {
|
|
444
|
+
const [t1, t2] = returnedDebugChannel.clientSide.readable.tee();
|
|
445
|
+
returnedDebugChannel.clientSide.readable = t1;
|
|
446
|
+
validationDebugChannelClient = nodeStreamFromReadableStream(t2);
|
|
447
|
+
}
|
|
448
|
+
_consoleasyncstorageexternal.consoleAsyncStorage.run({
|
|
449
|
+
dim: true
|
|
450
|
+
}, spawnStaticShellValidationInDev, accumulatedChunksPromise, staticInterruptReason, runtimeInterruptReason, staticStageEndTime, runtimeStageEndTime, ctx, finalRequestStore, devFallbackParams, validationDebugChannelClient);
|
|
451
|
+
}
|
|
452
|
+
debugChannel = returnedDebugChannel;
|
|
453
|
+
stream = serverStream;
|
|
454
|
+
} else {
|
|
455
|
+
// We're either bypassing caches or we can't restart the render.
|
|
456
|
+
// Do a dynamic render, but with (basic) environment labels.
|
|
457
|
+
// Set cache status to bypass when specifically bypassing caches in dev
|
|
458
|
+
if (setCacheStatus) {
|
|
459
|
+
setCacheStatus('bypass', htmlRequestId);
|
|
460
|
+
}
|
|
461
|
+
debugChannel = setReactDebugChannel && createDebugChannel();
|
|
462
|
+
stream = await stagedRenderToReadableStreamWithoutCachesInDev(ctx, initialRequestStore, getPayload, {
|
|
463
|
+
onError: onError,
|
|
464
|
+
filterStackFrame,
|
|
465
|
+
debugChannel: debugChannel == null ? void 0 : debugChannel.serverSide
|
|
466
|
+
});
|
|
467
|
+
}
|
|
468
|
+
if (debugChannel && setReactDebugChannel) {
|
|
469
|
+
setReactDebugChannel(debugChannel.clientSide, htmlRequestId, requestId);
|
|
470
|
+
}
|
|
471
|
+
return new _flightrenderresult.FlightRenderResult(stream, {
|
|
472
|
+
fetchMetrics: workStore.fetchMetrics
|
|
473
|
+
});
|
|
474
|
+
}
|
|
475
|
+
async function generateRuntimePrefetchResult(req, ctx, requestStore) {
|
|
476
|
+
const { workStore, renderOpts } = ctx;
|
|
477
|
+
const { nextExport = false, onInstrumentationRequestError } = renderOpts;
|
|
478
|
+
function onFlightDataRenderError(err, silenceLog) {
|
|
479
|
+
return onInstrumentationRequestError == null ? void 0 : onInstrumentationRequestError(err, req, // TODO(runtime-ppr): should we use a different value?
|
|
480
|
+
createErrorContext(ctx, 'react-server-components-payload'), silenceLog);
|
|
481
|
+
}
|
|
482
|
+
const onError = (0, _createerrorhandler.createReactServerErrorHandler)(false, nextExport, workStore.reactServerErrorsByDigest, onFlightDataRenderError);
|
|
483
|
+
const metadata = {};
|
|
484
|
+
// Generate a random sentinel that will be used as a placeholder in the payload
|
|
485
|
+
// and later replaced by the transform stream
|
|
486
|
+
const runtimePrefetchSentinel = Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
|
|
487
|
+
const generatePayload = ()=>generateDynamicRSCPayload(ctx, {
|
|
488
|
+
runtimePrefetchSentinel
|
|
489
|
+
});
|
|
490
|
+
const { componentMod: { routeModule: { userland: { loaderTree } } }, getDynamicParamFromSegment } = ctx;
|
|
491
|
+
const rootParams = (0, _createcomponenttree.getRootParams)(loaderTree, getDynamicParamFromSegment);
|
|
492
|
+
// We need to share caches between the prospective prerender and the final prerender,
|
|
493
|
+
// but we're not going to persist this anywhere.
|
|
494
|
+
const prerenderResumeDataCache = (0, _resumedatacache.createPrerenderResumeDataCache)();
|
|
495
|
+
// We're not resuming an existing render.
|
|
496
|
+
const renderResumeDataCache = null;
|
|
497
|
+
await prospectiveRuntimeServerPrerender(ctx, generatePayload, prerenderResumeDataCache, renderResumeDataCache, rootParams, requestStore.headers, requestStore.cookies, requestStore.draftMode);
|
|
498
|
+
const response = await finalRuntimeServerPrerender(ctx, generatePayload, prerenderResumeDataCache, renderResumeDataCache, rootParams, requestStore.headers, requestStore.cookies, requestStore.draftMode, onError, runtimePrefetchSentinel);
|
|
499
|
+
applyMetadataFromPrerenderResult(response, metadata, workStore);
|
|
500
|
+
metadata.fetchMetrics = ctx.workStore.fetchMetrics;
|
|
501
|
+
return new _flightrenderresult.FlightRenderResult(response.result.prelude, metadata);
|
|
502
|
+
}
|
|
503
|
+
async function prospectiveRuntimeServerPrerender(ctx, getPayload, prerenderResumeDataCache, renderResumeDataCache, rootParams, headers, cookies, draftMode) {
|
|
504
|
+
const { implicitTags, renderOpts, workStore } = ctx;
|
|
505
|
+
const { ComponentMod } = renderOpts;
|
|
506
|
+
// Prerender controller represents the lifetime of the prerender.
|
|
507
|
+
// It will be aborted when a Task is complete or a synchronously aborting
|
|
508
|
+
// API is called. Notably during cache-filling renders this does not actually
|
|
509
|
+
// terminate the render itself which will continue until all caches are filled
|
|
510
|
+
const initialServerPrerenderController = new AbortController();
|
|
511
|
+
// This controller represents the lifetime of the React render call. Notably
|
|
512
|
+
// during the cache-filling render it is different from the prerender controller
|
|
513
|
+
// because we don't want to end the react render until all caches are filled.
|
|
514
|
+
const initialServerRenderController = new AbortController();
|
|
515
|
+
// The cacheSignal helps us track whether caches are still filling or we are ready
|
|
516
|
+
// to cut the render off.
|
|
517
|
+
const cacheSignal = new _cachesignal.CacheSignal();
|
|
518
|
+
const initialServerPrerenderStore = {
|
|
519
|
+
type: 'prerender-runtime',
|
|
520
|
+
phase: 'render',
|
|
521
|
+
rootParams,
|
|
522
|
+
implicitTags,
|
|
523
|
+
renderSignal: initialServerRenderController.signal,
|
|
524
|
+
controller: initialServerPrerenderController,
|
|
525
|
+
// During the initial prerender we need to track all cache reads to ensure
|
|
526
|
+
// we render long enough to fill every cache it is possible to visit during
|
|
527
|
+
// the final prerender.
|
|
528
|
+
cacheSignal,
|
|
529
|
+
// We only need to track dynamic accesses during the final prerender.
|
|
530
|
+
dynamicTracking: null,
|
|
531
|
+
// Runtime prefetches are never cached server-side, only client-side,
|
|
532
|
+
// so we set `expire` and `revalidate` to their minimum values just in case.
|
|
533
|
+
revalidate: 1,
|
|
534
|
+
expire: 0,
|
|
535
|
+
stale: _constants1.INFINITE_CACHE,
|
|
536
|
+
tags: [
|
|
537
|
+
...implicitTags.tags
|
|
538
|
+
],
|
|
539
|
+
renderResumeDataCache,
|
|
540
|
+
prerenderResumeDataCache,
|
|
541
|
+
hmrRefreshHash: undefined,
|
|
542
|
+
// We only need task sequencing in the final prerender.
|
|
543
|
+
runtimeStagePromise: null,
|
|
544
|
+
// These are not present in regular prerenders, but allowed in a runtime prerender.
|
|
545
|
+
headers,
|
|
546
|
+
cookies,
|
|
547
|
+
draftMode
|
|
548
|
+
};
|
|
549
|
+
const { clientModules } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
550
|
+
// We're not going to use the result of this render because the only time it could be used
|
|
551
|
+
// is if it completes in a microtask and that's likely very rare for any non-trivial app
|
|
552
|
+
const initialServerPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(initialServerPrerenderStore, getPayload);
|
|
553
|
+
const pendingInitialServerResult = _workunitasyncstorageexternal.workUnitAsyncStorage.run(initialServerPrerenderStore, ComponentMod.prerender, initialServerPayload, clientModules, {
|
|
554
|
+
filterStackFrame,
|
|
555
|
+
onError: (err)=>{
|
|
556
|
+
const digest = (0, _createerrorhandler.getDigestForWellKnownError)(err);
|
|
557
|
+
if (digest) {
|
|
558
|
+
return digest;
|
|
559
|
+
}
|
|
560
|
+
if (initialServerPrerenderController.signal.aborted) {
|
|
561
|
+
// The render aborted before this error was handled which indicates
|
|
562
|
+
// the error is caused by unfinished components within the render
|
|
563
|
+
return;
|
|
564
|
+
} else if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
565
|
+
(0, _prospectiverenderutils.printDebugThrownValueForProspectiveRender)(err, workStore.route, _prospectiverenderutils.Phase.ProspectiveRender);
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
// We don't want to stop rendering until the cacheSignal is complete so we pass
|
|
569
|
+
// a different signal to this render call than is used by dynamic APIs to signify
|
|
570
|
+
// transitioning out of the prerender environment
|
|
571
|
+
signal: initialServerRenderController.signal
|
|
572
|
+
});
|
|
573
|
+
// Wait for all caches to be finished filling and for async imports to resolve
|
|
574
|
+
(0, _trackmoduleloadingexternal.trackPendingModules)(cacheSignal);
|
|
575
|
+
await cacheSignal.cacheReady();
|
|
576
|
+
initialServerRenderController.abort();
|
|
577
|
+
initialServerPrerenderController.abort();
|
|
578
|
+
// We don't need to continue the prerender process if we already
|
|
579
|
+
// detected invalid dynamic usage in the initial prerender phase.
|
|
580
|
+
if (workStore.invalidDynamicUsageError) {
|
|
581
|
+
throw workStore.invalidDynamicUsageError;
|
|
582
|
+
}
|
|
583
|
+
try {
|
|
584
|
+
return await (0, _apprenderprerenderutils.createReactServerPrerenderResult)(pendingInitialServerResult);
|
|
585
|
+
} catch (err) {
|
|
586
|
+
if (initialServerRenderController.signal.aborted || initialServerPrerenderController.signal.aborted) {
|
|
587
|
+
// These are expected errors that might error the prerender. we ignore them.
|
|
588
|
+
} else if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
589
|
+
// We don't normally log these errors because we are going to retry anyway but
|
|
590
|
+
// it can be useful for debugging Next.js itself to get visibility here when needed
|
|
591
|
+
(0, _prospectiverenderutils.printDebugThrownValueForProspectiveRender)(err, workStore.route, _prospectiverenderutils.Phase.ProspectiveRender);
|
|
592
|
+
}
|
|
593
|
+
return null;
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
/**
|
|
597
|
+
* Updates the runtime prefetch metadata in the RSC payload as it streams:
|
|
598
|
+
* "rp":[<sentinel>] -> "rp":[<isPartial>,<staleTime>]
|
|
599
|
+
*
|
|
600
|
+
* We use a transform stream to do this to avoid needing to trigger an additional render.
|
|
601
|
+
* A random sentinel number guarantees no collision with user data.
|
|
602
|
+
*/ function createRuntimePrefetchTransformStream(sentinel, isPartial, staleTime) {
|
|
603
|
+
const encoder = new TextEncoder();
|
|
604
|
+
// Search for: [<sentinel>]
|
|
605
|
+
// Replace with: [<isPartial>,<staleTime>]
|
|
606
|
+
const search = encoder.encode(`[${sentinel}]`);
|
|
607
|
+
const first = search[0];
|
|
608
|
+
const replace = encoder.encode(`[${isPartial},${staleTime}]`);
|
|
609
|
+
const searchLen = search.length;
|
|
610
|
+
let currentChunk = null;
|
|
611
|
+
let found = false;
|
|
612
|
+
function processChunk(controller, nextChunk) {
|
|
613
|
+
if (found) {
|
|
614
|
+
if (nextChunk) {
|
|
615
|
+
controller.enqueue(nextChunk);
|
|
616
|
+
}
|
|
617
|
+
return;
|
|
618
|
+
}
|
|
619
|
+
if (currentChunk) {
|
|
620
|
+
// We can't search past the index that can contain a full match
|
|
621
|
+
let exclusiveUpperBound = currentChunk.length - (searchLen - 1);
|
|
622
|
+
if (nextChunk) {
|
|
623
|
+
// If we have any overflow bytes we can search up to the chunk's final byte
|
|
624
|
+
exclusiveUpperBound += Math.min(nextChunk.length, searchLen - 1);
|
|
625
|
+
}
|
|
626
|
+
if (exclusiveUpperBound < 1) {
|
|
627
|
+
// we can't match the current chunk.
|
|
628
|
+
controller.enqueue(currentChunk);
|
|
629
|
+
currentChunk = nextChunk // advance so we don't process this chunk again
|
|
630
|
+
;
|
|
631
|
+
return;
|
|
632
|
+
}
|
|
633
|
+
let currentIndex = currentChunk.indexOf(first);
|
|
634
|
+
// check the current candidate match if it is within the bounds of our search space for the currentChunk
|
|
635
|
+
candidateLoop: while(-1 < currentIndex && currentIndex < exclusiveUpperBound){
|
|
636
|
+
// We already know index 0 matches because we used indexOf to find the candidateIndex so we start at index 1
|
|
637
|
+
let matchIndex = 1;
|
|
638
|
+
while(matchIndex < searchLen){
|
|
639
|
+
const candidateIndex = currentIndex + matchIndex;
|
|
640
|
+
const candidateValue = candidateIndex < currentChunk.length ? currentChunk[candidateIndex] : nextChunk[candidateIndex - currentChunk.length];
|
|
641
|
+
if (candidateValue !== search[matchIndex]) {
|
|
642
|
+
// No match, reset and continue the search from the next position
|
|
643
|
+
currentIndex = currentChunk.indexOf(first, currentIndex + 1);
|
|
644
|
+
continue candidateLoop;
|
|
645
|
+
}
|
|
646
|
+
matchIndex++;
|
|
647
|
+
}
|
|
648
|
+
// We found a complete match. currentIndex is our starting point to replace the value.
|
|
649
|
+
found = true;
|
|
650
|
+
// enqueue everything up to the match
|
|
651
|
+
controller.enqueue(currentChunk.subarray(0, currentIndex));
|
|
652
|
+
// enqueue the replacement value
|
|
653
|
+
controller.enqueue(replace);
|
|
654
|
+
// If there are bytes in the currentChunk after the match enqueue them
|
|
655
|
+
if (currentIndex + searchLen < currentChunk.length) {
|
|
656
|
+
controller.enqueue(currentChunk.slice(currentIndex + searchLen));
|
|
657
|
+
}
|
|
658
|
+
// If we have a next chunk we enqueue it now
|
|
659
|
+
if (nextChunk) {
|
|
660
|
+
// if replacement spills over to the next chunk we first exclude the replaced bytes
|
|
661
|
+
const overflowBytes = currentIndex + searchLen - currentChunk.length;
|
|
662
|
+
const truncatedChunk = overflowBytes > 0 ? nextChunk.subarray(overflowBytes) : nextChunk;
|
|
663
|
+
controller.enqueue(truncatedChunk);
|
|
664
|
+
}
|
|
665
|
+
// We are now in found mode and don't need to track currentChunk anymore
|
|
666
|
+
currentChunk = null;
|
|
667
|
+
return;
|
|
668
|
+
}
|
|
669
|
+
// No match found in this chunk, emit it and wait for the next one
|
|
670
|
+
controller.enqueue(currentChunk);
|
|
671
|
+
}
|
|
672
|
+
// Advance to the next chunk
|
|
673
|
+
currentChunk = nextChunk;
|
|
674
|
+
}
|
|
675
|
+
return new TransformStream({
|
|
676
|
+
transform (chunk, controller) {
|
|
677
|
+
processChunk(controller, chunk);
|
|
678
|
+
},
|
|
679
|
+
flush (controller) {
|
|
680
|
+
processChunk(controller, null);
|
|
681
|
+
}
|
|
682
|
+
});
|
|
683
|
+
}
|
|
684
|
+
async function finalRuntimeServerPrerender(ctx, getPayload, prerenderResumeDataCache, renderResumeDataCache, rootParams, headers, cookies, draftMode, onError, runtimePrefetchSentinel) {
|
|
685
|
+
const { implicitTags, renderOpts } = ctx;
|
|
686
|
+
const { ComponentMod, experimental, isDebugDynamicAccesses } = renderOpts;
|
|
687
|
+
const selectStaleTime = createSelectStaleTime(experimental);
|
|
688
|
+
let serverIsDynamic = false;
|
|
689
|
+
const finalServerController = new AbortController();
|
|
690
|
+
const serverDynamicTracking = (0, _dynamicrendering.createDynamicTrackingState)(isDebugDynamicAccesses);
|
|
691
|
+
const { promise: runtimeStagePromise, resolve: resolveBlockedRuntimeAPIs } = (0, _promisewithresolvers.createPromiseWithResolvers)();
|
|
692
|
+
const finalServerPrerenderStore = {
|
|
693
|
+
type: 'prerender-runtime',
|
|
694
|
+
phase: 'render',
|
|
695
|
+
rootParams,
|
|
696
|
+
implicitTags,
|
|
697
|
+
renderSignal: finalServerController.signal,
|
|
698
|
+
controller: finalServerController,
|
|
699
|
+
// All caches we could read must already be filled so no tracking is necessary
|
|
700
|
+
cacheSignal: null,
|
|
701
|
+
dynamicTracking: serverDynamicTracking,
|
|
702
|
+
// Runtime prefetches are never cached server-side, only client-side,
|
|
703
|
+
// so we set `expire` and `revalidate` to their minimum values just in case.
|
|
704
|
+
revalidate: 1,
|
|
705
|
+
expire: 0,
|
|
706
|
+
stale: _constants1.INFINITE_CACHE,
|
|
707
|
+
tags: [
|
|
708
|
+
...implicitTags.tags
|
|
709
|
+
],
|
|
710
|
+
prerenderResumeDataCache,
|
|
711
|
+
renderResumeDataCache,
|
|
712
|
+
hmrRefreshHash: undefined,
|
|
713
|
+
// Used to separate the "Static" stage from the "Runtime" stage.
|
|
714
|
+
runtimeStagePromise,
|
|
715
|
+
// These are not present in regular prerenders, but allowed in a runtime prerender.
|
|
716
|
+
headers,
|
|
717
|
+
cookies,
|
|
718
|
+
draftMode
|
|
719
|
+
};
|
|
720
|
+
const { clientModules } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
721
|
+
const finalRSCPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(finalServerPrerenderStore, getPayload);
|
|
722
|
+
let prerenderIsPending = true;
|
|
723
|
+
const result = await (0, _apprenderprerenderutils.prerenderAndAbortInSequentialTasksWithStages)(async ()=>{
|
|
724
|
+
// Static stage
|
|
725
|
+
const prerenderResult = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(finalServerPrerenderStore, ComponentMod.prerender, finalRSCPayload, clientModules, {
|
|
726
|
+
filterStackFrame,
|
|
727
|
+
onError,
|
|
728
|
+
signal: finalServerController.signal
|
|
729
|
+
});
|
|
730
|
+
prerenderIsPending = false;
|
|
731
|
+
return prerenderResult;
|
|
732
|
+
}, ()=>{
|
|
733
|
+
// Advance to the runtime stage.
|
|
734
|
+
//
|
|
735
|
+
// We make runtime APIs hang during the first task (above), and unblock them in the following task (here).
|
|
736
|
+
// This makes sure that, at this point, we'll have finished all the static parts (what we'd prerender statically).
|
|
737
|
+
// We know that they don't contain any incorrect sync IO, because that'd have caused a build error.
|
|
738
|
+
// After we unblock Runtime APIs, if we encounter sync IO (e.g. `await cookies(); Date.now()`),
|
|
739
|
+
// we'll abort, but we'll produce at least as much output as a static prerender would.
|
|
740
|
+
resolveBlockedRuntimeAPIs();
|
|
741
|
+
}, ()=>{
|
|
742
|
+
// Abort.
|
|
743
|
+
if (finalServerController.signal.aborted) {
|
|
744
|
+
// If the server controller is already aborted we must have called something
|
|
745
|
+
// that required aborting the prerender synchronously such as with new Date()
|
|
746
|
+
serverIsDynamic = true;
|
|
747
|
+
return;
|
|
748
|
+
}
|
|
749
|
+
if (prerenderIsPending) {
|
|
750
|
+
// If prerenderIsPending then we have blocked for longer than a Task and we assume
|
|
751
|
+
// there is something unfinished.
|
|
752
|
+
serverIsDynamic = true;
|
|
753
|
+
}
|
|
754
|
+
finalServerController.abort();
|
|
755
|
+
});
|
|
756
|
+
// Update the RSC payload stream to replace the sentinel with actual values.
|
|
757
|
+
// React has already serialized the payload with the sentinel, so we need to transform the stream.
|
|
758
|
+
const collectedStale = selectStaleTime(finalServerPrerenderStore.stale);
|
|
759
|
+
result.prelude = result.prelude.pipeThrough(createRuntimePrefetchTransformStream(runtimePrefetchSentinel, serverIsDynamic, collectedStale));
|
|
760
|
+
return {
|
|
761
|
+
result,
|
|
762
|
+
// TODO(runtime-ppr): do we need to produce a digest map here?
|
|
763
|
+
// digestErrorsMap: ...,
|
|
764
|
+
dynamicAccess: serverDynamicTracking,
|
|
765
|
+
isPartial: serverIsDynamic,
|
|
766
|
+
collectedRevalidate: finalServerPrerenderStore.revalidate,
|
|
767
|
+
collectedExpire: finalServerPrerenderStore.expire,
|
|
768
|
+
collectedStale,
|
|
769
|
+
collectedTags: finalServerPrerenderStore.tags
|
|
770
|
+
};
|
|
771
|
+
}
|
|
772
|
+
/**
|
|
773
|
+
* Crawlers will inadvertently think the canonicalUrl in the RSC payload should be crawled
|
|
774
|
+
* when our intention is to just seed the router state with the current URL.
|
|
775
|
+
* This function splits up the pathname so that we can later join it on
|
|
776
|
+
* when we're ready to consume the path.
|
|
777
|
+
*/ function prepareInitialCanonicalUrl(url) {
|
|
778
|
+
return (url.pathname + url.search).split('/');
|
|
779
|
+
}
|
|
780
|
+
function getRenderedSearch(query) {
|
|
781
|
+
// Inlined implementation of querystring.encode, which is not available in
|
|
782
|
+
// the Edge runtime.
|
|
783
|
+
const pairs = [];
|
|
784
|
+
for(const key in query){
|
|
785
|
+
const value = query[key];
|
|
786
|
+
if (value == null) continue;
|
|
787
|
+
if (Array.isArray(value)) {
|
|
788
|
+
for (const v of value){
|
|
789
|
+
pairs.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(v))}`);
|
|
790
|
+
}
|
|
791
|
+
} else {
|
|
792
|
+
pairs.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
// The result should match the format of a web URL's `search` property, since
|
|
796
|
+
// this is the format that's stored in the App Router state.
|
|
797
|
+
// TODO: We're a bit inconsistent about this. The x-nextjs-rewritten-query
|
|
798
|
+
// header omits the leading question mark. Should refactor to always do
|
|
799
|
+
// that instead.
|
|
800
|
+
if (pairs.length === 0) {
|
|
801
|
+
// If the search string is empty, return an empty string.
|
|
802
|
+
return '';
|
|
803
|
+
}
|
|
804
|
+
// Prepend '?' to the search params string.
|
|
805
|
+
return '?' + pairs.join('&');
|
|
806
|
+
}
|
|
807
|
+
// This is the data necessary to render <AppRouter /> when no SSR errors are encountered
|
|
808
|
+
async function getRSCPayload(tree, ctx, is404) {
|
|
809
|
+
const injectedCSS = new Set();
|
|
810
|
+
const injectedJS = new Set();
|
|
811
|
+
const injectedFontPreloadTags = new Set();
|
|
812
|
+
let missingSlots;
|
|
813
|
+
// We only track missing parallel slots in development
|
|
814
|
+
if (process.env.NODE_ENV === 'development') {
|
|
815
|
+
missingSlots = new Set();
|
|
816
|
+
}
|
|
817
|
+
const { getDynamicParamFromSegment, query, appUsingSizeAdjustment, componentMod: { createMetadataComponents, createElement, Fragment }, url, workStore } = ctx;
|
|
818
|
+
const initialTree = (0, _createflightrouterstatefromloadertree.createFlightRouterStateFromLoaderTree)(tree, getDynamicParamFromSegment, query);
|
|
819
|
+
const serveStreamingMetadata = !!ctx.renderOpts.serveStreamingMetadata;
|
|
820
|
+
const hasGlobalNotFound = !!tree[2]['global-not-found'];
|
|
821
|
+
const { Viewport, Metadata, MetadataOutlet } = createMetadataComponents({
|
|
822
|
+
tree,
|
|
823
|
+
// When it's using global-not-found, metadata errorType is undefined, which will retrieve the
|
|
824
|
+
// metadata from the page.
|
|
825
|
+
// When it's using not-found, metadata errorType is 'not-found', which will retrieve the
|
|
826
|
+
// metadata from the not-found.js boundary.
|
|
827
|
+
// TODO: remove this condition and keep it undefined when global-not-found is stabilized.
|
|
828
|
+
errorType: is404 && !hasGlobalNotFound ? 'not-found' : undefined,
|
|
829
|
+
parsedQuery: query,
|
|
830
|
+
pathname: url.pathname,
|
|
831
|
+
metadataContext: (0, _metadatacontext.createMetadataContext)(ctx.renderOpts),
|
|
832
|
+
getDynamicParamFromSegment,
|
|
833
|
+
workStore,
|
|
834
|
+
serveStreamingMetadata
|
|
835
|
+
});
|
|
836
|
+
const preloadCallbacks = [];
|
|
837
|
+
const seedData = await (0, _createcomponenttree.createComponentTree)({
|
|
838
|
+
ctx,
|
|
839
|
+
loaderTree: tree,
|
|
840
|
+
parentParams: {},
|
|
841
|
+
injectedCSS,
|
|
842
|
+
injectedJS,
|
|
843
|
+
injectedFontPreloadTags,
|
|
844
|
+
rootLayoutIncluded: false,
|
|
845
|
+
missingSlots,
|
|
846
|
+
preloadCallbacks,
|
|
847
|
+
authInterrupts: ctx.renderOpts.experimental.authInterrupts,
|
|
848
|
+
MetadataOutlet
|
|
849
|
+
});
|
|
850
|
+
// When the `vary` response header is present with `Next-URL`, that means there's a chance
|
|
851
|
+
// it could respond differently if there's an interception route. We provide this information
|
|
852
|
+
// to `AppRouter` so that it can properly seed the prefetch cache with a prefix, if needed.
|
|
853
|
+
const varyHeader = ctx.res.getHeader('vary');
|
|
854
|
+
const couldBeIntercepted = typeof varyHeader === 'string' && varyHeader.includes(_approuterheaders.NEXT_URL);
|
|
855
|
+
const initialHead = createElement(Fragment, {
|
|
856
|
+
key: flightDataPathHeadKey
|
|
857
|
+
}, createElement(NonIndex, {
|
|
858
|
+
createElement,
|
|
859
|
+
pagePath: ctx.pagePath,
|
|
860
|
+
statusCode: ctx.res.statusCode,
|
|
861
|
+
isPossibleServerAction: ctx.isPossibleServerAction
|
|
862
|
+
}), createElement(Viewport, null), createElement(Metadata, null), appUsingSizeAdjustment ? createElement('meta', {
|
|
863
|
+
name: 'next-size-adjust',
|
|
864
|
+
content: ''
|
|
865
|
+
}) : null);
|
|
866
|
+
const { GlobalError, styles: globalErrorStyles } = await getGlobalErrorStyles(tree, ctx);
|
|
867
|
+
// Assume the head we're rendering contains only partial data if PPR is
|
|
868
|
+
// enabled and this is a statically generated response. This is used by the
|
|
869
|
+
// client Segment Cache after a prefetch to determine if it can skip the
|
|
870
|
+
// second request to fill in the dynamic data.
|
|
871
|
+
//
|
|
872
|
+
// See similar comment in create-component-tree.tsx for more context.
|
|
873
|
+
const isPossiblyPartialHead = workStore.isStaticGeneration && ctx.renderOpts.experimental.isRoutePPREnabled === true;
|
|
874
|
+
return {
|
|
875
|
+
// See the comment above the `Preloads` component (below) for why this is part of the payload
|
|
876
|
+
P: createElement(Preloads, {
|
|
877
|
+
preloadCallbacks: preloadCallbacks
|
|
878
|
+
}),
|
|
879
|
+
b: ctx.sharedContext.buildId,
|
|
880
|
+
c: prepareInitialCanonicalUrl(url),
|
|
881
|
+
q: getRenderedSearch(query),
|
|
882
|
+
i: !!couldBeIntercepted,
|
|
883
|
+
f: [
|
|
884
|
+
[
|
|
885
|
+
initialTree,
|
|
886
|
+
seedData,
|
|
887
|
+
initialHead,
|
|
888
|
+
isPossiblyPartialHead
|
|
889
|
+
]
|
|
890
|
+
],
|
|
891
|
+
m: missingSlots,
|
|
892
|
+
G: [
|
|
893
|
+
GlobalError,
|
|
894
|
+
globalErrorStyles
|
|
895
|
+
],
|
|
896
|
+
S: workStore.isStaticGeneration
|
|
897
|
+
};
|
|
898
|
+
}
|
|
899
|
+
/**
|
|
900
|
+
* Preload calls (such as `ReactDOM.preloadStyle` and `ReactDOM.preloadFont`) need to be called during rendering
|
|
901
|
+
* in order to create the appropriate preload tags in the DOM, otherwise they're a no-op. Since we invoke
|
|
902
|
+
* renderToReadableStream with a function that returns component props rather than a component itself, we use
|
|
903
|
+
* this component to "render " the preload calls.
|
|
904
|
+
*/ function Preloads({ preloadCallbacks }) {
|
|
905
|
+
preloadCallbacks.forEach((preloadFn)=>preloadFn());
|
|
906
|
+
return null;
|
|
907
|
+
}
|
|
908
|
+
// This is the data necessary to render <AppRouter /> when an error state is triggered
|
|
909
|
+
async function getErrorRSCPayload(tree, ctx, ssrError, errorType) {
|
|
910
|
+
const { getDynamicParamFromSegment, query, componentMod: { createMetadataComponents, createElement, Fragment }, url, workStore } = ctx;
|
|
911
|
+
const serveStreamingMetadata = !!ctx.renderOpts.serveStreamingMetadata;
|
|
912
|
+
const { Viewport, Metadata } = createMetadataComponents({
|
|
913
|
+
tree,
|
|
914
|
+
parsedQuery: query,
|
|
915
|
+
pathname: url.pathname,
|
|
916
|
+
metadataContext: (0, _metadatacontext.createMetadataContext)(ctx.renderOpts),
|
|
917
|
+
errorType,
|
|
918
|
+
getDynamicParamFromSegment,
|
|
919
|
+
workStore,
|
|
920
|
+
serveStreamingMetadata: serveStreamingMetadata
|
|
921
|
+
});
|
|
922
|
+
const initialHead = createElement(Fragment, {
|
|
923
|
+
key: flightDataPathHeadKey
|
|
924
|
+
}, createElement(NonIndex, {
|
|
925
|
+
createElement,
|
|
926
|
+
pagePath: ctx.pagePath,
|
|
927
|
+
statusCode: ctx.res.statusCode,
|
|
928
|
+
isPossibleServerAction: ctx.isPossibleServerAction
|
|
929
|
+
}), createElement(Viewport, null), process.env.NODE_ENV === 'development' && createElement('meta', {
|
|
930
|
+
name: 'next-error',
|
|
931
|
+
content: 'not-found'
|
|
932
|
+
}), createElement(Metadata, null));
|
|
933
|
+
const initialTree = (0, _createflightrouterstatefromloadertree.createFlightRouterStateFromLoaderTree)(tree, getDynamicParamFromSegment, query);
|
|
934
|
+
let err = undefined;
|
|
935
|
+
if (ssrError) {
|
|
936
|
+
err = (0, _iserror.default)(ssrError) ? ssrError : Object.defineProperty(new Error(ssrError + ''), "__NEXT_ERROR_CODE", {
|
|
937
|
+
value: "E394",
|
|
938
|
+
enumerable: false,
|
|
939
|
+
configurable: true
|
|
940
|
+
});
|
|
941
|
+
}
|
|
942
|
+
// For metadata notFound error there's no global not found boundary on top
|
|
943
|
+
// so we create a not found page with AppRouter
|
|
944
|
+
const seedData = [
|
|
945
|
+
createElement('html', {
|
|
946
|
+
id: '__next_error__'
|
|
947
|
+
}, createElement('head', null), createElement('body', null, process.env.NODE_ENV !== 'production' && err ? createElement('template', {
|
|
948
|
+
'data-next-error-message': err.message,
|
|
949
|
+
'data-next-error-digest': 'digest' in err ? err.digest : '',
|
|
950
|
+
'data-next-error-stack': err.stack
|
|
951
|
+
}) : null)),
|
|
952
|
+
{},
|
|
953
|
+
null,
|
|
954
|
+
false,
|
|
955
|
+
false
|
|
956
|
+
];
|
|
957
|
+
const { GlobalError, styles: globalErrorStyles } = await getGlobalErrorStyles(tree, ctx);
|
|
958
|
+
const isPossiblyPartialHead = workStore.isStaticGeneration && ctx.renderOpts.experimental.isRoutePPREnabled === true;
|
|
959
|
+
return {
|
|
960
|
+
b: ctx.sharedContext.buildId,
|
|
961
|
+
c: prepareInitialCanonicalUrl(url),
|
|
962
|
+
q: getRenderedSearch(query),
|
|
963
|
+
m: undefined,
|
|
964
|
+
i: false,
|
|
965
|
+
f: [
|
|
966
|
+
[
|
|
967
|
+
initialTree,
|
|
968
|
+
seedData,
|
|
969
|
+
initialHead,
|
|
970
|
+
isPossiblyPartialHead
|
|
971
|
+
]
|
|
972
|
+
],
|
|
973
|
+
G: [
|
|
974
|
+
GlobalError,
|
|
975
|
+
globalErrorStyles
|
|
976
|
+
],
|
|
977
|
+
S: workStore.isStaticGeneration
|
|
978
|
+
};
|
|
979
|
+
}
|
|
980
|
+
// This component must run in an SSR context. It will render the RSC root component
|
|
981
|
+
function App({ reactServerStream, reactDebugStream, debugEndTime, preinitScripts, ServerInsertedHTMLProvider, nonce, images }) {
|
|
982
|
+
preinitScripts();
|
|
983
|
+
const response = _react.use((0, _useflightresponse.getFlightStream)(reactServerStream, reactDebugStream, debugEndTime, nonce));
|
|
984
|
+
const initialState = (0, _createinitialrouterstate.createInitialRouterState)({
|
|
985
|
+
// This is not used during hydration, so we don't have to pass a
|
|
986
|
+
// real timestamp.
|
|
987
|
+
navigatedAt: -1,
|
|
988
|
+
initialFlightData: response.f,
|
|
989
|
+
initialCanonicalUrlParts: response.c,
|
|
990
|
+
initialRenderedSearch: response.q,
|
|
991
|
+
// location is not initialized in the SSR render
|
|
992
|
+
// it's set to window.location during hydration
|
|
993
|
+
location: null
|
|
994
|
+
});
|
|
995
|
+
const actionQueue = (0, _approuterinstance.createMutableActionQueue)(initialState, null);
|
|
996
|
+
const { HeadManagerContext } = require('../../shared/lib/head-manager-context.shared-runtime');
|
|
997
|
+
return /*#__PURE__*/ (0, _jsxruntime.jsx)(HeadManagerContext.Provider, {
|
|
998
|
+
value: {
|
|
999
|
+
appDir: true,
|
|
1000
|
+
nonce
|
|
1001
|
+
},
|
|
1002
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_imageconfigcontextsharedruntime.ImageConfigContext.Provider, {
|
|
1003
|
+
value: images ?? _imageconfig.imageConfigDefault,
|
|
1004
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)(ServerInsertedHTMLProvider, {
|
|
1005
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_approuter.default, {
|
|
1006
|
+
actionQueue: actionQueue,
|
|
1007
|
+
globalErrorState: response.G
|
|
1008
|
+
})
|
|
1009
|
+
})
|
|
1010
|
+
})
|
|
1011
|
+
});
|
|
1012
|
+
/* eslint-enable @next/internal/no-ambiguous-jsx -- React Client */ }
|
|
1013
|
+
// @TODO our error stream should be probably just use the same root component. But it was previously
|
|
1014
|
+
// different I don't want to figure out if that is meaningful at this time so just keeping the behavior
|
|
1015
|
+
// consistent for now.
|
|
1016
|
+
function ErrorApp({ reactServerStream, preinitScripts, ServerInsertedHTMLProvider, nonce, images }) {
|
|
1017
|
+
/* eslint-disable @next/internal/no-ambiguous-jsx -- React Client */ preinitScripts();
|
|
1018
|
+
const response = _react.use((0, _useflightresponse.getFlightStream)(reactServerStream, undefined, undefined, nonce));
|
|
1019
|
+
const initialState = (0, _createinitialrouterstate.createInitialRouterState)({
|
|
1020
|
+
// This is not used during hydration, so we don't have to pass a
|
|
1021
|
+
// real timestamp.
|
|
1022
|
+
navigatedAt: -1,
|
|
1023
|
+
initialFlightData: response.f,
|
|
1024
|
+
initialCanonicalUrlParts: response.c,
|
|
1025
|
+
initialRenderedSearch: response.q,
|
|
1026
|
+
// location is not initialized in the SSR render
|
|
1027
|
+
// it's set to window.location during hydration
|
|
1028
|
+
location: null
|
|
1029
|
+
});
|
|
1030
|
+
const actionQueue = (0, _approuterinstance.createMutableActionQueue)(initialState, null);
|
|
1031
|
+
return /*#__PURE__*/ (0, _jsxruntime.jsx)(_imageconfigcontextsharedruntime.ImageConfigContext.Provider, {
|
|
1032
|
+
value: images ?? _imageconfig.imageConfigDefault,
|
|
1033
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)(ServerInsertedHTMLProvider, {
|
|
1034
|
+
children: /*#__PURE__*/ (0, _jsxruntime.jsx)(_approuter.default, {
|
|
1035
|
+
actionQueue: actionQueue,
|
|
1036
|
+
globalErrorState: response.G
|
|
1037
|
+
})
|
|
1038
|
+
})
|
|
1039
|
+
});
|
|
1040
|
+
/* eslint-enable @next/internal/no-ambiguous-jsx -- React Client */ }
|
|
1041
|
+
async function renderToHTMLOrFlightImpl(req, res, url, pagePath, query, renderOpts, workStore, parsedRequestHeaders, postponedState, serverComponentsHmrCache, sharedContext, interpolatedParams, fallbackRouteParams) {
|
|
1042
|
+
const isNotFoundPath = pagePath === '/404';
|
|
1043
|
+
if (isNotFoundPath) {
|
|
1044
|
+
res.statusCode = 404;
|
|
1045
|
+
}
|
|
1046
|
+
// A unique request timestamp used by development to ensure that it's
|
|
1047
|
+
// consistent and won't change during this request. This is important to
|
|
1048
|
+
// avoid that resources can be deduped by React Float if the same resource is
|
|
1049
|
+
// rendered or preloaded multiple times: `<link href="a.css?v={Date.now()}"/>`.
|
|
1050
|
+
const requestTimestamp = Date.now();
|
|
1051
|
+
const { ComponentMod, nextFontManifest, serverActions, assetPrefix = '', enableTainting, cacheComponents } = renderOpts;
|
|
1052
|
+
// We need to expose the bundled `require` API globally for
|
|
1053
|
+
// react-server-dom-webpack. This is a hack until we find a better way.
|
|
1054
|
+
if (ComponentMod.__next_app__) {
|
|
1055
|
+
const instrumented = (0, _clientcomponentrendererlogger.wrapClientComponentLoader)(ComponentMod);
|
|
1056
|
+
// When we are prerendering if there is a cacheSignal for tracking
|
|
1057
|
+
// cache reads we track calls to `loadChunk` and `require`. This allows us
|
|
1058
|
+
// to treat chunk/module loading with similar semantics as cache reads to avoid
|
|
1059
|
+
// module loading from causing a prerender to abort too early.
|
|
1060
|
+
const shouldTrackModuleLoading = ()=>{
|
|
1061
|
+
if (!cacheComponents) {
|
|
1062
|
+
return false;
|
|
1063
|
+
}
|
|
1064
|
+
if (renderOpts.dev) {
|
|
1065
|
+
return true;
|
|
1066
|
+
}
|
|
1067
|
+
const workUnitStore = _workunitasyncstorageexternal.workUnitAsyncStorage.getStore();
|
|
1068
|
+
if (!workUnitStore) {
|
|
1069
|
+
return false;
|
|
1070
|
+
}
|
|
1071
|
+
switch(workUnitStore.type){
|
|
1072
|
+
case 'prerender':
|
|
1073
|
+
case 'prerender-client':
|
|
1074
|
+
case 'prerender-runtime':
|
|
1075
|
+
case 'cache':
|
|
1076
|
+
case 'private-cache':
|
|
1077
|
+
return true;
|
|
1078
|
+
case 'prerender-ppr':
|
|
1079
|
+
case 'prerender-legacy':
|
|
1080
|
+
case 'request':
|
|
1081
|
+
case 'unstable-cache':
|
|
1082
|
+
return false;
|
|
1083
|
+
default:
|
|
1084
|
+
workUnitStore;
|
|
1085
|
+
}
|
|
1086
|
+
};
|
|
1087
|
+
const __next_require__ = (...args)=>{
|
|
1088
|
+
const exportsOrPromise = instrumented.require(...args);
|
|
1089
|
+
if (shouldTrackModuleLoading()) {
|
|
1090
|
+
// requiring an async module returns a promise.
|
|
1091
|
+
(0, _trackmoduleloadingexternal.trackPendingImport)(exportsOrPromise);
|
|
1092
|
+
}
|
|
1093
|
+
return exportsOrPromise;
|
|
1094
|
+
};
|
|
1095
|
+
// @ts-expect-error
|
|
1096
|
+
globalThis.__next_require__ = __next_require__;
|
|
1097
|
+
const __next_chunk_load__ = (...args)=>{
|
|
1098
|
+
const loadingChunk = instrumented.loadChunk(...args);
|
|
1099
|
+
if (shouldTrackModuleLoading()) {
|
|
1100
|
+
(0, _trackmoduleloadingexternal.trackPendingChunkLoad)(loadingChunk);
|
|
1101
|
+
}
|
|
1102
|
+
return loadingChunk;
|
|
1103
|
+
};
|
|
1104
|
+
// @ts-expect-error
|
|
1105
|
+
globalThis.__next_chunk_load__ = __next_chunk_load__;
|
|
1106
|
+
}
|
|
1107
|
+
if (process.env.NODE_ENV === 'development' && renderOpts.setIsrStatus && !cacheComponents) {
|
|
1108
|
+
// Reset the ISR status at start of request.
|
|
1109
|
+
const { pathname } = new URL(req.url || '/', 'http://n');
|
|
1110
|
+
renderOpts.setIsrStatus(pathname, // Only pages using the Node runtime can use ISR, Edge is always dynamic.
|
|
1111
|
+
process.env.NEXT_RUNTIME === 'edge' ? false : undefined);
|
|
1112
|
+
}
|
|
1113
|
+
if (// The type check here ensures that `req` is correctly typed, and the
|
|
1114
|
+
// environment variable check provides dead code elimination.
|
|
1115
|
+
process.env.NEXT_RUNTIME !== 'edge' && (0, _helpers.isNodeNextRequest)(req)) {
|
|
1116
|
+
res.onClose(()=>{
|
|
1117
|
+
// We stop tracking fetch metrics when the response closes, since we
|
|
1118
|
+
// report them at that time.
|
|
1119
|
+
workStore.shouldTrackFetchMetrics = false;
|
|
1120
|
+
});
|
|
1121
|
+
req.originalRequest.on('end', ()=>{
|
|
1122
|
+
if ('performance' in globalThis) {
|
|
1123
|
+
const metrics = (0, _clientcomponentrendererlogger.getClientComponentLoaderMetrics)({
|
|
1124
|
+
reset: true
|
|
1125
|
+
});
|
|
1126
|
+
if (metrics) {
|
|
1127
|
+
(0, _tracer.getTracer)().startSpan(_constants.NextNodeServerSpan.clientComponentLoading, {
|
|
1128
|
+
startTime: metrics.clientComponentLoadStart,
|
|
1129
|
+
attributes: {
|
|
1130
|
+
'next.clientComponentLoadCount': metrics.clientComponentLoadCount,
|
|
1131
|
+
'next.span_type': _constants.NextNodeServerSpan.clientComponentLoading
|
|
1132
|
+
}
|
|
1133
|
+
}).end(metrics.clientComponentLoadStart + metrics.clientComponentLoadTimes);
|
|
1134
|
+
}
|
|
1135
|
+
}
|
|
1136
|
+
});
|
|
1137
|
+
}
|
|
1138
|
+
const metadata = {
|
|
1139
|
+
statusCode: isNotFoundPath ? 404 : undefined
|
|
1140
|
+
};
|
|
1141
|
+
const appUsingSizeAdjustment = !!(nextFontManifest == null ? void 0 : nextFontManifest.appUsingSizeAdjust);
|
|
1142
|
+
ComponentMod.patchFetch();
|
|
1143
|
+
// Pull out the hooks/references from the component.
|
|
1144
|
+
const { routeModule: { userland: { loaderTree } }, taintObjectReference } = ComponentMod;
|
|
1145
|
+
if (enableTainting) {
|
|
1146
|
+
taintObjectReference('Do not pass process.env to Client Components since it will leak sensitive data', process.env);
|
|
1147
|
+
}
|
|
1148
|
+
workStore.fetchMetrics = [];
|
|
1149
|
+
metadata.fetchMetrics = workStore.fetchMetrics;
|
|
1150
|
+
// don't modify original query object
|
|
1151
|
+
query = {
|
|
1152
|
+
...query
|
|
1153
|
+
};
|
|
1154
|
+
(0, _internalutils.stripInternalQueries)(query);
|
|
1155
|
+
const { isStaticGeneration } = workStore;
|
|
1156
|
+
let requestId;
|
|
1157
|
+
let htmlRequestId;
|
|
1158
|
+
const { flightRouterState, isPrefetchRequest, isRuntimePrefetchRequest, isRSCRequest, isHmrRefresh, nonce } = parsedRequestHeaders;
|
|
1159
|
+
if (parsedRequestHeaders.requestId) {
|
|
1160
|
+
// If the client has provided a request ID (in development mode), we use it.
|
|
1161
|
+
requestId = parsedRequestHeaders.requestId;
|
|
1162
|
+
} else {
|
|
1163
|
+
// Otherwise we generate a new request ID.
|
|
1164
|
+
if (isStaticGeneration) {
|
|
1165
|
+
requestId = Buffer.from(await crypto.subtle.digest('SHA-1', Buffer.from(req.url))).toString('hex');
|
|
1166
|
+
} else if (process.env.NEXT_RUNTIME === 'edge') {
|
|
1167
|
+
requestId = crypto.randomUUID();
|
|
1168
|
+
} else {
|
|
1169
|
+
requestId = require('next/dist/compiled/nanoid').nanoid();
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
// If the client has provided an HTML request ID, we use it to associate the
|
|
1173
|
+
// request with the HTML document from which it originated, which is used to
|
|
1174
|
+
// send debug information to the associated WebSocket client. Otherwise, this
|
|
1175
|
+
// is the request for the HTML document, so we use the request ID also as the
|
|
1176
|
+
// HTML request ID.
|
|
1177
|
+
htmlRequestId = parsedRequestHeaders.htmlRequestId || requestId;
|
|
1178
|
+
const getDynamicParamFromSegment = makeGetDynamicParamFromSegment(interpolatedParams, fallbackRouteParams);
|
|
1179
|
+
const isPossibleActionRequest = (0, _serveractionrequestmeta.getIsPossibleServerAction)(req);
|
|
1180
|
+
const implicitTags = await (0, _implicittags.getImplicitTags)(workStore.page, url, fallbackRouteParams);
|
|
1181
|
+
const ctx = {
|
|
1182
|
+
componentMod: ComponentMod,
|
|
1183
|
+
url,
|
|
1184
|
+
renderOpts,
|
|
1185
|
+
workStore,
|
|
1186
|
+
parsedRequestHeaders,
|
|
1187
|
+
getDynamicParamFromSegment,
|
|
1188
|
+
query,
|
|
1189
|
+
isPrefetch: isPrefetchRequest,
|
|
1190
|
+
isPossibleServerAction: isPossibleActionRequest,
|
|
1191
|
+
requestTimestamp,
|
|
1192
|
+
appUsingSizeAdjustment,
|
|
1193
|
+
flightRouterState,
|
|
1194
|
+
requestId,
|
|
1195
|
+
htmlRequestId,
|
|
1196
|
+
pagePath,
|
|
1197
|
+
assetPrefix,
|
|
1198
|
+
isNotFoundPath,
|
|
1199
|
+
nonce,
|
|
1200
|
+
res,
|
|
1201
|
+
sharedContext,
|
|
1202
|
+
implicitTags
|
|
1203
|
+
};
|
|
1204
|
+
(0, _tracer.getTracer)().setRootSpanAttribute('next.route', pagePath);
|
|
1205
|
+
if (isStaticGeneration) {
|
|
1206
|
+
// We're either building or revalidating. In either case we need to
|
|
1207
|
+
// prerender our page rather than render it.
|
|
1208
|
+
const prerenderToStreamWithTracing = (0, _tracer.getTracer)().wrap(_constants.AppRenderSpan.getBodyResult, {
|
|
1209
|
+
spanName: `prerender route (app) ${pagePath}`,
|
|
1210
|
+
attributes: {
|
|
1211
|
+
'next.route': pagePath
|
|
1212
|
+
}
|
|
1213
|
+
}, prerenderToStream);
|
|
1214
|
+
const response = await prerenderToStreamWithTracing(req, res, ctx, metadata, loaderTree, fallbackRouteParams);
|
|
1215
|
+
// If we're debugging partial prerendering, print all the dynamic API accesses
|
|
1216
|
+
// that occurred during the render.
|
|
1217
|
+
// @TODO move into renderToStream function
|
|
1218
|
+
if (response.dynamicAccess && (0, _dynamicrendering.accessedDynamicData)(response.dynamicAccess) && renderOpts.isDebugDynamicAccesses) {
|
|
1219
|
+
(0, _log.warn)('The following dynamic usage was detected:');
|
|
1220
|
+
for (const access of (0, _dynamicrendering.formatDynamicAPIAccesses)(response.dynamicAccess)){
|
|
1221
|
+
(0, _log.warn)(access);
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
// If we encountered any unexpected errors during build we fail the
|
|
1225
|
+
// prerendering phase and the build.
|
|
1226
|
+
if (workStore.invalidDynamicUsageError) {
|
|
1227
|
+
(0, _dynamicrendering.logDisallowedDynamicError)(workStore, workStore.invalidDynamicUsageError);
|
|
1228
|
+
throw new _staticgenerationbailout.StaticGenBailoutError();
|
|
1229
|
+
}
|
|
1230
|
+
if (response.digestErrorsMap.size) {
|
|
1231
|
+
const buildFailingError = response.digestErrorsMap.values().next().value;
|
|
1232
|
+
if (buildFailingError) throw buildFailingError;
|
|
1233
|
+
}
|
|
1234
|
+
// Pick first userland SSR error, which is also not a RSC error.
|
|
1235
|
+
if (response.ssrErrors.length) {
|
|
1236
|
+
const buildFailingError = response.ssrErrors.find((err)=>(0, _createerrorhandler.isUserLandError)(err));
|
|
1237
|
+
if (buildFailingError) throw buildFailingError;
|
|
1238
|
+
}
|
|
1239
|
+
const options = {
|
|
1240
|
+
metadata,
|
|
1241
|
+
contentType: _constants1.HTML_CONTENT_TYPE_HEADER
|
|
1242
|
+
};
|
|
1243
|
+
// If we have pending revalidates, wait until they are all resolved.
|
|
1244
|
+
if (workStore.pendingRevalidates || workStore.pendingRevalidateWrites || workStore.pendingRevalidatedTags) {
|
|
1245
|
+
const pendingPromise = (0, _revalidationutils.executeRevalidates)(workStore).finally(()=>{
|
|
1246
|
+
if (process.env.NEXT_PRIVATE_DEBUG_CACHE) {
|
|
1247
|
+
console.log('pending revalidates promise finished for:', url);
|
|
1248
|
+
}
|
|
1249
|
+
});
|
|
1250
|
+
if (renderOpts.waitUntil) {
|
|
1251
|
+
renderOpts.waitUntil(pendingPromise);
|
|
1252
|
+
} else {
|
|
1253
|
+
options.waitUntil = pendingPromise;
|
|
1254
|
+
}
|
|
1255
|
+
}
|
|
1256
|
+
applyMetadataFromPrerenderResult(response, metadata, workStore);
|
|
1257
|
+
if (response.renderResumeDataCache) {
|
|
1258
|
+
metadata.renderResumeDataCache = response.renderResumeDataCache;
|
|
1259
|
+
}
|
|
1260
|
+
return new _renderresult.default(await (0, _nodewebstreamshelper.streamToString)(response.stream), options);
|
|
1261
|
+
} else {
|
|
1262
|
+
// We're rendering dynamically
|
|
1263
|
+
const renderResumeDataCache = renderOpts.renderResumeDataCache ?? (postponedState == null ? void 0 : postponedState.renderResumeDataCache) ?? null;
|
|
1264
|
+
const rootParams = (0, _createcomponenttree.getRootParams)(loaderTree, ctx.getDynamicParamFromSegment);
|
|
1265
|
+
const devFallbackParams = (0, _requestmeta.getRequestMeta)(req, 'devFallbackParams') || null;
|
|
1266
|
+
const createRequestStore = _requeststore.createRequestStoreForRender.bind(null, req, res, url, rootParams, implicitTags, renderOpts.onUpdateCookies, renderOpts.previewProps, isHmrRefresh, serverComponentsHmrCache, renderResumeDataCache, devFallbackParams);
|
|
1267
|
+
const requestStore = createRequestStore();
|
|
1268
|
+
if (process.env.NODE_ENV === 'development' && renderOpts.setIsrStatus && !cacheComponents && // Only pages using the Node runtime can use ISR, so we only need to
|
|
1269
|
+
// update the status for those.
|
|
1270
|
+
// The type check here ensures that `req` is correctly typed, and the
|
|
1271
|
+
// environment variable check provides dead code elimination.
|
|
1272
|
+
process.env.NEXT_RUNTIME !== 'edge' && (0, _helpers.isNodeNextRequest)(req)) {
|
|
1273
|
+
const setIsrStatus = renderOpts.setIsrStatus;
|
|
1274
|
+
req.originalRequest.on('end', ()=>{
|
|
1275
|
+
const { pathname } = new URL(req.url || '/', 'http://n');
|
|
1276
|
+
const isStatic = !requestStore.usedDynamic && !workStore.forceDynamic;
|
|
1277
|
+
setIsrStatus(pathname, isStatic);
|
|
1278
|
+
});
|
|
1279
|
+
}
|
|
1280
|
+
if (isRSCRequest) {
|
|
1281
|
+
if (isRuntimePrefetchRequest) {
|
|
1282
|
+
return generateRuntimePrefetchResult(req, ctx, requestStore);
|
|
1283
|
+
} else {
|
|
1284
|
+
if (process.env.NODE_ENV === 'development' && process.env.NEXT_RUNTIME !== 'edge' && cacheComponents) {
|
|
1285
|
+
return generateDynamicFlightRenderResultWithStagesInDev(req, ctx, requestStore, createRequestStore, devFallbackParams);
|
|
1286
|
+
} else {
|
|
1287
|
+
return generateDynamicFlightRenderResult(req, ctx, requestStore);
|
|
1288
|
+
}
|
|
1289
|
+
}
|
|
1290
|
+
}
|
|
1291
|
+
let didExecuteServerAction = false;
|
|
1292
|
+
let formState = null;
|
|
1293
|
+
if (isPossibleActionRequest) {
|
|
1294
|
+
// For action requests, we don't want to use the resume data cache.
|
|
1295
|
+
requestStore.renderResumeDataCache = null;
|
|
1296
|
+
// For action requests, we handle them differently with a special render result.
|
|
1297
|
+
const actionRequestResult = await (0, _actionhandler.handleAction)({
|
|
1298
|
+
req,
|
|
1299
|
+
res,
|
|
1300
|
+
ComponentMod,
|
|
1301
|
+
generateFlight: generateDynamicFlightRenderResult,
|
|
1302
|
+
workStore,
|
|
1303
|
+
requestStore,
|
|
1304
|
+
serverActions,
|
|
1305
|
+
ctx,
|
|
1306
|
+
metadata
|
|
1307
|
+
});
|
|
1308
|
+
if (actionRequestResult) {
|
|
1309
|
+
if (actionRequestResult.type === 'not-found') {
|
|
1310
|
+
const notFoundLoaderTree = createNotFoundLoaderTree(loaderTree);
|
|
1311
|
+
res.statusCode = 404;
|
|
1312
|
+
metadata.statusCode = 404;
|
|
1313
|
+
const stream = await renderToStream(requestStore, req, res, ctx, notFoundLoaderTree, formState, postponedState, metadata, undefined, devFallbackParams);
|
|
1314
|
+
return new _renderresult.default(stream, {
|
|
1315
|
+
metadata,
|
|
1316
|
+
contentType: _constants1.HTML_CONTENT_TYPE_HEADER
|
|
1317
|
+
});
|
|
1318
|
+
} else if (actionRequestResult.type === 'done') {
|
|
1319
|
+
if (actionRequestResult.result) {
|
|
1320
|
+
actionRequestResult.result.assignMetadata(metadata);
|
|
1321
|
+
return actionRequestResult.result;
|
|
1322
|
+
} else if (actionRequestResult.formState) {
|
|
1323
|
+
formState = actionRequestResult.formState;
|
|
1324
|
+
}
|
|
1325
|
+
}
|
|
1326
|
+
}
|
|
1327
|
+
didExecuteServerAction = true;
|
|
1328
|
+
// Restore the resume data cache
|
|
1329
|
+
requestStore.renderResumeDataCache = renderResumeDataCache;
|
|
1330
|
+
}
|
|
1331
|
+
const options = {
|
|
1332
|
+
metadata,
|
|
1333
|
+
contentType: _constants1.HTML_CONTENT_TYPE_HEADER
|
|
1334
|
+
};
|
|
1335
|
+
const stream = await renderToStream(// NOTE: in Cache Components (dev), if the render is restarted, it will use a different requestStore
|
|
1336
|
+
// than the one that we're passing in here.
|
|
1337
|
+
requestStore, req, res, ctx, loaderTree, formState, postponedState, metadata, // If we're rendering HTML after an action, we don't want restartable-render behavior
|
|
1338
|
+
// because the result should be dynamic, like it is in prod.
|
|
1339
|
+
// Also, the request store might have been mutated by the action (e.g. enabling draftMode)
|
|
1340
|
+
// and we currently we don't copy changes over when creating a new store,
|
|
1341
|
+
// so the restarted render wouldn't be correct.
|
|
1342
|
+
didExecuteServerAction ? undefined : createRequestStore, devFallbackParams);
|
|
1343
|
+
// Invalid dynamic usages should only error the request in development.
|
|
1344
|
+
// In production, it's better to produce a result.
|
|
1345
|
+
// (the dynamic error will still be thrown inside the component tree, but it's catchable by error boundaries)
|
|
1346
|
+
if (workStore.invalidDynamicUsageError && workStore.dev) {
|
|
1347
|
+
throw workStore.invalidDynamicUsageError;
|
|
1348
|
+
}
|
|
1349
|
+
// If we have pending revalidates, wait until they are all resolved.
|
|
1350
|
+
if (workStore.pendingRevalidates || workStore.pendingRevalidateWrites || workStore.pendingRevalidatedTags) {
|
|
1351
|
+
const pendingPromise = (0, _revalidationutils.executeRevalidates)(workStore).finally(()=>{
|
|
1352
|
+
if (process.env.NEXT_PRIVATE_DEBUG_CACHE) {
|
|
1353
|
+
console.log('pending revalidates promise finished for:', url);
|
|
1354
|
+
}
|
|
1355
|
+
});
|
|
1356
|
+
if (renderOpts.waitUntil) {
|
|
1357
|
+
renderOpts.waitUntil(pendingPromise);
|
|
1358
|
+
} else {
|
|
1359
|
+
options.waitUntil = pendingPromise;
|
|
1360
|
+
}
|
|
1361
|
+
}
|
|
1362
|
+
// Create the new render result for the response.
|
|
1363
|
+
return new _renderresult.default(stream, options);
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
const renderToHTMLOrFlight = (req, res, pagePath, query, fallbackRouteParams, renderOpts, serverComponentsHmrCache, sharedContext)=>{
|
|
1367
|
+
var _renderOpts_previewProps;
|
|
1368
|
+
if (!req.url) {
|
|
1369
|
+
throw Object.defineProperty(new Error('Invalid URL'), "__NEXT_ERROR_CODE", {
|
|
1370
|
+
value: "E182",
|
|
1371
|
+
enumerable: false,
|
|
1372
|
+
configurable: true
|
|
1373
|
+
});
|
|
1374
|
+
}
|
|
1375
|
+
const url = (0, _parserelativeurl.parseRelativeUrl)(req.url, undefined, false);
|
|
1376
|
+
// We read these values from the request object as, in certain cases,
|
|
1377
|
+
// base-server will strip them to opt into different rendering behavior.
|
|
1378
|
+
const parsedRequestHeaders = parseRequestHeaders(req.headers, {
|
|
1379
|
+
isRoutePPREnabled: renderOpts.experimental.isRoutePPREnabled === true,
|
|
1380
|
+
previewModeId: (_renderOpts_previewProps = renderOpts.previewProps) == null ? void 0 : _renderOpts_previewProps.previewModeId
|
|
1381
|
+
});
|
|
1382
|
+
const { isPrefetchRequest, previouslyRevalidatedTags, nonce } = parsedRequestHeaders;
|
|
1383
|
+
let interpolatedParams;
|
|
1384
|
+
let postponedState = null;
|
|
1385
|
+
// If provided, the postpone state should be parsed so it can be provided to
|
|
1386
|
+
// React.
|
|
1387
|
+
if (typeof renderOpts.postponed === 'string') {
|
|
1388
|
+
if (fallbackRouteParams) {
|
|
1389
|
+
throw Object.defineProperty(new _invarianterror.InvariantError('postponed state should not be provided when fallback params are provided'), "__NEXT_ERROR_CODE", {
|
|
1390
|
+
value: "E592",
|
|
1391
|
+
enumerable: false,
|
|
1392
|
+
configurable: true
|
|
1393
|
+
});
|
|
1394
|
+
}
|
|
1395
|
+
interpolatedParams = (0, _getdynamicparam.interpolateParallelRouteParams)(renderOpts.ComponentMod.routeModule.userland.loaderTree, renderOpts.params ?? {}, pagePath, fallbackRouteParams);
|
|
1396
|
+
postponedState = (0, _postponedstate.parsePostponedState)(renderOpts.postponed, interpolatedParams, renderOpts.experimental.maxPostponedStateSizeBytes);
|
|
1397
|
+
} else {
|
|
1398
|
+
interpolatedParams = (0, _getdynamicparam.interpolateParallelRouteParams)(renderOpts.ComponentMod.routeModule.userland.loaderTree, renderOpts.params ?? {}, pagePath, fallbackRouteParams);
|
|
1399
|
+
}
|
|
1400
|
+
if ((postponedState == null ? void 0 : postponedState.renderResumeDataCache) && renderOpts.renderResumeDataCache) {
|
|
1401
|
+
throw Object.defineProperty(new _invarianterror.InvariantError('postponed state and dev warmup immutable resume data cache should not be provided together'), "__NEXT_ERROR_CODE", {
|
|
1402
|
+
value: "E589",
|
|
1403
|
+
enumerable: false,
|
|
1404
|
+
configurable: true
|
|
1405
|
+
});
|
|
1406
|
+
}
|
|
1407
|
+
const workStore = (0, _workstore.createWorkStore)({
|
|
1408
|
+
page: renderOpts.routeModule.definition.page,
|
|
1409
|
+
renderOpts,
|
|
1410
|
+
// @TODO move to workUnitStore of type Request
|
|
1411
|
+
isPrefetchRequest,
|
|
1412
|
+
buildId: sharedContext.buildId,
|
|
1413
|
+
previouslyRevalidatedTags,
|
|
1414
|
+
nonce
|
|
1415
|
+
});
|
|
1416
|
+
return _workasyncstorageexternal.workAsyncStorage.run(workStore, // The function to run
|
|
1417
|
+
renderToHTMLOrFlightImpl, // all of it's args
|
|
1418
|
+
req, res, url, pagePath, query, renderOpts, workStore, parsedRequestHeaders, postponedState, serverComponentsHmrCache, sharedContext, interpolatedParams, fallbackRouteParams);
|
|
1419
|
+
};
|
|
1420
|
+
function applyMetadataFromPrerenderResult(response, metadata, workStore) {
|
|
1421
|
+
if (response.collectedTags) {
|
|
1422
|
+
metadata.fetchTags = response.collectedTags.join(',');
|
|
1423
|
+
}
|
|
1424
|
+
// Let the client router know how long to keep the cached entry around.
|
|
1425
|
+
const staleHeader = String(response.collectedStale);
|
|
1426
|
+
metadata.headers ??= {};
|
|
1427
|
+
metadata.headers[_approuterheaders.NEXT_ROUTER_STALE_TIME_HEADER] = staleHeader;
|
|
1428
|
+
// If force static is specifically set to false, we should not revalidate
|
|
1429
|
+
// the page.
|
|
1430
|
+
if (workStore.forceStatic === false || response.collectedRevalidate === 0) {
|
|
1431
|
+
metadata.cacheControl = {
|
|
1432
|
+
revalidate: 0,
|
|
1433
|
+
expire: undefined
|
|
1434
|
+
};
|
|
1435
|
+
} else {
|
|
1436
|
+
// Copy the cache control value onto the render result metadata.
|
|
1437
|
+
metadata.cacheControl = {
|
|
1438
|
+
revalidate: response.collectedRevalidate >= _constants1.INFINITE_CACHE ? false : response.collectedRevalidate,
|
|
1439
|
+
expire: response.collectedExpire >= _constants1.INFINITE_CACHE ? undefined : response.collectedExpire
|
|
1440
|
+
};
|
|
1441
|
+
}
|
|
1442
|
+
// provide bailout info for debugging
|
|
1443
|
+
if (metadata.cacheControl.revalidate === 0) {
|
|
1444
|
+
metadata.staticBailoutInfo = {
|
|
1445
|
+
description: workStore.dynamicUsageDescription,
|
|
1446
|
+
stack: workStore.dynamicUsageStack
|
|
1447
|
+
};
|
|
1448
|
+
}
|
|
1449
|
+
}
|
|
1450
|
+
async function renderToStream(requestStore, req, res, ctx, tree, formState, postponedState, metadata, createRequestStore, devFallbackParams) {
|
|
1451
|
+
/* eslint-disable @next/internal/no-ambiguous-jsx -- React Client */ const { assetPrefix, htmlRequestId, nonce, pagePath, renderOpts, requestId, workStore } = ctx;
|
|
1452
|
+
const { basePath, buildManifest, ComponentMod: { createElement, renderToReadableStream: serverRenderToReadableStream }, crossOrigin, dev = false, experimental, nextExport = false, onInstrumentationRequestError, page, reactMaxHeadersLength, setReactDebugChannel, shouldWaitOnAllReady, subresourceIntegrityManifest, supportsDynamicResponse, cacheComponents } = renderOpts;
|
|
1453
|
+
const { ServerInsertedHTMLProvider, renderServerInsertedHTML } = (0, _serverinsertedhtml.createServerInsertedHTML)();
|
|
1454
|
+
const getServerInsertedMetadata = (0, _createserverinsertedmetadata.createServerInsertedMetadata)(nonce);
|
|
1455
|
+
const tracingMetadata = (0, _utils1.getTracedMetadata)((0, _tracer.getTracer)().getTracePropagationData(), experimental.clientTraceMetadata);
|
|
1456
|
+
const polyfills = buildManifest.polyfillFiles.filter((polyfill)=>polyfill.endsWith('.js') && !polyfill.endsWith('.module.js')).map((polyfill)=>({
|
|
1457
|
+
src: `${assetPrefix}/_next/${polyfill}${(0, _getassetquerystring.getAssetQueryString)(ctx, false)}`,
|
|
1458
|
+
integrity: subresourceIntegrityManifest == null ? void 0 : subresourceIntegrityManifest[polyfill],
|
|
1459
|
+
crossOrigin,
|
|
1460
|
+
noModule: true,
|
|
1461
|
+
nonce
|
|
1462
|
+
}));
|
|
1463
|
+
const [preinitScripts, bootstrapScript] = (0, _requiredscripts.getRequiredScripts)(buildManifest, // Why is assetPrefix optional on renderOpts?
|
|
1464
|
+
// @TODO make it default empty string on renderOpts and get rid of it from ctx
|
|
1465
|
+
assetPrefix, crossOrigin, subresourceIntegrityManifest, (0, _getassetquerystring.getAssetQueryString)(ctx, true), nonce, page);
|
|
1466
|
+
// In development mode, set the request ID as a global variable, before the
|
|
1467
|
+
// bootstrap script is executed, which depends on it during hydration.
|
|
1468
|
+
const bootstrapScriptContent = process.env.NODE_ENV !== 'production' ? `self.__next_r=${JSON.stringify(requestId)}` : undefined;
|
|
1469
|
+
// Create the "render route (app)" span manually so we can keep it open during streaming.
|
|
1470
|
+
// This is necessary because errors inside Suspense boundaries are reported asynchronously
|
|
1471
|
+
// during stream consumption, after a typical wrapped function would have ended the span.
|
|
1472
|
+
// Note: We pass the full span name as the first argument since startSpan uses it directly.
|
|
1473
|
+
const renderSpan = (0, _tracer.getTracer)().startSpan(`render route (app) ${pagePath}`, {
|
|
1474
|
+
attributes: {
|
|
1475
|
+
'next.span_name': `render route (app) ${pagePath}`,
|
|
1476
|
+
'next.span_type': _constants.AppRenderSpan.getBodyResult,
|
|
1477
|
+
'next.route': pagePath
|
|
1478
|
+
}
|
|
1479
|
+
});
|
|
1480
|
+
// Helper to end the span with error status (used when throwing from catch blocks)
|
|
1481
|
+
const endSpanWithError = (err)=>{
|
|
1482
|
+
if (!renderSpan.isRecording()) return;
|
|
1483
|
+
if (err instanceof Error) {
|
|
1484
|
+
renderSpan.recordException(err);
|
|
1485
|
+
renderSpan.setAttribute('error.type', err.name);
|
|
1486
|
+
}
|
|
1487
|
+
renderSpan.setStatus({
|
|
1488
|
+
code: _tracer.SpanStatusCode.ERROR,
|
|
1489
|
+
message: err instanceof Error ? err.message : undefined
|
|
1490
|
+
});
|
|
1491
|
+
renderSpan.end();
|
|
1492
|
+
};
|
|
1493
|
+
// Run the rest of the function within the span's context so child spans
|
|
1494
|
+
// (like "build component tree", "generateMetadata") are properly parented.
|
|
1495
|
+
return (0, _tracer.getTracer)().withSpan(renderSpan, async ()=>{
|
|
1496
|
+
const { reactServerErrorsByDigest } = workStore;
|
|
1497
|
+
function onHTMLRenderRSCError(err, silenceLog) {
|
|
1498
|
+
return onInstrumentationRequestError == null ? void 0 : onInstrumentationRequestError(err, req, createErrorContext(ctx, 'react-server-components'), silenceLog);
|
|
1499
|
+
}
|
|
1500
|
+
const serverComponentsErrorHandler = (0, _createerrorhandler.createReactServerErrorHandler)(dev, nextExport, reactServerErrorsByDigest, onHTMLRenderRSCError, renderSpan);
|
|
1501
|
+
function onHTMLRenderSSRError(err) {
|
|
1502
|
+
// We don't need to silence logs here. onHTMLRenderSSRError won't be called
|
|
1503
|
+
// at all if the error was logged before in the RSC error handler.
|
|
1504
|
+
const silenceLog = false;
|
|
1505
|
+
return onInstrumentationRequestError == null ? void 0 : onInstrumentationRequestError(err, req, createErrorContext(ctx, 'server-rendering'), silenceLog);
|
|
1506
|
+
}
|
|
1507
|
+
const allCapturedErrors = [];
|
|
1508
|
+
const htmlRendererErrorHandler = (0, _createerrorhandler.createHTMLErrorHandler)(dev, nextExport, reactServerErrorsByDigest, allCapturedErrors, onHTMLRenderSSRError, renderSpan);
|
|
1509
|
+
let reactServerResult = null;
|
|
1510
|
+
let reactDebugStream;
|
|
1511
|
+
const setHeader = res.setHeader.bind(res);
|
|
1512
|
+
const appendHeader = res.appendHeader.bind(res);
|
|
1513
|
+
const { clientModules } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
1514
|
+
try {
|
|
1515
|
+
if (// We only want this behavior when we have React's dev builds available
|
|
1516
|
+
process.env.NODE_ENV === 'development' && // We only want this behavior when running `next dev`
|
|
1517
|
+
dev && // Edge routes never prerender so we don't have a Prerender environment for anything in edge runtime
|
|
1518
|
+
process.env.NEXT_RUNTIME !== 'edge' && // We only have a Prerender environment for projects opted into cacheComponents
|
|
1519
|
+
cacheComponents) {
|
|
1520
|
+
let debugChannel;
|
|
1521
|
+
const getPayload = async (// eslint-disable-next-line @typescript-eslint/no-shadow
|
|
1522
|
+
requestStore)=>{
|
|
1523
|
+
const payload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, getRSCPayload, tree, ctx, res.statusCode === 404);
|
|
1524
|
+
if (isBypassingCachesInDev(renderOpts, requestStore)) {
|
|
1525
|
+
// Mark the RSC payload to indicate that caches were bypassed in dev.
|
|
1526
|
+
// This lets the client know not to cache anything based on this render.
|
|
1527
|
+
if (renderOpts.setCacheStatus) {
|
|
1528
|
+
// we know this is available when cacheComponents is enabled, but typeguard to be safe
|
|
1529
|
+
renderOpts.setCacheStatus('bypass', htmlRequestId);
|
|
1530
|
+
}
|
|
1531
|
+
payload._bypassCachesInDev = createElement(WarnForBypassCachesInDev, {
|
|
1532
|
+
route: workStore.route
|
|
1533
|
+
});
|
|
1534
|
+
}
|
|
1535
|
+
return payload;
|
|
1536
|
+
};
|
|
1537
|
+
if (// We only do this flow if we can safely recreate the store from scratch
|
|
1538
|
+
// (which is not the case for renders after an action)
|
|
1539
|
+
createRequestStore && // We only do this flow if we're not bypassing caches in dev using
|
|
1540
|
+
// "disable cache" in devtools or a hard refresh (cache-control: "no-store")
|
|
1541
|
+
!isBypassingCachesInDev(renderOpts, requestStore)) {
|
|
1542
|
+
const { stream: serverStream, accumulatedChunksPromise, staticInterruptReason, runtimeInterruptReason, staticStageEndTime, runtimeStageEndTime, debugChannel: returnedDebugChannel, requestStore: finalRequestStore } = await renderWithRestartOnCacheMissInDev(ctx, requestStore, createRequestStore, getPayload, serverComponentsErrorHandler);
|
|
1543
|
+
let validationDebugChannelClient = undefined;
|
|
1544
|
+
if (returnedDebugChannel) {
|
|
1545
|
+
const [t1, t2] = returnedDebugChannel.clientSide.readable.tee();
|
|
1546
|
+
returnedDebugChannel.clientSide.readable = t1;
|
|
1547
|
+
validationDebugChannelClient = nodeStreamFromReadableStream(t2);
|
|
1548
|
+
}
|
|
1549
|
+
_consoleasyncstorageexternal.consoleAsyncStorage.run({
|
|
1550
|
+
dim: true
|
|
1551
|
+
}, spawnStaticShellValidationInDev, accumulatedChunksPromise, staticInterruptReason, runtimeInterruptReason, staticStageEndTime, runtimeStageEndTime, ctx, finalRequestStore, devFallbackParams, validationDebugChannelClient);
|
|
1552
|
+
reactServerResult = new _apprenderprerenderutils.ReactServerResult(serverStream);
|
|
1553
|
+
requestStore = finalRequestStore;
|
|
1554
|
+
debugChannel = returnedDebugChannel;
|
|
1555
|
+
} else {
|
|
1556
|
+
// We're either bypassing caches or we can't restart the render.
|
|
1557
|
+
// Do a dynamic render, but with (basic) environment labels.
|
|
1558
|
+
debugChannel = setReactDebugChannel && createDebugChannel();
|
|
1559
|
+
const serverStream = await stagedRenderToReadableStreamWithoutCachesInDev(ctx, requestStore, getPayload, {
|
|
1560
|
+
onError: serverComponentsErrorHandler,
|
|
1561
|
+
filterStackFrame,
|
|
1562
|
+
debugChannel: debugChannel == null ? void 0 : debugChannel.serverSide
|
|
1563
|
+
});
|
|
1564
|
+
reactServerResult = new _apprenderprerenderutils.ReactServerResult(serverStream);
|
|
1565
|
+
}
|
|
1566
|
+
if (debugChannel && setReactDebugChannel) {
|
|
1567
|
+
const [readableSsr, readableBrowser] = debugChannel.clientSide.readable.tee();
|
|
1568
|
+
reactDebugStream = readableSsr;
|
|
1569
|
+
setReactDebugChannel({
|
|
1570
|
+
readable: readableBrowser
|
|
1571
|
+
}, htmlRequestId, requestId);
|
|
1572
|
+
}
|
|
1573
|
+
} else {
|
|
1574
|
+
// This is a dynamic render. We don't do dynamic tracking because we're not prerendering
|
|
1575
|
+
const RSCPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, getRSCPayload, tree, ctx, res.statusCode === 404);
|
|
1576
|
+
const debugChannel = setReactDebugChannel && createDebugChannel();
|
|
1577
|
+
if (debugChannel) {
|
|
1578
|
+
const [readableSsr, readableBrowser] = debugChannel.clientSide.readable.tee();
|
|
1579
|
+
reactDebugStream = readableSsr;
|
|
1580
|
+
setReactDebugChannel({
|
|
1581
|
+
readable: readableBrowser
|
|
1582
|
+
}, htmlRequestId, requestId);
|
|
1583
|
+
}
|
|
1584
|
+
reactServerResult = new _apprenderprerenderutils.ReactServerResult(_workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, serverRenderToReadableStream, RSCPayload, clientModules, {
|
|
1585
|
+
filterStackFrame,
|
|
1586
|
+
onError: serverComponentsErrorHandler,
|
|
1587
|
+
debugChannel: debugChannel == null ? void 0 : debugChannel.serverSide
|
|
1588
|
+
}));
|
|
1589
|
+
}
|
|
1590
|
+
// React doesn't start rendering synchronously but we want the RSC render to have a chance to start
|
|
1591
|
+
// before we begin SSR rendering because we want to capture any available preload headers so we tick
|
|
1592
|
+
// one task before continuing
|
|
1593
|
+
await (0, _scheduler.waitAtLeastOneReactRenderTask)();
|
|
1594
|
+
// If provided, the postpone state should be parsed as JSON so it can be
|
|
1595
|
+
// provided to React.
|
|
1596
|
+
if (typeof renderOpts.postponed === 'string') {
|
|
1597
|
+
if ((postponedState == null ? void 0 : postponedState.type) === _postponedstate.DynamicState.DATA) {
|
|
1598
|
+
// We have a complete HTML Document in the prerender but we need to
|
|
1599
|
+
// still include the new server component render because it was not included
|
|
1600
|
+
// in the static prelude.
|
|
1601
|
+
const inlinedReactServerDataStream = (0, _useflightresponse.createInlinedDataReadableStream)(reactServerResult.tee(), nonce, formState);
|
|
1602
|
+
// End the span since there's no async rendering in this path
|
|
1603
|
+
if (renderSpan.isRecording()) renderSpan.end();
|
|
1604
|
+
return (0, _nodewebstreamshelper.chainStreams)(inlinedReactServerDataStream, (0, _nodewebstreamshelper.createDocumentClosingStream)());
|
|
1605
|
+
} else if (postponedState) {
|
|
1606
|
+
// We assume we have dynamic HTML requiring a resume render to complete
|
|
1607
|
+
const { postponed, preludeState } = (0, _postponedstate.getPostponedFromState)(postponedState);
|
|
1608
|
+
const resume = require('react-dom/server').resume;
|
|
1609
|
+
const htmlStream = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, resume, /*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
1610
|
+
reactServerStream: reactServerResult.tee(),
|
|
1611
|
+
reactDebugStream: reactDebugStream,
|
|
1612
|
+
debugEndTime: undefined,
|
|
1613
|
+
preinitScripts: preinitScripts,
|
|
1614
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
1615
|
+
nonce: nonce,
|
|
1616
|
+
images: ctx.renderOpts.images
|
|
1617
|
+
}), postponed, {
|
|
1618
|
+
onError: htmlRendererErrorHandler,
|
|
1619
|
+
nonce
|
|
1620
|
+
});
|
|
1621
|
+
// End the render span only after React completed rendering (including anything inside Suspense boundaries)
|
|
1622
|
+
htmlStream.allReady.finally(()=>{
|
|
1623
|
+
if (renderSpan.isRecording()) renderSpan.end();
|
|
1624
|
+
});
|
|
1625
|
+
const getServerInsertedHTML = (0, _makegetserverinsertedhtml.makeGetServerInsertedHTML)({
|
|
1626
|
+
polyfills,
|
|
1627
|
+
renderServerInsertedHTML,
|
|
1628
|
+
serverCapturedErrors: allCapturedErrors,
|
|
1629
|
+
basePath,
|
|
1630
|
+
tracingMetadata: tracingMetadata
|
|
1631
|
+
});
|
|
1632
|
+
return await (0, _nodewebstreamshelper.continueDynamicHTMLResume)(htmlStream, {
|
|
1633
|
+
// If the prelude is empty (i.e. is no static shell), we should wait for initial HTML to be rendered
|
|
1634
|
+
// to avoid injecting RSC data too early.
|
|
1635
|
+
// If we have a non-empty-prelude (i.e. a static HTML shell), then it's already been sent separately,
|
|
1636
|
+
// so we shouldn't wait for any HTML to be emitted from the resume before sending RSC data.
|
|
1637
|
+
delayDataUntilFirstHtmlChunk: preludeState === _postponedstate.DynamicHTMLPreludeState.Empty,
|
|
1638
|
+
inlinedDataStream: (0, _useflightresponse.createInlinedDataReadableStream)(reactServerResult.consume(), nonce, formState),
|
|
1639
|
+
getServerInsertedHTML,
|
|
1640
|
+
getServerInsertedMetadata
|
|
1641
|
+
});
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
// This is a regular dynamic render
|
|
1645
|
+
const renderToReadableStream = require('react-dom/server').renderToReadableStream;
|
|
1646
|
+
const htmlStream = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, renderToReadableStream, /*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
1647
|
+
reactServerStream: reactServerResult.tee(),
|
|
1648
|
+
reactDebugStream: reactDebugStream,
|
|
1649
|
+
debugEndTime: undefined,
|
|
1650
|
+
preinitScripts: preinitScripts,
|
|
1651
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
1652
|
+
nonce: nonce,
|
|
1653
|
+
images: ctx.renderOpts.images
|
|
1654
|
+
}), {
|
|
1655
|
+
onError: htmlRendererErrorHandler,
|
|
1656
|
+
nonce,
|
|
1657
|
+
onHeaders: (headers)=>{
|
|
1658
|
+
headers.forEach((value, key)=>{
|
|
1659
|
+
appendHeader(key, value);
|
|
1660
|
+
});
|
|
1661
|
+
},
|
|
1662
|
+
maxHeadersLength: reactMaxHeadersLength,
|
|
1663
|
+
bootstrapScriptContent,
|
|
1664
|
+
bootstrapScripts: [
|
|
1665
|
+
bootstrapScript
|
|
1666
|
+
],
|
|
1667
|
+
formState
|
|
1668
|
+
});
|
|
1669
|
+
// End the render span only after React completed rendering (including anything inside Suspense boundaries)
|
|
1670
|
+
htmlStream.allReady.finally(()=>{
|
|
1671
|
+
if (renderSpan.isRecording()) renderSpan.end();
|
|
1672
|
+
});
|
|
1673
|
+
const getServerInsertedHTML = (0, _makegetserverinsertedhtml.makeGetServerInsertedHTML)({
|
|
1674
|
+
polyfills,
|
|
1675
|
+
renderServerInsertedHTML,
|
|
1676
|
+
serverCapturedErrors: allCapturedErrors,
|
|
1677
|
+
basePath,
|
|
1678
|
+
tracingMetadata: tracingMetadata
|
|
1679
|
+
});
|
|
1680
|
+
/**
|
|
1681
|
+
* Rules of Static & Dynamic HTML:
|
|
1682
|
+
*
|
|
1683
|
+
* 1.) We must generate static HTML unless the caller explicitly opts
|
|
1684
|
+
* in to dynamic HTML support.
|
|
1685
|
+
*
|
|
1686
|
+
* 2.) If dynamic HTML support is requested, we must honor that request
|
|
1687
|
+
* or throw an error. It is the sole responsibility of the caller to
|
|
1688
|
+
* ensure they aren't e.g. requesting dynamic HTML for a static page.
|
|
1689
|
+
*
|
|
1690
|
+
* 3.) If `shouldWaitOnAllReady` is true, which indicates we need to
|
|
1691
|
+
* resolve all suspenses and generate a full HTML. e.g. when it's a
|
|
1692
|
+
* html limited bot requests, we produce the full HTML content.
|
|
1693
|
+
*
|
|
1694
|
+
* These rules help ensure that other existing features like request caching,
|
|
1695
|
+
* coalescing, and ISR continue working as intended.
|
|
1696
|
+
*/ const generateStaticHTML = supportsDynamicResponse !== true || !!shouldWaitOnAllReady;
|
|
1697
|
+
return await (0, _nodewebstreamshelper.continueFizzStream)(htmlStream, {
|
|
1698
|
+
inlinedDataStream: (0, _useflightresponse.createInlinedDataReadableStream)(reactServerResult.consume(), nonce, formState),
|
|
1699
|
+
isStaticGeneration: generateStaticHTML,
|
|
1700
|
+
isBuildTimePrerendering: ctx.workStore.isBuildTimePrerendering === true,
|
|
1701
|
+
buildId: ctx.workStore.buildId,
|
|
1702
|
+
getServerInsertedHTML,
|
|
1703
|
+
getServerInsertedMetadata,
|
|
1704
|
+
validateRootLayout: dev
|
|
1705
|
+
});
|
|
1706
|
+
} catch (err) {
|
|
1707
|
+
if ((0, _staticgenerationbailout.isStaticGenBailoutError)(err) || typeof err === 'object' && err !== null && 'message' in err && typeof err.message === 'string' && err.message.includes('https://nextjs.org/docs/advanced-features/static-html-export')) {
|
|
1708
|
+
// Ensure that "next dev" prints the red error overlay
|
|
1709
|
+
endSpanWithError(err);
|
|
1710
|
+
throw err;
|
|
1711
|
+
}
|
|
1712
|
+
// If a bailout made it to this point, it means it wasn't wrapped inside
|
|
1713
|
+
// a suspense boundary.
|
|
1714
|
+
const shouldBailoutToCSR = (0, _bailouttocsr.isBailoutToCSRError)(err);
|
|
1715
|
+
if (shouldBailoutToCSR) {
|
|
1716
|
+
const stack = (0, _formatservererror.getStackWithoutErrorMessage)(err);
|
|
1717
|
+
(0, _log.error)(`${err.reason} should be wrapped in a suspense boundary at page "${pagePath}". Read more: https://nextjs.org/docs/messages/missing-suspense-with-csr-bailout\n${stack}`);
|
|
1718
|
+
endSpanWithError(err);
|
|
1719
|
+
throw err;
|
|
1720
|
+
}
|
|
1721
|
+
let errorType;
|
|
1722
|
+
if ((0, _httpaccessfallback.isHTTPAccessFallbackError)(err)) {
|
|
1723
|
+
res.statusCode = (0, _httpaccessfallback.getAccessFallbackHTTPStatus)(err);
|
|
1724
|
+
metadata.statusCode = res.statusCode;
|
|
1725
|
+
errorType = (0, _httpaccessfallback.getAccessFallbackErrorTypeByStatus)(res.statusCode);
|
|
1726
|
+
} else if ((0, _redirecterror.isRedirectError)(err)) {
|
|
1727
|
+
errorType = 'redirect';
|
|
1728
|
+
res.statusCode = (0, _redirect.getRedirectStatusCodeFromError)(err);
|
|
1729
|
+
metadata.statusCode = res.statusCode;
|
|
1730
|
+
const redirectUrl = (0, _addpathprefix.addPathPrefix)((0, _redirect.getURLFromRedirectError)(err), basePath);
|
|
1731
|
+
// If there were mutable cookies set, we need to set them on the
|
|
1732
|
+
// response.
|
|
1733
|
+
const headers = new Headers();
|
|
1734
|
+
if ((0, _requestcookies.appendMutableCookies)(headers, requestStore.mutableCookies)) {
|
|
1735
|
+
setHeader('set-cookie', Array.from(headers.values()));
|
|
1736
|
+
}
|
|
1737
|
+
setHeader('location', redirectUrl);
|
|
1738
|
+
} else if (!shouldBailoutToCSR) {
|
|
1739
|
+
res.statusCode = 500;
|
|
1740
|
+
metadata.statusCode = res.statusCode;
|
|
1741
|
+
}
|
|
1742
|
+
const [errorPreinitScripts, errorBootstrapScript] = (0, _requiredscripts.getRequiredScripts)(buildManifest, assetPrefix, crossOrigin, subresourceIntegrityManifest, (0, _getassetquerystring.getAssetQueryString)(ctx, false), nonce, '/_not-found/page');
|
|
1743
|
+
let errorRSCPayload;
|
|
1744
|
+
let errorServerStream;
|
|
1745
|
+
try {
|
|
1746
|
+
errorRSCPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, getErrorRSCPayload, tree, ctx, reactServerErrorsByDigest.has(err.digest) ? null : err, errorType);
|
|
1747
|
+
errorServerStream = _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, serverRenderToReadableStream, errorRSCPayload, clientModules, {
|
|
1748
|
+
filterStackFrame,
|
|
1749
|
+
onError: serverComponentsErrorHandler
|
|
1750
|
+
});
|
|
1751
|
+
if (reactServerResult === null) {
|
|
1752
|
+
// We errored when we did not have an RSC stream to read from. This is not just a render
|
|
1753
|
+
// error, we need to throw early
|
|
1754
|
+
endSpanWithError(err);
|
|
1755
|
+
throw err;
|
|
1756
|
+
}
|
|
1757
|
+
} catch (setupErr) {
|
|
1758
|
+
endSpanWithError(setupErr);
|
|
1759
|
+
throw setupErr;
|
|
1760
|
+
}
|
|
1761
|
+
try {
|
|
1762
|
+
const fizzStream = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, _nodewebstreamshelper.renderToInitialFizzStream, {
|
|
1763
|
+
ReactDOMServer: require('react-dom/server'),
|
|
1764
|
+
element: /*#__PURE__*/ (0, _jsxruntime.jsx)(ErrorApp, {
|
|
1765
|
+
reactServerStream: errorServerStream,
|
|
1766
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
1767
|
+
preinitScripts: errorPreinitScripts,
|
|
1768
|
+
nonce: nonce,
|
|
1769
|
+
images: ctx.renderOpts.images
|
|
1770
|
+
}),
|
|
1771
|
+
streamOptions: {
|
|
1772
|
+
nonce,
|
|
1773
|
+
bootstrapScriptContent,
|
|
1774
|
+
// Include hydration scripts in the HTML
|
|
1775
|
+
bootstrapScripts: [
|
|
1776
|
+
errorBootstrapScript
|
|
1777
|
+
],
|
|
1778
|
+
formState
|
|
1779
|
+
}
|
|
1780
|
+
});
|
|
1781
|
+
// End the render span only after React completed rendering (including anything inside Suspense boundaries)
|
|
1782
|
+
fizzStream.allReady.finally(()=>{
|
|
1783
|
+
if (renderSpan.isRecording()) renderSpan.end();
|
|
1784
|
+
});
|
|
1785
|
+
/**
|
|
1786
|
+
* Rules of Static & Dynamic HTML:
|
|
1787
|
+
*
|
|
1788
|
+
* 1.) We must generate static HTML unless the caller explicitly opts
|
|
1789
|
+
* in to dynamic HTML support.
|
|
1790
|
+
*
|
|
1791
|
+
* 2.) If dynamic HTML support is requested, we must honor that request
|
|
1792
|
+
* or throw an error. It is the sole responsibility of the caller to
|
|
1793
|
+
* ensure they aren't e.g. requesting dynamic HTML for a static page.
|
|
1794
|
+
* 3.) If `shouldWaitOnAllReady` is true, which indicates we need to
|
|
1795
|
+
* resolve all suspenses and generate a full HTML. e.g. when it's a
|
|
1796
|
+
* html limited bot requests, we produce the full HTML content.
|
|
1797
|
+
*
|
|
1798
|
+
* These rules help ensure that other existing features like request caching,
|
|
1799
|
+
* coalescing, and ISR continue working as intended.
|
|
1800
|
+
*/ const generateStaticHTML = supportsDynamicResponse !== true || !!shouldWaitOnAllReady;
|
|
1801
|
+
return await (0, _nodewebstreamshelper.continueFizzStream)(fizzStream, {
|
|
1802
|
+
inlinedDataStream: (0, _useflightresponse.createInlinedDataReadableStream)(// This is intentionally using the readable datastream from the
|
|
1803
|
+
// main render rather than the flight data from the error page
|
|
1804
|
+
// render
|
|
1805
|
+
reactServerResult.consume(), nonce, formState),
|
|
1806
|
+
isStaticGeneration: generateStaticHTML,
|
|
1807
|
+
isBuildTimePrerendering: ctx.workStore.isBuildTimePrerendering === true,
|
|
1808
|
+
buildId: ctx.workStore.buildId,
|
|
1809
|
+
getServerInsertedHTML: (0, _makegetserverinsertedhtml.makeGetServerInsertedHTML)({
|
|
1810
|
+
polyfills,
|
|
1811
|
+
renderServerInsertedHTML,
|
|
1812
|
+
serverCapturedErrors: [],
|
|
1813
|
+
basePath,
|
|
1814
|
+
tracingMetadata: tracingMetadata
|
|
1815
|
+
}),
|
|
1816
|
+
getServerInsertedMetadata,
|
|
1817
|
+
validateRootLayout: dev
|
|
1818
|
+
});
|
|
1819
|
+
} catch (finalErr) {
|
|
1820
|
+
if (process.env.NODE_ENV === 'development' && (0, _httpaccessfallback.isHTTPAccessFallbackError)(finalErr)) {
|
|
1821
|
+
const { bailOnRootNotFound } = require('../../client/components/dev-root-http-access-fallback-boundary');
|
|
1822
|
+
bailOnRootNotFound();
|
|
1823
|
+
}
|
|
1824
|
+
endSpanWithError(finalErr);
|
|
1825
|
+
throw finalErr;
|
|
1826
|
+
}
|
|
1827
|
+
}
|
|
1828
|
+
});
|
|
1829
|
+
/* eslint-enable @next/internal/no-ambiguous-jsx */ }
|
|
1830
|
+
async function renderWithRestartOnCacheMissInDev(ctx, initialRequestStore, createRequestStore, getPayload, onError) {
|
|
1831
|
+
const { htmlRequestId, renderOpts, componentMod: { routeModule: { userland: { loaderTree } } } } = ctx;
|
|
1832
|
+
const { ComponentMod, setCacheStatus, setReactDebugChannel } = renderOpts;
|
|
1833
|
+
const hasRuntimePrefetch = await (0, _stagedvalidation.anySegmentHasRuntimePrefetchEnabled)(loaderTree);
|
|
1834
|
+
// If the render is restarted, we'll recreate a fresh request store
|
|
1835
|
+
let requestStore = initialRequestStore;
|
|
1836
|
+
const environmentName = ()=>{
|
|
1837
|
+
const currentStage = requestStore.stagedRendering.currentStage;
|
|
1838
|
+
switch(currentStage){
|
|
1839
|
+
case _stagedrendering.RenderStage.Before:
|
|
1840
|
+
case _stagedrendering.RenderStage.Static:
|
|
1841
|
+
return 'Prerender';
|
|
1842
|
+
case _stagedrendering.RenderStage.Runtime:
|
|
1843
|
+
return hasRuntimePrefetch ? 'Prefetch' : 'Prefetchable';
|
|
1844
|
+
case _stagedrendering.RenderStage.Dynamic:
|
|
1845
|
+
case _stagedrendering.RenderStage.Abandoned:
|
|
1846
|
+
return 'Server';
|
|
1847
|
+
default:
|
|
1848
|
+
currentStage;
|
|
1849
|
+
throw Object.defineProperty(new _invarianterror.InvariantError(`Invalid render stage: ${currentStage}`), "__NEXT_ERROR_CODE", {
|
|
1850
|
+
value: "E881",
|
|
1851
|
+
enumerable: false,
|
|
1852
|
+
configurable: true
|
|
1853
|
+
});
|
|
1854
|
+
}
|
|
1855
|
+
};
|
|
1856
|
+
//===============================================
|
|
1857
|
+
// Initial render
|
|
1858
|
+
//===============================================
|
|
1859
|
+
// Try to render the page and see if there's any cache misses.
|
|
1860
|
+
// If there are, wait for caches to finish and restart the render.
|
|
1861
|
+
// This render might end up being used as a prospective render (if there's cache misses),
|
|
1862
|
+
// so we need to set it up for filling caches.
|
|
1863
|
+
const cacheSignal = new _cachesignal.CacheSignal();
|
|
1864
|
+
// If we encounter async modules that delay rendering, we'll also need to restart.
|
|
1865
|
+
// TODO(restart-on-cache-miss): technically, we only need to wait for pending *server* modules here,
|
|
1866
|
+
// but `trackPendingModules` doesn't distinguish between client and server.
|
|
1867
|
+
(0, _trackmoduleloadingexternal.trackPendingModules)(cacheSignal);
|
|
1868
|
+
const prerenderResumeDataCache = (0, _resumedatacache.createPrerenderResumeDataCache)();
|
|
1869
|
+
const initialReactController = new AbortController();
|
|
1870
|
+
const initialDataController = new AbortController() // Controls hanging promises we create
|
|
1871
|
+
;
|
|
1872
|
+
const initialStageController = new _stagedrendering.StagedRenderingController(initialDataController.signal, hasRuntimePrefetch);
|
|
1873
|
+
requestStore.prerenderResumeDataCache = prerenderResumeDataCache;
|
|
1874
|
+
// `getRenderResumeDataCache` will fall back to using `prerenderResumeDataCache` as `renderResumeDataCache`,
|
|
1875
|
+
// so not having a resume data cache won't break any expectations in case we don't need to restart.
|
|
1876
|
+
requestStore.renderResumeDataCache = null;
|
|
1877
|
+
requestStore.stagedRendering = initialStageController;
|
|
1878
|
+
requestStore.asyncApiPromises = createAsyncApiPromisesInDev(initialStageController, requestStore.cookies, requestStore.mutableCookies, requestStore.headers);
|
|
1879
|
+
requestStore.cacheSignal = cacheSignal;
|
|
1880
|
+
let debugChannel = setReactDebugChannel && createDebugChannel();
|
|
1881
|
+
const { clientModules } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
1882
|
+
// Note: The stage controller starts out in the `Before` stage,
|
|
1883
|
+
// where sync IO does not cause aborts, so it's okay if it happens before render.
|
|
1884
|
+
const initialRscPayload = await getPayload(requestStore);
|
|
1885
|
+
const maybeInitialStreamResult = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, ()=>(0, _apprenderrenderutils.pipelineInSequentialTasks)(()=>{
|
|
1886
|
+
// Static stage
|
|
1887
|
+
initialStageController.advanceStage(_stagedrendering.RenderStage.Static);
|
|
1888
|
+
const stream = ComponentMod.renderToReadableStream(initialRscPayload, clientModules, {
|
|
1889
|
+
onError,
|
|
1890
|
+
environmentName,
|
|
1891
|
+
filterStackFrame,
|
|
1892
|
+
debugChannel: debugChannel == null ? void 0 : debugChannel.serverSide,
|
|
1893
|
+
signal: initialReactController.signal
|
|
1894
|
+
});
|
|
1895
|
+
// If we abort the render, we want to reject the stage-dependent promises as well.
|
|
1896
|
+
// Note that we want to install this listener after the render is started
|
|
1897
|
+
// so that it runs after react is finished running its abort code.
|
|
1898
|
+
initialReactController.signal.addEventListener('abort', ()=>{
|
|
1899
|
+
initialDataController.abort(initialReactController.signal.reason);
|
|
1900
|
+
});
|
|
1901
|
+
const [continuationStream, accumulatingStream] = stream.tee();
|
|
1902
|
+
const accumulatedChunksPromise = accumulateStreamChunks(accumulatingStream, initialStageController, initialDataController.signal);
|
|
1903
|
+
return {
|
|
1904
|
+
stream: continuationStream,
|
|
1905
|
+
accumulatedChunksPromise
|
|
1906
|
+
};
|
|
1907
|
+
}, ({ stream, accumulatedChunksPromise })=>{
|
|
1908
|
+
// Runtime stage
|
|
1909
|
+
if (initialStageController.currentStage === _stagedrendering.RenderStage.Abandoned) {
|
|
1910
|
+
// If we abandoned the render in the static stage, we won't proceed further.
|
|
1911
|
+
return null;
|
|
1912
|
+
}
|
|
1913
|
+
// If we had a cache miss in the static stage, we'll have to discard this stream
|
|
1914
|
+
// and render again once the caches are warm.
|
|
1915
|
+
// If we already advanced stages we similarly had sync IO that might be from module loading
|
|
1916
|
+
// and need to render again once the caches are warm.
|
|
1917
|
+
if (cacheSignal.hasPendingReads()) {
|
|
1918
|
+
// Regardless of whether we are going to abandon this
|
|
1919
|
+
// render we need the unblock runtime b/c it's essential
|
|
1920
|
+
// filling caches.
|
|
1921
|
+
initialStageController.abandonRender();
|
|
1922
|
+
return null;
|
|
1923
|
+
}
|
|
1924
|
+
initialStageController.advanceStage(_stagedrendering.RenderStage.Runtime);
|
|
1925
|
+
return {
|
|
1926
|
+
stream,
|
|
1927
|
+
accumulatedChunksPromise
|
|
1928
|
+
};
|
|
1929
|
+
}, (result)=>{
|
|
1930
|
+
// Dynamic stage
|
|
1931
|
+
if (result === null || initialStageController.currentStage === _stagedrendering.RenderStage.Abandoned) {
|
|
1932
|
+
// If we abandoned the render in the static or runtime stage, we won't proceed further.
|
|
1933
|
+
return null;
|
|
1934
|
+
}
|
|
1935
|
+
// If we had cache misses in either of the previous stages,
|
|
1936
|
+
// then we'll only use this render for filling caches.
|
|
1937
|
+
// We won't advance the stage, and thus leave dynamic APIs hanging,
|
|
1938
|
+
// because they won't be cached anyway, so it'd be wasted work.
|
|
1939
|
+
if (cacheSignal.hasPendingReads()) {
|
|
1940
|
+
initialStageController.abandonRender();
|
|
1941
|
+
return null;
|
|
1942
|
+
}
|
|
1943
|
+
// Regardless of whether we are going to abandon this
|
|
1944
|
+
// render we need the unblock runtime b/c it's essential
|
|
1945
|
+
// filling caches.
|
|
1946
|
+
initialStageController.advanceStage(_stagedrendering.RenderStage.Dynamic);
|
|
1947
|
+
return result;
|
|
1948
|
+
}));
|
|
1949
|
+
if (maybeInitialStreamResult !== null) {
|
|
1950
|
+
// No cache misses. We can use the result as-is.
|
|
1951
|
+
return {
|
|
1952
|
+
stream: maybeInitialStreamResult.stream,
|
|
1953
|
+
accumulatedChunksPromise: maybeInitialStreamResult.accumulatedChunksPromise,
|
|
1954
|
+
staticInterruptReason: initialStageController.getStaticInterruptReason(),
|
|
1955
|
+
runtimeInterruptReason: initialStageController.getRuntimeInterruptReason(),
|
|
1956
|
+
staticStageEndTime: initialStageController.getStaticStageEndTime(),
|
|
1957
|
+
runtimeStageEndTime: initialStageController.getRuntimeStageEndTime(),
|
|
1958
|
+
debugChannel,
|
|
1959
|
+
requestStore
|
|
1960
|
+
};
|
|
1961
|
+
}
|
|
1962
|
+
if (process.env.NODE_ENV === 'development' && setCacheStatus) {
|
|
1963
|
+
setCacheStatus('filling', htmlRequestId);
|
|
1964
|
+
}
|
|
1965
|
+
// Cache miss. We will use the initial render to fill caches, and discard its result.
|
|
1966
|
+
// Then, we can render again with warm caches.
|
|
1967
|
+
// TODO(restart-on-cache-miss):
|
|
1968
|
+
// This might end up waiting for more caches than strictly necessary,
|
|
1969
|
+
// because we can't abort the render yet, and we'll let runtime/dynamic APIs resolve.
|
|
1970
|
+
// Ideally we'd only wait for caches that are needed in the static stage.
|
|
1971
|
+
// This will be optimized in the future by not allowing runtime/dynamic APIs to resolve.
|
|
1972
|
+
await cacheSignal.cacheReady();
|
|
1973
|
+
initialReactController.abort();
|
|
1974
|
+
//===============================================
|
|
1975
|
+
// Final render (restarted)
|
|
1976
|
+
//===============================================
|
|
1977
|
+
// The initial render acted as a prospective render to warm the caches.
|
|
1978
|
+
requestStore = createRequestStore();
|
|
1979
|
+
// We are going to render this pass all the way through because we've already
|
|
1980
|
+
// filled any caches so we won't be aborting this time.
|
|
1981
|
+
const abortSignal = null;
|
|
1982
|
+
const finalStageController = new _stagedrendering.StagedRenderingController(abortSignal, hasRuntimePrefetch);
|
|
1983
|
+
// We've filled the caches, so now we can render as usual,
|
|
1984
|
+
// without any cache-filling mechanics.
|
|
1985
|
+
requestStore.prerenderResumeDataCache = null;
|
|
1986
|
+
requestStore.renderResumeDataCache = (0, _resumedatacache.createRenderResumeDataCache)(prerenderResumeDataCache);
|
|
1987
|
+
requestStore.stagedRendering = finalStageController;
|
|
1988
|
+
requestStore.cacheSignal = null;
|
|
1989
|
+
requestStore.asyncApiPromises = createAsyncApiPromisesInDev(finalStageController, requestStore.cookies, requestStore.mutableCookies, requestStore.headers);
|
|
1990
|
+
// The initial render already wrote to its debug channel.
|
|
1991
|
+
// We're not using it, so we need to create a new one.
|
|
1992
|
+
debugChannel = setReactDebugChannel && createDebugChannel();
|
|
1993
|
+
// Note: The stage controller starts out in the `Before` stage,
|
|
1994
|
+
// where sync IO does not cause aborts, so it's okay if it happens before render.
|
|
1995
|
+
const finalRscPayload = await getPayload(requestStore);
|
|
1996
|
+
const finalStreamResult = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(requestStore, ()=>(0, _apprenderrenderutils.pipelineInSequentialTasks)(()=>{
|
|
1997
|
+
// Static stage
|
|
1998
|
+
finalStageController.advanceStage(_stagedrendering.RenderStage.Static);
|
|
1999
|
+
const stream = ComponentMod.renderToReadableStream(finalRscPayload, clientModules, {
|
|
2000
|
+
onError,
|
|
2001
|
+
environmentName,
|
|
2002
|
+
filterStackFrame,
|
|
2003
|
+
debugChannel: debugChannel == null ? void 0 : debugChannel.serverSide
|
|
2004
|
+
});
|
|
2005
|
+
const [continuationStream, accumulatingStream] = stream.tee();
|
|
2006
|
+
const accumulatedChunksPromise = accumulateStreamChunks(accumulatingStream, finalStageController, null);
|
|
2007
|
+
return {
|
|
2008
|
+
stream: continuationStream,
|
|
2009
|
+
accumulatedChunksPromise
|
|
2010
|
+
};
|
|
2011
|
+
}, (result)=>{
|
|
2012
|
+
// Runtime stage
|
|
2013
|
+
finalStageController.advanceStage(_stagedrendering.RenderStage.Runtime);
|
|
2014
|
+
return result;
|
|
2015
|
+
}, (result)=>{
|
|
2016
|
+
// Dynamic stage
|
|
2017
|
+
finalStageController.advanceStage(_stagedrendering.RenderStage.Dynamic);
|
|
2018
|
+
return result;
|
|
2019
|
+
}));
|
|
2020
|
+
if (process.env.NODE_ENV === 'development' && setCacheStatus) {
|
|
2021
|
+
setCacheStatus('filled', htmlRequestId);
|
|
2022
|
+
}
|
|
2023
|
+
return {
|
|
2024
|
+
stream: finalStreamResult.stream,
|
|
2025
|
+
accumulatedChunksPromise: finalStreamResult.accumulatedChunksPromise,
|
|
2026
|
+
staticInterruptReason: finalStageController.getStaticInterruptReason(),
|
|
2027
|
+
runtimeInterruptReason: finalStageController.getRuntimeInterruptReason(),
|
|
2028
|
+
staticStageEndTime: finalStageController.getStaticStageEndTime(),
|
|
2029
|
+
runtimeStageEndTime: finalStageController.getRuntimeStageEndTime(),
|
|
2030
|
+
debugChannel,
|
|
2031
|
+
requestStore
|
|
2032
|
+
};
|
|
2033
|
+
}
|
|
2034
|
+
async function accumulateStreamChunks(stream, stageController, signal) {
|
|
2035
|
+
const staticChunks = [];
|
|
2036
|
+
const runtimeChunks = [];
|
|
2037
|
+
const dynamicChunks = [];
|
|
2038
|
+
const reader = stream.getReader();
|
|
2039
|
+
let cancelled = false;
|
|
2040
|
+
function cancel() {
|
|
2041
|
+
if (!cancelled) {
|
|
2042
|
+
cancelled = true;
|
|
2043
|
+
reader.cancel();
|
|
2044
|
+
}
|
|
2045
|
+
}
|
|
2046
|
+
if (signal) {
|
|
2047
|
+
signal.addEventListener('abort', cancel, {
|
|
2048
|
+
once: true
|
|
2049
|
+
});
|
|
2050
|
+
}
|
|
2051
|
+
try {
|
|
2052
|
+
while(!cancelled){
|
|
2053
|
+
const { done, value } = await reader.read();
|
|
2054
|
+
if (done) {
|
|
2055
|
+
cancel();
|
|
2056
|
+
break;
|
|
2057
|
+
}
|
|
2058
|
+
switch(stageController.currentStage){
|
|
2059
|
+
case _stagedrendering.RenderStage.Before:
|
|
2060
|
+
throw Object.defineProperty(new _invarianterror.InvariantError('Unexpected stream chunk while in Before stage'), "__NEXT_ERROR_CODE", {
|
|
2061
|
+
value: "E942",
|
|
2062
|
+
enumerable: false,
|
|
2063
|
+
configurable: true
|
|
2064
|
+
});
|
|
2065
|
+
case _stagedrendering.RenderStage.Static:
|
|
2066
|
+
staticChunks.push(value);
|
|
2067
|
+
// fall through
|
|
2068
|
+
case _stagedrendering.RenderStage.Runtime:
|
|
2069
|
+
runtimeChunks.push(value);
|
|
2070
|
+
// fall through
|
|
2071
|
+
case _stagedrendering.RenderStage.Dynamic:
|
|
2072
|
+
dynamicChunks.push(value);
|
|
2073
|
+
break;
|
|
2074
|
+
case _stagedrendering.RenderStage.Abandoned:
|
|
2075
|
+
break;
|
|
2076
|
+
default:
|
|
2077
|
+
stageController.currentStage;
|
|
2078
|
+
break;
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2081
|
+
} catch {
|
|
2082
|
+
// When we release the lock we may reject the read
|
|
2083
|
+
}
|
|
2084
|
+
return {
|
|
2085
|
+
staticChunks,
|
|
2086
|
+
runtimeChunks,
|
|
2087
|
+
dynamicChunks
|
|
2088
|
+
};
|
|
2089
|
+
}
|
|
2090
|
+
function createAsyncApiPromisesInDev(stagedRendering, cookies, mutableCookies, headers) {
|
|
2091
|
+
return {
|
|
2092
|
+
// Runtime APIs
|
|
2093
|
+
cookies: stagedRendering.delayUntilStage(_stagedrendering.RenderStage.Runtime, 'cookies', cookies),
|
|
2094
|
+
mutableCookies: stagedRendering.delayUntilStage(_stagedrendering.RenderStage.Runtime, 'cookies', mutableCookies),
|
|
2095
|
+
headers: stagedRendering.delayUntilStage(_stagedrendering.RenderStage.Runtime, 'headers', headers),
|
|
2096
|
+
// These are not used directly, but we chain other `params`/`searchParams` promises off of them.
|
|
2097
|
+
sharedParamsParent: stagedRendering.delayUntilStage(_stagedrendering.RenderStage.Runtime, undefined, '<internal params>'),
|
|
2098
|
+
sharedSearchParamsParent: stagedRendering.delayUntilStage(_stagedrendering.RenderStage.Runtime, undefined, '<internal searchParams>'),
|
|
2099
|
+
connection: stagedRendering.delayUntilStage(_stagedrendering.RenderStage.Dynamic, 'connection', undefined)
|
|
2100
|
+
};
|
|
2101
|
+
}
|
|
2102
|
+
function createDebugChannel() {
|
|
2103
|
+
if (process.env.NODE_ENV === 'production') {
|
|
2104
|
+
return undefined;
|
|
2105
|
+
}
|
|
2106
|
+
let readableController;
|
|
2107
|
+
let clientSideReadable = new ReadableStream({
|
|
2108
|
+
start (controller) {
|
|
2109
|
+
readableController = controller;
|
|
2110
|
+
}
|
|
2111
|
+
});
|
|
2112
|
+
return {
|
|
2113
|
+
serverSide: {
|
|
2114
|
+
writable: new WritableStream({
|
|
2115
|
+
write (chunk) {
|
|
2116
|
+
readableController == null ? void 0 : readableController.enqueue(chunk);
|
|
2117
|
+
},
|
|
2118
|
+
close () {
|
|
2119
|
+
readableController == null ? void 0 : readableController.close();
|
|
2120
|
+
},
|
|
2121
|
+
abort (err) {
|
|
2122
|
+
readableController == null ? void 0 : readableController.error(err);
|
|
2123
|
+
}
|
|
2124
|
+
})
|
|
2125
|
+
},
|
|
2126
|
+
clientSide: {
|
|
2127
|
+
readable: clientSideReadable
|
|
2128
|
+
}
|
|
2129
|
+
};
|
|
2130
|
+
}
|
|
2131
|
+
/**
|
|
2132
|
+
* Logs the given messages, and sends the error instances to the browser as an
|
|
2133
|
+
* RSC stream, where they can be deserialized and logged (or otherwise presented
|
|
2134
|
+
* in the devtools), while leveraging React's capabilities to not only
|
|
2135
|
+
* source-map the stack frames (via findSourceMapURL), but also create virtual
|
|
2136
|
+
* server modules that allow users to inspect the server source code in the
|
|
2137
|
+
* browser.
|
|
2138
|
+
*/ async function logMessagesAndSendErrorsToBrowser(messages, ctx) {
|
|
2139
|
+
const { componentMod: ComponentMod, htmlRequestId, renderOpts } = ctx;
|
|
2140
|
+
const { sendErrorsToBrowser } = renderOpts;
|
|
2141
|
+
const errors = [];
|
|
2142
|
+
for (const message of messages){
|
|
2143
|
+
// Log the error to the CLI. Prevent the logs from being dimmed, which we
|
|
2144
|
+
// apply for other logs during the spawned validation.
|
|
2145
|
+
_consoleasyncstorageexternal.consoleAsyncStorage.exit(()=>{
|
|
2146
|
+
console.error(message);
|
|
2147
|
+
});
|
|
2148
|
+
// Error instances are also sent to the browser. We're currently using a
|
|
2149
|
+
// non-Error message only in debug build mode as a message that is only
|
|
2150
|
+
// meant for the CLI. FIXME: This is a bit spooky action at a distance. We
|
|
2151
|
+
// should maybe have a more explicit way of determining which messages
|
|
2152
|
+
// should be sent to the browser. Regardless, only real errors with a proper
|
|
2153
|
+
// stack make sense to be "replayed" in the browser.
|
|
2154
|
+
if (message instanceof Error) {
|
|
2155
|
+
errors.push(message);
|
|
2156
|
+
}
|
|
2157
|
+
}
|
|
2158
|
+
if (errors.length > 0) {
|
|
2159
|
+
if (!sendErrorsToBrowser) {
|
|
2160
|
+
throw Object.defineProperty(new _invarianterror.InvariantError('Expected `sendErrorsToBrowser` to be defined in renderOpts.'), "__NEXT_ERROR_CODE", {
|
|
2161
|
+
value: "E947",
|
|
2162
|
+
enumerable: false,
|
|
2163
|
+
configurable: true
|
|
2164
|
+
});
|
|
2165
|
+
}
|
|
2166
|
+
const { clientModules } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
2167
|
+
const errorsRscStream = ComponentMod.renderToReadableStream(errors, clientModules, {
|
|
2168
|
+
filterStackFrame
|
|
2169
|
+
});
|
|
2170
|
+
sendErrorsToBrowser(errorsRscStream, htmlRequestId);
|
|
2171
|
+
}
|
|
2172
|
+
}
|
|
2173
|
+
/**
|
|
2174
|
+
* This function is a fork of prerenderToStream cacheComponents branch.
|
|
2175
|
+
* While it doesn't return a stream we want it to have identical
|
|
2176
|
+
* prerender semantics to prerenderToStream and should update it
|
|
2177
|
+
* in conjunction with any changes to that function.
|
|
2178
|
+
*/ async function spawnStaticShellValidationInDev(accumulatedChunksPromise, staticInterruptReason, runtimeInterruptReason, staticStageEndTime, runtimeStageEndTime, ctx, requestStore, fallbackRouteParams, debugChannelClient) {
|
|
2179
|
+
const { componentMod: ComponentMod, getDynamicParamFromSegment, renderOpts, workStore } = ctx;
|
|
2180
|
+
const { allowEmptyStaticShell = false } = renderOpts;
|
|
2181
|
+
const rootParams = (0, _createcomponenttree.getRootParams)(ComponentMod.routeModule.userland.loaderTree, getDynamicParamFromSegment);
|
|
2182
|
+
const hmrRefreshHash = (0, _workunitasyncstorageexternal.getHmrRefreshHash)(workStore, requestStore);
|
|
2183
|
+
// We don't need to continue the prerender process if we already
|
|
2184
|
+
// detected invalid dynamic usage in the initial prerender phase.
|
|
2185
|
+
const { invalidDynamicUsageError } = workStore;
|
|
2186
|
+
if (invalidDynamicUsageError) {
|
|
2187
|
+
return logMessagesAndSendErrorsToBrowser([
|
|
2188
|
+
invalidDynamicUsageError
|
|
2189
|
+
], ctx);
|
|
2190
|
+
}
|
|
2191
|
+
if (staticInterruptReason) {
|
|
2192
|
+
return logMessagesAndSendErrorsToBrowser([
|
|
2193
|
+
staticInterruptReason
|
|
2194
|
+
], ctx);
|
|
2195
|
+
}
|
|
2196
|
+
if (runtimeInterruptReason) {
|
|
2197
|
+
return logMessagesAndSendErrorsToBrowser([
|
|
2198
|
+
runtimeInterruptReason
|
|
2199
|
+
], ctx);
|
|
2200
|
+
}
|
|
2201
|
+
const { staticChunks, runtimeChunks, dynamicChunks } = await accumulatedChunksPromise;
|
|
2202
|
+
// First we warmup SSR with the runtime chunks. This ensures that when we do
|
|
2203
|
+
// the full prerender pass with dynamic tracking module loading won't
|
|
2204
|
+
// interrupt the prerender and can properly observe the entire content
|
|
2205
|
+
await warmupModuleCacheForRuntimeValidationInDev(runtimeChunks, dynamicChunks, rootParams, fallbackRouteParams, allowEmptyStaticShell, ctx);
|
|
2206
|
+
let debugChunks = null;
|
|
2207
|
+
if (debugChannelClient) {
|
|
2208
|
+
debugChunks = [];
|
|
2209
|
+
debugChannelClient.on('data', (c)=>debugChunks.push(c));
|
|
2210
|
+
}
|
|
2211
|
+
const runtimeResult = await validateStagedShell(runtimeChunks, dynamicChunks, debugChunks, runtimeStageEndTime, rootParams, fallbackRouteParams, allowEmptyStaticShell, ctx, hmrRefreshHash, _dynamicrendering.trackDynamicHoleInRuntimeShell);
|
|
2212
|
+
if (runtimeResult.length > 0) {
|
|
2213
|
+
// We have something to report from the runtime validation
|
|
2214
|
+
// We can skip the static validation
|
|
2215
|
+
return logMessagesAndSendErrorsToBrowser(runtimeResult, ctx);
|
|
2216
|
+
}
|
|
2217
|
+
const staticResult = await validateStagedShell(staticChunks, dynamicChunks, debugChunks, staticStageEndTime, rootParams, fallbackRouteParams, allowEmptyStaticShell, ctx, hmrRefreshHash, _dynamicrendering.trackDynamicHoleInStaticShell);
|
|
2218
|
+
return logMessagesAndSendErrorsToBrowser(staticResult, ctx);
|
|
2219
|
+
}
|
|
2220
|
+
async function warmupModuleCacheForRuntimeValidationInDev(runtimeServerChunks, allServerChunks, rootParams, fallbackRouteParams, allowEmptyStaticShell, ctx) {
|
|
2221
|
+
const { implicitTags, nonce, workStore } = ctx;
|
|
2222
|
+
// Warmup SSR
|
|
2223
|
+
const initialClientPrerenderController = new AbortController();
|
|
2224
|
+
const initialClientReactController = new AbortController();
|
|
2225
|
+
const initialClientRenderController = new AbortController();
|
|
2226
|
+
const preinitScripts = ()=>{};
|
|
2227
|
+
const { ServerInsertedHTMLProvider } = (0, _serverinsertedhtml.createServerInsertedHTML)();
|
|
2228
|
+
const initialClientPrerenderStore = {
|
|
2229
|
+
type: 'prerender-client',
|
|
2230
|
+
phase: 'render',
|
|
2231
|
+
rootParams,
|
|
2232
|
+
fallbackRouteParams,
|
|
2233
|
+
implicitTags,
|
|
2234
|
+
renderSignal: initialClientRenderController.signal,
|
|
2235
|
+
controller: initialClientPrerenderController,
|
|
2236
|
+
// For HTML Generation the only cache tracked activity
|
|
2237
|
+
// is module loading, which has it's own cache signal
|
|
2238
|
+
cacheSignal: null,
|
|
2239
|
+
dynamicTracking: null,
|
|
2240
|
+
allowEmptyStaticShell,
|
|
2241
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
2242
|
+
expire: _constants1.INFINITE_CACHE,
|
|
2243
|
+
stale: _constants1.INFINITE_CACHE,
|
|
2244
|
+
tags: [
|
|
2245
|
+
...implicitTags.tags
|
|
2246
|
+
],
|
|
2247
|
+
// TODO should this be removed from client stores?
|
|
2248
|
+
prerenderResumeDataCache: null,
|
|
2249
|
+
renderResumeDataCache: null,
|
|
2250
|
+
hmrRefreshHash: undefined
|
|
2251
|
+
};
|
|
2252
|
+
const runtimeServerStream = createNodeStreamFromChunks(runtimeServerChunks, allServerChunks, initialClientReactController.signal);
|
|
2253
|
+
const prerender = require('react-dom/static').prerender;
|
|
2254
|
+
const pendingInitialClientResult = _workunitasyncstorageexternal.workUnitAsyncStorage.run(initialClientPrerenderStore, prerender, // eslint-disable-next-line @next/internal/no-ambiguous-jsx -- React Client
|
|
2255
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
2256
|
+
reactServerStream: runtimeServerStream,
|
|
2257
|
+
reactDebugStream: undefined,
|
|
2258
|
+
debugEndTime: undefined,
|
|
2259
|
+
preinitScripts: preinitScripts,
|
|
2260
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
2261
|
+
nonce: nonce,
|
|
2262
|
+
images: ctx.renderOpts.images
|
|
2263
|
+
}), {
|
|
2264
|
+
signal: initialClientReactController.signal,
|
|
2265
|
+
onError: (err)=>{
|
|
2266
|
+
const digest = (0, _createerrorhandler.getDigestForWellKnownError)(err);
|
|
2267
|
+
if (digest) {
|
|
2268
|
+
return digest;
|
|
2269
|
+
}
|
|
2270
|
+
if ((0, _reactlargeshellerror.isReactLargeShellError)(err)) {
|
|
2271
|
+
// TODO: Aggregate
|
|
2272
|
+
console.error(err);
|
|
2273
|
+
return undefined;
|
|
2274
|
+
}
|
|
2275
|
+
if (initialClientReactController.signal.aborted) {
|
|
2276
|
+
// These are expected errors that might error the prerender. we ignore them.
|
|
2277
|
+
} else if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
2278
|
+
// We don't normally log these errors because we are going to retry anyway but
|
|
2279
|
+
// it can be useful for debugging Next.js itself to get visibility here when needed
|
|
2280
|
+
(0, _prospectiverenderutils.printDebugThrownValueForProspectiveRender)(err, workStore.route, _prospectiverenderutils.Phase.ProspectiveRender);
|
|
2281
|
+
}
|
|
2282
|
+
}
|
|
2283
|
+
});
|
|
2284
|
+
// The listener to abort our own render controller must be added after React
|
|
2285
|
+
// has added its listener, to ensure that pending I/O is not
|
|
2286
|
+
// aborted/rejected too early.
|
|
2287
|
+
initialClientReactController.signal.addEventListener('abort', ()=>{
|
|
2288
|
+
initialClientRenderController.abort();
|
|
2289
|
+
}, {
|
|
2290
|
+
once: true
|
|
2291
|
+
});
|
|
2292
|
+
pendingInitialClientResult.catch((err)=>{
|
|
2293
|
+
if (initialClientReactController.signal.aborted || (0, _dynamicrendering.isPrerenderInterruptedError)(err)) {
|
|
2294
|
+
// These are expected errors that might error the prerender. we ignore them.
|
|
2295
|
+
} else if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
2296
|
+
// We don't normally log these errors because we are going to retry anyway but
|
|
2297
|
+
// it can be useful for debugging Next.js itself to get visibility here when needed
|
|
2298
|
+
(0, _prospectiverenderutils.printDebugThrownValueForProspectiveRender)(err, workStore.route, _prospectiverenderutils.Phase.ProspectiveRender);
|
|
2299
|
+
}
|
|
2300
|
+
});
|
|
2301
|
+
// This is mostly needed for dynamic `import()`s in client components.
|
|
2302
|
+
// Promises passed to client were already awaited above (assuming that they came from cached functions)
|
|
2303
|
+
const cacheSignal = new _cachesignal.CacheSignal();
|
|
2304
|
+
(0, _trackmoduleloadingexternal.trackPendingModules)(cacheSignal);
|
|
2305
|
+
await cacheSignal.cacheReady();
|
|
2306
|
+
initialClientReactController.abort();
|
|
2307
|
+
}
|
|
2308
|
+
async function validateStagedShell(stageChunks, allServerChunks, debugChunks, debugEndTime, rootParams, fallbackRouteParams, allowEmptyStaticShell, ctx, hmrRefreshHash, trackDynamicHole) {
|
|
2309
|
+
const { implicitTags, nonce, workStore } = ctx;
|
|
2310
|
+
const clientDynamicTracking = (0, _dynamicrendering.createDynamicTrackingState)(false //isDebugDynamicAccesses
|
|
2311
|
+
);
|
|
2312
|
+
const clientReactController = new AbortController();
|
|
2313
|
+
const clientRenderController = new AbortController();
|
|
2314
|
+
const preinitScripts = ()=>{};
|
|
2315
|
+
const { ServerInsertedHTMLProvider } = (0, _serverinsertedhtml.createServerInsertedHTML)();
|
|
2316
|
+
const finalClientPrerenderStore = {
|
|
2317
|
+
type: 'prerender-client',
|
|
2318
|
+
phase: 'render',
|
|
2319
|
+
rootParams,
|
|
2320
|
+
fallbackRouteParams,
|
|
2321
|
+
implicitTags,
|
|
2322
|
+
renderSignal: clientRenderController.signal,
|
|
2323
|
+
controller: clientReactController,
|
|
2324
|
+
// No APIs require a cacheSignal through the workUnitStore during the HTML prerender
|
|
2325
|
+
cacheSignal: null,
|
|
2326
|
+
dynamicTracking: clientDynamicTracking,
|
|
2327
|
+
allowEmptyStaticShell,
|
|
2328
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
2329
|
+
expire: _constants1.INFINITE_CACHE,
|
|
2330
|
+
stale: _constants1.INFINITE_CACHE,
|
|
2331
|
+
tags: [
|
|
2332
|
+
...implicitTags.tags
|
|
2333
|
+
],
|
|
2334
|
+
// TODO should this be removed from client stores?
|
|
2335
|
+
prerenderResumeDataCache: null,
|
|
2336
|
+
renderResumeDataCache: null,
|
|
2337
|
+
hmrRefreshHash
|
|
2338
|
+
};
|
|
2339
|
+
let runtimeDynamicValidation = (0, _dynamicrendering.createDynamicValidationState)();
|
|
2340
|
+
const serverStream = createNodeStreamFromChunks(stageChunks, allServerChunks, clientReactController.signal);
|
|
2341
|
+
const debugChannelClient = debugChunks ? createNodeStreamFromChunks(debugChunks, debugChunks, clientReactController.signal) : undefined;
|
|
2342
|
+
const prerender = require('react-dom/static').prerender;
|
|
2343
|
+
try {
|
|
2344
|
+
let { prelude: unprocessedPrelude } = await (0, _apprenderprerenderutils.prerenderAndAbortInSequentialTasks)(()=>{
|
|
2345
|
+
const pendingFinalClientResult = _workunitasyncstorageexternal.workUnitAsyncStorage.run(finalClientPrerenderStore, prerender, // eslint-disable-next-line @next/internal/no-ambiguous-jsx -- React Client
|
|
2346
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
2347
|
+
reactServerStream: serverStream,
|
|
2348
|
+
reactDebugStream: debugChannelClient,
|
|
2349
|
+
debugEndTime: debugEndTime,
|
|
2350
|
+
preinitScripts: preinitScripts,
|
|
2351
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
2352
|
+
nonce: nonce,
|
|
2353
|
+
images: ctx.renderOpts.images
|
|
2354
|
+
}), {
|
|
2355
|
+
signal: clientReactController.signal,
|
|
2356
|
+
onError: (err, errorInfo)=>{
|
|
2357
|
+
if ((0, _dynamicrendering.isPrerenderInterruptedError)(err) || clientReactController.signal.aborted) {
|
|
2358
|
+
const componentStack = errorInfo.componentStack;
|
|
2359
|
+
if (typeof componentStack === 'string') {
|
|
2360
|
+
trackDynamicHole(workStore, componentStack, runtimeDynamicValidation, clientDynamicTracking);
|
|
2361
|
+
}
|
|
2362
|
+
return;
|
|
2363
|
+
}
|
|
2364
|
+
if ((0, _reactlargeshellerror.isReactLargeShellError)(err)) {
|
|
2365
|
+
// TODO: Aggregate
|
|
2366
|
+
console.error(err);
|
|
2367
|
+
return undefined;
|
|
2368
|
+
}
|
|
2369
|
+
return (0, _createerrorhandler.getDigestForWellKnownError)(err);
|
|
2370
|
+
}
|
|
2371
|
+
});
|
|
2372
|
+
// The listener to abort our own render controller must be added after
|
|
2373
|
+
// React has added its listener, to ensure that pending I/O is not
|
|
2374
|
+
// aborted/rejected too early.
|
|
2375
|
+
clientReactController.signal.addEventListener('abort', ()=>{
|
|
2376
|
+
clientRenderController.abort();
|
|
2377
|
+
}, {
|
|
2378
|
+
once: true
|
|
2379
|
+
});
|
|
2380
|
+
return pendingFinalClientResult;
|
|
2381
|
+
}, ()=>{
|
|
2382
|
+
clientReactController.abort();
|
|
2383
|
+
});
|
|
2384
|
+
const { preludeIsEmpty } = await (0, _apprenderprerenderutils.processPrelude)(unprocessedPrelude);
|
|
2385
|
+
return (0, _dynamicrendering.getStaticShellDisallowedDynamicReasons)(workStore, preludeIsEmpty ? _dynamicrendering.PreludeState.Empty : _dynamicrendering.PreludeState.Full, runtimeDynamicValidation);
|
|
2386
|
+
} catch (thrownValue) {
|
|
2387
|
+
// Even if the root errors we still want to report any cache components errors
|
|
2388
|
+
// that were discovered before the root errored.
|
|
2389
|
+
let errors = (0, _dynamicrendering.getStaticShellDisallowedDynamicReasons)(workStore, _dynamicrendering.PreludeState.Errored, runtimeDynamicValidation);
|
|
2390
|
+
if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
2391
|
+
errors.unshift('During dynamic validation the root of the page errored. The next logged error is the thrown value. It may be a duplicate of errors reported during the normal development mode render.', thrownValue);
|
|
2392
|
+
}
|
|
2393
|
+
return errors;
|
|
2394
|
+
}
|
|
2395
|
+
}
|
|
2396
|
+
/**
|
|
2397
|
+
* Determines whether we should generate static flight data.
|
|
2398
|
+
*/ function shouldGenerateStaticFlightData(workStore) {
|
|
2399
|
+
const { isStaticGeneration } = workStore;
|
|
2400
|
+
if (!isStaticGeneration) return false;
|
|
2401
|
+
return true;
|
|
2402
|
+
}
|
|
2403
|
+
async function prerenderToStream(req, res, ctx, metadata, tree, fallbackRouteParams) {
|
|
2404
|
+
// When prerendering formState is always null. We still include it
|
|
2405
|
+
// because some shared APIs expect a formState value and this is slightly
|
|
2406
|
+
// more explicit than making it an optional function argument
|
|
2407
|
+
const formState = null;
|
|
2408
|
+
const { assetPrefix, getDynamicParamFromSegment, implicitTags, nonce, pagePath, renderOpts, workStore } = ctx;
|
|
2409
|
+
const { allowEmptyStaticShell = false, basePath, buildManifest, ComponentMod, crossOrigin, dev = false, experimental, isDebugDynamicAccesses, nextExport = false, onInstrumentationRequestError, page, reactMaxHeadersLength, subresourceIntegrityManifest, cacheComponents } = renderOpts;
|
|
2410
|
+
const rootParams = (0, _createcomponenttree.getRootParams)(tree, getDynamicParamFromSegment);
|
|
2411
|
+
const { ServerInsertedHTMLProvider, renderServerInsertedHTML } = (0, _serverinsertedhtml.createServerInsertedHTML)();
|
|
2412
|
+
const getServerInsertedMetadata = (0, _createserverinsertedmetadata.createServerInsertedMetadata)(nonce);
|
|
2413
|
+
const tracingMetadata = (0, _utils1.getTracedMetadata)((0, _tracer.getTracer)().getTracePropagationData(), experimental.clientTraceMetadata);
|
|
2414
|
+
const polyfills = buildManifest.polyfillFiles.filter((polyfill)=>polyfill.endsWith('.js') && !polyfill.endsWith('.module.js')).map((polyfill)=>({
|
|
2415
|
+
src: `${assetPrefix}/_next/${polyfill}${(0, _getassetquerystring.getAssetQueryString)(ctx, false)}`,
|
|
2416
|
+
integrity: subresourceIntegrityManifest == null ? void 0 : subresourceIntegrityManifest[polyfill],
|
|
2417
|
+
crossOrigin,
|
|
2418
|
+
noModule: true,
|
|
2419
|
+
nonce
|
|
2420
|
+
}));
|
|
2421
|
+
const [preinitScripts, bootstrapScript] = (0, _requiredscripts.getRequiredScripts)(buildManifest, // Why is assetPrefix optional on renderOpts?
|
|
2422
|
+
// @TODO make it default empty string on renderOpts and get rid of it from ctx
|
|
2423
|
+
assetPrefix, crossOrigin, subresourceIntegrityManifest, (0, _getassetquerystring.getAssetQueryString)(ctx, true), nonce, page);
|
|
2424
|
+
const { reactServerErrorsByDigest } = workStore;
|
|
2425
|
+
// We don't report errors during prerendering through our instrumentation hooks
|
|
2426
|
+
const reportErrors = !experimental.isRoutePPREnabled;
|
|
2427
|
+
function onHTMLRenderRSCError(err, silenceLog) {
|
|
2428
|
+
if (reportErrors) {
|
|
2429
|
+
return onInstrumentationRequestError == null ? void 0 : onInstrumentationRequestError(err, req, createErrorContext(ctx, 'react-server-components'), silenceLog);
|
|
2430
|
+
}
|
|
2431
|
+
}
|
|
2432
|
+
const serverComponentsErrorHandler = (0, _createerrorhandler.createReactServerErrorHandler)(dev, nextExport, reactServerErrorsByDigest, onHTMLRenderRSCError);
|
|
2433
|
+
function onHTMLRenderSSRError(err) {
|
|
2434
|
+
if (reportErrors) {
|
|
2435
|
+
// We don't need to silence logs here. onHTMLRenderSSRError won't be
|
|
2436
|
+
// called at all if the error was logged before in the RSC error handler.
|
|
2437
|
+
const silenceLog = false;
|
|
2438
|
+
return onInstrumentationRequestError == null ? void 0 : onInstrumentationRequestError(err, req, createErrorContext(ctx, 'server-rendering'), silenceLog);
|
|
2439
|
+
}
|
|
2440
|
+
}
|
|
2441
|
+
const allCapturedErrors = [];
|
|
2442
|
+
const htmlRendererErrorHandler = (0, _createerrorhandler.createHTMLErrorHandler)(dev, nextExport, reactServerErrorsByDigest, allCapturedErrors, onHTMLRenderSSRError);
|
|
2443
|
+
let reactServerPrerenderResult = null;
|
|
2444
|
+
const setMetadataHeader = (name)=>{
|
|
2445
|
+
metadata.headers ??= {};
|
|
2446
|
+
metadata.headers[name] = res.getHeader(name);
|
|
2447
|
+
};
|
|
2448
|
+
const setHeader = (name, value)=>{
|
|
2449
|
+
res.setHeader(name, value);
|
|
2450
|
+
setMetadataHeader(name);
|
|
2451
|
+
return res;
|
|
2452
|
+
};
|
|
2453
|
+
const appendHeader = (name, value)=>{
|
|
2454
|
+
if (Array.isArray(value)) {
|
|
2455
|
+
value.forEach((item)=>{
|
|
2456
|
+
res.appendHeader(name, item);
|
|
2457
|
+
});
|
|
2458
|
+
} else {
|
|
2459
|
+
res.appendHeader(name, value);
|
|
2460
|
+
}
|
|
2461
|
+
setMetadataHeader(name);
|
|
2462
|
+
};
|
|
2463
|
+
const selectStaleTime = createSelectStaleTime(experimental);
|
|
2464
|
+
const { clientModules } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
2465
|
+
let prerenderStore = null;
|
|
2466
|
+
try {
|
|
2467
|
+
if (cacheComponents) {
|
|
2468
|
+
/**
|
|
2469
|
+
* cacheComponents with PPR
|
|
2470
|
+
*
|
|
2471
|
+
* The general approach is to render the RSC stream first allowing any cache reads to resolve.
|
|
2472
|
+
* Once we have settled all cache reads we restart the render and abort after a single Task.
|
|
2473
|
+
*
|
|
2474
|
+
* Unlike with the non PPR case we can't synchronously abort the render when a dynamic API is used
|
|
2475
|
+
* during the initial render because we need to ensure all caches can be filled as part of the initial Task
|
|
2476
|
+
* and a synchronous abort might prevent us from filling all caches.
|
|
2477
|
+
*
|
|
2478
|
+
* Once the render is complete we allow the SSR render to finish and use a combination of the postponed state
|
|
2479
|
+
* and the reactServerIsDynamic value to determine how to treat the resulting render
|
|
2480
|
+
*/ // The prerender controller represents the lifetime of the prerender. It
|
|
2481
|
+
// will be aborted when a task is complete or a synchronously aborting API
|
|
2482
|
+
// is called. Notably, during prospective prerenders, this does not
|
|
2483
|
+
// actually terminate the prerender itself, which will continue until all
|
|
2484
|
+
// caches are filled.
|
|
2485
|
+
const initialServerPrerenderController = new AbortController();
|
|
2486
|
+
// This controller is used to abort the React prerender.
|
|
2487
|
+
const initialServerReactController = new AbortController();
|
|
2488
|
+
// This controller represents the lifetime of the React prerender. Its
|
|
2489
|
+
// signal can be used for any I/O operation to abort the I/O and/or to
|
|
2490
|
+
// reject, when prerendering aborts. This includes our own hanging
|
|
2491
|
+
// promises for accessing request data, and for fetch calls. It might be
|
|
2492
|
+
// replaced in the future by React.cacheSignal(). It's aborted after the
|
|
2493
|
+
// React controller, so that no pending I/O can register abort listeners
|
|
2494
|
+
// that are called before React's abort listener is called. This ensures
|
|
2495
|
+
// that pending I/O is not rejected too early when aborting the prerender.
|
|
2496
|
+
// Notably, during the prospective prerender, it is different from the
|
|
2497
|
+
// prerender controller because we don't want to end the React prerender
|
|
2498
|
+
// until all caches are filled.
|
|
2499
|
+
const initialServerRenderController = new AbortController();
|
|
2500
|
+
// The cacheSignal helps us track whether caches are still filling or we are ready
|
|
2501
|
+
// to cut the render off.
|
|
2502
|
+
const cacheSignal = new _cachesignal.CacheSignal();
|
|
2503
|
+
let resumeDataCache;
|
|
2504
|
+
let renderResumeDataCache = null;
|
|
2505
|
+
let prerenderResumeDataCache = null;
|
|
2506
|
+
if (renderOpts.renderResumeDataCache) {
|
|
2507
|
+
// If a prefilled immutable render resume data cache is provided, e.g.
|
|
2508
|
+
// when prerendering an optional fallback shell after having prerendered
|
|
2509
|
+
// pages with defined params, we use this instead of a prerender resume
|
|
2510
|
+
// data cache.
|
|
2511
|
+
resumeDataCache = renderResumeDataCache = renderOpts.renderResumeDataCache;
|
|
2512
|
+
} else {
|
|
2513
|
+
// Otherwise we create a new mutable prerender resume data cache.
|
|
2514
|
+
resumeDataCache = prerenderResumeDataCache = (0, _resumedatacache.createPrerenderResumeDataCache)();
|
|
2515
|
+
}
|
|
2516
|
+
const initialServerPayloadPrerenderStore = {
|
|
2517
|
+
type: 'prerender',
|
|
2518
|
+
phase: 'render',
|
|
2519
|
+
rootParams,
|
|
2520
|
+
fallbackRouteParams,
|
|
2521
|
+
implicitTags,
|
|
2522
|
+
// While this render signal isn't going to be used to abort a React render while getting the RSC payload
|
|
2523
|
+
// various request data APIs bind to this controller to reject after completion.
|
|
2524
|
+
renderSignal: initialServerRenderController.signal,
|
|
2525
|
+
// When we generate the RSC payload we might abort this controller due to sync IO
|
|
2526
|
+
// but we don't actually care about sync IO in this phase so we use a throw away controller
|
|
2527
|
+
// that isn't connected to anything
|
|
2528
|
+
controller: new AbortController(),
|
|
2529
|
+
// During the initial prerender we need to track all cache reads to ensure
|
|
2530
|
+
// we render long enough to fill every cache it is possible to visit during
|
|
2531
|
+
// the final prerender.
|
|
2532
|
+
cacheSignal,
|
|
2533
|
+
dynamicTracking: null,
|
|
2534
|
+
allowEmptyStaticShell,
|
|
2535
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
2536
|
+
expire: _constants1.INFINITE_CACHE,
|
|
2537
|
+
stale: _constants1.INFINITE_CACHE,
|
|
2538
|
+
tags: [
|
|
2539
|
+
...implicitTags.tags
|
|
2540
|
+
],
|
|
2541
|
+
prerenderResumeDataCache,
|
|
2542
|
+
renderResumeDataCache,
|
|
2543
|
+
hmrRefreshHash: undefined
|
|
2544
|
+
};
|
|
2545
|
+
// We're not going to use the result of this render because the only time it could be used
|
|
2546
|
+
// is if it completes in a microtask and that's likely very rare for any non-trivial app
|
|
2547
|
+
const initialServerPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(initialServerPayloadPrerenderStore, getRSCPayload, tree, ctx, res.statusCode === 404);
|
|
2548
|
+
const initialServerPrerenderStore = prerenderStore = {
|
|
2549
|
+
type: 'prerender',
|
|
2550
|
+
phase: 'render',
|
|
2551
|
+
rootParams,
|
|
2552
|
+
fallbackRouteParams,
|
|
2553
|
+
implicitTags,
|
|
2554
|
+
renderSignal: initialServerRenderController.signal,
|
|
2555
|
+
controller: initialServerPrerenderController,
|
|
2556
|
+
// During the initial prerender we need to track all cache reads to ensure
|
|
2557
|
+
// we render long enough to fill every cache it is possible to visit during
|
|
2558
|
+
// the final prerender.
|
|
2559
|
+
cacheSignal,
|
|
2560
|
+
dynamicTracking: null,
|
|
2561
|
+
allowEmptyStaticShell,
|
|
2562
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
2563
|
+
expire: _constants1.INFINITE_CACHE,
|
|
2564
|
+
stale: _constants1.INFINITE_CACHE,
|
|
2565
|
+
tags: [
|
|
2566
|
+
...implicitTags.tags
|
|
2567
|
+
],
|
|
2568
|
+
prerenderResumeDataCache,
|
|
2569
|
+
renderResumeDataCache,
|
|
2570
|
+
hmrRefreshHash: undefined
|
|
2571
|
+
};
|
|
2572
|
+
const pendingInitialServerResult = _workunitasyncstorageexternal.workUnitAsyncStorage.run(initialServerPrerenderStore, ComponentMod.prerender, initialServerPayload, clientModules, {
|
|
2573
|
+
filterStackFrame,
|
|
2574
|
+
onError: (err)=>{
|
|
2575
|
+
const digest = (0, _createerrorhandler.getDigestForWellKnownError)(err);
|
|
2576
|
+
if (digest) {
|
|
2577
|
+
return digest;
|
|
2578
|
+
}
|
|
2579
|
+
if ((0, _reactlargeshellerror.isReactLargeShellError)(err)) {
|
|
2580
|
+
// TODO: Aggregate
|
|
2581
|
+
console.error(err);
|
|
2582
|
+
return undefined;
|
|
2583
|
+
}
|
|
2584
|
+
if (initialServerPrerenderController.signal.aborted) {
|
|
2585
|
+
// The render aborted before this error was handled which indicates
|
|
2586
|
+
// the error is caused by unfinished components within the render
|
|
2587
|
+
return;
|
|
2588
|
+
} else if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
2589
|
+
(0, _prospectiverenderutils.printDebugThrownValueForProspectiveRender)(err, workStore.route, _prospectiverenderutils.Phase.ProspectiveRender);
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2592
|
+
// We don't want to stop rendering until the cacheSignal is complete so we pass
|
|
2593
|
+
// a different signal to this render call than is used by dynamic APIs to signify
|
|
2594
|
+
// transitioning out of the prerender environment
|
|
2595
|
+
signal: initialServerReactController.signal
|
|
2596
|
+
});
|
|
2597
|
+
// The listener to abort our own render controller must be added after
|
|
2598
|
+
// React has added its listener, to ensure that pending I/O is not
|
|
2599
|
+
// aborted/rejected too early.
|
|
2600
|
+
initialServerReactController.signal.addEventListener('abort', ()=>{
|
|
2601
|
+
initialServerRenderController.abort();
|
|
2602
|
+
initialServerPrerenderController.abort();
|
|
2603
|
+
}, {
|
|
2604
|
+
once: true
|
|
2605
|
+
});
|
|
2606
|
+
// Wait for all caches to be finished filling and for async imports to resolve
|
|
2607
|
+
(0, _trackmoduleloadingexternal.trackPendingModules)(cacheSignal);
|
|
2608
|
+
await cacheSignal.cacheReady();
|
|
2609
|
+
initialServerReactController.abort();
|
|
2610
|
+
// We don't need to continue the prerender process if we already
|
|
2611
|
+
// detected invalid dynamic usage in the initial prerender phase.
|
|
2612
|
+
if (workStore.invalidDynamicUsageError) {
|
|
2613
|
+
(0, _dynamicrendering.logDisallowedDynamicError)(workStore, workStore.invalidDynamicUsageError);
|
|
2614
|
+
throw new _staticgenerationbailout.StaticGenBailoutError();
|
|
2615
|
+
}
|
|
2616
|
+
let initialServerResult;
|
|
2617
|
+
try {
|
|
2618
|
+
initialServerResult = await (0, _apprenderprerenderutils.createReactServerPrerenderResult)(pendingInitialServerResult);
|
|
2619
|
+
} catch (err) {
|
|
2620
|
+
if (initialServerReactController.signal.aborted || initialServerPrerenderController.signal.aborted) {
|
|
2621
|
+
// These are expected errors that might error the prerender. we ignore them.
|
|
2622
|
+
} else if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
2623
|
+
// We don't normally log these errors because we are going to retry anyway but
|
|
2624
|
+
// it can be useful for debugging Next.js itself to get visibility here when needed
|
|
2625
|
+
(0, _prospectiverenderutils.printDebugThrownValueForProspectiveRender)(err, workStore.route, _prospectiverenderutils.Phase.ProspectiveRender);
|
|
2626
|
+
}
|
|
2627
|
+
}
|
|
2628
|
+
if (initialServerResult) {
|
|
2629
|
+
const initialClientPrerenderController = new AbortController();
|
|
2630
|
+
const initialClientReactController = new AbortController();
|
|
2631
|
+
const initialClientRenderController = new AbortController();
|
|
2632
|
+
const initialClientPrerenderStore = {
|
|
2633
|
+
type: 'prerender-client',
|
|
2634
|
+
phase: 'render',
|
|
2635
|
+
rootParams,
|
|
2636
|
+
fallbackRouteParams,
|
|
2637
|
+
implicitTags,
|
|
2638
|
+
renderSignal: initialClientRenderController.signal,
|
|
2639
|
+
controller: initialClientPrerenderController,
|
|
2640
|
+
// For HTML Generation the only cache tracked activity
|
|
2641
|
+
// is module loading, which has it's own cache signal
|
|
2642
|
+
cacheSignal: null,
|
|
2643
|
+
dynamicTracking: null,
|
|
2644
|
+
allowEmptyStaticShell,
|
|
2645
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
2646
|
+
expire: _constants1.INFINITE_CACHE,
|
|
2647
|
+
stale: _constants1.INFINITE_CACHE,
|
|
2648
|
+
tags: [
|
|
2649
|
+
...implicitTags.tags
|
|
2650
|
+
],
|
|
2651
|
+
prerenderResumeDataCache,
|
|
2652
|
+
renderResumeDataCache,
|
|
2653
|
+
hmrRefreshHash: undefined
|
|
2654
|
+
};
|
|
2655
|
+
const prerender = require('react-dom/static').prerender;
|
|
2656
|
+
const pendingInitialClientResult = _workunitasyncstorageexternal.workUnitAsyncStorage.run(initialClientPrerenderStore, prerender, // eslint-disable-next-line @next/internal/no-ambiguous-jsx
|
|
2657
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
2658
|
+
reactServerStream: initialServerResult.asUnclosingStream(),
|
|
2659
|
+
reactDebugStream: undefined,
|
|
2660
|
+
debugEndTime: undefined,
|
|
2661
|
+
preinitScripts: preinitScripts,
|
|
2662
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
2663
|
+
nonce: nonce,
|
|
2664
|
+
images: ctx.renderOpts.images
|
|
2665
|
+
}), {
|
|
2666
|
+
signal: initialClientReactController.signal,
|
|
2667
|
+
onError: (err)=>{
|
|
2668
|
+
const digest = (0, _createerrorhandler.getDigestForWellKnownError)(err);
|
|
2669
|
+
if (digest) {
|
|
2670
|
+
return digest;
|
|
2671
|
+
}
|
|
2672
|
+
if ((0, _reactlargeshellerror.isReactLargeShellError)(err)) {
|
|
2673
|
+
// TODO: Aggregate
|
|
2674
|
+
console.error(err);
|
|
2675
|
+
return undefined;
|
|
2676
|
+
}
|
|
2677
|
+
if (initialClientReactController.signal.aborted) {
|
|
2678
|
+
// These are expected errors that might error the prerender. we ignore them.
|
|
2679
|
+
} else if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
2680
|
+
// We don't normally log these errors because we are going to retry anyway but
|
|
2681
|
+
// it can be useful for debugging Next.js itself to get visibility here when needed
|
|
2682
|
+
(0, _prospectiverenderutils.printDebugThrownValueForProspectiveRender)(err, workStore.route, _prospectiverenderutils.Phase.ProspectiveRender);
|
|
2683
|
+
}
|
|
2684
|
+
},
|
|
2685
|
+
bootstrapScripts: [
|
|
2686
|
+
bootstrapScript
|
|
2687
|
+
]
|
|
2688
|
+
});
|
|
2689
|
+
// The listener to abort our own render controller must be added after
|
|
2690
|
+
// React has added its listener, to ensure that pending I/O is not
|
|
2691
|
+
// aborted/rejected too early.
|
|
2692
|
+
initialClientReactController.signal.addEventListener('abort', ()=>{
|
|
2693
|
+
initialClientRenderController.abort();
|
|
2694
|
+
}, {
|
|
2695
|
+
once: true
|
|
2696
|
+
});
|
|
2697
|
+
pendingInitialClientResult.catch((err)=>{
|
|
2698
|
+
if (initialClientReactController.signal.aborted || (0, _dynamicrendering.isPrerenderInterruptedError)(err)) {
|
|
2699
|
+
// These are expected errors that might error the prerender. we ignore them.
|
|
2700
|
+
} else if (process.env.NEXT_DEBUG_BUILD || process.env.__NEXT_VERBOSE_LOGGING) {
|
|
2701
|
+
// We don't normally log these errors because we are going to retry anyway but
|
|
2702
|
+
// it can be useful for debugging Next.js itself to get visibility here when needed
|
|
2703
|
+
(0, _prospectiverenderutils.printDebugThrownValueForProspectiveRender)(err, workStore.route, _prospectiverenderutils.Phase.ProspectiveRender);
|
|
2704
|
+
}
|
|
2705
|
+
});
|
|
2706
|
+
// This is mostly needed for dynamic `import()`s in client components.
|
|
2707
|
+
// Promises passed to client were already awaited above (assuming that they came from cached functions)
|
|
2708
|
+
(0, _trackmoduleloadingexternal.trackPendingModules)(cacheSignal);
|
|
2709
|
+
await cacheSignal.cacheReady();
|
|
2710
|
+
initialClientReactController.abort();
|
|
2711
|
+
}
|
|
2712
|
+
const finalServerReactController = new AbortController();
|
|
2713
|
+
const finalServerRenderController = new AbortController();
|
|
2714
|
+
const finalServerPayloadPrerenderStore = {
|
|
2715
|
+
type: 'prerender',
|
|
2716
|
+
phase: 'render',
|
|
2717
|
+
rootParams,
|
|
2718
|
+
fallbackRouteParams,
|
|
2719
|
+
implicitTags,
|
|
2720
|
+
// While this render signal isn't going to be used to abort a React render while getting the RSC payload
|
|
2721
|
+
// various request data APIs bind to this controller to reject after completion.
|
|
2722
|
+
renderSignal: finalServerRenderController.signal,
|
|
2723
|
+
// When we generate the RSC payload we might abort this controller due to sync IO
|
|
2724
|
+
// but we don't actually care about sync IO in this phase so we use a throw away controller
|
|
2725
|
+
// that isn't connected to anything
|
|
2726
|
+
controller: new AbortController(),
|
|
2727
|
+
// All caches we could read must already be filled so no tracking is necessary
|
|
2728
|
+
cacheSignal: null,
|
|
2729
|
+
dynamicTracking: null,
|
|
2730
|
+
allowEmptyStaticShell,
|
|
2731
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
2732
|
+
expire: _constants1.INFINITE_CACHE,
|
|
2733
|
+
stale: _constants1.INFINITE_CACHE,
|
|
2734
|
+
tags: [
|
|
2735
|
+
...implicitTags.tags
|
|
2736
|
+
],
|
|
2737
|
+
prerenderResumeDataCache,
|
|
2738
|
+
renderResumeDataCache,
|
|
2739
|
+
hmrRefreshHash: undefined
|
|
2740
|
+
};
|
|
2741
|
+
const finalAttemptRSCPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(finalServerPayloadPrerenderStore, getRSCPayload, tree, ctx, res.statusCode === 404);
|
|
2742
|
+
const serverDynamicTracking = (0, _dynamicrendering.createDynamicTrackingState)(isDebugDynamicAccesses);
|
|
2743
|
+
let serverIsDynamic = false;
|
|
2744
|
+
const finalServerPrerenderStore = prerenderStore = {
|
|
2745
|
+
type: 'prerender',
|
|
2746
|
+
phase: 'render',
|
|
2747
|
+
rootParams,
|
|
2748
|
+
fallbackRouteParams,
|
|
2749
|
+
implicitTags,
|
|
2750
|
+
renderSignal: finalServerRenderController.signal,
|
|
2751
|
+
controller: finalServerReactController,
|
|
2752
|
+
// All caches we could read must already be filled so no tracking is necessary
|
|
2753
|
+
cacheSignal: null,
|
|
2754
|
+
dynamicTracking: serverDynamicTracking,
|
|
2755
|
+
allowEmptyStaticShell,
|
|
2756
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
2757
|
+
expire: _constants1.INFINITE_CACHE,
|
|
2758
|
+
stale: _constants1.INFINITE_CACHE,
|
|
2759
|
+
tags: [
|
|
2760
|
+
...implicitTags.tags
|
|
2761
|
+
],
|
|
2762
|
+
prerenderResumeDataCache,
|
|
2763
|
+
renderResumeDataCache,
|
|
2764
|
+
hmrRefreshHash: undefined
|
|
2765
|
+
};
|
|
2766
|
+
let prerenderIsPending = true;
|
|
2767
|
+
const reactServerResult = reactServerPrerenderResult = await (0, _apprenderprerenderutils.createReactServerPrerenderResult)((0, _apprenderprerenderutils.prerenderAndAbortInSequentialTasks)(async ()=>{
|
|
2768
|
+
const pendingPrerenderResult = _workunitasyncstorageexternal.workUnitAsyncStorage.run(// The store to scope
|
|
2769
|
+
finalServerPrerenderStore, // The function to run
|
|
2770
|
+
ComponentMod.prerender, // ... the arguments for the function to run
|
|
2771
|
+
finalAttemptRSCPayload, clientModules, {
|
|
2772
|
+
filterStackFrame,
|
|
2773
|
+
onError: (err)=>{
|
|
2774
|
+
return serverComponentsErrorHandler(err);
|
|
2775
|
+
},
|
|
2776
|
+
signal: finalServerReactController.signal
|
|
2777
|
+
});
|
|
2778
|
+
// The listener to abort our own render controller must be added
|
|
2779
|
+
// after React has added its listener, to ensure that pending I/O
|
|
2780
|
+
// is not aborted/rejected too early.
|
|
2781
|
+
finalServerReactController.signal.addEventListener('abort', ()=>{
|
|
2782
|
+
finalServerRenderController.abort();
|
|
2783
|
+
}, {
|
|
2784
|
+
once: true
|
|
2785
|
+
});
|
|
2786
|
+
const prerenderResult = await pendingPrerenderResult;
|
|
2787
|
+
prerenderIsPending = false;
|
|
2788
|
+
return prerenderResult;
|
|
2789
|
+
}, ()=>{
|
|
2790
|
+
if (finalServerReactController.signal.aborted) {
|
|
2791
|
+
// If the server controller is already aborted we must have called something
|
|
2792
|
+
// that required aborting the prerender synchronously such as with new Date()
|
|
2793
|
+
serverIsDynamic = true;
|
|
2794
|
+
return;
|
|
2795
|
+
}
|
|
2796
|
+
if (prerenderIsPending) {
|
|
2797
|
+
// If prerenderIsPending then we have blocked for longer than a Task and we assume
|
|
2798
|
+
// there is something unfinished.
|
|
2799
|
+
serverIsDynamic = true;
|
|
2800
|
+
}
|
|
2801
|
+
finalServerReactController.abort();
|
|
2802
|
+
}));
|
|
2803
|
+
const clientDynamicTracking = (0, _dynamicrendering.createDynamicTrackingState)(isDebugDynamicAccesses);
|
|
2804
|
+
const finalClientReactController = new AbortController();
|
|
2805
|
+
const finalClientRenderController = new AbortController();
|
|
2806
|
+
const finalClientPrerenderStore = {
|
|
2807
|
+
type: 'prerender-client',
|
|
2808
|
+
phase: 'render',
|
|
2809
|
+
rootParams,
|
|
2810
|
+
fallbackRouteParams,
|
|
2811
|
+
implicitTags,
|
|
2812
|
+
renderSignal: finalClientRenderController.signal,
|
|
2813
|
+
controller: finalClientReactController,
|
|
2814
|
+
// No APIs require a cacheSignal through the workUnitStore during the HTML prerender
|
|
2815
|
+
cacheSignal: null,
|
|
2816
|
+
dynamicTracking: clientDynamicTracking,
|
|
2817
|
+
allowEmptyStaticShell,
|
|
2818
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
2819
|
+
expire: _constants1.INFINITE_CACHE,
|
|
2820
|
+
stale: _constants1.INFINITE_CACHE,
|
|
2821
|
+
tags: [
|
|
2822
|
+
...implicitTags.tags
|
|
2823
|
+
],
|
|
2824
|
+
prerenderResumeDataCache,
|
|
2825
|
+
renderResumeDataCache,
|
|
2826
|
+
hmrRefreshHash: undefined
|
|
2827
|
+
};
|
|
2828
|
+
let dynamicValidation = (0, _dynamicrendering.createDynamicValidationState)();
|
|
2829
|
+
const prerender = require('react-dom/static').prerender;
|
|
2830
|
+
let { prelude: unprocessedPrelude, postponed } = await (0, _apprenderprerenderutils.prerenderAndAbortInSequentialTasks)(()=>{
|
|
2831
|
+
const pendingFinalClientResult = _workunitasyncstorageexternal.workUnitAsyncStorage.run(finalClientPrerenderStore, prerender, // eslint-disable-next-line @next/internal/no-ambiguous-jsx
|
|
2832
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
2833
|
+
reactServerStream: reactServerResult.asUnclosingStream(),
|
|
2834
|
+
reactDebugStream: undefined,
|
|
2835
|
+
debugEndTime: undefined,
|
|
2836
|
+
preinitScripts: preinitScripts,
|
|
2837
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
2838
|
+
nonce: nonce,
|
|
2839
|
+
images: ctx.renderOpts.images
|
|
2840
|
+
}), {
|
|
2841
|
+
signal: finalClientReactController.signal,
|
|
2842
|
+
onError: (err, errorInfo)=>{
|
|
2843
|
+
if ((0, _dynamicrendering.isPrerenderInterruptedError)(err) || finalClientReactController.signal.aborted) {
|
|
2844
|
+
const componentStack = errorInfo.componentStack;
|
|
2845
|
+
if (typeof componentStack === 'string') {
|
|
2846
|
+
(0, _dynamicrendering.trackAllowedDynamicAccess)(workStore, componentStack, dynamicValidation, clientDynamicTracking);
|
|
2847
|
+
}
|
|
2848
|
+
return;
|
|
2849
|
+
}
|
|
2850
|
+
return htmlRendererErrorHandler(err, errorInfo);
|
|
2851
|
+
},
|
|
2852
|
+
onHeaders: (headers)=>{
|
|
2853
|
+
headers.forEach((value, key)=>{
|
|
2854
|
+
appendHeader(key, value);
|
|
2855
|
+
});
|
|
2856
|
+
},
|
|
2857
|
+
maxHeadersLength: reactMaxHeadersLength,
|
|
2858
|
+
bootstrapScripts: [
|
|
2859
|
+
bootstrapScript
|
|
2860
|
+
]
|
|
2861
|
+
});
|
|
2862
|
+
// The listener to abort our own render controller must be added
|
|
2863
|
+
// after React has added its listener, to ensure that pending I/O is
|
|
2864
|
+
// not aborted/rejected too early.
|
|
2865
|
+
finalClientReactController.signal.addEventListener('abort', ()=>{
|
|
2866
|
+
finalClientRenderController.abort();
|
|
2867
|
+
}, {
|
|
2868
|
+
once: true
|
|
2869
|
+
});
|
|
2870
|
+
return pendingFinalClientResult;
|
|
2871
|
+
}, ()=>{
|
|
2872
|
+
finalClientReactController.abort();
|
|
2873
|
+
});
|
|
2874
|
+
const { prelude, preludeIsEmpty } = await (0, _apprenderprerenderutils.processPrelude)(unprocessedPrelude);
|
|
2875
|
+
// If we've disabled throwing on empty static shell, then we don't need to
|
|
2876
|
+
// track any dynamic access that occurs above the suspense boundary because
|
|
2877
|
+
// we'll do so in the route shell.
|
|
2878
|
+
if (!allowEmptyStaticShell) {
|
|
2879
|
+
(0, _dynamicrendering.throwIfDisallowedDynamic)(workStore, preludeIsEmpty ? _dynamicrendering.PreludeState.Empty : _dynamicrendering.PreludeState.Full, dynamicValidation, serverDynamicTracking);
|
|
2880
|
+
}
|
|
2881
|
+
const getServerInsertedHTML = (0, _makegetserverinsertedhtml.makeGetServerInsertedHTML)({
|
|
2882
|
+
polyfills,
|
|
2883
|
+
renderServerInsertedHTML,
|
|
2884
|
+
serverCapturedErrors: allCapturedErrors,
|
|
2885
|
+
basePath,
|
|
2886
|
+
tracingMetadata: tracingMetadata
|
|
2887
|
+
});
|
|
2888
|
+
const flightData = await (0, _nodewebstreamshelper.streamToBuffer)(reactServerResult.asStream());
|
|
2889
|
+
metadata.flightData = flightData;
|
|
2890
|
+
metadata.segmentData = await collectSegmentData(flightData, finalServerPrerenderStore, ComponentMod, renderOpts);
|
|
2891
|
+
if (serverIsDynamic) {
|
|
2892
|
+
// Dynamic case
|
|
2893
|
+
// We will always need to perform a "resume" render of some kind when this route is accessed
|
|
2894
|
+
// because the RSC data itself is dynamic. We determine if there are any HTML holes or not
|
|
2895
|
+
// but generally this is a "partial" prerender in that there will be a per-request compute
|
|
2896
|
+
// concatenated to the static shell.
|
|
2897
|
+
if (postponed != null) {
|
|
2898
|
+
// Dynamic HTML case
|
|
2899
|
+
metadata.postponed = await (0, _postponedstate.getDynamicHTMLPostponedState)(postponed, preludeIsEmpty ? _postponedstate.DynamicHTMLPreludeState.Empty : _postponedstate.DynamicHTMLPreludeState.Full, fallbackRouteParams, resumeDataCache, cacheComponents);
|
|
2900
|
+
} else {
|
|
2901
|
+
// Dynamic Data case
|
|
2902
|
+
metadata.postponed = await (0, _postponedstate.getDynamicDataPostponedState)(resumeDataCache, cacheComponents);
|
|
2903
|
+
}
|
|
2904
|
+
reactServerResult.consume();
|
|
2905
|
+
return {
|
|
2906
|
+
digestErrorsMap: reactServerErrorsByDigest,
|
|
2907
|
+
ssrErrors: allCapturedErrors,
|
|
2908
|
+
stream: await (0, _nodewebstreamshelper.continueDynamicPrerender)(prelude, {
|
|
2909
|
+
getServerInsertedHTML,
|
|
2910
|
+
getServerInsertedMetadata
|
|
2911
|
+
}),
|
|
2912
|
+
dynamicAccess: (0, _dynamicrendering.consumeDynamicAccess)(serverDynamicTracking, clientDynamicTracking),
|
|
2913
|
+
// TODO: Should this include the SSR pass?
|
|
2914
|
+
collectedRevalidate: finalServerPrerenderStore.revalidate,
|
|
2915
|
+
collectedExpire: finalServerPrerenderStore.expire,
|
|
2916
|
+
collectedStale: selectStaleTime(finalServerPrerenderStore.stale),
|
|
2917
|
+
collectedTags: finalServerPrerenderStore.tags,
|
|
2918
|
+
renderResumeDataCache: (0, _resumedatacache.createRenderResumeDataCache)(resumeDataCache)
|
|
2919
|
+
};
|
|
2920
|
+
} else {
|
|
2921
|
+
// Static case
|
|
2922
|
+
// We will not perform resumption per request. The result can be served statically to the requestor
|
|
2923
|
+
// and if there was anything dynamic it will only be rendered in the browser.
|
|
2924
|
+
if (workStore.forceDynamic) {
|
|
2925
|
+
throw Object.defineProperty(new _staticgenerationbailout.StaticGenBailoutError('Invariant: a Page with `dynamic = "force-dynamic"` did not trigger the dynamic pathway. This is a bug in Next.js'), "__NEXT_ERROR_CODE", {
|
|
2926
|
+
value: "E598",
|
|
2927
|
+
enumerable: false,
|
|
2928
|
+
configurable: true
|
|
2929
|
+
});
|
|
2930
|
+
}
|
|
2931
|
+
let htmlStream = prelude;
|
|
2932
|
+
if (postponed != null) {
|
|
2933
|
+
// We postponed but nothing dynamic was used. We resume the render now and immediately abort it
|
|
2934
|
+
// so we can set all the postponed boundaries to client render mode before we store the HTML response
|
|
2935
|
+
const resume = require('react-dom/server').resume;
|
|
2936
|
+
// We don't actually want to render anything so we just pass a stream
|
|
2937
|
+
// that never resolves. The resume call is going to abort immediately anyway
|
|
2938
|
+
const foreverStream = new ReadableStream();
|
|
2939
|
+
const resumeStream = await resume(// eslint-disable-next-line @next/internal/no-ambiguous-jsx
|
|
2940
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
2941
|
+
reactServerStream: foreverStream,
|
|
2942
|
+
reactDebugStream: undefined,
|
|
2943
|
+
debugEndTime: undefined,
|
|
2944
|
+
preinitScripts: ()=>{},
|
|
2945
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
2946
|
+
nonce: nonce,
|
|
2947
|
+
images: ctx.renderOpts.images
|
|
2948
|
+
}), JSON.parse(JSON.stringify(postponed)), {
|
|
2949
|
+
signal: (0, _dynamicrendering.createRenderInBrowserAbortSignal)(),
|
|
2950
|
+
onError: htmlRendererErrorHandler,
|
|
2951
|
+
nonce
|
|
2952
|
+
});
|
|
2953
|
+
// First we write everything from the prerender, then we write everything from the aborted resume render
|
|
2954
|
+
htmlStream = (0, _nodewebstreamshelper.chainStreams)(prelude, resumeStream);
|
|
2955
|
+
}
|
|
2956
|
+
let finalStream;
|
|
2957
|
+
const hasFallbackRouteParams = fallbackRouteParams && fallbackRouteParams.size > 0;
|
|
2958
|
+
if (hasFallbackRouteParams) {
|
|
2959
|
+
// This is a "static fallback" prerender: although the page didn't
|
|
2960
|
+
// access any runtime params in a Server Component, it may have
|
|
2961
|
+
// accessed a runtime param in a client segment.
|
|
2962
|
+
//
|
|
2963
|
+
// TODO: If there were no client segments, we can use the fully static
|
|
2964
|
+
// path instead.
|
|
2965
|
+
//
|
|
2966
|
+
// Rather than use a dynamic server resume to fill in the params,
|
|
2967
|
+
// we can rely on the client to parse the params from the URL and use
|
|
2968
|
+
// that to hydrate the page.
|
|
2969
|
+
//
|
|
2970
|
+
// Send an empty InitialRSCPayload to the server component renderer
|
|
2971
|
+
// The data will be fetched by the client instead.
|
|
2972
|
+
// TODO: In the future, rather than defer the entire hydration payload
|
|
2973
|
+
// to be fetched by the client, we should only defer the client
|
|
2974
|
+
// segments, since those are the only ones whose data is not complete.
|
|
2975
|
+
const emptyReactServerResult = await (0, _apprenderprerenderutils.createReactServerPrerenderResultFromRender)(ComponentMod.renderToReadableStream([], clientModules, {
|
|
2976
|
+
filterStackFrame,
|
|
2977
|
+
onError: serverComponentsErrorHandler
|
|
2978
|
+
}));
|
|
2979
|
+
finalStream = await (0, _nodewebstreamshelper.continueStaticFallbackPrerender)(htmlStream, {
|
|
2980
|
+
inlinedDataStream: (0, _useflightresponse.createInlinedDataReadableStream)(emptyReactServerResult.consumeAsStream(), nonce, formState),
|
|
2981
|
+
getServerInsertedHTML,
|
|
2982
|
+
getServerInsertedMetadata,
|
|
2983
|
+
isBuildTimePrerendering: ctx.workStore.isBuildTimePrerendering === true,
|
|
2984
|
+
buildId: ctx.workStore.buildId
|
|
2985
|
+
});
|
|
2986
|
+
} else {
|
|
2987
|
+
// Normal static prerender case, no fallback param handling needed
|
|
2988
|
+
finalStream = await (0, _nodewebstreamshelper.continueStaticPrerender)(htmlStream, {
|
|
2989
|
+
inlinedDataStream: (0, _useflightresponse.createInlinedDataReadableStream)(reactServerResult.consumeAsStream(), nonce, formState),
|
|
2990
|
+
getServerInsertedHTML,
|
|
2991
|
+
getServerInsertedMetadata,
|
|
2992
|
+
isBuildTimePrerendering: ctx.workStore.isBuildTimePrerendering === true,
|
|
2993
|
+
buildId: ctx.workStore.buildId
|
|
2994
|
+
});
|
|
2995
|
+
}
|
|
2996
|
+
return {
|
|
2997
|
+
digestErrorsMap: reactServerErrorsByDigest,
|
|
2998
|
+
ssrErrors: allCapturedErrors,
|
|
2999
|
+
stream: finalStream,
|
|
3000
|
+
dynamicAccess: (0, _dynamicrendering.consumeDynamicAccess)(serverDynamicTracking, clientDynamicTracking),
|
|
3001
|
+
// TODO: Should this include the SSR pass?
|
|
3002
|
+
collectedRevalidate: finalServerPrerenderStore.revalidate,
|
|
3003
|
+
collectedExpire: finalServerPrerenderStore.expire,
|
|
3004
|
+
collectedStale: selectStaleTime(finalServerPrerenderStore.stale),
|
|
3005
|
+
collectedTags: finalServerPrerenderStore.tags,
|
|
3006
|
+
renderResumeDataCache: (0, _resumedatacache.createRenderResumeDataCache)(resumeDataCache)
|
|
3007
|
+
};
|
|
3008
|
+
}
|
|
3009
|
+
} else if (experimental.isRoutePPREnabled) {
|
|
3010
|
+
// We're statically generating with PPR and need to do dynamic tracking
|
|
3011
|
+
let dynamicTracking = (0, _dynamicrendering.createDynamicTrackingState)(isDebugDynamicAccesses);
|
|
3012
|
+
const prerenderResumeDataCache = (0, _resumedatacache.createPrerenderResumeDataCache)();
|
|
3013
|
+
const reactServerPrerenderStore = prerenderStore = {
|
|
3014
|
+
type: 'prerender-ppr',
|
|
3015
|
+
phase: 'render',
|
|
3016
|
+
rootParams,
|
|
3017
|
+
fallbackRouteParams,
|
|
3018
|
+
implicitTags,
|
|
3019
|
+
dynamicTracking,
|
|
3020
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
3021
|
+
expire: _constants1.INFINITE_CACHE,
|
|
3022
|
+
stale: _constants1.INFINITE_CACHE,
|
|
3023
|
+
tags: [
|
|
3024
|
+
...implicitTags.tags
|
|
3025
|
+
],
|
|
3026
|
+
prerenderResumeDataCache
|
|
3027
|
+
};
|
|
3028
|
+
const RSCPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(reactServerPrerenderStore, getRSCPayload, tree, ctx, res.statusCode === 404);
|
|
3029
|
+
const reactServerResult = reactServerPrerenderResult = await (0, _apprenderprerenderutils.createReactServerPrerenderResultFromRender)(_workunitasyncstorageexternal.workUnitAsyncStorage.run(reactServerPrerenderStore, ComponentMod.renderToReadableStream, // ... the arguments for the function to run
|
|
3030
|
+
RSCPayload, clientModules, {
|
|
3031
|
+
filterStackFrame,
|
|
3032
|
+
onError: serverComponentsErrorHandler
|
|
3033
|
+
}));
|
|
3034
|
+
const ssrPrerenderStore = {
|
|
3035
|
+
type: 'prerender-ppr',
|
|
3036
|
+
phase: 'render',
|
|
3037
|
+
rootParams,
|
|
3038
|
+
fallbackRouteParams,
|
|
3039
|
+
implicitTags,
|
|
3040
|
+
dynamicTracking,
|
|
3041
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
3042
|
+
expire: _constants1.INFINITE_CACHE,
|
|
3043
|
+
stale: _constants1.INFINITE_CACHE,
|
|
3044
|
+
tags: [
|
|
3045
|
+
...implicitTags.tags
|
|
3046
|
+
],
|
|
3047
|
+
prerenderResumeDataCache
|
|
3048
|
+
};
|
|
3049
|
+
const prerender = require('react-dom/static').prerender;
|
|
3050
|
+
const { prelude: unprocessedPrelude, postponed } = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(ssrPrerenderStore, prerender, // eslint-disable-next-line @next/internal/no-ambiguous-jsx
|
|
3051
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
3052
|
+
reactServerStream: reactServerResult.asUnclosingStream(),
|
|
3053
|
+
reactDebugStream: undefined,
|
|
3054
|
+
debugEndTime: undefined,
|
|
3055
|
+
preinitScripts: preinitScripts,
|
|
3056
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
3057
|
+
nonce: nonce,
|
|
3058
|
+
images: ctx.renderOpts.images
|
|
3059
|
+
}), {
|
|
3060
|
+
onError: htmlRendererErrorHandler,
|
|
3061
|
+
onHeaders: (headers)=>{
|
|
3062
|
+
headers.forEach((value, key)=>{
|
|
3063
|
+
appendHeader(key, value);
|
|
3064
|
+
});
|
|
3065
|
+
},
|
|
3066
|
+
maxHeadersLength: reactMaxHeadersLength,
|
|
3067
|
+
bootstrapScripts: [
|
|
3068
|
+
bootstrapScript
|
|
3069
|
+
]
|
|
3070
|
+
});
|
|
3071
|
+
const getServerInsertedHTML = (0, _makegetserverinsertedhtml.makeGetServerInsertedHTML)({
|
|
3072
|
+
polyfills,
|
|
3073
|
+
renderServerInsertedHTML,
|
|
3074
|
+
serverCapturedErrors: allCapturedErrors,
|
|
3075
|
+
basePath,
|
|
3076
|
+
tracingMetadata: tracingMetadata
|
|
3077
|
+
});
|
|
3078
|
+
// After awaiting here we've waited for the entire RSC render to complete. Crucially this means
|
|
3079
|
+
// that when we detect whether we've used dynamic APIs below we know we'll have picked up even
|
|
3080
|
+
// parts of the React Server render that might not be used in the SSR render.
|
|
3081
|
+
const flightData = await (0, _nodewebstreamshelper.streamToBuffer)(reactServerResult.asStream());
|
|
3082
|
+
if (shouldGenerateStaticFlightData(workStore)) {
|
|
3083
|
+
metadata.flightData = flightData;
|
|
3084
|
+
metadata.segmentData = await collectSegmentData(flightData, ssrPrerenderStore, ComponentMod, renderOpts);
|
|
3085
|
+
}
|
|
3086
|
+
const { prelude, preludeIsEmpty } = await (0, _apprenderprerenderutils.processPrelude)(unprocessedPrelude);
|
|
3087
|
+
/**
|
|
3088
|
+
* When prerendering there are three outcomes to consider
|
|
3089
|
+
*
|
|
3090
|
+
* Dynamic HTML: The prerender has dynamic holes (caused by using Next.js Dynamic Rendering APIs)
|
|
3091
|
+
* We will need to resume this result when requests are handled and we don't include
|
|
3092
|
+
* any server inserted HTML or inlined flight data in the static HTML
|
|
3093
|
+
*
|
|
3094
|
+
* Dynamic Data: The prerender has no dynamic holes but dynamic APIs were used. We will not
|
|
3095
|
+
* resume this render when requests are handled but we will generate new inlined
|
|
3096
|
+
* flight data since it is dynamic and differences may end up reconciling on the client
|
|
3097
|
+
*
|
|
3098
|
+
* Static: The prerender has no dynamic holes and no dynamic APIs were used. We statically encode
|
|
3099
|
+
* all server inserted HTML and flight data
|
|
3100
|
+
*/ // First we check if we have any dynamic holes in our HTML prerender
|
|
3101
|
+
if ((0, _dynamicrendering.accessedDynamicData)(dynamicTracking.dynamicAccesses)) {
|
|
3102
|
+
if (postponed != null) {
|
|
3103
|
+
// Dynamic HTML case.
|
|
3104
|
+
metadata.postponed = await (0, _postponedstate.getDynamicHTMLPostponedState)(postponed, preludeIsEmpty ? _postponedstate.DynamicHTMLPreludeState.Empty : _postponedstate.DynamicHTMLPreludeState.Full, fallbackRouteParams, prerenderResumeDataCache, cacheComponents);
|
|
3105
|
+
} else {
|
|
3106
|
+
// Dynamic Data case.
|
|
3107
|
+
metadata.postponed = await (0, _postponedstate.getDynamicDataPostponedState)(prerenderResumeDataCache, cacheComponents);
|
|
3108
|
+
}
|
|
3109
|
+
// Regardless of whether this is the Dynamic HTML or Dynamic Data case we need to ensure we include
|
|
3110
|
+
// server inserted html in the static response because the html that is part of the prerender may depend on it
|
|
3111
|
+
// It is possible in the set of stream transforms for Dynamic HTML vs Dynamic Data may differ but currently both states
|
|
3112
|
+
// require the same set so we unify the code path here
|
|
3113
|
+
reactServerResult.consume();
|
|
3114
|
+
return {
|
|
3115
|
+
digestErrorsMap: reactServerErrorsByDigest,
|
|
3116
|
+
ssrErrors: allCapturedErrors,
|
|
3117
|
+
stream: await (0, _nodewebstreamshelper.continueDynamicPrerender)(prelude, {
|
|
3118
|
+
getServerInsertedHTML,
|
|
3119
|
+
getServerInsertedMetadata
|
|
3120
|
+
}),
|
|
3121
|
+
dynamicAccess: dynamicTracking.dynamicAccesses,
|
|
3122
|
+
// TODO: Should this include the SSR pass?
|
|
3123
|
+
collectedRevalidate: reactServerPrerenderStore.revalidate,
|
|
3124
|
+
collectedExpire: reactServerPrerenderStore.expire,
|
|
3125
|
+
collectedStale: selectStaleTime(reactServerPrerenderStore.stale),
|
|
3126
|
+
collectedTags: reactServerPrerenderStore.tags
|
|
3127
|
+
};
|
|
3128
|
+
} else if (fallbackRouteParams && fallbackRouteParams.size > 0) {
|
|
3129
|
+
// Rendering the fallback case.
|
|
3130
|
+
metadata.postponed = await (0, _postponedstate.getDynamicDataPostponedState)(prerenderResumeDataCache, cacheComponents);
|
|
3131
|
+
return {
|
|
3132
|
+
digestErrorsMap: reactServerErrorsByDigest,
|
|
3133
|
+
ssrErrors: allCapturedErrors,
|
|
3134
|
+
stream: await (0, _nodewebstreamshelper.continueDynamicPrerender)(prelude, {
|
|
3135
|
+
getServerInsertedHTML,
|
|
3136
|
+
getServerInsertedMetadata
|
|
3137
|
+
}),
|
|
3138
|
+
dynamicAccess: dynamicTracking.dynamicAccesses,
|
|
3139
|
+
// TODO: Should this include the SSR pass?
|
|
3140
|
+
collectedRevalidate: reactServerPrerenderStore.revalidate,
|
|
3141
|
+
collectedExpire: reactServerPrerenderStore.expire,
|
|
3142
|
+
collectedStale: selectStaleTime(reactServerPrerenderStore.stale),
|
|
3143
|
+
collectedTags: reactServerPrerenderStore.tags
|
|
3144
|
+
};
|
|
3145
|
+
} else {
|
|
3146
|
+
// Static case
|
|
3147
|
+
// We still have not used any dynamic APIs. At this point we can produce an entirely static prerender response
|
|
3148
|
+
if (workStore.forceDynamic) {
|
|
3149
|
+
throw Object.defineProperty(new _staticgenerationbailout.StaticGenBailoutError('Invariant: a Page with `dynamic = "force-dynamic"` did not trigger the dynamic pathway. This is a bug in Next.js'), "__NEXT_ERROR_CODE", {
|
|
3150
|
+
value: "E598",
|
|
3151
|
+
enumerable: false,
|
|
3152
|
+
configurable: true
|
|
3153
|
+
});
|
|
3154
|
+
}
|
|
3155
|
+
let htmlStream = prelude;
|
|
3156
|
+
if (postponed != null) {
|
|
3157
|
+
// We postponed but nothing dynamic was used. We resume the render now and immediately abort it
|
|
3158
|
+
// so we can set all the postponed boundaries to client render mode before we store the HTML response
|
|
3159
|
+
const resume = require('react-dom/server').resume;
|
|
3160
|
+
// We don't actually want to render anything so we just pass a stream
|
|
3161
|
+
// that never resolves. The resume call is going to abort immediately anyway
|
|
3162
|
+
const foreverStream = new ReadableStream();
|
|
3163
|
+
const resumeStream = await resume(// eslint-disable-next-line @next/internal/no-ambiguous-jsx
|
|
3164
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
3165
|
+
reactServerStream: foreverStream,
|
|
3166
|
+
reactDebugStream: undefined,
|
|
3167
|
+
debugEndTime: undefined,
|
|
3168
|
+
preinitScripts: ()=>{},
|
|
3169
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
3170
|
+
nonce: nonce,
|
|
3171
|
+
images: ctx.renderOpts.images
|
|
3172
|
+
}), JSON.parse(JSON.stringify(postponed)), {
|
|
3173
|
+
signal: (0, _dynamicrendering.createRenderInBrowserAbortSignal)(),
|
|
3174
|
+
onError: htmlRendererErrorHandler,
|
|
3175
|
+
nonce
|
|
3176
|
+
});
|
|
3177
|
+
// First we write everything from the prerender, then we write everything from the aborted resume render
|
|
3178
|
+
htmlStream = (0, _nodewebstreamshelper.chainStreams)(prelude, resumeStream);
|
|
3179
|
+
}
|
|
3180
|
+
return {
|
|
3181
|
+
digestErrorsMap: reactServerErrorsByDigest,
|
|
3182
|
+
ssrErrors: allCapturedErrors,
|
|
3183
|
+
stream: await (0, _nodewebstreamshelper.continueStaticPrerender)(htmlStream, {
|
|
3184
|
+
inlinedDataStream: (0, _useflightresponse.createInlinedDataReadableStream)(reactServerResult.consumeAsStream(), nonce, formState),
|
|
3185
|
+
getServerInsertedHTML,
|
|
3186
|
+
getServerInsertedMetadata,
|
|
3187
|
+
isBuildTimePrerendering: ctx.workStore.isBuildTimePrerendering === true,
|
|
3188
|
+
buildId: ctx.workStore.buildId
|
|
3189
|
+
}),
|
|
3190
|
+
dynamicAccess: dynamicTracking.dynamicAccesses,
|
|
3191
|
+
// TODO: Should this include the SSR pass?
|
|
3192
|
+
collectedRevalidate: reactServerPrerenderStore.revalidate,
|
|
3193
|
+
collectedExpire: reactServerPrerenderStore.expire,
|
|
3194
|
+
collectedStale: selectStaleTime(reactServerPrerenderStore.stale),
|
|
3195
|
+
collectedTags: reactServerPrerenderStore.tags
|
|
3196
|
+
};
|
|
3197
|
+
}
|
|
3198
|
+
} else {
|
|
3199
|
+
const prerenderLegacyStore = prerenderStore = {
|
|
3200
|
+
type: 'prerender-legacy',
|
|
3201
|
+
phase: 'render',
|
|
3202
|
+
rootParams,
|
|
3203
|
+
implicitTags,
|
|
3204
|
+
revalidate: _constants1.INFINITE_CACHE,
|
|
3205
|
+
expire: _constants1.INFINITE_CACHE,
|
|
3206
|
+
stale: _constants1.INFINITE_CACHE,
|
|
3207
|
+
tags: [
|
|
3208
|
+
...implicitTags.tags
|
|
3209
|
+
]
|
|
3210
|
+
};
|
|
3211
|
+
// This is a regular static generation. We don't do dynamic tracking because we rely on
|
|
3212
|
+
// the old-school dynamic error handling to bail out of static generation
|
|
3213
|
+
const RSCPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(prerenderLegacyStore, getRSCPayload, tree, ctx, res.statusCode === 404);
|
|
3214
|
+
const reactServerResult = reactServerPrerenderResult = await (0, _apprenderprerenderutils.createReactServerPrerenderResultFromRender)(_workunitasyncstorageexternal.workUnitAsyncStorage.run(prerenderLegacyStore, ComponentMod.renderToReadableStream, RSCPayload, clientModules, {
|
|
3215
|
+
filterStackFrame,
|
|
3216
|
+
onError: serverComponentsErrorHandler
|
|
3217
|
+
}));
|
|
3218
|
+
const renderToReadableStream = require('react-dom/server').renderToReadableStream;
|
|
3219
|
+
const htmlStream = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(prerenderLegacyStore, renderToReadableStream, // eslint-disable-next-line @next/internal/no-ambiguous-jsx
|
|
3220
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(App, {
|
|
3221
|
+
reactServerStream: reactServerResult.asUnclosingStream(),
|
|
3222
|
+
reactDebugStream: undefined,
|
|
3223
|
+
debugEndTime: undefined,
|
|
3224
|
+
preinitScripts: preinitScripts,
|
|
3225
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
3226
|
+
nonce: nonce,
|
|
3227
|
+
images: ctx.renderOpts.images
|
|
3228
|
+
}), {
|
|
3229
|
+
onError: htmlRendererErrorHandler,
|
|
3230
|
+
nonce,
|
|
3231
|
+
bootstrapScripts: [
|
|
3232
|
+
bootstrapScript
|
|
3233
|
+
]
|
|
3234
|
+
});
|
|
3235
|
+
if (shouldGenerateStaticFlightData(workStore)) {
|
|
3236
|
+
const flightData = await (0, _nodewebstreamshelper.streamToBuffer)(reactServerResult.asStream());
|
|
3237
|
+
metadata.flightData = flightData;
|
|
3238
|
+
metadata.segmentData = await collectSegmentData(flightData, prerenderLegacyStore, ComponentMod, renderOpts);
|
|
3239
|
+
}
|
|
3240
|
+
const getServerInsertedHTML = (0, _makegetserverinsertedhtml.makeGetServerInsertedHTML)({
|
|
3241
|
+
polyfills,
|
|
3242
|
+
renderServerInsertedHTML,
|
|
3243
|
+
serverCapturedErrors: allCapturedErrors,
|
|
3244
|
+
basePath,
|
|
3245
|
+
tracingMetadata: tracingMetadata
|
|
3246
|
+
});
|
|
3247
|
+
return {
|
|
3248
|
+
digestErrorsMap: reactServerErrorsByDigest,
|
|
3249
|
+
ssrErrors: allCapturedErrors,
|
|
3250
|
+
stream: await (0, _nodewebstreamshelper.continueFizzStream)(htmlStream, {
|
|
3251
|
+
inlinedDataStream: (0, _useflightresponse.createInlinedDataReadableStream)(reactServerResult.consumeAsStream(), nonce, formState),
|
|
3252
|
+
isStaticGeneration: true,
|
|
3253
|
+
isBuildTimePrerendering: ctx.workStore.isBuildTimePrerendering === true,
|
|
3254
|
+
buildId: ctx.workStore.buildId,
|
|
3255
|
+
getServerInsertedHTML,
|
|
3256
|
+
getServerInsertedMetadata
|
|
3257
|
+
}),
|
|
3258
|
+
// TODO: Should this include the SSR pass?
|
|
3259
|
+
collectedRevalidate: prerenderLegacyStore.revalidate,
|
|
3260
|
+
collectedExpire: prerenderLegacyStore.expire,
|
|
3261
|
+
collectedStale: selectStaleTime(prerenderLegacyStore.stale),
|
|
3262
|
+
collectedTags: prerenderLegacyStore.tags
|
|
3263
|
+
};
|
|
3264
|
+
}
|
|
3265
|
+
} catch (err) {
|
|
3266
|
+
if ((0, _staticgenerationbailout.isStaticGenBailoutError)(err) || typeof err === 'object' && err !== null && 'message' in err && typeof err.message === 'string' && err.message.includes('https://nextjs.org/docs/advanced-features/static-html-export')) {
|
|
3267
|
+
// Ensure that "next dev" prints the red error overlay
|
|
3268
|
+
throw err;
|
|
3269
|
+
}
|
|
3270
|
+
// If this is a static generation error, we need to throw it so that it
|
|
3271
|
+
// can be handled by the caller if we're in static generation mode.
|
|
3272
|
+
if ((0, _hooksservercontext.isDynamicServerError)(err)) {
|
|
3273
|
+
throw err;
|
|
3274
|
+
}
|
|
3275
|
+
// If a bailout made it to this point, it means it wasn't wrapped inside
|
|
3276
|
+
// a suspense boundary.
|
|
3277
|
+
const shouldBailoutToCSR = (0, _bailouttocsr.isBailoutToCSRError)(err);
|
|
3278
|
+
if (shouldBailoutToCSR) {
|
|
3279
|
+
const stack = (0, _formatservererror.getStackWithoutErrorMessage)(err);
|
|
3280
|
+
(0, _log.error)(`${err.reason} should be wrapped in a suspense boundary at page "${pagePath}". Read more: https://nextjs.org/docs/messages/missing-suspense-with-csr-bailout\n${stack}`);
|
|
3281
|
+
throw err;
|
|
3282
|
+
}
|
|
3283
|
+
// If we errored when we did not have an RSC stream to read from. This is
|
|
3284
|
+
// not just a render error, we need to throw early.
|
|
3285
|
+
if (reactServerPrerenderResult === null) {
|
|
3286
|
+
throw err;
|
|
3287
|
+
}
|
|
3288
|
+
let errorType;
|
|
3289
|
+
if ((0, _httpaccessfallback.isHTTPAccessFallbackError)(err)) {
|
|
3290
|
+
res.statusCode = (0, _httpaccessfallback.getAccessFallbackHTTPStatus)(err);
|
|
3291
|
+
metadata.statusCode = res.statusCode;
|
|
3292
|
+
errorType = (0, _httpaccessfallback.getAccessFallbackErrorTypeByStatus)(res.statusCode);
|
|
3293
|
+
} else if ((0, _redirecterror.isRedirectError)(err)) {
|
|
3294
|
+
errorType = 'redirect';
|
|
3295
|
+
res.statusCode = (0, _redirect.getRedirectStatusCodeFromError)(err);
|
|
3296
|
+
metadata.statusCode = res.statusCode;
|
|
3297
|
+
const redirectUrl = (0, _addpathprefix.addPathPrefix)((0, _redirect.getURLFromRedirectError)(err), basePath);
|
|
3298
|
+
setHeader('location', redirectUrl);
|
|
3299
|
+
} else if (!shouldBailoutToCSR) {
|
|
3300
|
+
res.statusCode = 500;
|
|
3301
|
+
metadata.statusCode = res.statusCode;
|
|
3302
|
+
}
|
|
3303
|
+
const [errorPreinitScripts, errorBootstrapScript] = (0, _requiredscripts.getRequiredScripts)(buildManifest, assetPrefix, crossOrigin, subresourceIntegrityManifest, (0, _getassetquerystring.getAssetQueryString)(ctx, false), nonce, '/_not-found/page');
|
|
3304
|
+
const prerenderLegacyStore = prerenderStore = {
|
|
3305
|
+
type: 'prerender-legacy',
|
|
3306
|
+
phase: 'render',
|
|
3307
|
+
rootParams,
|
|
3308
|
+
implicitTags: implicitTags,
|
|
3309
|
+
revalidate: typeof (prerenderStore == null ? void 0 : prerenderStore.revalidate) !== 'undefined' ? prerenderStore.revalidate : _constants1.INFINITE_CACHE,
|
|
3310
|
+
expire: typeof (prerenderStore == null ? void 0 : prerenderStore.expire) !== 'undefined' ? prerenderStore.expire : _constants1.INFINITE_CACHE,
|
|
3311
|
+
stale: typeof (prerenderStore == null ? void 0 : prerenderStore.stale) !== 'undefined' ? prerenderStore.stale : _constants1.INFINITE_CACHE,
|
|
3312
|
+
tags: [
|
|
3313
|
+
...(prerenderStore == null ? void 0 : prerenderStore.tags) || implicitTags.tags
|
|
3314
|
+
]
|
|
3315
|
+
};
|
|
3316
|
+
const errorRSCPayload = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(prerenderLegacyStore, getErrorRSCPayload, tree, ctx, reactServerErrorsByDigest.has(err.digest) ? undefined : err, errorType);
|
|
3317
|
+
const errorServerStream = _workunitasyncstorageexternal.workUnitAsyncStorage.run(prerenderLegacyStore, ComponentMod.renderToReadableStream, errorRSCPayload, clientModules, {
|
|
3318
|
+
filterStackFrame,
|
|
3319
|
+
onError: serverComponentsErrorHandler
|
|
3320
|
+
});
|
|
3321
|
+
try {
|
|
3322
|
+
// TODO we should use the same prerender semantics that we initially rendered
|
|
3323
|
+
// with in this case too. The only reason why this is ok atm is because it's essentially
|
|
3324
|
+
// an empty page and no user code runs.
|
|
3325
|
+
const fizzStream = await _workunitasyncstorageexternal.workUnitAsyncStorage.run(prerenderLegacyStore, _nodewebstreamshelper.renderToInitialFizzStream, {
|
|
3326
|
+
ReactDOMServer: require('react-dom/server'),
|
|
3327
|
+
element: // eslint-disable-next-line @next/internal/no-ambiguous-jsx
|
|
3328
|
+
/*#__PURE__*/ (0, _jsxruntime.jsx)(ErrorApp, {
|
|
3329
|
+
reactServerStream: errorServerStream,
|
|
3330
|
+
ServerInsertedHTMLProvider: ServerInsertedHTMLProvider,
|
|
3331
|
+
preinitScripts: errorPreinitScripts,
|
|
3332
|
+
nonce: nonce,
|
|
3333
|
+
images: ctx.renderOpts.images
|
|
3334
|
+
}),
|
|
3335
|
+
streamOptions: {
|
|
3336
|
+
nonce,
|
|
3337
|
+
// Include hydration scripts in the HTML
|
|
3338
|
+
bootstrapScripts: [
|
|
3339
|
+
errorBootstrapScript
|
|
3340
|
+
],
|
|
3341
|
+
formState
|
|
3342
|
+
}
|
|
3343
|
+
});
|
|
3344
|
+
if (shouldGenerateStaticFlightData(workStore)) {
|
|
3345
|
+
const flightData = await (0, _nodewebstreamshelper.streamToBuffer)(reactServerPrerenderResult.asStream());
|
|
3346
|
+
metadata.flightData = flightData;
|
|
3347
|
+
metadata.segmentData = await collectSegmentData(flightData, prerenderLegacyStore, ComponentMod, renderOpts);
|
|
3348
|
+
}
|
|
3349
|
+
// This is intentionally using the readable datastream from the main
|
|
3350
|
+
// render rather than the flight data from the error page render
|
|
3351
|
+
const flightStream = reactServerPrerenderResult.consumeAsStream();
|
|
3352
|
+
return {
|
|
3353
|
+
// Returning the error that was thrown so it can be used to handle
|
|
3354
|
+
// the response in the caller.
|
|
3355
|
+
digestErrorsMap: reactServerErrorsByDigest,
|
|
3356
|
+
ssrErrors: allCapturedErrors,
|
|
3357
|
+
stream: await (0, _nodewebstreamshelper.continueFizzStream)(fizzStream, {
|
|
3358
|
+
inlinedDataStream: (0, _useflightresponse.createInlinedDataReadableStream)(flightStream, nonce, formState),
|
|
3359
|
+
isStaticGeneration: true,
|
|
3360
|
+
isBuildTimePrerendering: ctx.workStore.isBuildTimePrerendering === true,
|
|
3361
|
+
buildId: ctx.workStore.buildId,
|
|
3362
|
+
getServerInsertedHTML: (0, _makegetserverinsertedhtml.makeGetServerInsertedHTML)({
|
|
3363
|
+
polyfills,
|
|
3364
|
+
renderServerInsertedHTML,
|
|
3365
|
+
serverCapturedErrors: [],
|
|
3366
|
+
basePath,
|
|
3367
|
+
tracingMetadata: tracingMetadata
|
|
3368
|
+
}),
|
|
3369
|
+
getServerInsertedMetadata,
|
|
3370
|
+
validateRootLayout: dev
|
|
3371
|
+
}),
|
|
3372
|
+
dynamicAccess: null,
|
|
3373
|
+
collectedRevalidate: prerenderStore !== null ? prerenderStore.revalidate : _constants1.INFINITE_CACHE,
|
|
3374
|
+
collectedExpire: prerenderStore !== null ? prerenderStore.expire : _constants1.INFINITE_CACHE,
|
|
3375
|
+
collectedStale: selectStaleTime(prerenderStore !== null ? prerenderStore.stale : _constants1.INFINITE_CACHE),
|
|
3376
|
+
collectedTags: prerenderStore !== null ? prerenderStore.tags : null
|
|
3377
|
+
};
|
|
3378
|
+
} catch (finalErr) {
|
|
3379
|
+
if (process.env.NODE_ENV === 'development' && (0, _httpaccessfallback.isHTTPAccessFallbackError)(finalErr)) {
|
|
3380
|
+
const { bailOnRootNotFound } = require('../../client/components/dev-root-http-access-fallback-boundary');
|
|
3381
|
+
bailOnRootNotFound();
|
|
3382
|
+
}
|
|
3383
|
+
throw finalErr;
|
|
3384
|
+
}
|
|
3385
|
+
}
|
|
3386
|
+
}
|
|
3387
|
+
const getGlobalErrorStyles = async (tree, ctx)=>{
|
|
3388
|
+
const { modules: { 'global-error': globalErrorModule } } = (0, _parseloadertree.parseLoaderTree)(tree);
|
|
3389
|
+
const { componentMod: { createElement } } = ctx;
|
|
3390
|
+
const GlobalErrorComponent = ctx.componentMod.GlobalError;
|
|
3391
|
+
let globalErrorStyles;
|
|
3392
|
+
if (globalErrorModule) {
|
|
3393
|
+
const [, styles] = await (0, _createcomponentstylesandscripts.createComponentStylesAndScripts)({
|
|
3394
|
+
ctx,
|
|
3395
|
+
filePath: globalErrorModule[1],
|
|
3396
|
+
getComponent: globalErrorModule[0],
|
|
3397
|
+
injectedCSS: new Set(),
|
|
3398
|
+
injectedJS: new Set()
|
|
3399
|
+
});
|
|
3400
|
+
globalErrorStyles = styles;
|
|
3401
|
+
}
|
|
3402
|
+
if (ctx.renderOpts.dev) {
|
|
3403
|
+
const dir = (process.env.NEXT_RUNTIME === 'edge' ? process.env.__NEXT_EDGE_PROJECT_DIR : ctx.renderOpts.dir) || '';
|
|
3404
|
+
const globalErrorModulePath = (0, _segmentexplorerpath.normalizeConventionFilePath)(dir, globalErrorModule == null ? void 0 : globalErrorModule[1]);
|
|
3405
|
+
if (globalErrorModulePath) {
|
|
3406
|
+
const SegmentViewNode = ctx.componentMod.SegmentViewNode;
|
|
3407
|
+
globalErrorStyles = // This will be rendered next to GlobalError component under ErrorBoundary,
|
|
3408
|
+
// it requires a key to avoid React warning about duplicate keys.
|
|
3409
|
+
createElement(SegmentViewNode, {
|
|
3410
|
+
key: 'ge-svn',
|
|
3411
|
+
type: 'global-error',
|
|
3412
|
+
pagePath: globalErrorModulePath
|
|
3413
|
+
}, globalErrorStyles);
|
|
3414
|
+
}
|
|
3415
|
+
}
|
|
3416
|
+
return {
|
|
3417
|
+
GlobalError: GlobalErrorComponent,
|
|
3418
|
+
styles: globalErrorStyles
|
|
3419
|
+
};
|
|
3420
|
+
};
|
|
3421
|
+
function createSelectStaleTime(experimental) {
|
|
3422
|
+
return (stale)=>{
|
|
3423
|
+
var _experimental_staleTimes;
|
|
3424
|
+
return stale === _constants1.INFINITE_CACHE && typeof ((_experimental_staleTimes = experimental.staleTimes) == null ? void 0 : _experimental_staleTimes.static) === 'number' ? experimental.staleTimes.static : stale;
|
|
3425
|
+
};
|
|
3426
|
+
}
|
|
3427
|
+
async function collectSegmentData(fullPageDataBuffer, prerenderStore, ComponentMod, renderOpts) {
|
|
3428
|
+
// Per-segment prefetch data
|
|
3429
|
+
//
|
|
3430
|
+
// All of the segments for a page are generated simultaneously, including
|
|
3431
|
+
// during revalidations. This is to ensure consistency, because it's
|
|
3432
|
+
// possible for a mismatch between a layout and page segment can cause the
|
|
3433
|
+
// client to error during rendering. We want to preserve the ability of the
|
|
3434
|
+
// client to recover from such a mismatch by re-requesting all the segments
|
|
3435
|
+
// to get a consistent view of the page.
|
|
3436
|
+
//
|
|
3437
|
+
// For performance, we reuse the Flight output that was created when
|
|
3438
|
+
// generating the initial page HTML. The Flight stream for the whole page is
|
|
3439
|
+
// decomposed into a separate stream per segment.
|
|
3440
|
+
const { clientModules, edgeRscModuleMapping, rscModuleMapping } = (0, _manifestssingleton.getClientReferenceManifest)();
|
|
3441
|
+
// Manifest passed to the Flight client for reading the full-page Flight
|
|
3442
|
+
// stream. Based off similar code in use-cache-wrapper.ts.
|
|
3443
|
+
const isEdgeRuntime = process.env.NEXT_RUNTIME === 'edge';
|
|
3444
|
+
const serverConsumerManifest = {
|
|
3445
|
+
// moduleLoading must be null because we don't want to trigger preloads of ClientReferences
|
|
3446
|
+
// to be added to the consumer. Instead, we'll wait for any ClientReference to be emitted
|
|
3447
|
+
// which themselves will handle the preloading.
|
|
3448
|
+
moduleLoading: null,
|
|
3449
|
+
moduleMap: isEdgeRuntime ? edgeRscModuleMapping : rscModuleMapping,
|
|
3450
|
+
serverModuleMap: (0, _manifestssingleton.getServerModuleMap)()
|
|
3451
|
+
};
|
|
3452
|
+
const selectStaleTime = createSelectStaleTime(renderOpts.experimental);
|
|
3453
|
+
const staleTime = selectStaleTime(prerenderStore.stale);
|
|
3454
|
+
return await ComponentMod.collectSegmentData(renderOpts.cacheComponents, fullPageDataBuffer, staleTime, clientModules, serverConsumerManifest);
|
|
3455
|
+
}
|
|
3456
|
+
function isBypassingCachesInDev(renderOpts, requestStore) {
|
|
3457
|
+
return process.env.NODE_ENV === 'development' && !!renderOpts.dev && requestStore.headers.get('cache-control') === 'no-cache';
|
|
3458
|
+
}
|
|
3459
|
+
function WarnForBypassCachesInDev({ route }) {
|
|
3460
|
+
(0, _warnonce.warnOnce)(`Route ${route} is rendering with server caches disabled. For this navigation, Component Metadata in React DevTools will not accurately reflect what is statically prerenderable and runtime prefetchable. See more info here: https://nextjs.org/docs/messages/cache-bypass-in-dev`);
|
|
3461
|
+
return null;
|
|
3462
|
+
}
|
|
3463
|
+
function nodeStreamFromReadableStream(stream) {
|
|
3464
|
+
if (process.env.NEXT_RUNTIME === 'edge') {
|
|
3465
|
+
throw Object.defineProperty(new _invarianterror.InvariantError('nodeStreamFromReadableStream cannot be used in the edge runtime'), "__NEXT_ERROR_CODE", {
|
|
3466
|
+
value: "E944",
|
|
3467
|
+
enumerable: false,
|
|
3468
|
+
configurable: true
|
|
3469
|
+
});
|
|
3470
|
+
} else {
|
|
3471
|
+
const reader = stream.getReader();
|
|
3472
|
+
const { Readable } = require('node:stream');
|
|
3473
|
+
return new Readable({
|
|
3474
|
+
read () {
|
|
3475
|
+
reader.read().then(({ done, value })=>{
|
|
3476
|
+
if (done) {
|
|
3477
|
+
this.push(null);
|
|
3478
|
+
} else {
|
|
3479
|
+
this.push(value);
|
|
3480
|
+
}
|
|
3481
|
+
}).catch((err)=>this.destroy(err));
|
|
3482
|
+
}
|
|
3483
|
+
});
|
|
3484
|
+
}
|
|
3485
|
+
}
|
|
3486
|
+
function createNodeStreamFromChunks(partialChunks, allChunks, signal) {
|
|
3487
|
+
if (process.env.NEXT_RUNTIME === 'edge') {
|
|
3488
|
+
throw Object.defineProperty(new _invarianterror.InvariantError('createNodeStreamFromChunks cannot be used in the edge runtime'), "__NEXT_ERROR_CODE", {
|
|
3489
|
+
value: "E945",
|
|
3490
|
+
enumerable: false,
|
|
3491
|
+
configurable: true
|
|
3492
|
+
});
|
|
3493
|
+
} else {
|
|
3494
|
+
const { Readable } = require('node:stream');
|
|
3495
|
+
let nextIndex = 0;
|
|
3496
|
+
const readable = new Readable({
|
|
3497
|
+
read () {
|
|
3498
|
+
while(nextIndex < partialChunks.length){
|
|
3499
|
+
this.push(partialChunks[nextIndex]);
|
|
3500
|
+
nextIndex++;
|
|
3501
|
+
}
|
|
3502
|
+
}
|
|
3503
|
+
});
|
|
3504
|
+
signal.addEventListener('abort', ()=>{
|
|
3505
|
+
// Flush any remaining chunks from the original set
|
|
3506
|
+
while(nextIndex < partialChunks.length){
|
|
3507
|
+
readable.push(partialChunks[nextIndex]);
|
|
3508
|
+
nextIndex++;
|
|
3509
|
+
}
|
|
3510
|
+
// Flush all chunks since we're now aborted and can't schedule
|
|
3511
|
+
// any new work but these chunks might unblock debugInfo
|
|
3512
|
+
while(nextIndex < allChunks.length){
|
|
3513
|
+
readable.push(allChunks[nextIndex]);
|
|
3514
|
+
nextIndex++;
|
|
3515
|
+
}
|
|
3516
|
+
setImmediate(()=>{
|
|
3517
|
+
readable.push(null);
|
|
3518
|
+
});
|
|
3519
|
+
}, {
|
|
3520
|
+
once: true
|
|
3521
|
+
});
|
|
3522
|
+
return readable;
|
|
3523
|
+
}
|
|
3524
|
+
}
|
|
3525
|
+
|
|
3526
|
+
//# sourceMappingURL=app-render.js.map
|