mongoose-studio 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -13
- package/dist/index.js +33 -8
- package/dist/ui/404.html +1 -1
- package/dist/ui/__next.__PAGE__.txt +1 -1
- package/dist/ui/__next._full.txt +1 -1
- package/dist/ui/__next._head.txt +1 -1
- package/dist/ui/__next._index.txt +1 -1
- package/dist/ui/__next._tree.txt +1 -1
- package/dist/ui/_not-found/__next._full.txt +1 -1
- package/dist/ui/_not-found/__next._head.txt +1 -1
- package/dist/ui/_not-found/__next._index.txt +1 -1
- package/dist/ui/_not-found/__next._not-found.__PAGE__.txt +1 -1
- package/dist/ui/_not-found/__next._not-found.txt +1 -1
- package/dist/ui/_not-found/__next._tree.txt +1 -1
- package/dist/ui/_not-found.html +1 -1
- package/dist/ui/_not-found.txt +1 -1
- package/dist/ui/index.html +1 -1
- package/dist/ui/index.txt +1 -1
- package/package.json +1 -1
- /package/dist/ui/_next/static/{CFRORV4RwGH9YJ4KZJLz8 → B5vRhR7n4SabNR91cYnqJ}/_buildManifest.js +0 -0
- /package/dist/ui/_next/static/{CFRORV4RwGH9YJ4KZJLz8 → B5vRhR7n4SabNR91cYnqJ}/_clientMiddlewareManifest.json +0 -0
- /package/dist/ui/_next/static/{CFRORV4RwGH9YJ4KZJLz8 → B5vRhR7n4SabNR91cYnqJ}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Mongoose Studio
|
|
2
2
|
|
|
3
|
-
**
|
|
4
|
-
|
|
3
|
+
**A Graphical User Interface for Mongoose.**
|
|
4
|
+
Visualize Mongoose models, schemas, and data within existing projects.
|
|
5
5
|
|
|
6
|
-
##
|
|
6
|
+
## Features
|
|
7
7
|
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
-
|
|
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.
|
|
14
14
|
|
|
15
|
-
##
|
|
15
|
+
## Quick Start
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Execute the tool directly in the project directory (no installation required):
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
# Using Bun
|
|
20
|
+
# Using Bun
|
|
21
21
|
bunx mongoose-studio
|
|
22
22
|
|
|
23
23
|
# Using npm
|
package/dist/index.js
CHANGED
|
@@ -60083,8 +60083,10 @@ async function loadLocalModels(modelsPath) {
|
|
|
60083
60083
|
if (!fs.existsSync(modelsPath)) {
|
|
60084
60084
|
return results;
|
|
60085
60085
|
}
|
|
60086
|
-
const
|
|
60087
|
-
const
|
|
60086
|
+
const glob = new Bun.Glob("**/*.{ts,js}");
|
|
60087
|
+
for await (const file of glob.scan({ cwd: modelsPath })) {
|
|
60088
|
+
if (file.endsWith(".d.ts"))
|
|
60089
|
+
continue;
|
|
60088
60090
|
const fullPath = path.join(modelsPath, file);
|
|
60089
60091
|
try {
|
|
60090
60092
|
await import(fullPath);
|
|
@@ -60092,8 +60094,7 @@ async function loadLocalModels(modelsPath) {
|
|
|
60092
60094
|
} catch (err) {
|
|
60093
60095
|
results.errors.push(`${file}: ${err.message}`);
|
|
60094
60096
|
}
|
|
60095
|
-
}
|
|
60096
|
-
await Promise.all(loadPromises);
|
|
60097
|
+
}
|
|
60097
60098
|
return results;
|
|
60098
60099
|
}
|
|
60099
60100
|
|
|
@@ -61762,12 +61763,29 @@ async function main() {
|
|
|
61762
61763
|
console.warn("Mongoose not found in project. Falling back to internal instance.");
|
|
61763
61764
|
}
|
|
61764
61765
|
const mongoose = getMongoose();
|
|
61765
|
-
const
|
|
61766
|
-
|
|
61766
|
+
const manualModelsDir = process.argv.find((arg) => arg.startsWith("--models="))?.split("=")[1];
|
|
61767
|
+
let modelsPath = "";
|
|
61768
|
+
if (manualModelsDir) {
|
|
61769
|
+
modelsPath = path3.resolve(projectRoot, manualModelsDir);
|
|
61770
|
+
} else {
|
|
61771
|
+
const candidates = ["src/models", "models", "lib/models", "dist/models"];
|
|
61772
|
+
for (const candidate of candidates) {
|
|
61773
|
+
const tempPath = path3.join(projectRoot, candidate);
|
|
61774
|
+
if (existsSync(tempPath)) {
|
|
61775
|
+
modelsPath = tempPath;
|
|
61776
|
+
break;
|
|
61777
|
+
}
|
|
61778
|
+
}
|
|
61779
|
+
}
|
|
61780
|
+
if (modelsPath && existsSync(modelsPath)) {
|
|
61767
61781
|
console.log("Scanning models in:", modelsPath);
|
|
61768
61782
|
const { loaded, errors } = await loadLocalModels(modelsPath);
|
|
61769
61783
|
loaded.forEach((file) => console.log(` Loaded: ${file}`));
|
|
61770
61784
|
errors.forEach((err) => console.error(` Error: ${err}`));
|
|
61785
|
+
} else if (manualModelsDir) {
|
|
61786
|
+
console.error(`Error: The specified models directory '${manualModelsDir}' was not found.`);
|
|
61787
|
+
} else if (modelNames.length === 0) {
|
|
61788
|
+
console.warn("Hint: No 'models/' or 'src/models/' directory found. If your models are elsewhere, use --models=path/to/models");
|
|
61771
61789
|
}
|
|
61772
61790
|
const modelNames = mongoose.modelNames();
|
|
61773
61791
|
console.log(`
|
|
@@ -61818,9 +61836,16 @@ Studio running at http://localhost:${port}`);
|
|
|
61818
61836
|
setTimeout(() => {
|
|
61819
61837
|
const url = `http://localhost:${port}`;
|
|
61820
61838
|
console.log(`
|
|
61821
|
-
|
|
61839
|
+
To access Mongoose Studio, open:
|
|
61840
|
+
${url}
|
|
61841
|
+
`);
|
|
61822
61842
|
const openCmd = process.platform === "darwin" ? "open" : process.platform === "linux" ? "xdg-open" : "start";
|
|
61823
|
-
|
|
61843
|
+
try {
|
|
61844
|
+
Bun.spawn([openCmd, url], {
|
|
61845
|
+
stderr: "ignore",
|
|
61846
|
+
stdout: "ignore"
|
|
61847
|
+
}).unref();
|
|
61848
|
+
} catch (e) {}
|
|
61824
61849
|
}, 1000);
|
|
61825
61850
|
console.log(`
|
|
61826
61851
|
Press Ctrl+C to stop.`);
|
package/dist/ui/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--B5vRhR7n4SabNR91cYnqJ--><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/9fec2b9adefcf25d.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/f1a8a6deaad6e1a7.js"/><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/a2807f954e6ee5ce.js" async=""></script><script src="/_next/static/chunks/c1c5d6f55edfd0a4.js" async=""></script><script src="/_next/static/chunks/turbopack-30ad15deb948747f.js" async=""></script><script src="/_next/static/chunks/f239c6a8bb1d406c.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.0b3bf435.ico" sizes="256x256" 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/f1a8a6deaad6e1a7.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/f239c6a8bb1d406c.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/f239c6a8bb1d406c.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/9fec2b9adefcf25d.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"B5vRhR7n4SabNR91cYnqJ\",\"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/9fec2b9adefcf25d.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/f239c6a8bb1d406c.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.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Le\",\"3\",{}]]\n"])</script></body></html>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
3:I[82010,["/_next/static/chunks/f239c6a8bb1d406c.js","/_next/static/chunks/3c0e6dafbc3cc0ff.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":"
|
|
6
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3c0e6dafbc3cc0ff.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
|
package/dist/ui/__next._full.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/9fec2b9adefcf25d.css","style"]
|
|
14
14
|
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"B5vRhR7n4SabNR91cYnqJ","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/9fec2b9adefcf25d.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/f239c6a8bb1d406c.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/3c0e6dafbc3cc0ff.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/dist/ui/__next._head.txt
CHANGED
|
@@ -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":"
|
|
6
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","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.0b3bf435.ico","sizes":"256x256","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/f239c6a8bb1d406c.js"],""]
|
|
7
7
|
:HL["/_next/static/chunks/9fec2b9adefcf25d.css","style"]
|
|
8
|
-
0:{"buildId":"
|
|
8
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/9fec2b9adefcf25d.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/f239c6a8bb1d406c.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}
|
package/dist/ui/__next._tree.txt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
:HL["/_next/static/chunks/9fec2b9adefcf25d.css","style"]
|
|
2
2
|
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
3
|
-
0:{"buildId":"
|
|
3
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","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/9fec2b9adefcf25d.css","style"]
|
|
12
|
-
0:{"P":null,"b":"
|
|
12
|
+
0:{"P":null,"b":"B5vRhR7n4SabNR91cYnqJ","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/9fec2b9adefcf25d.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/f239c6a8bb1d406c.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":"
|
|
6
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","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.0b3bf435.ico","sizes":"256x256","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/f239c6a8bb1d406c.js"],""]
|
|
7
7
|
:HL["/_next/static/chunks/9fec2b9adefcf25d.css","style"]
|
|
8
|
-
0:{"buildId":"
|
|
8
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/9fec2b9adefcf25d.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/f239c6a8bb1d406c.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/f239c6a8bb1d406c.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":"
|
|
5
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","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":"
|
|
4
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","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/9fec2b9adefcf25d.css","style"]
|
|
2
|
-
0:{"buildId":"
|
|
2
|
+
0:{"buildId":"B5vRhR7n4SabNR91cYnqJ","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}
|
package/dist/ui/_not-found.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--B5vRhR7n4SabNR91cYnqJ--><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/9fec2b9adefcf25d.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/f1a8a6deaad6e1a7.js"/><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/a2807f954e6ee5ce.js" async=""></script><script src="/_next/static/chunks/c1c5d6f55edfd0a4.js" async=""></script><script src="/_next/static/chunks/turbopack-30ad15deb948747f.js" async=""></script><script src="/_next/static/chunks/f239c6a8bb1d406c.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.0b3bf435.ico" sizes="256x256" 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/f1a8a6deaad6e1a7.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/f239c6a8bb1d406c.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/f239c6a8bb1d406c.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/9fec2b9adefcf25d.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"B5vRhR7n4SabNR91cYnqJ\",\"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/9fec2b9adefcf25d.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/f239c6a8bb1d406c.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.0b3bf435.ico\",\"sizes\":\"256x256\",\"type\":\"image/x-icon\"}],[\"$\",\"$Le\",\"3\",{}]]\n"])</script></body></html>
|
package/dist/ui/_not-found.txt
CHANGED
|
@@ -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/9fec2b9adefcf25d.css","style"]
|
|
12
|
-
0:{"P":null,"b":"
|
|
12
|
+
0:{"P":null,"b":"B5vRhR7n4SabNR91cYnqJ","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/9fec2b9adefcf25d.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/f239c6a8bb1d406c.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
|
package/dist/ui/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--B5vRhR7n4SabNR91cYnqJ--><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/9fec2b9adefcf25d.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/f1a8a6deaad6e1a7.js"/><script src="/_next/static/chunks/9e71c12d031db5ed.js" async=""></script><script src="/_next/static/chunks/a2807f954e6ee5ce.js" async=""></script><script src="/_next/static/chunks/c1c5d6f55edfd0a4.js" async=""></script><script src="/_next/static/chunks/turbopack-30ad15deb948747f.js" async=""></script><script src="/_next/static/chunks/f239c6a8bb1d406c.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/3c0e6dafbc3cc0ff.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.0b3bf435.ico" sizes="256x256" 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/f1a8a6deaad6e1a7.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/f239c6a8bb1d406c.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/f239c6a8bb1d406c.js\"],\"\"]\n7:I[39262,[\"/_next/static/chunks/15d7561d33aaf44a.js\",\"/_next/static/chunks/0f7f83dee53e9578.js\"],\"ClientPageRoot\"]\n8:I[82010,[\"/_next/static/chunks/f239c6a8bb1d406c.js\",\"/_next/static/chunks/3c0e6dafbc3cc0ff.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/9fec2b9adefcf25d.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\":\"B5vRhR7n4SabNR91cYnqJ\",\"c\":[\"\",\"\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/9fec2b9adefcf25d.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/f239c6a8bb1d406c.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/3c0e6dafbc3cc0ff.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.0b3bf435.ico\",\"sizes\":\"256x256\",\"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/9fec2b9adefcf25d.css","style"]
|
|
14
14
|
:HL["/_next/static/media/83afe278b6a6bb3c-s.p.3a6ba036.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"B5vRhR7n4SabNR91cYnqJ","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/9fec2b9adefcf25d.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/f239c6a8bb1d406c.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/3c0e6dafbc3cc0ff.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
/package/dist/ui/_next/static/{CFRORV4RwGH9YJ4KZJLz8 → B5vRhR7n4SabNR91cYnqJ}/_buildManifest.js
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/ui/_next/static/{CFRORV4RwGH9YJ4KZJLz8 → B5vRhR7n4SabNR91cYnqJ}/_ssgManifest.js
RENAMED
|
File without changes
|