gitextract_dvpnw2jp/ ├── .editorconfig ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── ci.yml │ └── codeql.yml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DOCS.md ├── LICENSE ├── README.md ├── jest.config.ts ├── package.json ├── src/ │ ├── __tests__/ │ │ ├── fixtures.ts │ │ └── resources/ │ │ ├── example-pet-api.openapi.json │ │ └── example-pet-api.openapi.yml │ ├── client.test.ts │ ├── client.ts │ ├── index.ts │ ├── query-serializer.ts │ └── types/ │ └── client.ts └── tsconfig.json