mongoose-studio 1.0.3 → 1.0.4

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 CHANGED
@@ -1,22 +1,18 @@
1
1
  # <img src="https://mongoose-studio.yaasir.dev/logo.png" width="40" valign="middle" alt="Mongoose Studio Logo" /> Mongoose Studio
2
2
 
3
- **Your Mongoose Data, Visualized.**
3
+ > **Your Mongoose Data, Visualized.**
4
+ > A modern, zero-config GUI for your Mongoose models. Inspect schemas, view data, and debug queries instantly without leaving your terminal.
4
5
 
5
- ![Mongoose Studio Banner](https://mongoose-studio.yaasir.dev/hero-screenshot.png)
6
+ ![Mongoose Studio Hero](/web/public/hero-screenshot.png)
6
7
 
7
8
  [![npm version](https://img.shields.io/npm/v/mongoose-studio.svg?style=flat-square)](https://www.npmjs.org/package/mongoose-studio)
8
9
  [![install size](https://img.shields.io/badge/dynamic/json?url=https://packagephobia.com/v2/api.json?p=mongoose-studio&query=$.install.pretty&label=install%20size&style=flat-square)](https://packagephobia.now.sh/result?p=mongoose-studio)
9
10
  [![downloads](https://img.shields.io/npm/dm/mongoose-studio.svg?style=flat-square)](https://npm-stat.com/charts.html?package=mongoose-studio)
10
11
 
11
- Mongoose Studio is a **zero-config CLI tool** that provides an instant Graphical User Interface (GUI) for your Mongoose models. It bridges the gap between your code definitions and your actual database.
12
-
13
- 👉 **[Launch Documentation Website](https://mongoose-studio.yaasir.dev)**
14
-
15
12
  ---
16
13
 
17
14
  ## Features
18
15
 
19
- - **Zero Configuration**: No config files, no route setup. It reads your code.
20
16
  - **Schema-Aware**: Visualizes data respecting your Mongoose schema types, defaults, and validations.
21
17
  - **Read-Only Safe**: Defaults to read-only mode to prevent accidental production edits.
22
18
  - **Instant Launch**: Runs directly from your terminal using `npx` or `bunx`.
package/dist/index.js CHANGED
@@ -48865,8 +48865,8 @@ var require_eachAsync = __commonJS((exports, module) => {
48865
48865
  function createFetch() {
48866
48866
  let documentsBatch = [];
48867
48867
  let drained = false;
48868
- return fetch;
48869
- function fetch(done) {
48868
+ return fetch2;
48869
+ function fetch2(done) {
48870
48870
  if (drained || aborted) {
48871
48871
  return done();
48872
48872
  } else if (error) {
@@ -48903,7 +48903,7 @@ var require_eachAsync = __commonJS((exports, module) => {
48903
48903
  documentsBatch.push(doc);
48904
48904
  }
48905
48905
  if (batchSize && documentsBatch.length !== batchSize) {
48906
- immediate(() => enqueue(fetch));
48906
+ immediate(() => enqueue(fetch2));
48907
48907
  return;
48908
48908
  }
48909
48909
  const docsToProcess = batchSize ? documentsBatch : doc;
@@ -48926,7 +48926,7 @@ var require_eachAsync = __commonJS((exports, module) => {
48926
48926
  const finalErr = continueOnError ? createEachAsyncMultiError(aggregatedErrors) : error;
48927
48927
  return finalCallback(finalErr);
48928
48928
  }
48929
- immediate(() => enqueue(fetch));
48929
+ immediate(() => enqueue(fetch2));
48930
48930
  }
48931
48931
  handleNextResult(docsToProcess, currentDocumentIndex++, handleNextResultCallBack);
48932
48932
  });
@@ -60075,23 +60075,46 @@ import { existsSync } from "fs";
60075
60075
  // src/loader.ts
60076
60076
  import path from "path";
60077
60077
  import fs from "fs";
60078
+
60079
+ // config/index.ts
60080
+ var CONFIG = {
60081
+ DEFAULT_PORT: 5555,
60082
+ MONGO_URI_DEFAULT: "mongodb://localhost:27017/test",
60083
+ IS_DEV: true,
60084
+ VERBOSE: false
60085
+ };
60086
+
60087
+ // src/loader.ts
60078
60088
  async function loadLocalModels(modelsPath) {
60079
60089
  const results = {
60080
60090
  loaded: [],
60081
60091
  errors: []
60082
60092
  };
60083
60093
  if (!fs.existsSync(modelsPath)) {
60094
+ if (CONFIG.VERBOSE)
60095
+ console.log(` \x1B[33m[DEBUG]\x1B[0m Models path does not exist: ${modelsPath}`);
60084
60096
  return results;
60085
60097
  }
60098
+ if (CONFIG.VERBOSE)
60099
+ console.log(` \x1B[33m[DEBUG]\x1B[0m Scanning recursively in: ${modelsPath}`);
60086
60100
  const glob = new Bun.Glob("**/*.{ts,js}");
60087
60101
  for await (const file of glob.scan({ cwd: modelsPath })) {
60088
- if (file.endsWith(".d.ts"))
60102
+ if (file.endsWith(".d.ts")) {
60103
+ if (CONFIG.VERBOSE)
60104
+ console.log(` \x1B[33m[DEBUG]\x1B[0m Skipped definition file: ${file}`);
60089
60105
  continue;
60106
+ }
60090
60107
  const fullPath = path.join(modelsPath, file);
60108
+ if (CONFIG.VERBOSE)
60109
+ console.log(` \x1B[33m[DEBUG]\x1B[0m Attempting to load: ${file}`);
60091
60110
  try {
60092
60111
  await import(fullPath);
60093
60112
  results.loaded.push(file);
60094
60113
  } catch (err) {
60114
+ if (CONFIG.VERBOSE) {
60115
+ console.error(` \x1B[31m[DEBUG]\x1B[0m Failed to import ${file}:`);
60116
+ console.error(err);
60117
+ }
60095
60118
  results.errors.push(`${file}: ${err.message}`);
60096
60119
  }
60097
60120
  }
@@ -61737,14 +61760,6 @@ function startServer(port = 3000, mongoose) {
61737
61760
  };
61738
61761
  }
61739
61762
 
61740
- // config/index.ts
61741
- var CONFIG = {
61742
- API_PORT: 5555,
61743
- UI_PORT: 5556,
61744
- MONGO_URI_DEFAULT: "mongodb://localhost:27017/test",
61745
- IS_DEV: true
61746
- };
61747
-
61748
61763
  // bin/index.ts
61749
61764
  async function main() {
61750
61765
  if (process.argv.includes("--help") || process.argv.includes("-h")) {
@@ -61776,6 +61791,11 @@ Options:
61776
61791
  console.log(`
61777
61792
  \x1B[36mStarting Mongoose Studio...\x1B[0m
61778
61793
  `);
61794
+ if (process.argv.includes("--verbose") || process.argv.includes("-v")) {
61795
+ CONFIG.VERBOSE = true;
61796
+ console.log(" \x1B[33m[VERBOSE MODE ENABLED]\x1B[0m");
61797
+ }
61798
+ checkForUpdates();
61779
61799
  const projectRoot = process.cwd();
61780
61800
  const userMongoosePath = path3.join(projectRoot, "node_modules", "mongoose");
61781
61801
  if (existsSync(userMongoosePath)) {
@@ -61839,7 +61859,7 @@ Connecting to MongoDB...`);
61839
61859
  console.warn(" Studio will run in Schema Inspection mode only. Data features will be disabled.");
61840
61860
  }
61841
61861
  const portArg = process.argv.find((arg) => arg.startsWith("--port="));
61842
- let port = portArg && parseInt(portArg.split("=")[1]) || CONFIG.API_PORT;
61862
+ let port = portArg && parseInt(portArg.split("=")[1]) || CONFIG.DEFAULT_PORT;
61843
61863
  const maxRetries = 10;
61844
61864
  let serverStarted = false;
61845
61865
  for (let i = 0;i < maxRetries; i++) {
@@ -61890,3 +61910,28 @@ main().catch((err) => {
61890
61910
  console.error("Fatal Error:", err);
61891
61911
  process.exit(1);
61892
61912
  });
61913
+ async function checkForUpdates() {
61914
+ try {
61915
+ const pkg = __require(path3.join(process.cwd(), "package.json"));
61916
+ const currentVersion = "1.0.3";
61917
+ const controller = new AbortController;
61918
+ const timeoutId = setTimeout(() => controller.abort(), 1000);
61919
+ const res = await fetch("https://registry.npmjs.org/mongoose-studio/latest", {
61920
+ signal: controller.signal
61921
+ });
61922
+ clearTimeout(timeoutId);
61923
+ if (res.ok) {
61924
+ const data = await res.json();
61925
+ const latestVersion = data.version;
61926
+ if (latestVersion && latestVersion !== currentVersion) {
61927
+ console.log(`
61928
+ \x1B[43m\x1B[30m UPDATE AVAILABLE \x1B[0m \x1B[36m` + currentVersion + " \x1B[0m\u2192 \x1B[32m" + latestVersion + "\x1B[0m");
61929
+ console.log(`Run \x1B[36mnpm i -g mongoose-studio\x1B[0m to update.
61930
+ `);
61931
+ }
61932
+ }
61933
+ } catch (e) {
61934
+ if (CONFIG.VERBOSE)
61935
+ console.log(" \x1B[33m[DEBUG]\x1B[0m Update check failed (ignoring).");
61936
+ }
61937
+ }
package/dist/ui/404.html CHANGED
@@ -1 +1 @@
1
- <!DOCTYPE html><!--fb12BI1tiW_IFIdZQyP89--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/298fc2d040ac93e5.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/177f15bb24010289.js"/><script src="/_next/static/chunks/e08f4a8f5f863401.js" async=""></script><script src="/_next/static/chunks/4642f2face723696.js" async=""></script><script src="/_next/static/chunks/eaa2b3b270716c89.js" async=""></script><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/turbopack-061098e08d2d65fd.js" async=""></script><script src="/_next/static/chunks/427ad77fb6b91e0d.js" async=""></script><script src="/_next/static/chunks/f1cfe0e077c7cfd8.js" async=""></script><script src="/_next/static/chunks/15d7561d33aaf44a.js" async=""></script><script src="/_next/static/chunks/0f7f83dee53e9578.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>Mongoose Studio</title><meta name="description" content="A modern GUI for your Mongoose models"/><link rel="icon" href="/favicon.ico?favicon.49110fa3.ico" sizes="48x48" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen"><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="w-64 bg-zinc-900 border-r border-zinc-800"></div><!--/$--><main class="flex-1 ml-64 overflow-auto"><div class="flex flex-col items-center justify-center h-full"><h2 class="text-xl font-bold mb-4">Not Found</h2><p class="text-zinc-500 mb-4">Could not find requested resource</p><a class="text-emerald-500 hover:underline" href="/">Return Home</a></div><!--$--><!--/$--></main></div><script src="/_next/static/chunks/177f15bb24010289.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:\"$Sreact.suspense\"\n3:I[4816,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"Sidebar\"]\n4:I[15838,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n5:I[7840,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n6:I[62504,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"\"]\n7:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"OutletBoundary\"]\n9:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ViewportBoundary\"]\nb:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"MetadataBoundary\"]\nd:I[32435,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n:HL[\"/_next/static/chunks/298fc2d040ac93e5.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"fb12BI1tiW-IFIdZQyP89\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/298fc2d040ac93e5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/f1cfe0e077c7cfd8.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-screen\",\"children\":[[\"$\",\"$2\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"w-64 bg-zinc-900 border-r border-zinc-800\"}],\"children\":[\"$\",\"$L3\",null,{}]}],[\"$\",\"main\",null,{\"className\":\"flex-1 ml-64 overflow-auto\",\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],null,[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"e:I[97608,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"IconMark\"]\n8:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"Mongoose Studio\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A modern GUI for your Mongoose models\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.49110fa3.ico\",\"sizes\":\"48x48\",\"type\":\"image/x-icon\"}],[\"$\",\"$Le\",\"3\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--cnr_HTrvnnudsv2XLzCuN--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/298fc2d040ac93e5.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/177f15bb24010289.js"/><script src="/_next/static/chunks/e08f4a8f5f863401.js" async=""></script><script src="/_next/static/chunks/4642f2face723696.js" async=""></script><script src="/_next/static/chunks/eaa2b3b270716c89.js" async=""></script><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/turbopack-061098e08d2d65fd.js" async=""></script><script src="/_next/static/chunks/427ad77fb6b91e0d.js" async=""></script><script src="/_next/static/chunks/f1cfe0e077c7cfd8.js" async=""></script><script src="/_next/static/chunks/15d7561d33aaf44a.js" async=""></script><script src="/_next/static/chunks/0f7f83dee53e9578.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>Mongoose Studio</title><meta name="description" content="A modern GUI for your Mongoose models"/><link rel="icon" href="/favicon.ico?favicon.49110fa3.ico" sizes="48x48" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen"><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="w-64 bg-zinc-900 border-r border-zinc-800"></div><!--/$--><main class="flex-1 ml-64 overflow-auto"><div class="flex flex-col items-center justify-center h-full"><h2 class="text-xl font-bold mb-4">Not Found</h2><p class="text-zinc-500 mb-4">Could not find requested resource</p><a class="text-emerald-500 hover:underline" href="/">Return Home</a></div><!--$--><!--/$--></main></div><script src="/_next/static/chunks/177f15bb24010289.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:\"$Sreact.suspense\"\n3:I[4816,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"Sidebar\"]\n4:I[15838,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n5:I[7840,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n6:I[62504,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"\"]\n7:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"OutletBoundary\"]\n9:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ViewportBoundary\"]\nb:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"MetadataBoundary\"]\nd:I[32435,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n:HL[\"/_next/static/chunks/298fc2d040ac93e5.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"cnr-HTrvnnudsv2XLzCuN\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/298fc2d040ac93e5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/f1cfe0e077c7cfd8.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-screen\",\"children\":[[\"$\",\"$2\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"w-64 bg-zinc-900 border-r border-zinc-800\"}],\"children\":[\"$\",\"$L3\",null,{}]}],[\"$\",\"main\",null,{\"className\":\"flex-1 ml-64 overflow-auto\",\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],null,[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"e:I[97608,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"IconMark\"]\n8:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"Mongoose Studio\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A modern GUI for your Mongoose models\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.49110fa3.ico\",\"sizes\":\"48x48\",\"type\":\"image/x-icon\"}],[\"$\",\"$Le\",\"3\",{}]]\n"])</script></body></html>
@@ -3,7 +3,7 @@
3
3
  3:I[82010,["/_next/static/chunks/427ad77fb6b91e0d.js","/_next/static/chunks/f1cfe0e077c7cfd8.js","/_next/static/chunks/91f078afda525bea.js"],"default"]
4
4
  6:I[22556,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"OutletBoundary"]
5
5
  7:"$Sreact.suspense"
6
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/91f078afda525bea.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/91f078afda525bea.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
7
7
  4:{}
8
8
  5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
9
9
  8:null
@@ -12,7 +12,7 @@ f:I[22556,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f
12
12
  11:I[32435,[],"default"]
13
13
  :HL["/_next/static/chunks/298fc2d040ac93e5.css","style"]
14
14
  :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
15
- 0:{"P":null,"b":"fb12BI1tiW-IFIdZQyP89","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/91f078afda525bea.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$2",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$2",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
15
+ 0:{"P":null,"b":"cnr-HTrvnnudsv2XLzCuN","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/91f078afda525bea.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$2",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$2",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
16
16
  9:{}
17
17
  a:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
18
18
  e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
@@ -3,4 +3,4 @@
3
3
  3:I[22556,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
5
  5:I[97608,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"IconMark"]
6
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mongoose Studio"}],["$","meta","1",{"name":"description","content":"A modern GUI for your Mongoose models"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.49110fa3.ico","sizes":"48x48","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mongoose Studio"}],["$","meta","1",{"name":"description","content":"A modern GUI for your Mongoose models"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.49110fa3.ico","sizes":"48x48","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
@@ -5,4 +5,4 @@
5
5
  5:I[7840,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"default"]
6
6
  6:I[62504,["/_next/static/chunks/427ad77fb6b91e0d.js","/_next/static/chunks/f1cfe0e077c7cfd8.js"],""]
7
7
  :HL["/_next/static/chunks/298fc2d040ac93e5.css","style"]
8
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]]}]}]]}]}]}]]}],"loading":null,"isPartial":false}
8
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]]}]}]]}]}]}]]}],"loading":null,"isPartial":false}
@@ -1,3 +1,3 @@
1
1
  :HL["/_next/static/chunks/298fc2d040ac93e5.css","style"]
2
2
  :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
3
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
3
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -9,7 +9,7 @@
9
9
  b:I[22556,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"MetadataBoundary"]
10
10
  d:I[32435,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"default"]
11
11
  :HL["/_next/static/chunks/298fc2d040ac93e5.css","style"]
12
- 0:{"P":null,"b":"fb12BI1tiW-IFIdZQyP89","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],null,["$","$L7",null,{"children":["$","$2",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$2",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d","$undefined"],"S":true}
12
+ 0:{"P":null,"b":"cnr-HTrvnnudsv2XLzCuN","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],null,["$","$L7",null,{"children":["$","$2",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$2",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d","$undefined"],"S":true}
13
13
  a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
14
14
  e:I[97608,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"IconMark"]
15
15
  8:null
@@ -3,4 +3,4 @@
3
3
  3:I[22556,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
5
  5:I[97608,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"IconMark"]
6
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mongoose Studio"}],["$","meta","1",{"name":"description","content":"A modern GUI for your Mongoose models"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.49110fa3.ico","sizes":"48x48","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Mongoose Studio"}],["$","meta","1",{"name":"description","content":"A modern GUI for your Mongoose models"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.49110fa3.ico","sizes":"48x48","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
@@ -5,4 +5,4 @@
5
5
  5:I[7840,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"default"]
6
6
  6:I[62504,["/_next/static/chunks/427ad77fb6b91e0d.js","/_next/static/chunks/f1cfe0e077c7cfd8.js"],""]
7
7
  :HL["/_next/static/chunks/298fc2d040ac93e5.css","style"]
8
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]]}]}]]}]}]}]]}],"loading":null,"isPartial":false}
8
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]]}]}]]}]}]}]]}],"loading":null,"isPartial":false}
@@ -2,5 +2,5 @@
2
2
  2:I[62504,["/_next/static/chunks/427ad77fb6b91e0d.js","/_next/static/chunks/f1cfe0e077c7cfd8.js"],""]
3
3
  3:I[22556,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"OutletBoundary"]
4
4
  4:"$Sreact.suspense"
5
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","rsc":["$","$1","c",{"children":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L2",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],null,["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"loading":null,"isPartial":false}
5
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","rsc":["$","$1","c",{"children":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L2",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],null,["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"loading":null,"isPartial":false}
6
6
  5:null
@@ -1,4 +1,4 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[15838,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"default"]
3
3
  3:I[7840,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"default"]
4
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,2 +1,2 @@
1
1
  :HL["/_next/static/chunks/298fc2d040ac93e5.css","style"]
2
- 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
2
+ 0:{"buildId":"cnr-HTrvnnudsv2XLzCuN","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--fb12BI1tiW_IFIdZQyP89--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/298fc2d040ac93e5.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/177f15bb24010289.js"/><script src="/_next/static/chunks/e08f4a8f5f863401.js" async=""></script><script src="/_next/static/chunks/4642f2face723696.js" async=""></script><script src="/_next/static/chunks/eaa2b3b270716c89.js" async=""></script><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/turbopack-061098e08d2d65fd.js" async=""></script><script src="/_next/static/chunks/427ad77fb6b91e0d.js" async=""></script><script src="/_next/static/chunks/f1cfe0e077c7cfd8.js" async=""></script><script src="/_next/static/chunks/15d7561d33aaf44a.js" async=""></script><script src="/_next/static/chunks/0f7f83dee53e9578.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>Mongoose Studio</title><meta name="description" content="A modern GUI for your Mongoose models"/><link rel="icon" href="/favicon.ico?favicon.49110fa3.ico" sizes="48x48" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen"><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="w-64 bg-zinc-900 border-r border-zinc-800"></div><!--/$--><main class="flex-1 ml-64 overflow-auto"><div class="flex flex-col items-center justify-center h-full"><h2 class="text-xl font-bold mb-4">Not Found</h2><p class="text-zinc-500 mb-4">Could not find requested resource</p><a class="text-emerald-500 hover:underline" href="/">Return Home</a></div><!--$--><!--/$--></main></div><script src="/_next/static/chunks/177f15bb24010289.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:\"$Sreact.suspense\"\n3:I[4816,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"Sidebar\"]\n4:I[15838,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n5:I[7840,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n6:I[62504,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"\"]\n7:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"OutletBoundary\"]\n9:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ViewportBoundary\"]\nb:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"MetadataBoundary\"]\nd:I[32435,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n:HL[\"/_next/static/chunks/298fc2d040ac93e5.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"fb12BI1tiW-IFIdZQyP89\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/298fc2d040ac93e5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/f1cfe0e077c7cfd8.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-screen\",\"children\":[[\"$\",\"$2\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"w-64 bg-zinc-900 border-r border-zinc-800\"}],\"children\":[\"$\",\"$L3\",null,{}]}],[\"$\",\"main\",null,{\"className\":\"flex-1 ml-64 overflow-auto\",\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],null,[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"e:I[97608,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"IconMark\"]\n8:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"Mongoose Studio\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A modern GUI for your Mongoose models\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.49110fa3.ico\",\"sizes\":\"48x48\",\"type\":\"image/x-icon\"}],[\"$\",\"$Le\",\"3\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--cnr_HTrvnnudsv2XLzCuN--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/298fc2d040ac93e5.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/177f15bb24010289.js"/><script src="/_next/static/chunks/e08f4a8f5f863401.js" async=""></script><script src="/_next/static/chunks/4642f2face723696.js" async=""></script><script src="/_next/static/chunks/eaa2b3b270716c89.js" async=""></script><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/turbopack-061098e08d2d65fd.js" async=""></script><script src="/_next/static/chunks/427ad77fb6b91e0d.js" async=""></script><script src="/_next/static/chunks/f1cfe0e077c7cfd8.js" async=""></script><script src="/_next/static/chunks/15d7561d33aaf44a.js" async=""></script><script src="/_next/static/chunks/0f7f83dee53e9578.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>Mongoose Studio</title><meta name="description" content="A modern GUI for your Mongoose models"/><link rel="icon" href="/favicon.ico?favicon.49110fa3.ico" sizes="48x48" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen"><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="w-64 bg-zinc-900 border-r border-zinc-800"></div><!--/$--><main class="flex-1 ml-64 overflow-auto"><div class="flex flex-col items-center justify-center h-full"><h2 class="text-xl font-bold mb-4">Not Found</h2><p class="text-zinc-500 mb-4">Could not find requested resource</p><a class="text-emerald-500 hover:underline" href="/">Return Home</a></div><!--$--><!--/$--></main></div><script src="/_next/static/chunks/177f15bb24010289.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:\"$Sreact.suspense\"\n3:I[4816,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"Sidebar\"]\n4:I[15838,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n5:I[7840,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n6:I[62504,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"\"]\n7:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"OutletBoundary\"]\n9:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ViewportBoundary\"]\nb:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"MetadataBoundary\"]\nd:I[32435,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n:HL[\"/_next/static/chunks/298fc2d040ac93e5.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"cnr-HTrvnnudsv2XLzCuN\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/298fc2d040ac93e5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/f1cfe0e077c7cfd8.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-screen\",\"children\":[[\"$\",\"$2\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"w-64 bg-zinc-900 border-r border-zinc-800\"}],\"children\":[\"$\",\"$L3\",null,{}]}],[\"$\",\"main\",null,{\"className\":\"flex-1 ml-64 overflow-auto\",\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],null,[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"e:I[97608,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"IconMark\"]\n8:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"Mongoose Studio\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A modern GUI for your Mongoose models\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.49110fa3.ico\",\"sizes\":\"48x48\",\"type\":\"image/x-icon\"}],[\"$\",\"$Le\",\"3\",{}]]\n"])</script></body></html>
@@ -9,7 +9,7 @@
9
9
  b:I[22556,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"MetadataBoundary"]
10
10
  d:I[32435,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"default"]
11
11
  :HL["/_next/static/chunks/298fc2d040ac93e5.css","style"]
12
- 0:{"P":null,"b":"fb12BI1tiW-IFIdZQyP89","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],null,["$","$L7",null,{"children":["$","$2",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$2",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d","$undefined"],"S":true}
12
+ 0:{"P":null,"b":"cnr-HTrvnnudsv2XLzCuN","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],null,["$","$L7",null,{"children":["$","$2",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$2",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d","$undefined"],"S":true}
13
13
  a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
14
14
  e:I[97608,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f83dee53e9578.js"],"IconMark"]
15
15
  8:null
@@ -1 +1 @@
1
- <!DOCTYPE html><!--fb12BI1tiW_IFIdZQyP89--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/chunks/298fc2d040ac93e5.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/177f15bb24010289.js"/><script src="/_next/static/chunks/e08f4a8f5f863401.js" async=""></script><script src="/_next/static/chunks/4642f2face723696.js" async=""></script><script src="/_next/static/chunks/eaa2b3b270716c89.js" async=""></script><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/turbopack-061098e08d2d65fd.js" async=""></script><script src="/_next/static/chunks/427ad77fb6b91e0d.js" async=""></script><script src="/_next/static/chunks/f1cfe0e077c7cfd8.js" async=""></script><script src="/_next/static/chunks/15d7561d33aaf44a.js" async=""></script><script src="/_next/static/chunks/0f7f83dee53e9578.js" async=""></script><script src="/_next/static/chunks/91f078afda525bea.js" async=""></script><meta name="next-size-adjust" content=""/><title>Mongoose Studio</title><meta name="description" content="A modern GUI for your Mongoose models"/><link rel="icon" href="/favicon.ico?favicon.49110fa3.ico" sizes="48x48" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen"><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="w-64 bg-zinc-900 border-r border-zinc-800"></div><!--/$--><main class="flex-1 ml-64 overflow-auto"><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div>Loading...</div><!--/$--><!--$--><!--/$--></main></div><script src="/_next/static/chunks/177f15bb24010289.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:\"$Sreact.suspense\"\n3:I[4816,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"Sidebar\"]\n4:I[15838,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n5:I[7840,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n6:I[62504,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"\"]\n7:I[39262,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ClientPageRoot\"]\n8:I[82010,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\",\"/_next/static/chunks/91f078afda525bea.js\"],\"default\"]\nb:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"OutletBoundary\"]\nd:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ViewportBoundary\"]\nf:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"MetadataBoundary\"]\n11:I[32435,[],\"default\"]\n:HL[\"/_next/static/chunks/298fc2d040ac93e5.css\",\"style\"]\n:HL[\"/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"fb12BI1tiW-IFIdZQyP89\",\"c\":[\"\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/298fc2d040ac93e5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/f1cfe0e077c7cfd8.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-screen\",\"children\":[[\"$\",\"$2\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"w-64 bg-zinc-900 border-r border-zinc-800\"}],\"children\":[\"$\",\"$L3\",null,{}]}],[\"$\",\"main\",null,{\"className\":\"flex-1 ml-64 overflow-auto\",\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{\"Component\":\"$8\",\"serverProvidedParams\":{\"searchParams\":{},\"params\":{},\"promises\":[\"$@9\",\"$@a\"]}}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/91f078afda525bea.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@c\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$Ld\",null,{\"children\":\"$Le\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lf\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L10\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:{}\na:\"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params\"\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"12:I[97608,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"IconMark\"]\nc:null\n10:[[\"$\",\"title\",\"0\",{\"children\":\"Mongoose Studio\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A modern GUI for your Mongoose models\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.49110fa3.ico\",\"sizes\":\"48x48\",\"type\":\"image/x-icon\"}],[\"$\",\"$L12\",\"3\",{}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--cnr_HTrvnnudsv2XLzCuN--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/chunks/298fc2d040ac93e5.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/177f15bb24010289.js"/><script src="/_next/static/chunks/e08f4a8f5f863401.js" async=""></script><script src="/_next/static/chunks/4642f2face723696.js" async=""></script><script src="/_next/static/chunks/eaa2b3b270716c89.js" async=""></script><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/turbopack-061098e08d2d65fd.js" async=""></script><script src="/_next/static/chunks/427ad77fb6b91e0d.js" async=""></script><script src="/_next/static/chunks/f1cfe0e077c7cfd8.js" async=""></script><script src="/_next/static/chunks/15d7561d33aaf44a.js" async=""></script><script src="/_next/static/chunks/0f7f83dee53e9578.js" async=""></script><script src="/_next/static/chunks/91f078afda525bea.js" async=""></script><meta name="next-size-adjust" content=""/><title>Mongoose Studio</title><meta name="description" content="A modern GUI for your Mongoose models"/><link rel="icon" href="/favicon.ico?favicon.49110fa3.ico" sizes="48x48" type="image/x-icon"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen"><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="w-64 bg-zinc-900 border-r border-zinc-800"></div><!--/$--><main class="flex-1 ml-64 overflow-auto"><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div>Loading...</div><!--/$--><!--$--><!--/$--></main></div><script src="/_next/static/chunks/177f15bb24010289.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:\"$Sreact.suspense\"\n3:I[4816,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"Sidebar\"]\n4:I[15838,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n5:I[7840,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"default\"]\n6:I[62504,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\"],\"\"]\n7:I[39262,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ClientPageRoot\"]\n8:I[82010,[\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"/_next/static/chunks/f1cfe0e077c7cfd8.js\",\"/_next/static/chunks/91f078afda525bea.js\"],\"default\"]\nb:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"OutletBoundary\"]\nd:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ViewportBoundary\"]\nf:I[22556,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"MetadataBoundary\"]\n11:I[32435,[],\"default\"]\n:HL[\"/_next/static/chunks/298fc2d040ac93e5.css\",\"style\"]\n:HL[\"/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"cnr-HTrvnnudsv2XLzCuN\",\"c\":[\"\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/298fc2d040ac93e5.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/427ad77fb6b91e0d.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/f1cfe0e077c7cfd8.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"children\":[\"$\",\"body\",null,{\"className\":\"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-screen\",\"children\":[[\"$\",\"$2\",null,{\"fallback\":[\"$\",\"div\",null,{\"className\":\"w-64 bg-zinc-900 border-r border-zinc-800\"}],\"children\":[\"$\",\"$L3\",null,{}]}],[\"$\",\"main\",null,{\"className\":\"flex-1 ml-64 overflow-auto\",\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"div\",null,{\"className\":\"flex flex-col items-center justify-center h-full\",\"children\":[[\"$\",\"h2\",null,{\"className\":\"text-xl font-bold mb-4\",\"children\":\"Not Found\"}],[\"$\",\"p\",null,{\"className\":\"text-zinc-500 mb-4\",\"children\":\"Could not find requested resource\"}],[\"$\",\"$L6\",null,{\"href\":\"/\",\"className\":\"text-emerald-500 hover:underline\",\"children\":\"Return Home\"}]]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L7\",null,{\"Component\":\"$8\",\"serverProvidedParams\":{\"searchParams\":{},\"params\":{},\"promises\":[\"$@9\",\"$@a\"]}}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/91f078afda525bea.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@c\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$Ld\",null,{\"children\":\"$Le\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lf\",null,{\"children\":[\"$\",\"$2\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L10\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:{}\na:\"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params\"\n"])</script><script>self.__next_f.push([1,"e:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"12:I[97608,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"IconMark\"]\nc:null\n10:[[\"$\",\"title\",\"0\",{\"children\":\"Mongoose Studio\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"A modern GUI for your Mongoose models\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.49110fa3.ico\",\"sizes\":\"48x48\",\"type\":\"image/x-icon\"}],[\"$\",\"$L12\",\"3\",{}]]\n"])</script></body></html>
package/dist/ui/index.txt CHANGED
@@ -12,7 +12,7 @@ f:I[22556,["/_next/static/chunks/15d7561d33aaf44a.js","/_next/static/chunks/0f7f
12
12
  11:I[32435,[],"default"]
13
13
  :HL["/_next/static/chunks/298fc2d040ac93e5.css","style"]
14
14
  :HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
15
- 0:{"P":null,"b":"fb12BI1tiW-IFIdZQyP89","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/91f078afda525bea.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$2",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$2",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
15
+ 0:{"P":null,"b":"cnr-HTrvnnudsv2XLzCuN","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/298fc2d040ac93e5.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/427ad77fb6b91e0d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/f1cfe0e077c7cfd8.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","children":["$","body",null,{"className":"inter_5972bc34-module__OU16Qa__className bg-zinc-950 text-zinc-200 antialiased","children":["$","div",null,{"className":"flex h-screen","children":[["$","$2",null,{"fallback":["$","div",null,{"className":"w-64 bg-zinc-900 border-r border-zinc-800"}],"children":["$","$L3",null,{}]}],["$","main",null,{"className":"flex-1 ml-64 overflow-auto","children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","div",null,{"className":"flex flex-col items-center justify-center h-full","children":[["$","h2",null,{"className":"text-xl font-bold mb-4","children":"Not Found"}],["$","p",null,{"className":"text-zinc-500 mb-4","children":"Could not find requested resource"}],["$","$L6",null,{"href":"/","className":"text-emerald-500 hover:underline","children":"Return Home"}]]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L7",null,{"Component":"$8","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@9","$@a"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/91f078afda525bea.js","async":true,"nonce":"$undefined"}]],["$","$Lb",null,{"children":["$","$2",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$2",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
16
16
  9:{}
17
17
  a:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
18
18
  e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mongoose-studio",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "A modern, zero-config GUI for your Mongoose models. Run instantly with npx mongoose-studio.",
5
5
  "keywords": [
6
6
  "mongoose",
@@ -9,10 +9,22 @@
9
9
  "admin",
10
10
  "mongodb",
11
11
  "cli",
12
- "database"
12
+ "database",
13
+ "dashboard",
14
+ "visualizer",
15
+ "developer-tools",
16
+ "introspection"
13
17
  ],
14
18
  "author": "Yasir",
15
19
  "license": "MIT",
20
+ "homepage": "https://mongoose-studio.yaasir.dev",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/sirrryasir/mongoose-studio"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/sirrryasir/mongoose-studio/issues"
27
+ },
16
28
  "module": "index.ts",
17
29
  "type": "module",
18
30
  "bin": {
@@ -37,4 +49,4 @@
37
49
  "dependencies": {
38
50
  "hono": "^4.11.7"
39
51
  }
40
- }
52
+ }