Ludwig Stockbauer-Muhr

Results 32 comments of Ludwig Stockbauer-Muhr

Hi @christianguenter2, so I checked this. And apparently the `baseinfo` is not supported on my targeting system. I even tried it on a System with NW 7.54 SP00. Even on...

Hello @akudev, why not just make the following change in the generated `.ts`-file: ```js export default interface MyControl { // property: text getText(): string; setText(text: string): this; } ``` By...

Hi @akudev, I am not sure if this is a bug of typescript but the reason you are getting the syntax error is because you splitted the _class definition_ and...

Hi @ukysys, sorry for that. Somehow I missed to delete this transformation during a clean-up commit. Now you should be able to pull it without any issues. Best regards, Ludwig

Hi @christianguenter2, On my test system I have an Oracle database, so this issue did not occur, as parameters are supported there. But I think I can get it to...

Hi @daogrady, I enhanced the tests for CQL and service handler registration for plural drafts in my fork of @cap-js/cds-types. See [cds-services.ts](https://github.com/stockbal/cds-types/blob/01d8b7730dabcaf324360a6335efb08b4d2bf4d5/test/typescript/apis/project/cds-services.ts#L236-L283) and [cds-ql.ts](https://github.com/stockbal/cds-types/blob/01d8b7730dabcaf324360a6335efb08b4d2bf4d5/test/typescript/apis/project/cds-ql.ts#L93-L123). I could find only one issue...

Hi @tsteckenborn, did you pass the option `--inlineDeclarations flat` to the CLI? The default value for inline declarations is `structured`. Structured produces a type like: ```ts ... context?: { title?:...

Hi Daniel, I thought at version 0.x.y you can basically do anything. Nothing is stable and the public API could be changed at any time. Sure, a lot of projects...

Hi Daniel, there is a way to get the sql csn with `cds.compile.for.sql` and the inferred csn. ```js const inferred = await cds.linked(await cds.load(paths, { docs: true })) const sql...