mongoose-studio 1.0.2 → 1.0.3

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,66 +1,83 @@
1
- # Mongoose Studio
1
+ # <img src="https://mongoose-studio.yaasir.dev/logo.png" width="40" valign="middle" alt="Mongoose Studio Logo" /> Mongoose Studio
2
2
 
3
- **A Graphical User Interface for Mongoose.**
4
- Visualize Mongoose models, schemas, and data within existing projects.
3
+ **Your Mongoose Data, Visualized.**
4
+
5
+ ![Mongoose Studio Banner](https://mongoose-studio.yaasir.dev/hero-screenshot.png)
6
+
7
+ [![npm version](https://img.shields.io/npm/v/mongoose-studio.svg?style=flat-square)](https://www.npmjs.org/package/mongoose-studio)
8
+ [![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
+ [![downloads](https://img.shields.io/npm/dm/mongoose-studio.svg?style=flat-square)](https://npm-stat.com/charts.html?package=mongoose-studio)
10
+
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
+ ---
5
16
 
6
17
  ## Features
7
18
 
8
- - **Zero Configuration**: Execute `npx mongoose-studio` in the project root to start.
9
- - **Schema Inspection**: Visualize schemas, types, validations, and default values.
10
- - **Data Exploration**: View documents in a tabular format.
11
- - **Read-Only**: Prevents accidental data modification by defaulting to read-only mode.
12
- - **Auto-Detection**: Automatically detects the `models/` directory and `.env` configuration.
13
- - **Unified Execution**: Launches both the API and UI with a single command.
19
+ - **Zero Configuration**: No config files, no route setup. It reads your code.
20
+ - **Schema-Aware**: Visualizes data respecting your Mongoose schema types, defaults, and validations.
21
+ - **Read-Only Safe**: Defaults to read-only mode to prevent accidental production edits.
22
+ - **Instant Launch**: Runs directly from your terminal using `npx` or `bunx`.
23
+ - **Hot Reload**: (Coming Soon) Updates the UI as you change your schemas.
14
24
 
15
25
  ## Quick Start
16
26
 
17
- Execute the tool directly in the project directory (no installation required):
27
+ Go to your project directory (where your `models/` folder lives) and run:
18
28
 
19
29
  ```bash
20
- # Using Bun
21
- bunx mongoose-studio
22
-
23
- # Using npm
24
30
  npx mongoose-studio
25
31
  ```
26
32
 
27
- That's it! Your browser will open automatically.
33
+ or with Bun:
28
34
 
29
- ## 🛠️ Requirements
35
+ ```bash
36
+ bunx mongoose-studio
37
+ ```
30
38
 
31
- - **Runtime**: Node.js (v18+) or Bun (v1+).
32
- - **Database**: A running MongoDB instance.
33
- - **Project**: A project using `mongoose` with models defined.
39
+ That's it!
40
+ 1. It automatically finds your models.
41
+ 2. It connects using your `.env` string.
42
+ 3. It opens **http://localhost:5555**.
34
43
 
35
- ## ⚙️ Configuration
44
+ ## Configuration
36
45
 
37
- Mongoose Studio tries to be smart, but you can override defaults:
46
+ While it works out of the box, you can customize it via flags:
38
47
 
39
- | Flag | Env Var | Default | Description |
40
- |------|---------|---------|-------------|
41
- | `--port` | `PORT` | `5555` | Port for the Studio server |
42
- | `--uri` | `MONGO_URI` | `mongodb://localhost:27017/test` | MongoDB Connection String |
48
+ | Flag | Default | Description |
49
+ | :--------- | :--------------------------- | :----------------------------------------------- |
50
+ | `--port` | `5555` | The port to run the Studio server on. |
51
+ | `--uri` | `process.env.MONGO_URI` | Custom MongoDB connection string. |
52
+ | `--models` | Auto-detected (`./models`, etc) | Path to your models folder if not found automatically. |
43
53
 
44
- Example:
54
+ **Example:**
45
55
  ```bash
46
- bunx mongoose-studio --port=8080 --uri=mongodb://user:pass@remote:27017/prod
56
+ npx mongoose-studio --port=8080 --models=src/database/schemas
47
57
  ```
48
58
 
49
- ## 🏗️ How it Works
59
+ ## Troubleshooting
60
+
61
+ **"Mongoose not found"**
62
+ Ensure you are running the command in the root of a project that has `mongoose` installed (`npm install mongoose`).
63
+
64
+ **"No models found"**
65
+ Mongoose Studio looks in common folders (`models`, `src/models`, `lib/models`). If you store them elsewhere, use the `--models` flag:
66
+ `npx mongoose-studio --models=src/entities`
67
+
68
+ **"Port in use"**
69
+ If port 5555 is taken, the tool connects to the next available port automatically (e.g., 5556).
70
+
71
+ > For deeper troubleshooting, check the [Documentation Site](https://mongoose-studio.yaasir.dev/docs).
50
72
 
51
- 1. **Scans Models**: Looks for a `models/` directory in your current working directory.
52
- 2. **Loads Code**: Dynamically imports your model files to register them with Mongoose.
53
- 3. **Introspects**: Reads the registered Mongoose schemas to build the UI columns.
54
- 4. **Connects**: Connects to the DB using your local environment variables.
55
- 5. **Serves**: Starts a local server that hosts the UI and the API.
73
+ ## Contributing
56
74
 
57
- ## 🤝 Contributing
75
+ We love contributions! Mongoose Studio is a monorepo built with **Bun**, **Hono** (Server), and **Next.js** (UI).
58
76
 
59
- We love contributions!
60
- 1. Clone the repo: `git clone https://github.com/sirrryasir/mongoose-studio`
61
- 2. Install deps: `bun install`
62
- 3. Run dev: `bun run dev`
77
+ 1. Clone the repository.
78
+ 2. Run `bun install`.
79
+ 3. Run `bun run dev` to start both the CLI logic and the Next.js UI in development mode.
63
80
 
64
- ## 📄 License
81
+ ## License
65
82
 
66
- MIT © Yasir
83
+ MIT © [Yasir](https://github.com/sirrryasir)
package/dist/ui/404.html CHANGED
@@ -1 +1 @@
1
- <!DOCTYPE html><!--7dgjdiWDtz0_BGbjNnRkW--><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\":\"7dgjdiWDtz0_BGbjNnRkW\",\"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><!--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>
@@ -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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
@@ -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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
@@ -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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
@@ -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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
@@ -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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
@@ -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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
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":"7dgjdiWDtz0_BGbjNnRkW","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
4
+ 0:{"buildId":"fb12BI1tiW-IFIdZQyP89","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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--7dgjdiWDtz0_BGbjNnRkW--><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\":\"7dgjdiWDtz0_BGbjNnRkW\",\"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><!--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>
@@ -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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
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><!--7dgjdiWDtz0_BGbjNnRkW--><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\":\"7dgjdiWDtz0_BGbjNnRkW\",\"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><!--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>
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":"7dgjdiWDtz0_BGbjNnRkW","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":"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}
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.2",
3
+ "version": "1.0.3",
4
4
  "description": "A modern, zero-config GUI for your Mongoose models. Run instantly with npx mongoose-studio.",
5
5
  "keywords": [
6
6
  "mongoose",