Fifty

Results 6 issues of Fifty

Hi, i try to generate some enums. ```ts export type AddedRemoveEvent = { type: EventType.ADDED | EventType.REMOVED; target: EventUser; }; export type AssignUnassignEvent = { type: EventType.ASSIGNED | EventType.UNASSIGNED; target:...

### Description Hi, I encountered an issue when calling (**with paramsStructure flat**) a generated GET method. The request path is incorrectly serialized as: `/servers/id,1335279038599663729` But it should be: `/servers/1335279038599663729` This...

bug 🔥
client

### Description Hi, right now, the generated functions take a single object as a parameter, which contains all the request fields. For example: ```ts ServersService.updateConfig({ id: this.server.id, serverConfig: this.server.serverConfig });...

feature 🚀

### Description Hi, while i generate my client i get the following errors from the generated files: ```ts src/api/client/client/client.gen.ts:61:3 - error TS2578: Unused '@ts-expect-error' directive. 61 // @ts-expect-error const {...

bug 🔥
needs info ⏳
client
javascript

As i created a feature request at #41 Its nice to have, that we can make the name property optional and use the parameter name instead.

hi. it would be nice if we can use the parameter name for the decorator name if their isnt anything set. **Current behavior:** ```ts @Post('{id}') public async getId(@Path("id") id: string):...