qtype 0.0.9__tar.gz → 0.0.10__tar.gz
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.
- {qtype-0.0.9/qtype.egg-info → qtype-0.0.10}/PKG-INFO +1 -1
- {qtype-0.0.9 → qtype-0.0.10}/pyproject.toml +1 -1
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/404/index.html +1 -1
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/404.html +1 -1
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/index.html +1 -1
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/index.txt +1 -1
- {qtype-0.0.9 → qtype-0.0.10/qtype.egg-info}/PKG-INFO +1 -1
- {qtype-0.0.9 → qtype-0.0.10}/qtype.egg-info/SOURCES.txt +2 -2
- {qtype-0.0.9 → qtype-0.0.10}/LICENSE +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/README.md +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/__init__.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/cli.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commands/__init__.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commands/convert.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commands/generate.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commands/run.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commands/serve.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commands/validate.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commands/visualize.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commons/__init__.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commons/generate.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/commons/tools.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/converters/__init__.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/converters/tools_from_api.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/converters/tools_from_module.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/converters/types.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/dsl/__init__.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/dsl/base_types.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/dsl/custom_types.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/dsl/document.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/dsl/domain_types.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/dsl/model.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/dsl/validator.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/__init__.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/api.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/chat/chat_api.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/chat/file_conversions.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/chat/vercel.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/conversions.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/exceptions.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/flow.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/resource_cache.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/step.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/steps/__init__.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/steps/agent.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/steps/condition.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/steps/decoder.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/steps/llm_inference.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/steps/prompt_template.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/steps/search.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/steps/tool.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/streaming_helpers.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/telemetry.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/typing.py +0 -0
- {qtype-0.0.9/qtype/interpreter/ui/_next/static/uMm4B0RSTGhXxgH3rTfwc → qtype-0.0.10/qtype/interpreter/ui/_next/static/Jb2murBlt2XkN6punrQbE}/_buildManifest.js +0 -0
- {qtype-0.0.9/qtype/interpreter/ui/_next/static/uMm4B0RSTGhXxgH3rTfwc → qtype-0.0.10/qtype/interpreter/ui/_next/static/Jb2murBlt2XkN6punrQbE}/_ssgManifest.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/4bd1b696-cf72ae8a39fa05aa.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/736-7fc606e244fedcb1.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/964-ed4ab073db645007.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/app/_not-found/page-e110d2a9d0a83d82.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/app/layout-5ccbc44fd528d089.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/app/page-c72e847e888e549d.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/ba12c10f-22556063851a6df2.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/framework-7c95b8e5103c9e90.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/main-6d261b6c5d6fb6c2.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/main-app-6fc6346bc8f7f163.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/pages/_app-0a0020ddd67f79cf.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/pages/_error-03529f2c21436739.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/polyfills-42372ed130431b0a.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/webpack-8289c17c67827f22.js +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/css/a262c53826df929b.css +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/569ce4b8f30dc480-s.p.woff2 +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/747892c23ea88013-s.woff2 +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/8d697b304b401681-s.woff2 +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/93f479601ee12b01-s.p.woff2 +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/9610d9e46709d722-s.woff2 +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/ba015fad6dcf6784-s.woff2 +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/favicon.ico +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/file.svg +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/globe.svg +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/next.svg +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/vercel.svg +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/window.svg +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/loader.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/semantic/__init__.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/semantic/base_types.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/semantic/errors.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/semantic/generate.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/semantic/model.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/semantic/resolver.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype/semantic/visualize.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype.egg-info/dependency_links.txt +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype.egg-info/entry_points.txt +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype.egg-info/requires.txt +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/qtype.egg-info/top_level.txt +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/setup.cfg +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/tests/test_dsl_loader.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/tests/test_dsl_validation.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/tests/test_semantic_resolver.py +0 -0
- {qtype-0.0.9 → qtype-0.0.10}/tests/test_tools_from_module.py +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--Jb2murBlt2XkN6punrQbE--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="./_next/static/media/569ce4b8f30dc480-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="./_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="./_next/static/css/a262c53826df929b.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="./_next/static/chunks/webpack-8289c17c67827f22.js"/><script src="./_next/static/chunks/4bd1b696-cf72ae8a39fa05aa.js" async=""></script><script src="./_next/static/chunks/964-ed4ab073db645007.js" async=""></script><script src="./_next/static/chunks/main-app-6fc6346bc8f7f163.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Create Next App</title><meta name="description" content="Generated by create next app"/><link rel="icon" href="/ui/favicon.ico" type="image/x-icon" sizes="16x16"/><script src="./_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_6de60c __variable_152ec0 antialiased"><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/webpack-8289c17c67827f22.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[7555,[],\"\"]\n3:I[1295,[],\"\"]\n4:I[9665,[],\"OutletBoundary\"]\n6:I[4911,[],\"AsyncMetadataOutlet\"]\n8:I[9665,[],\"ViewportBoundary\"]\na:I[9665,[],\"MetadataBoundary\"]\nb:\"$Sreact.suspense\"\nd:I[8393,[],\"\"]\n:HL[\"./_next/static/media/569ce4b8f30dc480-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"./_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"./_next/static/css/a262c53826df929b.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"Jb2murBlt2XkN6punrQbE\",\"p\":\".\",\"c\":[\"\",\"_not-found\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"./_next/static/css/a262c53826df929b.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_6de60c __variable_152ec0 antialiased\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$L5\",[\"$\",\"$L6\",null,{\"promise\":\"$@7\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$La\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$b\",null,{\"fallback\":null,\"children\":\"$Lc\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n5:null\n"])</script><script>self.__next_f.push([1,"e:I[8175,[],\"IconMark\"]\n7:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Create Next App\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Generated by create next app\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/ui/favicon.ico\",\"type\":\"image/x-icon\",\"sizes\":\"16x16\"}],[\"$\",\"$Le\",\"3\",{}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"c:\"$7:metadata\"\n"])</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--Jb2murBlt2XkN6punrQbE--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="./_next/static/media/569ce4b8f30dc480-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="./_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="./_next/static/css/a262c53826df929b.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="./_next/static/chunks/webpack-8289c17c67827f22.js"/><script src="./_next/static/chunks/4bd1b696-cf72ae8a39fa05aa.js" async=""></script><script src="./_next/static/chunks/964-ed4ab073db645007.js" async=""></script><script src="./_next/static/chunks/main-app-6fc6346bc8f7f163.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>Create Next App</title><meta name="description" content="Generated by create next app"/><link rel="icon" href="/ui/favicon.ico" type="image/x-icon" sizes="16x16"/><script src="./_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_6de60c __variable_152ec0 antialiased"><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/webpack-8289c17c67827f22.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[7555,[],\"\"]\n3:I[1295,[],\"\"]\n4:I[9665,[],\"OutletBoundary\"]\n6:I[4911,[],\"AsyncMetadataOutlet\"]\n8:I[9665,[],\"ViewportBoundary\"]\na:I[9665,[],\"MetadataBoundary\"]\nb:\"$Sreact.suspense\"\nd:I[8393,[],\"\"]\n:HL[\"./_next/static/media/569ce4b8f30dc480-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"./_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"./_next/static/css/a262c53826df929b.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"Jb2murBlt2XkN6punrQbE\",\"p\":\".\",\"c\":[\"\",\"_not-found\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"./_next/static/css/a262c53826df929b.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_6de60c __variable_152ec0 antialiased\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L4\",null,{\"children\":[\"$L5\",[\"$\",\"$L6\",null,{\"promise\":\"$@7\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$La\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$b\",null,{\"fallback\":null,\"children\":\"$Lc\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n5:null\n"])</script><script>self.__next_f.push([1,"e:I[8175,[],\"IconMark\"]\n7:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Create Next App\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Generated by create next app\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/ui/favicon.ico\",\"type\":\"image/x-icon\",\"sizes\":\"16x16\"}],[\"$\",\"$Le\",\"3\",{}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"c:\"$7:metadata\"\n"])</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--Jb2murBlt2XkN6punrQbE--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="./_next/static/media/569ce4b8f30dc480-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="./_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="./_next/static/css/a262c53826df929b.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="./_next/static/chunks/webpack-8289c17c67827f22.js"/><script src="./_next/static/chunks/4bd1b696-cf72ae8a39fa05aa.js" async=""></script><script src="./_next/static/chunks/964-ed4ab073db645007.js" async=""></script><script src="./_next/static/chunks/main-app-6fc6346bc8f7f163.js" async=""></script><script src="./_next/static/chunks/ba12c10f-22556063851a6df2.js" async=""></script><script src="./_next/static/chunks/736-7fc606e244fedcb1.js" async=""></script><script src="./_next/static/chunks/app/page-c72e847e888e549d.js" async=""></script><meta name="next-size-adjust" content=""/><title>Create Next App</title><meta name="description" content="Generated by create next app"/><link rel="icon" href="/ui/favicon.ico" type="image/x-icon" sizes="16x16"/><script src="./_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_6de60c __variable_152ec0 antialiased"><div hidden=""><!--$--><!--/$--></div><div class="font-sans min-h-screen p-6 sm:p-8"><main class="max-w-6xl mx-auto space-y-6"><div class="text-center border-b pb-4"><h1 class="text-4xl font-bold text-gray-900 dark:text-white mb-2">QType Frontend</h1></div><p class="text-muted-foreground text-sm">Loading flows...</p></main></div><!--$--><!--/$--><script src="./_next/static/chunks/webpack-8289c17c67827f22.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[7555,[],\"\"]\n3:I[1295,[],\"\"]\n4:I[894,[],\"ClientPageRoot\"]\n5:I[8785,[\"803\",\"static/chunks/ba12c10f-22556063851a6df2.js\",\"736\",\"static/chunks/736-7fc606e244fedcb1.js\",\"974\",\"static/chunks/app/page-c72e847e888e549d.js\"],\"default\"]\n8:I[9665,[],\"OutletBoundary\"]\na:I[4911,[],\"AsyncMetadataOutlet\"]\nc:I[9665,[],\"ViewportBoundary\"]\ne:I[9665,[],\"MetadataBoundary\"]\nf:\"$Sreact.suspense\"\n11:I[8393,[],\"\"]\n:HL[\"./_next/static/media/569ce4b8f30dc480-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"./_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"./_next/static/css/a262c53826df929b.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"Jb2murBlt2XkN6punrQbE\",\"p\":\".\",\"c\":[\"\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"./_next/static/css/a262c53826df929b.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_6de60c __variable_152ec0 antialiased\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"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\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L4\",null,{\"Component\":\"$5\",\"searchParams\":{},\"params\":{},\"promises\":[\"$@6\",\"$@7\"]}],null,[\"$\",\"$L8\",null,{\"children\":[\"$L9\",[\"$\",\"$La\",null,{\"promise\":\"$@b\"}]]}]]}],{},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$Lc\",null,{\"children\":\"$Ld\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Le\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$f\",null,{\"fallback\":null,\"children\":\"$L10\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$11\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"6:{}\n7:\"$0:f:0:1:2:children:1:props:children:0:props:params\"\n"])</script><script>self.__next_f.push([1,"d:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n9:null\n"])</script><script>self.__next_f.push([1,"12:I[8175,[],\"IconMark\"]\nb:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Create Next App\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Generated by create next app\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/ui/favicon.ico\",\"type\":\"image/x-icon\",\"sizes\":\"16x16\"}],[\"$\",\"$L12\",\"3\",{}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"10:\"$b:metadata\"\n"])</script></body></html>
|
|
@@ -12,7 +12,7 @@ f:"$Sreact.suspense"
|
|
|
12
12
|
:HL["./_next/static/media/569ce4b8f30dc480-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
13
13
|
:HL["./_next/static/media/93f479601ee12b01-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
14
14
|
:HL["./_next/static/css/a262c53826df929b.css","style"]
|
|
15
|
-
0:{"P":null,"b":"
|
|
15
|
+
0:{"P":null,"b":"Jb2murBlt2XkN6punrQbE","p":".","c":["",""],"i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"./_next/static/css/a262c53826df929b.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__variable_6de60c __variable_152ec0 antialiased","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"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":["__PAGE__",["$","$1","c",{"children":[["$","$L4",null,{"Component":"$5","searchParams":{},"params":{},"promises":["$@6","$@7"]}],null,["$","$L8",null,{"children":["$L9",["$","$La",null,{"promise":"$@b"}]]}]]}],{},null,false]},null,false],["$","$1","h",{"children":[null,[["$","$Lc",null,{"children":"$Ld"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Le",null,{"children":["$","div",null,{"hidden":true,"children":["$","$f",null,{"fallback":null,"children":"$L10"}]}]}]]}],false]],"m":"$undefined","G":["$11",[]],"s":false,"S":true}
|
|
16
16
|
6:{}
|
|
17
17
|
7:"$0:f:0:1:2:children:1:props:children:0:props:params"
|
|
18
18
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
@@ -62,6 +62,8 @@ qtype/interpreter/ui/next.svg
|
|
|
62
62
|
qtype/interpreter/ui/vercel.svg
|
|
63
63
|
qtype/interpreter/ui/window.svg
|
|
64
64
|
qtype/interpreter/ui/404/index.html
|
|
65
|
+
qtype/interpreter/ui/_next/static/Jb2murBlt2XkN6punrQbE/_buildManifest.js
|
|
66
|
+
qtype/interpreter/ui/_next/static/Jb2murBlt2XkN6punrQbE/_ssgManifest.js
|
|
65
67
|
qtype/interpreter/ui/_next/static/chunks/4bd1b696-cf72ae8a39fa05aa.js
|
|
66
68
|
qtype/interpreter/ui/_next/static/chunks/736-7fc606e244fedcb1.js
|
|
67
69
|
qtype/interpreter/ui/_next/static/chunks/964-ed4ab073db645007.js
|
|
@@ -83,8 +85,6 @@ qtype/interpreter/ui/_next/static/media/8d697b304b401681-s.woff2
|
|
|
83
85
|
qtype/interpreter/ui/_next/static/media/93f479601ee12b01-s.p.woff2
|
|
84
86
|
qtype/interpreter/ui/_next/static/media/9610d9e46709d722-s.woff2
|
|
85
87
|
qtype/interpreter/ui/_next/static/media/ba015fad6dcf6784-s.woff2
|
|
86
|
-
qtype/interpreter/ui/_next/static/uMm4B0RSTGhXxgH3rTfwc/_buildManifest.js
|
|
87
|
-
qtype/interpreter/ui/_next/static/uMm4B0RSTGhXxgH3rTfwc/_ssgManifest.js
|
|
88
88
|
qtype/semantic/__init__.py
|
|
89
89
|
qtype/semantic/base_types.py
|
|
90
90
|
qtype/semantic/errors.py
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/4bd1b696-cf72ae8a39fa05aa.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/736-7fc606e244fedcb1.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/964-ed4ab073db645007.js
RENAMED
|
File without changes
|
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/app/layout-5ccbc44fd528d089.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/app/page-c72e847e888e549d.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/ba12c10f-22556063851a6df2.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/framework-7c95b8e5103c9e90.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/main-6d261b6c5d6fb6c2.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/main-app-6fc6346bc8f7f163.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/pages/_app-0a0020ddd67f79cf.js
RENAMED
|
File without changes
|
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/polyfills-42372ed130431b0a.js
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/chunks/webpack-8289c17c67827f22.js
RENAMED
|
File without changes
|
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/569ce4b8f30dc480-s.p.woff2
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/747892c23ea88013-s.woff2
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/8d697b304b401681-s.woff2
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/93f479601ee12b01-s.p.woff2
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/9610d9e46709d722-s.woff2
RENAMED
|
File without changes
|
{qtype-0.0.9 → qtype-0.0.10}/qtype/interpreter/ui/_next/static/media/ba015fad6dcf6784-s.woff2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|