@timo9378/flow2code 0.1.0 → 0.1.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/dist/cli.js +4 -8
- package/dist/compiler.cjs +1 -5
- package/dist/compiler.js +1 -5
- package/dist/server.js +2 -6
- package/out/404.html +1 -0
- package/out/__next.__PAGE__.txt +10 -0
- package/out/__next._full.txt +21 -0
- package/out/__next._head.txt +6 -0
- package/out/__next._index.txt +7 -0
- package/out/__next._tree.txt +3 -0
- package/out/_next/static/MU8PWJNAi-sgHZxErePm1/_buildManifest.js +11 -0
- package/out/_next/static/MU8PWJNAi-sgHZxErePm1/_clientMiddlewareManifest.json +1 -0
- package/out/_next/static/MU8PWJNAi-sgHZxErePm1/_ssgManifest.js +1 -0
- package/out/_next/static/chunks/3638bc7cb3d72bbe.js +379 -0
- package/out/_next/static/chunks/41ec06cb3e44c96a.js +125 -0
- package/out/_next/static/chunks/46e882944a7f3aed.js +1 -0
- package/out/_next/static/chunks/4b43c69e91d19eee.js +1 -0
- package/out/_next/static/chunks/59b058cf94cc555e.js +1 -0
- package/out/_next/static/chunks/5c37aae6b3fd1bfe.js +52 -0
- package/out/_next/static/chunks/6e36daee8960e188.js +5 -0
- package/out/_next/static/chunks/80a5431d4e78c469.js +1 -0
- package/out/_next/static/chunks/8486af13ea541d4d.js +1 -0
- package/out/_next/static/chunks/8a38426c5ed81587.js +1 -0
- package/out/_next/static/chunks/8a5bd6fe3abc8091.css +1 -0
- package/out/_next/static/chunks/8b2510d8037d3419.css +1 -0
- package/out/_next/static/chunks/a6dad97d9634a72d.js +1 -0
- package/out/_next/static/chunks/a6dad97d9634a72d.js.map +1 -0
- package/out/_next/static/chunks/turbopack-b95472a0b02a2729.js +4 -0
- package/out/_not-found/__next._full.txt +16 -0
- package/out/_not-found/__next._head.txt +6 -0
- package/out/_not-found/__next._index.txt +7 -0
- package/out/_not-found/__next._not-found.__PAGE__.txt +5 -0
- package/out/_not-found/__next._not-found.txt +4 -0
- package/out/_not-found/__next._tree.txt +2 -0
- package/out/_not-found.html +1 -0
- package/out/_not-found.txt +16 -0
- package/out/android-chrome-192x192.png +0 -0
- package/out/apple-touch-icon.png +0 -0
- package/out/favicon-16x16.png +0 -0
- package/out/favicon-32x32.png +0 -0
- package/out/favicon.ico +0 -0
- package/out/index.html +2 -0
- package/out/index.txt +21 -0
- package/out/site.webmanifest +1 -0
- package/package.json +2 -1
package/dist/cli.js
CHANGED
|
@@ -1872,11 +1872,7 @@ function compile(ir, options) {
|
|
|
1872
1872
|
}
|
|
1873
1873
|
const project = new Project({ useInMemoryFileSystem: true });
|
|
1874
1874
|
const sourceFile = project.createSourceFile("generated.ts", "");
|
|
1875
|
-
|
|
1876
|
-
generateCode(sourceFile, trigger, context);
|
|
1877
|
-
} catch (err) {
|
|
1878
|
-
throw err;
|
|
1879
|
-
}
|
|
1875
|
+
generateCode(sourceFile, trigger, context);
|
|
1880
1876
|
sourceFile.formatText({
|
|
1881
1877
|
indentSize: 2,
|
|
1882
1878
|
convertTabsToSpaces: true
|
|
@@ -3972,7 +3968,7 @@ async function handleRequest(req, res, staticDir, projectRoot) {
|
|
|
3972
3968
|
res.end(content);
|
|
3973
3969
|
} catch {
|
|
3974
3970
|
res.writeHead(404, { "Content-Type": "text/plain" });
|
|
3975
|
-
res.end("404 Not Found \u2014 UI
|
|
3971
|
+
res.end("404 Not Found \u2014 UI static files not found. If you installed via npm, please update to the latest version.");
|
|
3976
3972
|
}
|
|
3977
3973
|
}
|
|
3978
3974
|
function startServer(options = {}) {
|
|
@@ -4944,8 +4940,8 @@ program.command("init").description("Initialize Flow2Code in current project (Ze
|
|
|
4944
4940
|
console.log("\n\u{1F389} Zero Pollution init complete!");
|
|
4945
4941
|
console.log(" All Flow2Code files are stored in .flow2code/ directory");
|
|
4946
4942
|
console.log(" Get started with:");
|
|
4947
|
-
console.log(
|
|
4948
|
-
console.log(
|
|
4943
|
+
console.log(` npx ${pkgJson.name} compile .flow2code/flows/hello.flow.json --dry-run`);
|
|
4944
|
+
console.log(` npx ${pkgJson.name} watch .flow2code/flows/`);
|
|
4949
4945
|
});
|
|
4950
4946
|
program.command("split <file>").description("Split .flow.json into a Git-friendly YAML directory structure").option("-o, --output <dir>", "Specify output directory (default: same name as file)").action((file, options) => {
|
|
4951
4947
|
const filePath = resolve2(file);
|
package/dist/compiler.cjs
CHANGED
|
@@ -1881,11 +1881,7 @@ function compile(ir, options) {
|
|
|
1881
1881
|
}
|
|
1882
1882
|
const project = new import_ts_morph.Project({ useInMemoryFileSystem: true });
|
|
1883
1883
|
const sourceFile = project.createSourceFile("generated.ts", "");
|
|
1884
|
-
|
|
1885
|
-
generateCode(sourceFile, trigger, context);
|
|
1886
|
-
} catch (err) {
|
|
1887
|
-
throw err;
|
|
1888
|
-
}
|
|
1884
|
+
generateCode(sourceFile, trigger, context);
|
|
1889
1885
|
sourceFile.formatText({
|
|
1890
1886
|
indentSize: 2,
|
|
1891
1887
|
convertTabsToSpaces: true
|
package/dist/compiler.js
CHANGED
|
@@ -1814,11 +1814,7 @@ function compile(ir, options) {
|
|
|
1814
1814
|
}
|
|
1815
1815
|
const project = new Project({ useInMemoryFileSystem: true });
|
|
1816
1816
|
const sourceFile = project.createSourceFile("generated.ts", "");
|
|
1817
|
-
|
|
1818
|
-
generateCode(sourceFile, trigger, context);
|
|
1819
|
-
} catch (err) {
|
|
1820
|
-
throw err;
|
|
1821
|
-
}
|
|
1817
|
+
generateCode(sourceFile, trigger, context);
|
|
1822
1818
|
sourceFile.formatText({
|
|
1823
1819
|
indentSize: 2,
|
|
1824
1820
|
convertTabsToSpaces: true
|
package/dist/server.js
CHANGED
|
@@ -1767,11 +1767,7 @@ function compile(ir, options) {
|
|
|
1767
1767
|
}
|
|
1768
1768
|
const project = new Project({ useInMemoryFileSystem: true });
|
|
1769
1769
|
const sourceFile = project.createSourceFile("generated.ts", "");
|
|
1770
|
-
|
|
1771
|
-
generateCode(sourceFile, trigger, context);
|
|
1772
|
-
} catch (err) {
|
|
1773
|
-
throw err;
|
|
1774
|
-
}
|
|
1770
|
+
generateCode(sourceFile, trigger, context);
|
|
1775
1771
|
sourceFile.formatText({
|
|
1776
1772
|
indentSize: 2,
|
|
1777
1773
|
convertTabsToSpaces: true
|
|
@@ -3002,7 +2998,7 @@ async function handleRequest(req, res, staticDir, projectRoot) {
|
|
|
3002
2998
|
res.end(content);
|
|
3003
2999
|
} catch {
|
|
3004
3000
|
res.writeHead(404, { "Content-Type": "text/plain" });
|
|
3005
|
-
res.end("404 Not Found \u2014 UI
|
|
3001
|
+
res.end("404 Not Found \u2014 UI static files not found. If you installed via npm, please update to the latest version.");
|
|
3006
3002
|
}
|
|
3007
3003
|
}
|
|
3008
3004
|
function startServer(options = {}) {
|
package/out/404.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!DOCTYPE html><!--MU8PWJNAi_sgHZxErePm1--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/8b2510d8037d3419.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/8a38426c5ed81587.js"/><script src="/_next/static/chunks/80a5431d4e78c469.js" async=""></script><script src="/_next/static/chunks/6e36daee8960e188.js" async=""></script><script src="/_next/static/chunks/turbopack-b95472a0b02a2729.js" async=""></script><script src="/_next/static/chunks/46e882944a7f3aed.js" async=""></script><script src="/_next/static/chunks/4b43c69e91d19eee.js" async=""></script><script src="/_next/static/chunks/59b058cf94cc555e.js" async=""></script><script src="/_next/static/chunks/8486af13ea541d4d.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Flow2Code | Visual AST Compiler</title><meta name="description" content="Visual backend logic generator: compile canvas nodes directly into native TypeScript code"/><link rel="manifest" href="/site.webmanifest"/><link rel="icon" href="/favicon.ico" sizes="any"/><link rel="icon" href="/favicon-16x16.png" sizes="16x16" type="image/png"/><link rel="icon" href="/favicon-32x32.png" sizes="32x32" type="image/png"/><link rel="apple-touch-icon" href="/apple-touch-icon.png"/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body class="antialiased overflow-hidden"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/8a38426c5ed81587.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:I[46798,[\"/_next/static/chunks/46e882944a7f3aed.js\"],\"TooltipProvider\"]\n3:I[25270,[\"/_next/static/chunks/4b43c69e91d19eee.js\",\"/_next/static/chunks/59b058cf94cc555e.js\"],\"default\"]\n4:I[58298,[\"/_next/static/chunks/46e882944a7f3aed.js\",\"/_next/static/chunks/8486af13ea541d4d.js\"],\"default\"]\n5:I[85455,[\"/_next/static/chunks/4b43c69e91d19eee.js\",\"/_next/static/chunks/59b058cf94cc555e.js\"],\"default\"]\n6:I[95276,[\"/_next/static/chunks/4b43c69e91d19eee.js\",\"/_next/static/chunks/59b058cf94cc555e.js\"],\"OutletBoundary\"]\n7:\"$Sreact.suspense\"\n9:I[95276,[\"/_next/static/chunks/4b43c69e91d19eee.js\",\"/_next/static/chunks/59b058cf94cc555e.js\"],\"ViewportBoundary\"]\nb:I[95276,[\"/_next/static/chunks/4b43c69e91d19eee.js\",\"/_next/static/chunks/59b058cf94cc555e.js\"],\"MetadataBoundary\"]\nd:I[63491,[\"/_next/static/chunks/4b43c69e91d19eee.js\",\"/_next/static/chunks/59b058cf94cc555e.js\"],\"default\"]\n:HL[\"/_next/static/chunks/8b2510d8037d3419.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"MU8PWJNAi-sgHZxErePm1\",\"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/8b2510d8037d3419.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/46e882944a7f3aed.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"antialiased overflow-hidden\",\"children\":[\"$\",\"$L2\",null,{\"delayDuration\":200,\"children\":[\"$\",\"$L3\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$4\",\"errorStyles\":[],\"errorScripts\":[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/8486af13ea541d4d.js\",\"async\":true}]],\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L3\",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\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L6\",null,{\"children\":[\"$\",\"$7\",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\":[\"$\",\"$7\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"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[8780,[\"/_next/static/chunks/4b43c69e91d19eee.js\",\"/_next/static/chunks/59b058cf94cc555e.js\"],\"IconMark\"]\n8:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"Flow2Code | Visual AST Compiler\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Visual backend logic generator: compile canvas nodes directly into native TypeScript code\"}],[\"$\",\"link\",\"2\",{\"rel\":\"manifest\",\"href\":\"/site.webmanifest\",\"crossOrigin\":\"$undefined\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\",\"sizes\":\"any\"}],[\"$\",\"link\",\"4\",{\"rel\":\"icon\",\"href\":\"/favicon-16x16.png\",\"sizes\":\"16x16\",\"type\":\"image/png\"}],[\"$\",\"link\",\"5\",{\"rel\":\"icon\",\"href\":\"/favicon-32x32.png\",\"sizes\":\"32x32\",\"type\":\"image/png\"}],[\"$\",\"link\",\"6\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-touch-icon.png\"}],[\"$\",\"$Le\",\"7\",{}]]\n"])</script></body></html>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
1:"$Sreact.fragment"
|
|
2
|
+
2:I[33461,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"ClientPageRoot"]
|
|
3
|
+
3:I[52683,["/_next/static/chunks/46e882944a7f3aed.js","/_next/static/chunks/41ec06cb3e44c96a.js","/_next/static/chunks/5c37aae6b3fd1bfe.js"],"default"]
|
|
4
|
+
6:I[95276,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"OutletBoundary"]
|
|
5
|
+
7:"$Sreact.suspense"
|
|
6
|
+
:HL["/_next/static/chunks/8a5bd6fe3abc8091.css","style"]
|
|
7
|
+
0:{"buildId":"MU8PWJNAi-sgHZxErePm1","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a5bd6fe3abc8091.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/41ec06cb3e44c96a.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/5c37aae6b3fd1bfe.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
|
8
|
+
4:{}
|
|
9
|
+
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
|
10
|
+
8:null
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
1:"$Sreact.fragment"
|
|
2
|
+
2:I[46798,["/_next/static/chunks/46e882944a7f3aed.js"],"TooltipProvider"]
|
|
3
|
+
3:I[25270,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"default"]
|
|
4
|
+
4:I[58298,["/_next/static/chunks/46e882944a7f3aed.js","/_next/static/chunks/8486af13ea541d4d.js"],"default"]
|
|
5
|
+
5:I[85455,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"default"]
|
|
6
|
+
6:I[33461,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"ClientPageRoot"]
|
|
7
|
+
7:I[52683,["/_next/static/chunks/46e882944a7f3aed.js","/_next/static/chunks/41ec06cb3e44c96a.js","/_next/static/chunks/5c37aae6b3fd1bfe.js"],"default"]
|
|
8
|
+
a:I[95276,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"OutletBoundary"]
|
|
9
|
+
b:"$Sreact.suspense"
|
|
10
|
+
d:I[95276,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"ViewportBoundary"]
|
|
11
|
+
f:I[95276,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"MetadataBoundary"]
|
|
12
|
+
11:I[63491,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"default"]
|
|
13
|
+
:HL["/_next/static/chunks/8b2510d8037d3419.css","style"]
|
|
14
|
+
:HL["/_next/static/chunks/8a5bd6fe3abc8091.css","style"]
|
|
15
|
+
0:{"P":null,"b":"MU8PWJNAi-sgHZxErePm1","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8b2510d8037d3419.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/46e882944a7f3aed.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"antialiased overflow-hidden","children":["$","$L2",null,{"delayDuration":200,"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$4","errorStyles":[],"errorScripts":[["$","script","script-0",{"src":"/_next/static/chunks/8486af13ea541d4d.js","async":true}]],"template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a5bd6fe3abc8091.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/41ec06cb3e44c96a.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5c37aae6b3fd1bfe.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",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":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
|
16
|
+
8:{}
|
|
17
|
+
9:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
|
18
|
+
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
19
|
+
12:I[8780,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"IconMark"]
|
|
20
|
+
c:null
|
|
21
|
+
10:[["$","title","0",{"children":"Flow2Code | Visual AST Compiler"}],["$","meta","1",{"name":"description","content":"Visual backend logic generator: compile canvas nodes directly into native TypeScript code"}],["$","link","2",{"rel":"manifest","href":"/site.webmanifest","crossOrigin":"$undefined"}],["$","link","3",{"rel":"icon","href":"/favicon.ico","sizes":"any"}],["$","link","4",{"rel":"icon","href":"/favicon-16x16.png","sizes":"16x16","type":"image/png"}],["$","link","5",{"rel":"icon","href":"/favicon-32x32.png","sizes":"32x32","type":"image/png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/apple-touch-icon.png"}],["$","$L12","7",{}]]
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
1:"$Sreact.fragment"
|
|
2
|
+
2:I[95276,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"ViewportBoundary"]
|
|
3
|
+
3:I[95276,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"MetadataBoundary"]
|
|
4
|
+
4:"$Sreact.suspense"
|
|
5
|
+
5:I[8780,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"IconMark"]
|
|
6
|
+
0:{"buildId":"MU8PWJNAi-sgHZxErePm1","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":"Flow2Code | Visual AST Compiler"}],["$","meta","1",{"name":"description","content":"Visual backend logic generator: compile canvas nodes directly into native TypeScript code"}],["$","link","2",{"rel":"manifest","href":"/site.webmanifest"}],["$","link","3",{"rel":"icon","href":"/favicon.ico","sizes":"any"}],["$","link","4",{"rel":"icon","href":"/favicon-16x16.png","sizes":"16x16","type":"image/png"}],["$","link","5",{"rel":"icon","href":"/favicon-32x32.png","sizes":"32x32","type":"image/png"}],["$","link","6",{"rel":"apple-touch-icon","href":"/apple-touch-icon.png"}],["$","$L5","7",{}]]}]}]}],null]}],"loading":null,"isPartial":false}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
1:"$Sreact.fragment"
|
|
2
|
+
2:I[46798,["/_next/static/chunks/46e882944a7f3aed.js"],"TooltipProvider"]
|
|
3
|
+
3:I[25270,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"default"]
|
|
4
|
+
4:I[58298,["/_next/static/chunks/46e882944a7f3aed.js","/_next/static/chunks/8486af13ea541d4d.js"],"default"]
|
|
5
|
+
5:I[85455,["/_next/static/chunks/4b43c69e91d19eee.js","/_next/static/chunks/59b058cf94cc555e.js"],"default"]
|
|
6
|
+
:HL["/_next/static/chunks/8b2510d8037d3419.css","style"]
|
|
7
|
+
0:{"buildId":"MU8PWJNAi-sgHZxErePm1","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8b2510d8037d3419.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/46e882944a7f3aed.js","async":true}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"antialiased overflow-hidden","children":["$","$L2",null,{"delayDuration":200,"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$4","errorStyles":[],"errorScripts":[["$","script","script-0",{"src":"/_next/static/chunks/8486af13ea541d4d.js","async":true}]],"template":["$","$L5",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
:HL["/_next/static/chunks/8b2510d8037d3419.css","style"]
|
|
2
|
+
:HL["/_next/static/chunks/8a5bd6fe3abc8091.css","style"]
|
|
3
|
+
0:{"buildId":"MU8PWJNAi-sgHZxErePm1","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}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|