Michael "Mike" Ferris
Michael "Mike" Ferris
Example of what this generates for my project ```ts export type QueryDataTypes = { galApiControllerGetHello: undefined; configControllerGetOpenApi: undefined; workspaceControllerFindAll: WorkspaceControllerFindAllResponse; workspaceControllerFindOne: Schemas.WorkspaceDto; assetControllerFindAll: AssetControllerFindAllResponse; assetControllerFindOne: Schemas.HydratedAssetDto; eventControllerFindAllByTargetId: undefined; partControllerFindAll: PartControllerFindAllResponse;...
The feature I'm looking for is to have a type-safe reliable way to use `useQueries`. I thought about using ReactQueryFunctions instead of ReactQueryComponents. However, having a mix of both (see...
Since I generated the context from ReactQueryComponents, if I tried to then generate ReactQueryFunctions I would get typings errors on the operationId because the 2 wouldn't generate the same casing...
I'm currently using @nestjs/swagger and for nested references it generates the following openapi schema (trimmed for readability): ```json { "openapi": "3.0.0", "paths": {}, "components": { "schemas": { "HydratedAssetDto": { "type":...
Clang is unable to find a file located in emscripten-fastcomp. I believe this is because of the symlink since I followed the paths and the file is present
There's a vulnerability on axios https://cve.mitre.org/cgi-bin/cvename.cgi?name=2023-45857 I also looked at updating the other dependencies. This might require a major bump on binary-install since `rimraf` dropped support for node 14 effectively...
Since there's no PR information on a workflow_dispatch the action will try to fetch it https://github.com/cypress-io/github-action/blob/f6f2cc1665fa2dcd75170785c5dcaad1fe01fb24/index.js#L474-L497 However, even though the call is in a try/catch it still errors my whole...
Decorators like ApiOkResponse always override the status to a specific code. Devs might think they are overriding the status but it's actually a no-op. Updated the types of the options...
### Issue Description We recently upgraded to version 3 Right now we use `resetStore` for a particular scenario. All graphql requests sent have an "organizationId" header associated. Depending on that...