gitextract_qcn3yl_o/ ├── .changeset/ │ ├── README.md │ └── config.json ├── .github/ │ └── workflows/ │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── docs/ │ └── swapi-example/ │ ├── swapi-example.ts │ └── types.ts ├── package.json ├── readme.md ├── src/ │ ├── client.ts │ ├── constants.ts │ ├── index.ts │ ├── playground.ts │ ├── safe-client.ts │ ├── tests/ │ │ ├── add.test.ts │ │ ├── dynamic-args.test.ts │ │ ├── merge.test.ts │ │ ├── repl.test.ts │ │ ├── router-definition.test.ts │ │ ├── type-only.test.ts │ │ ├── utils.ts │ │ └── with-schemas.test.ts │ ├── types.ts │ └── untypeable.ts ├── tsconfig.json └── tsup.config.ts