Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: kotlin schema extract request regex (#715)
If a verb to verb request object had multiple parameters the regex would capture the last found match. This would result in the matcher finding something like `ages = ...` instead of `TimeRequest` With a call like this, the regex would find `ages = listOf(1, 2, 3)` for the `req` instead of `TimeRequest` ```kotlin val response = context.call(TimeModuleClient::time, TimeRequest(name = req.name ?: "anonymous", ages = listOf(1, 2, 3))) ```
- Loading branch information