0.44.0

(feat): Inline path parameters into request types by setting inlinePathParameters to true in the generator config.

Here’s an example of how users would use the same endpoint method without and with inlinePathParameters set to true.

Without inlinePathParameters:

1await service.getFoo("pathParamValue", { id: "SOME_ID" });

With inlinePathParameters:

1await service.getFoo({ pathParamName: "pathParamValue", id: "SOME_ID" });