fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix: Having paramsSerializer NOT defined should take the query params!

+2 -2
+1 -1
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.89.0", 3 + "version": "0.89.1-0", 4 4 "description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {
+1 -1
packages/openapi-ts/src/plugins/@hey-api/client-axios/bundle/client.ts
··· 82 82 data: getValidRequestBody(opts), 83 83 headers: opts.headers as RawAxiosRequestHeaders, 84 84 // let `paramsSerializer()` handle query params if it exists 85 - params: opts.paramsSerializer ? opts.query : undefined, 85 + params: !opts.paramsSerializer ? opts.query : undefined, 86 86 url, 87 87 }); 88 88