├── .clinerules ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── bin ├── index.js ├── msw.js └── openapi.js ├── eslint.config.ts ├── llms-full.txt ├── package.json ├── projects ├── basic │ ├── app │ │ ├── %E6%97%A5%E6%9C%AC%E8%AA%9E │ │ │ └── page.tsx │ │ ├── (group1) │ │ │ ├── [pid] │ │ │ │ ├── foo │ │ │ │ │ ├── frourio.client.ts │ │ │ │ │ ├── frourio.server.ts │ │ │ │ │ ├── frourio.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── route.ts │ │ │ ├── blog │ │ │ │ ├── [...slug] │ │ │ │ │ ├── frourio.client.ts │ │ │ │ │ ├── frourio.server.ts │ │ │ │ │ ├── frourio.ts │ │ │ │ │ └── route.ts │ │ │ │ └── hoge │ │ │ │ │ └── [[...fuga]] │ │ │ │ │ ├── frourio.client.ts │ │ │ │ │ ├── frourio.server.ts │ │ │ │ │ ├── frourio.ts │ │ │ │ │ └── route.ts │ │ │ ├── frourio.server.ts │ │ │ ├── frourio.ts │ │ │ └── route.ts │ │ ├── (group2) │ │ │ ├── aaa │ │ │ │ ├── [...bbb] │ │ │ │ │ └── ccc │ │ │ │ │ │ └── page.tsx │ │ │ │ └── api │ │ │ │ │ └── samples │ │ │ │ │ └── page.ts │ │ │ ├── frourio.server.ts │ │ │ ├── frourio.ts │ │ │ ├── route.ts │ │ │ └── x │ │ │ │ ├── [y] │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ ├── route.ts │ │ │ │ └── z │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ ├── .ignore │ │ │ └── page.tsx │ │ ├── [a] │ │ │ ├── [b] │ │ │ │ ├── [...c] │ │ │ │ │ ├── frourio.client.ts │ │ │ │ │ ├── frourio.server.ts │ │ │ │ │ ├── frourio.ts │ │ │ │ │ └── route.ts │ │ │ │ ├── d │ │ │ │ │ ├── frourio.client.ts │ │ │ │ │ ├── frourio.server.ts │ │ │ │ │ ├── frourio.ts │ │ │ │ │ └── route.ts │ │ │ │ └── index.module.css │ │ │ ├── frourio.client.ts │ │ │ ├── frourio.server.ts │ │ │ ├── frourio.ts │ │ │ └── route.ts │ │ ├── _app.tsx │ │ ├── api │ │ │ ├── key-collision-test-another │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── route.ts │ │ │ ├── key-collision-test │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── route.ts │ │ │ ├── mw │ │ │ │ ├── admin │ │ │ │ │ ├── frourio.client.ts │ │ │ │ │ ├── frourio.server.ts │ │ │ │ │ ├── frourio.ts │ │ │ │ │ ├── route.ts │ │ │ │ │ └── users │ │ │ │ │ │ ├── frourio.client.ts │ │ │ │ │ │ ├── frourio.server.ts │ │ │ │ │ │ ├── frourio.ts │ │ │ │ │ │ └── route.ts │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ ├── public │ │ │ │ │ ├── frourio.client.ts │ │ │ │ │ ├── frourio.server.ts │ │ │ │ │ ├── frourio.ts │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ └── test-client │ │ │ │ ├── [userId] │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── route.ts │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ ├── route.ts │ │ │ │ └── stream │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── route.ts │ │ ├── frourio.client.ts │ │ ├── frourio.server.ts │ │ ├── frourio.ts │ │ ├── route.ts │ │ └── xxx │ │ │ ├── (group3) │ │ │ ├── page.tsx │ │ │ └── yyy │ │ │ │ └── page.tsx │ │ │ └── [id] │ │ │ ├── frourio.server.ts │ │ │ ├── frourio.ts │ │ │ └── zzz │ │ │ ├── frourio.client.ts │ │ │ ├── frourio.server.ts │ │ │ ├── frourio.ts │ │ │ └── route.ts │ ├── lib │ │ └── apiClient.ts │ ├── public │ │ └── openapi.json │ └── tests │ │ └── setupMswHandlers.ts ├── dev.ts └── src-dir │ ├── next.config.ts │ ├── public │ └── openapi.json │ ├── src │ ├── app │ │ ├── (group1) │ │ │ ├── [pid] │ │ │ │ └── page.tsx │ │ │ └── blog │ │ │ │ ├── [...slug] │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── page.tsx │ │ │ │ └── hoge │ │ │ │ └── [[...fuga]] │ │ │ │ └── page.tsx │ │ ├── (group2) │ │ │ ├── aaa │ │ │ │ ├── [...bbb] │ │ │ │ │ └── ccc │ │ │ │ │ │ └── page.tsx │ │ │ │ └── api │ │ │ │ │ └── samples │ │ │ │ │ └── page.ts │ │ │ └── x │ │ │ │ ├── [y] │ │ │ │ ├── page.tsx │ │ │ │ └── z │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ ├── .ignore │ │ │ └── page.tsx │ │ ├── [a] │ │ │ ├── arrayBuffer │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── route.ts │ │ │ ├── blob │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── route.ts │ │ │ └── text │ │ │ │ ├── frourio.client.ts │ │ │ │ ├── frourio.server.ts │ │ │ │ ├── frourio.ts │ │ │ │ └── route.ts │ │ └── api │ │ │ ├── %E6%97%A5%E6%9C%AC%E8%AA%9E │ │ │ ├── frourio.client.ts │ │ │ ├── frourio.server.ts │ │ │ ├── frourio.ts │ │ │ └── route.ts │ │ │ ├── frourio.client.ts │ │ │ ├── frourio.server.ts │ │ │ ├── frourio.ts │ │ │ └── route.ts │ └── lib │ │ └── apiClient.ts │ └── tests │ └── setupMswHandlers.ts ├── src ├── cli.ts ├── constants.ts ├── createDirPathHash.ts ├── createHash.ts ├── generate.ts ├── generateClient.ts ├── generateServerTexts.ts ├── getConfig.ts ├── getGlobalType.ts ├── getPropOptions.ts ├── index.ts ├── initTSC.ts ├── listFrourioDirs.ts ├── msw │ ├── cli.ts │ ├── generateMsw.ts │ └── getMswConfig.ts ├── openapi │ ├── cli.ts │ ├── generateOpenapi.ts │ └── getOpenapiConfig.ts ├── paramsUtil.ts ├── watchInputDir.ts └── writeDefaults.ts ├── tests ├── client.spec.ts ├── index.spec.ts ├── middleware.spec.ts ├── setup.ts ├── useQuery.spec.tsx └── useSWR.spec.tsx ├── tsconfig.build.json ├── tsconfig.json └── vite.config.ts /.clinerules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/.clinerules -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | coverage 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/README.md -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/bin/index.js -------------------------------------------------------------------------------- /bin/msw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/bin/msw.js -------------------------------------------------------------------------------- /bin/openapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/bin/openapi.js -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /llms-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/llms-full.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/package.json -------------------------------------------------------------------------------- /projects/basic/app/%E6%97%A5%E6%9C%AC%E8%AA%9E/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/%E6%97%A5%E6%9C%AC%E8%AA%9E/page.tsx -------------------------------------------------------------------------------- /projects/basic/app/(group1)/[pid]/foo/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/[pid]/foo/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/[pid]/foo/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/[pid]/foo/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/[pid]/foo/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/[pid]/foo/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/[pid]/foo/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/[pid]/foo/route.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/[pid]/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/[pid]/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/[pid]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/[pid]/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/[pid]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/[pid]/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/[pid]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/[pid]/route.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/blog/[...slug]/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/blog/[...slug]/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/blog/[...slug]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/blog/[...slug]/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/blog/[...slug]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/blog/[...slug]/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/blog/[...slug]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/blog/[...slug]/route.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/blog/hoge/[[...fuga]]/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/blog/hoge/[[...fuga]]/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/blog/hoge/[[...fuga]]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/blog/hoge/[[...fuga]]/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/blog/hoge/[[...fuga]]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/blog/hoge/[[...fuga]]/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/blog/hoge/[[...fuga]]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/blog/hoge/[[...fuga]]/route.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/(group1)/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group1)/route.ts -------------------------------------------------------------------------------- /projects/basic/app/(group2)/aaa/[...bbb]/ccc/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/basic/app/(group2)/aaa/api/samples/page.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/basic/app/(group2)/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group2)/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/(group2)/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group2)/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/(group2)/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group2)/route.ts -------------------------------------------------------------------------------- /projects/basic/app/(group2)/x/[y]/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group2)/x/[y]/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/(group2)/x/[y]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group2)/x/[y]/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/(group2)/x/[y]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group2)/x/[y]/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/(group2)/x/[y]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/(group2)/x/[y]/route.ts -------------------------------------------------------------------------------- /projects/basic/app/(group2)/x/[y]/z/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/basic/app/(group2)/x/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/basic/app/.ignore/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/[...c]/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/[b]/[...c]/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/[...c]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/[b]/[...c]/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/[...c]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/[b]/[...c]/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/[...c]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/[b]/[...c]/route.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/d/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/[b]/d/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/d/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/[b]/d/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/d/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/[b]/d/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/d/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/[b]/d/route.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/[b]/index.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/basic/app/[a]/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/[a]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/[a]/route.ts -------------------------------------------------------------------------------- /projects/basic/app/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/_app.tsx -------------------------------------------------------------------------------- /projects/basic/app/api/key-collision-test-another/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/key-collision-test-another/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/key-collision-test-another/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/key-collision-test-another/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/key-collision-test-another/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/key-collision-test-another/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/key-collision-test-another/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/key-collision-test-another/route.ts -------------------------------------------------------------------------------- /projects/basic/app/api/key-collision-test/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/key-collision-test/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/key-collision-test/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/key-collision-test/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/key-collision-test/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/key-collision-test/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/key-collision-test/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/key-collision-test/route.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/admin/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/admin/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/admin/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/admin/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/admin/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/admin/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/admin/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/admin/route.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/admin/users/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/admin/users/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/admin/users/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/admin/users/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/admin/users/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/admin/users/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/admin/users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/admin/users/route.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/public/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/public/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/public/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/public/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/public/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/public/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/public/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/public/route.ts -------------------------------------------------------------------------------- /projects/basic/app/api/mw/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/mw/route.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/[userId]/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/[userId]/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/[userId]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/[userId]/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/[userId]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/[userId]/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/[userId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/[userId]/route.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/route.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/stream/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/stream/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/stream/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/stream/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/stream/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/stream/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/api/test-client/stream/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/api/test-client/stream/route.ts -------------------------------------------------------------------------------- /projects/basic/app/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/route.ts -------------------------------------------------------------------------------- /projects/basic/app/xxx/(group3)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/xxx/(group3)/page.tsx -------------------------------------------------------------------------------- /projects/basic/app/xxx/(group3)/yyy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/xxx/(group3)/yyy/page.tsx -------------------------------------------------------------------------------- /projects/basic/app/xxx/[id]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/xxx/[id]/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/xxx/[id]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/xxx/[id]/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/xxx/[id]/zzz/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/xxx/[id]/zzz/frourio.client.ts -------------------------------------------------------------------------------- /projects/basic/app/xxx/[id]/zzz/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/xxx/[id]/zzz/frourio.server.ts -------------------------------------------------------------------------------- /projects/basic/app/xxx/[id]/zzz/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/xxx/[id]/zzz/frourio.ts -------------------------------------------------------------------------------- /projects/basic/app/xxx/[id]/zzz/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/app/xxx/[id]/zzz/route.ts -------------------------------------------------------------------------------- /projects/basic/lib/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/lib/apiClient.ts -------------------------------------------------------------------------------- /projects/basic/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/public/openapi.json -------------------------------------------------------------------------------- /projects/basic/tests/setupMswHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/basic/tests/setupMswHandlers.ts -------------------------------------------------------------------------------- /projects/dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/dev.ts -------------------------------------------------------------------------------- /projects/src-dir/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/next.config.ts -------------------------------------------------------------------------------- /projects/src-dir/public/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/public/openapi.json -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group1)/[pid]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/(group1)/[pid]/page.tsx -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group1)/blog/[...slug]/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/(group1)/blog/[...slug]/frourio.server.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group1)/blog/[...slug]/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/(group1)/blog/[...slug]/frourio.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group1)/blog/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/(group1)/blog/[...slug]/page.tsx -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group1)/blog/hoge/[[...fuga]]/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group2)/aaa/[...bbb]/ccc/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group2)/aaa/api/samples/page.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group2)/x/[y]/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group2)/x/[y]/z/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/src-dir/src/app/(group2)/x/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/src-dir/src/app/.ignore/page.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/arrayBuffer/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/arrayBuffer/frourio.client.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/arrayBuffer/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/arrayBuffer/frourio.server.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/arrayBuffer/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/arrayBuffer/frourio.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/arrayBuffer/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/arrayBuffer/route.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/blob/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/blob/frourio.client.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/blob/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/blob/frourio.server.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/blob/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/blob/frourio.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/blob/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/blob/route.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/text/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/text/frourio.client.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/text/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/text/frourio.server.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/text/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/text/frourio.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/[a]/text/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/[a]/text/route.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/api/%E6%97%A5%E6%9C%AC%E8%AA%9E/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/api/%E6%97%A5%E6%9C%AC%E8%AA%9E/frourio.client.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/api/%E6%97%A5%E6%9C%AC%E8%AA%9E/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/api/%E6%97%A5%E6%9C%AC%E8%AA%9E/frourio.server.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/api/%E6%97%A5%E6%9C%AC%E8%AA%9E/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/api/%E6%97%A5%E6%9C%AC%E8%AA%9E/frourio.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/api/%E6%97%A5%E6%9C%AC%E8%AA%9E/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/api/%E6%97%A5%E6%9C%AC%E8%AA%9E/route.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/api/frourio.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/api/frourio.client.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/api/frourio.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/api/frourio.server.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/api/frourio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/api/frourio.ts -------------------------------------------------------------------------------- /projects/src-dir/src/app/api/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/app/api/route.ts -------------------------------------------------------------------------------- /projects/src-dir/src/lib/apiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/src/lib/apiClient.ts -------------------------------------------------------------------------------- /projects/src-dir/tests/setupMswHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/projects/src-dir/tests/setupMswHandlers.ts -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/createDirPathHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/createDirPathHash.ts -------------------------------------------------------------------------------- /src/createHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/createHash.ts -------------------------------------------------------------------------------- /src/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/generate.ts -------------------------------------------------------------------------------- /src/generateClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/generateClient.ts -------------------------------------------------------------------------------- /src/generateServerTexts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/generateServerTexts.ts -------------------------------------------------------------------------------- /src/getConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/getConfig.ts -------------------------------------------------------------------------------- /src/getGlobalType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/getGlobalType.ts -------------------------------------------------------------------------------- /src/getPropOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/getPropOptions.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/initTSC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/initTSC.ts -------------------------------------------------------------------------------- /src/listFrourioDirs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/listFrourioDirs.ts -------------------------------------------------------------------------------- /src/msw/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/msw/cli.ts -------------------------------------------------------------------------------- /src/msw/generateMsw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/msw/generateMsw.ts -------------------------------------------------------------------------------- /src/msw/getMswConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/msw/getMswConfig.ts -------------------------------------------------------------------------------- /src/openapi/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/openapi/cli.ts -------------------------------------------------------------------------------- /src/openapi/generateOpenapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/openapi/generateOpenapi.ts -------------------------------------------------------------------------------- /src/openapi/getOpenapiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/openapi/getOpenapiConfig.ts -------------------------------------------------------------------------------- /src/paramsUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/paramsUtil.ts -------------------------------------------------------------------------------- /src/watchInputDir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/watchInputDir.ts -------------------------------------------------------------------------------- /src/writeDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/src/writeDefaults.ts -------------------------------------------------------------------------------- /tests/client.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/tests/client.spec.ts -------------------------------------------------------------------------------- /tests/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/tests/index.spec.ts -------------------------------------------------------------------------------- /tests/middleware.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/tests/middleware.spec.ts -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/tests/setup.ts -------------------------------------------------------------------------------- /tests/useQuery.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/tests/useQuery.spec.tsx -------------------------------------------------------------------------------- /tests/useSWR.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/tests/useSWR.spec.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frourios/frourio-next/HEAD/vite.config.ts --------------------------------------------------------------------------------