bangonit 0.5.7 → 0.5.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/README.md +22 -0
- package/app/webapp/.next/standalone/app/webapp/.next/BUILD_ID +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/app-build-manifest.json +11 -11
- package/app/webapp/.next/standalone/app/webapp/.next/app-path-routes-manifest.json +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/build-manifest.json +3 -3
- package/app/webapp/.next/standalone/app/webapp/.next/prerender-manifest.json +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/required-server-files.json +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/_not-found/page.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/_not-found.html +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/_not-found.rsc +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/api/chat/route.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/api/screenshot/route.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/app/page.js +5 -5
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/app/page_client-reference-manifest.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/app.html +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/app.rsc +2 -2
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/index.html +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/index.rsc +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/page.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app/page_client-reference-manifest.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/app-paths-manifest.json +3 -3
- package/app/webapp/.next/standalone/app/webapp/.next/server/chunks/679.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/middleware-build-manifest.js +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/pages/404.html +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/pages/500.html +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/server/server-reference-manifest.json +1 -1
- package/app/webapp/.next/{static/chunks/app/app/page-f4f042a34d2b4471.js → standalone/app/webapp/.next/static/chunks/app/app/page-4c6dfbf12230aab7.js} +1 -1
- package/app/webapp/.next/standalone/app/webapp/.next/static/chunks/app/layout-57acb80d8da0067a.js +1 -0
- package/app/webapp/.next/standalone/app/webapp/.next/static/chunks/{main-app-76384b941f0b51cb.js → main-app-106dd83f859b9dfa.js} +1 -1
- package/app/webapp/.next/standalone/app/webapp/server.js +1 -1
- package/app/webapp/.next/standalone/node_modules/@img/colour/color.cjs +1596 -0
- package/app/webapp/.next/standalone/node_modules/@img/colour/index.cjs +1 -0
- package/app/webapp/.next/standalone/node_modules/@img/colour/package.json +58 -0
- package/app/webapp/.next/standalone/node_modules/@img/sharp-darwin-arm64/LICENSE +191 -0
- package/app/webapp/.next/standalone/node_modules/@img/sharp-darwin-arm64/lib/sharp-darwin-arm64.node +0 -0
- package/app/webapp/.next/standalone/node_modules/@img/sharp-darwin-arm64/package.json +40 -0
- package/app/webapp/.next/standalone/node_modules/@img/sharp-libvips-darwin-arm64/lib/index.js +1 -0
- package/app/webapp/.next/standalone/node_modules/@img/sharp-libvips-darwin-arm64/lib/libvips-cpp.8.17.3.dylib +0 -0
- package/app/webapp/.next/standalone/node_modules/@img/sharp-libvips-darwin-arm64/package.json +36 -0
- package/app/webapp/.next/standalone/node_modules/@img/sharp-libvips-darwin-arm64/versions.json +30 -0
- package/app/webapp/.next/standalone/node_modules/detect-libc/lib/detect-libc.js +313 -0
- package/app/webapp/.next/standalone/node_modules/detect-libc/lib/elf.js +39 -0
- package/app/webapp/.next/standalone/node_modules/detect-libc/lib/filesystem.js +51 -0
- package/app/webapp/.next/standalone/node_modules/detect-libc/lib/process.js +24 -0
- package/app/webapp/.next/standalone/node_modules/detect-libc/package.json +44 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/channel.js +177 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/colour.js +195 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/composite.js +212 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/constructor.js +499 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/index.js +16 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/input.js +809 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/is.js +143 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/libvips.js +207 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/operation.js +1016 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/output.js +1666 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/resize.js +595 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/sharp.js +121 -0
- package/app/webapp/.next/standalone/node_modules/sharp/lib/utility.js +291 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/classes/comparator.js +143 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/classes/range.js +557 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/classes/semver.js +333 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/cmp.js +54 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/coerce.js +62 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/compare.js +7 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/eq.js +5 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/gt.js +5 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/gte.js +5 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/lt.js +5 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/lte.js +5 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/neq.js +5 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/parse.js +18 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/functions/satisfies.js +12 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/constants.js +37 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/debug.js +11 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/identifiers.js +29 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/lrucache.js +42 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/parse-options.js +17 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/internal/re.js +223 -0
- package/app/webapp/.next/standalone/node_modules/sharp/node_modules/semver/package.json +78 -0
- package/app/webapp/.next/standalone/node_modules/sharp/package.json +202 -0
- package/app/webapp/.next/standalone/package.json +5 -3
- package/app/webapp/.next/{standalone/app/webapp/.next/static/chunks/app/app/page-f4f042a34d2b4471.js → static/chunks/app/app/page-4c6dfbf12230aab7.js} +1 -1
- package/app/webapp/.next/static/chunks/app/layout-57acb80d8da0067a.js +1 -0
- package/app/webapp/.next/static/chunks/{main-app-76384b941f0b51cb.js → main-app-106dd83f859b9dfa.js} +1 -1
- package/bin/src/cli/bangonit.js +274 -0
- package/package.json +5 -3
- package/app/webapp/.next/standalone/app/webapp/.next/static/chunks/app/layout-40f50d9380154ecf.js +0 -1
- package/app/webapp/.next/static/chunks/app/layout-40f50d9380154ecf.js +0 -1
- /package/app/webapp/.next/standalone/app/webapp/.next/static/{Ovp2DYnS7hdkdiH-qvRCj → QoPxkNUQxw6VoKyWIUhlL}/_buildManifest.js +0 -0
- /package/app/webapp/.next/standalone/app/webapp/.next/static/{Ovp2DYnS7hdkdiH-qvRCj → QoPxkNUQxw6VoKyWIUhlL}/_ssgManifest.js +0 -0
- /package/app/webapp/.next/static/{Ovp2DYnS7hdkdiH-qvRCj → QoPxkNUQxw6VoKyWIUhlL}/_buildManifest.js +0 -0
- /package/app/webapp/.next/static/{Ovp2DYnS7hdkdiH-qvRCj → QoPxkNUQxw6VoKyWIUhlL}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -267,6 +267,27 @@ Environment variables are available for interpolation, making it easy to pass dy
|
|
|
267
267
|
- **`/test`** — Run tests locally. Pass file paths, directories, or a filter (e.g. `/test testplans/smoke/`, `/test -t login`).
|
|
268
268
|
- **`/create-test`** — Generate a new test plan from a description (e.g. `/create-test user can reset their password`). Reads your codebase to write accurate steps and places the file in the right directory.
|
|
269
269
|
|
|
270
|
+
## Auto-generated Tests from Git Changes
|
|
271
|
+
|
|
272
|
+
Use `--since` to automatically generate test plans from your recent commits:
|
|
273
|
+
|
|
274
|
+
```bash
|
|
275
|
+
# Test changes since the last 3 commits
|
|
276
|
+
boi run --since HEAD~3
|
|
277
|
+
|
|
278
|
+
# Test changes since a tag
|
|
279
|
+
boi run --since v1.0.0
|
|
280
|
+
|
|
281
|
+
# Test changes from the last hour
|
|
282
|
+
boi run --since "1 hour ago"
|
|
283
|
+
|
|
284
|
+
# In CI: test changes in a PR
|
|
285
|
+
MERGE_BASE=$(git merge-base origin/main HEAD)
|
|
286
|
+
boi run --since "$MERGE_BASE" --headless --exit
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
Bang On It analyzes the git diff, uses an LLM to identify user-facing changes, and generates targeted test plans. Changes that don't affect user behavior (refactoring, comments, CI config) produce no tests.
|
|
290
|
+
|
|
270
291
|
## Session Recordings
|
|
271
292
|
|
|
272
293
|
Record test runs with `--record`. Each recording produces a self-contained HTML replay viewer. Configure where they're saved with `recordings_dir` in your config, and optionally upload to S3 via the `[s3]` config section.
|
|
@@ -284,6 +305,7 @@ Run options:
|
|
|
284
305
|
-t, --filter <text> Filter test plans by name substring
|
|
285
306
|
--config <path> Path to config file (default: .bangonit/config.toml)
|
|
286
307
|
--plan <text> Inline test plan (instead of file)
|
|
308
|
+
--since <ref> Auto-generate test plans from git changes since a commit/tag/time
|
|
287
309
|
|
|
288
310
|
--additional-system-prompt <text> Additional system prompt text appended to test plan
|
|
289
311
|
--record Record session replay
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
QoPxkNUQxw6VoKyWIUhlL
|
|
@@ -4,32 +4,32 @@
|
|
|
4
4
|
"static/chunks/webpack-9e4fd47eb2c72de4.js",
|
|
5
5
|
"static/chunks/1dd3208c-2143388ffa327752.js",
|
|
6
6
|
"static/chunks/528-31e5ce0646826d75.js",
|
|
7
|
-
"static/chunks/main-app-
|
|
7
|
+
"static/chunks/main-app-106dd83f859b9dfa.js",
|
|
8
8
|
"static/chunks/app/_not-found/page-655fd05e2bb4ddca.js"
|
|
9
9
|
],
|
|
10
10
|
"/layout": [
|
|
11
11
|
"static/chunks/webpack-9e4fd47eb2c72de4.js",
|
|
12
12
|
"static/chunks/1dd3208c-2143388ffa327752.js",
|
|
13
13
|
"static/chunks/528-31e5ce0646826d75.js",
|
|
14
|
-
"static/chunks/main-app-
|
|
14
|
+
"static/chunks/main-app-106dd83f859b9dfa.js",
|
|
15
15
|
"static/css/d8c646fe7195c123.css",
|
|
16
|
-
"static/chunks/app/layout-
|
|
16
|
+
"static/chunks/app/layout-57acb80d8da0067a.js"
|
|
17
17
|
],
|
|
18
|
-
"/
|
|
18
|
+
"/page": [
|
|
19
19
|
"static/chunks/webpack-9e4fd47eb2c72de4.js",
|
|
20
20
|
"static/chunks/1dd3208c-2143388ffa327752.js",
|
|
21
21
|
"static/chunks/528-31e5ce0646826d75.js",
|
|
22
|
-
"static/chunks/main-app-
|
|
23
|
-
"static/chunks/
|
|
24
|
-
"static/chunks/793-be37f231ca512496.js",
|
|
25
|
-
"static/chunks/app/app/page-f4f042a34d2b4471.js"
|
|
22
|
+
"static/chunks/main-app-106dd83f859b9dfa.js",
|
|
23
|
+
"static/chunks/app/page-1f82fbf792d529fd.js"
|
|
26
24
|
],
|
|
27
|
-
"/page": [
|
|
25
|
+
"/app/page": [
|
|
28
26
|
"static/chunks/webpack-9e4fd47eb2c72de4.js",
|
|
29
27
|
"static/chunks/1dd3208c-2143388ffa327752.js",
|
|
30
28
|
"static/chunks/528-31e5ce0646826d75.js",
|
|
31
|
-
"static/chunks/main-app-
|
|
32
|
-
"static/chunks/
|
|
29
|
+
"static/chunks/main-app-106dd83f859b9dfa.js",
|
|
30
|
+
"static/chunks/02d30405-01bdf403629d0188.js",
|
|
31
|
+
"static/chunks/793-be37f231ca512496.js",
|
|
32
|
+
"static/chunks/app/app/page-4c6dfbf12230aab7.js"
|
|
33
33
|
]
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"/_not-found/page":"/_not-found","/
|
|
1
|
+
{"/_not-found/page":"/_not-found","/page":"/","/app/page":"/app","/api/chat/route":"/api/chat","/api/screenshot/route":"/api/screenshot"}
|
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/QoPxkNUQxw6VoKyWIUhlL/_buildManifest.js",
|
|
9
|
+
"static/QoPxkNUQxw6VoKyWIUhlL/_ssgManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": [
|
|
12
12
|
"static/chunks/webpack-9e4fd47eb2c72de4.js",
|
|
13
13
|
"static/chunks/1dd3208c-2143388ffa327752.js",
|
|
14
14
|
"static/chunks/528-31e5ce0646826d75.js",
|
|
15
|
-
"static/chunks/main-app-
|
|
15
|
+
"static/chunks/main-app-106dd83f859b9dfa.js"
|
|
16
16
|
],
|
|
17
17
|
"pages": {
|
|
18
18
|
"/_app": [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":4,"routes":{"/":{"experimentalBypassFor":[{"type":"header","key":"Next-Action"},{"type":"header","key":"content-type","value":"multipart/form-data;.*"}],"initialRevalidateSeconds":false,"srcRoute":"/","dataRoute":"/index.rsc"},"/app":{"experimentalBypassFor":[{"type":"header","key":"Next-Action"},{"type":"header","key":"content-type","value":"multipart/form-data;.*"}],"initialRevalidateSeconds":false,"srcRoute":"/app","dataRoute":"/app.rsc"}},"dynamicRoutes":{},"notFoundRoutes":[],"preview":{"previewModeId":"
|
|
1
|
+
{"version":4,"routes":{"/":{"experimentalBypassFor":[{"type":"header","key":"Next-Action"},{"type":"header","key":"content-type","value":"multipart/form-data;.*"}],"initialRevalidateSeconds":false,"srcRoute":"/","dataRoute":"/index.rsc"},"/app":{"experimentalBypassFor":[{"type":"header","key":"Next-Action"},{"type":"header","key":"content-type","value":"multipart/form-data;.*"}],"initialRevalidateSeconds":false,"srcRoute":"/app","dataRoute":"/app.rsc"}},"dynamicRoutes":{},"notFoundRoutes":[],"preview":{"previewModeId":"fbd7eccefd13318bd65701621dc31cbf","previewModeSigningKey":"7514d675e5c10bbd908d80d372512d238fae9b9703eb3cf33fae3365c3c227cf","previewModeEncryptionKey":"20434d3daac8cb0ee5e95b46a1b72c152703f34466d3debb252f371d4279dc8d"}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"config":{"env":{"DESKTOP_APP_VERSION":"0.1.0"},"webpack":null,"eslint":{"ignoreDuringBuilds":false},"typescript":{"ignoreBuildErrors":false,"tsconfigPath":"tsconfig.json"},"distDir":".next","cleanDistDir":true,"assetPrefix":"","cacheMaxMemorySize":52428800,"configOrigin":"next.config.js","useFileSystemPublicRoutes":true,"generateEtags":true,"pageExtensions":["tsx","ts","jsx","js"],"poweredByHeader":true,"compress":true,"analyticsId":"","images":{"deviceSizes":[640,750,828,1080,1200,1920,2048,3840],"imageSizes":[16,32,48,64,96,128,256,384],"path":"/_next/image","loader":"default","loaderFile":"","domains":[],"disableStaticImages":false,"minimumCacheTTL":60,"formats":["image/webp"],"dangerouslyAllowSVG":false,"contentSecurityPolicy":"script-src 'none'; frame-src 'none'; sandbox;","contentDispositionType":"inline","remotePatterns":[],"unoptimized":false},"devIndicators":{"buildActivity":true,"buildActivityPosition":"bottom-right"},"onDemandEntries":{"maxInactiveAge":60000,"pagesBufferLength":5},"amp":{"canonicalBase":""},"basePath":"","sassOptions":{},"trailingSlash":false,"i18n":null,"productionBrowserSourceMaps":false,"optimizeFonts":true,"excludeDefaultMomentLocales":true,"serverRuntimeConfig":{},"publicRuntimeConfig":{},"reactProductionProfiling":false,"reactStrictMode":null,"httpAgentOptions":{"keepAlive":true},"outputFileTracing":true,"staticPageGenerationTimeout":60,"swcMinify":true,"output":"standalone","modularizeImports":{"@mui/icons-material":{"transform":"@mui/icons-material/{{member}}"},"lodash":{"transform":"lodash/{{member}}"}},"experimental":{"multiZoneDraftMode":false,"prerenderEarlyExit":false,"serverMinification":true,"serverSourceMaps":false,"linkNoTouchStart":false,"caseSensitiveRoutes":false,"clientRouterFilter":true,"clientRouterFilterRedirects":false,"fetchCacheKeyPrefix":"","middlewarePrefetch":"flexible","optimisticClientCache":true,"manualClientBasePath":false,"cpus":
|
|
1
|
+
{"version":1,"config":{"env":{"DESKTOP_APP_VERSION":"0.1.0"},"webpack":null,"eslint":{"ignoreDuringBuilds":false},"typescript":{"ignoreBuildErrors":false,"tsconfigPath":"tsconfig.json"},"distDir":".next","cleanDistDir":true,"assetPrefix":"","cacheMaxMemorySize":52428800,"configOrigin":"next.config.js","useFileSystemPublicRoutes":true,"generateEtags":true,"pageExtensions":["tsx","ts","jsx","js"],"poweredByHeader":true,"compress":true,"analyticsId":"","images":{"deviceSizes":[640,750,828,1080,1200,1920,2048,3840],"imageSizes":[16,32,48,64,96,128,256,384],"path":"/_next/image","loader":"default","loaderFile":"","domains":[],"disableStaticImages":false,"minimumCacheTTL":60,"formats":["image/webp"],"dangerouslyAllowSVG":false,"contentSecurityPolicy":"script-src 'none'; frame-src 'none'; sandbox;","contentDispositionType":"inline","remotePatterns":[],"unoptimized":false},"devIndicators":{"buildActivity":true,"buildActivityPosition":"bottom-right"},"onDemandEntries":{"maxInactiveAge":60000,"pagesBufferLength":5},"amp":{"canonicalBase":""},"basePath":"","sassOptions":{},"trailingSlash":false,"i18n":null,"productionBrowserSourceMaps":false,"optimizeFonts":true,"excludeDefaultMomentLocales":true,"serverRuntimeConfig":{},"publicRuntimeConfig":{},"reactProductionProfiling":false,"reactStrictMode":null,"httpAgentOptions":{"keepAlive":true},"outputFileTracing":true,"staticPageGenerationTimeout":60,"swcMinify":true,"output":"standalone","modularizeImports":{"@mui/icons-material":{"transform":"@mui/icons-material/{{member}}"},"lodash":{"transform":"lodash/{{member}}"}},"experimental":{"multiZoneDraftMode":false,"prerenderEarlyExit":false,"serverMinification":true,"serverSourceMaps":false,"linkNoTouchStart":false,"caseSensitiveRoutes":false,"clientRouterFilter":true,"clientRouterFilterRedirects":false,"fetchCacheKeyPrefix":"","middlewarePrefetch":"flexible","optimisticClientCache":true,"manualClientBasePath":false,"cpus":9,"memoryBasedWorkersCount":false,"isrFlushToDisk":true,"workerThreads":false,"optimizeCss":false,"nextScriptWorkers":false,"scrollRestoration":false,"externalDir":false,"disableOptimizedLoading":false,"gzipSize":true,"craCompat":false,"esmExternals":true,"fullySpecified":false,"outputFileTracingRoot":"/Users/pete/repos/growthgirl","swcTraceProfiling":false,"forceSwcTransforms":false,"largePageDataBytes":128000,"adjustFontFallbacks":false,"adjustFontFallbacksWithSizeAdjust":false,"typedRoutes":false,"instrumentationHook":false,"bundlePagesExternals":false,"parallelServerCompiles":false,"parallelServerBuildTraces":false,"ppr":false,"missingSuspenseWithCSRBailout":true,"optimizeServerReact":true,"useEarlyImport":false,"staleTimes":{"dynamic":30,"static":300},"optimizePackageImports":["lucide-react","date-fns","lodash-es","ramda","antd","react-bootstrap","ahooks","@ant-design/icons","@headlessui/react","@headlessui-float/react","@heroicons/react/20/solid","@heroicons/react/24/solid","@heroicons/react/24/outline","@visx/visx","@tremor/react","rxjs","@mui/material","@mui/icons-material","recharts","react-use","@material-ui/core","@material-ui/icons","@tabler/icons-react","mui-core","react-icons/ai","react-icons/bi","react-icons/bs","react-icons/cg","react-icons/ci","react-icons/di","react-icons/fa","react-icons/fa6","react-icons/fc","react-icons/fi","react-icons/gi","react-icons/go","react-icons/gr","react-icons/hi","react-icons/hi2","react-icons/im","react-icons/io","react-icons/io5","react-icons/lia","react-icons/lib","react-icons/lu","react-icons/md","react-icons/pi","react-icons/ri","react-icons/rx","react-icons/si","react-icons/sl","react-icons/tb","react-icons/tfi","react-icons/ti","react-icons/vsc","react-icons/wi"],"trustHostHeader":false,"isExperimentalCompile":false},"configFileName":"next.config.js"},"appDir":"/Users/pete/repos/growthgirl/app/webapp","relativeAppDir":"app/webapp","files":[".next/routes-manifest.json",".next/server/pages-manifest.json",".next/build-manifest.json",".next/prerender-manifest.json",".next/server/middleware-manifest.json",".next/server/middleware-build-manifest.js",".next/server/middleware-react-loadable-manifest.js",".next/server/app-paths-manifest.json",".next/app-path-routes-manifest.json",".next/app-build-manifest.json",".next/server/server-reference-manifest.js",".next/server/server-reference-manifest.json",".next/react-loadable-manifest.json",".next/server/font-manifest.json",".next/BUILD_ID",".next/server/next-font-manifest.js",".next/server/next-font-manifest.json"],"ignore":["../../node_modules/next/dist/compiled/@ampproject/toolbox-optimizer/**/*"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
(()=>{var e={};e.id=409,e.ids=[409],e.modules={2934:e=>{"use strict";e.exports=require("next/dist/client/components/action-async-storage.external.js")},4580:e=>{"use strict";e.exports=require("next/dist/client/components/request-async-storage.external.js")},5869:e=>{"use strict";e.exports=require("next/dist/client/components/static-generation-async-storage.external.js")},399:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},
|
|
1
|
+
(()=>{var e={};e.id=409,e.ids=[409],e.modules={2934:e=>{"use strict";e.exports=require("next/dist/client/components/action-async-storage.external.js")},4580:e=>{"use strict";e.exports=require("next/dist/client/components/request-async-storage.external.js")},5869:e=>{"use strict";e.exports=require("next/dist/client/components/static-generation-async-storage.external.js")},399:e=>{"use strict";e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},9722:(e,t,n)=>{"use strict";n.r(t),n.d(t,{GlobalError:()=>s.a,__next_app__:()=>f,originalPathname:()=>c,pages:()=>d,routeModule:()=>p,tree:()=>a}),n(3627),n(7824),n(7718);var r=n(3282),o=n(5736),i=n(3906),s=n.n(i),u=n(6880),l={};for(let e in u)0>["default","tree","pages","GlobalError","originalPathname","__next_app__","routeModule"].indexOf(e)&&(l[e]=()=>u[e]);n.d(t,l);let a=["",{children:["/_not-found",{children:["__PAGE__",{},{page:[()=>Promise.resolve().then(n.t.bind(n,7824,23)),"next/dist/client/components/not-found-error"]}]},{}]},{layout:[()=>Promise.resolve().then(n.bind(n,7718)),"/Users/pete/repos/growthgirl/app/webapp/src/app/layout.tsx"],"not-found":[()=>Promise.resolve().then(n.t.bind(n,7824,23)),"next/dist/client/components/not-found-error"]}],d=[],c="/_not-found/page",f={require:n,loadChunk:()=>Promise.resolve()},p=new r.AppPageRouteModule({definition:{kind:o.x.APP_PAGE,page:"/_not-found/page",pathname:"/_not-found",bundlePath:"",filename:"",appPaths:[]},userland:{loaderTree:a}})},3652:()=>{},1171:(e,t,n)=>{Promise.resolve().then(n.t.bind(n,4424,23)),Promise.resolve().then(n.t.bind(n,7752,23)),Promise.resolve().then(n.t.bind(n,5275,23)),Promise.resolve().then(n.t.bind(n,9842,23)),Promise.resolve().then(n.t.bind(n,1633,23)),Promise.resolve().then(n.t.bind(n,9224,23))},7718:(e,t,n)=>{"use strict";n.r(t),n.d(t,{default:()=>i,metadata:()=>o});var r=n(9013);n(5556);let o={title:"Bang On It!"};function i({children:e}){return r.jsx("html",{lang:"en",children:r.jsx("body",{children:e})})}},8433:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e,t){for(var n in t)Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}(t,{isNotFoundError:function(){return o},notFound:function(){return r}});let n="NEXT_NOT_FOUND";function r(){let e=Error(n);throw e.digest=n,e}function o(e){return"object"==typeof e&&null!==e&&"digest"in e&&e.digest===n}("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},3627:(e,t,n)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e,t){for(var n in t)Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}(t,{PARALLEL_ROUTE_DEFAULT_PATH:function(){return o},default:function(){return i}});let r=n(8433),o="next/dist/client/components/parallel-route-default.js";function i(){(0,r.notFound)()}("function"==typeof t.default||"object"==typeof t.default&&null!==t.default)&&void 0===t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},5556:()=>{}};var t=require("../../webpack-runtime.js");t.C(e);var n=e=>t(t.s=e),r=t.X(0,[522,679],()=>n(9722));module.exports=r})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"1584":{"*":{"id":"5275","name":"*","chunks":[],"async":false}},"1815":{"*":{"id":"4424","name":"*","chunks":[],"async":false}},"2023":{"*":{"id":"9224","name":"*","chunks":[],"async":false}},"3859":{"*":{"id":"1633","name":"*","chunks":[],"async":false}},"5092":{"*":{"id":"9842","name":"*","chunks":[],"async":false}},"5274":{"*":{"id":"4564","name":"*","chunks":[],"async":false}},"5428":{"*":{"id":"7752","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/","crossOrigin":null},"ssrModuleMapping":{"1584":{"*":{"id":"5275","name":"*","chunks":[],"async":false}},"1815":{"*":{"id":"4424","name":"*","chunks":[],"async":false}},"2023":{"*":{"id":"9224","name":"*","chunks":[],"async":false}},"3859":{"*":{"id":"1633","name":"*","chunks":[],"async":false}},"5092":{"*":{"id":"9842","name":"*","chunks":[],"async":false}},"5274":{"*":{"id":"4564","name":"*","chunks":[],"async":false}},"5428":{"*":{"id":"7752","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/pete/repos/growthgirl/node_modules/next/dist/client/components/app-router.js":{"id":1815,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/esm/client/components/app-router.js":{"id":1815,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/client/components/client-page.js":{"id":5428,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/esm/client/components/client-page.js":{"id":5428,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/client/components/error-boundary.js":{"id":1584,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/esm/client/components/error-boundary.js":{"id":1584,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/client/components/layout-router.js":{"id":5092,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5092,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/client/components/not-found-boundary.js":{"id":3859,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/esm/client/components/not-found-boundary.js":{"id":3859,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/client/components/render-from-template-context.js":{"id":2023,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":2023,"name":"*","chunks":[],"async":false},"/Users/pete/repos/growthgirl/app/webapp/src/app/globals.css":{"id":2625,"name":"*","chunks":["185","static/chunks/app/layout-57acb80d8da0067a.js"],"async":false},"/Users/pete/repos/growthgirl/app/webapp/src/app/app/page.tsx":{"id":5274,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/Users/pete/repos/growthgirl/app/webapp/src/":[],"/Users/pete/repos/growthgirl/app/webapp/src/app/layout":["static/css/d8c646fe7195c123.css"],"/Users/pete/repos/growthgirl/app/webapp/src/app/page":[],"/Users/pete/repos/growthgirl/app/webapp/src/app/_not-found/page":[]}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/d8c646fe7195c123.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-9e4fd47eb2c72de4.js"/><script src="/_next/static/chunks/1dd3208c-2143388ffa327752.js" async=""></script><script src="/_next/static/chunks/528-31e5ce0646826d75.js" async=""></script><script src="/_next/static/chunks/main-app-
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/d8c646fe7195c123.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-9e4fd47eb2c72de4.js"/><script src="/_next/static/chunks/1dd3208c-2143388ffa327752.js" async=""></script><script src="/_next/static/chunks/528-31e5ce0646826d75.js" async=""></script><script src="/_next/static/chunks/main-app-106dd83f859b9dfa.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Bang On It!</title><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><script src="/_next/static/chunks/webpack-9e4fd47eb2c72de4.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/d8c646fe7195c123.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[1815,[],\"\"]\n4:I[5092,[],\"\"]\n5:I[2023,[],\"\"]\nb:I[1584,[],\"\"]\n6:{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"}\n7:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n8:{\"display\":\"inline-block\"}\n9:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nc:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"QoPxkNUQxw6VoKyWIUhlL\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"_not-found\"],\"initialTree\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null],null],null]},[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"/_not-found\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/d8c646fe7195c123.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$6\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$7\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$8\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$9\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],\"$La\"],\"globalErrorComponent\":\"$b\",\"missingSlots\":\"$Wc\"}]\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Bang On It!\"}]]\n3:null\n"])</script></body></html>
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
5:{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"}
|
|
5
5
|
6:{"display":"inline-block"}
|
|
6
6
|
7:{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0}
|
|
7
|
-
0:["
|
|
7
|
+
0:["QoPxkNUQxw6VoKyWIUhlL",[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["/_not-found",{"children":["__PAGE__",{},[["$L1",[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null],null],null]},[null,["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","/_not-found","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/d8c646fe7195c123.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$4","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$5","children":"404"}],["$","div",null,{"style":"$6","children":["$","h2",null,{"style":"$7","children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L8",["$","meta",null,{"name":"robots","content":"noindex"}]]]]]
|
|
8
8
|
8:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Bang On It!"}]]
|
|
9
9
|
1:null
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(()=>{var e={};e.id=744,e.ids=[744],e.modules={399:e=>{e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},517:e=>{e.exports=require("next/dist/compiled/next-server/app-route.runtime.prod.js")},1282:e=>{e.exports=require("child_process")},2048:e=>{e.exports=require("fs")},9801:e=>{e.exports=require("os")},5315:e=>{e.exports=require("path")},
|
|
1
|
+
"use strict";(()=>{var e={};e.id=744,e.ids=[744],e.modules={399:e=>{e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},517:e=>{e.exports=require("next/dist/compiled/next-server/app-route.runtime.prod.js")},1282:e=>{e.exports=require("child_process")},2048:e=>{e.exports=require("fs")},9801:e=>{e.exports=require("os")},5315:e=>{e.exports=require("path")},5365:(e,r,t)=>{t.r(r),t.d(r,{originalPathname:()=>x,patchFetch:()=>m,requestAsyncStorage:()=>c,routeModule:()=>d,serverHooks:()=>l,staticGenerationAsyncStorage:()=>h});var a={};t.r(a),t.d(a,{OPTIONS:()=>u,POST:()=>n});var p=t(3036),o=t(5736),s=t(5262);let i=(0,t(3151).V)(),u=i.OPTIONS,n=i.POST,d=new p.AppRouteRouteModule({definition:{kind:o.x.APP_ROUTE,page:"/api/chat/route",pathname:"/api/chat",filename:"route",bundlePath:"app/api/chat/route"},resolvedPagePath:"/Users/pete/repos/growthgirl/app/webapp/src/app/api/chat/route.ts",nextConfigOutput:"standalone",userland:a}),{requestAsyncStorage:c,staticGenerationAsyncStorage:h,serverHooks:l}=d,x="/api/chat/route";function m(){return(0,s.patchFetch)({serverHooks:l,staticGenerationAsyncStorage:h})}}};var r=require("../../../webpack-runtime.js");r.C(e);var t=e=>r(r.s=e),a=r.X(0,[522,124,151],()=>t(5365));module.exports=a})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(()=>{var e={};e.id=310,e.ids=[310],e.modules={399:e=>{e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},517:e=>{e.exports=require("next/dist/compiled/next-server/app-route.runtime.prod.js")},1282:e=>{e.exports=require("child_process")},2048:e=>{e.exports=require("fs")},9801:e=>{e.exports=require("os")},5315:e=>{e.exports=require("path")},
|
|
1
|
+
"use strict";(()=>{var e={};e.id=310,e.ids=[310],e.modules={399:e=>{e.exports=require("next/dist/compiled/next-server/app-page.runtime.prod.js")},517:e=>{e.exports=require("next/dist/compiled/next-server/app-route.runtime.prod.js")},1282:e=>{e.exports=require("child_process")},2048:e=>{e.exports=require("fs")},9801:e=>{e.exports=require("os")},5315:e=>{e.exports=require("path")},9468:(e,r,t)=>{t.r(r),t.d(r,{originalPathname:()=>x,patchFetch:()=>m,requestAsyncStorage:()=>c,routeModule:()=>d,serverHooks:()=>l,staticGenerationAsyncStorage:()=>h});var s={};t.r(s),t.d(s,{OPTIONS:()=>n,POST:()=>u});var o=t(3036),p=t(5736),a=t(5262);let i=(0,t(3151).u)(),n=i.OPTIONS,u=i.POST,d=new o.AppRouteRouteModule({definition:{kind:p.x.APP_ROUTE,page:"/api/screenshot/route",pathname:"/api/screenshot",filename:"route",bundlePath:"app/api/screenshot/route"},resolvedPagePath:"/Users/pete/repos/growthgirl/app/webapp/src/app/api/screenshot/route.ts",nextConfigOutput:"standalone",userland:s}),{requestAsyncStorage:c,staticGenerationAsyncStorage:h,serverHooks:l}=d,x="/api/screenshot/route";function m(){return(0,a.patchFetch)({serverHooks:l,staticGenerationAsyncStorage:h})}}};var r=require("../../../webpack-runtime.js");r.C(e);var t=e=>r(r.s=e),s=r.X(0,[522,124,151],()=>t(9468));module.exports=s})();
|