We need to think about how to integrate with OpenAPI.
Approach 1
Uses OpenAPI to understand the API, code, and required types. Match those types to our exported TypeScript types, then build a thin layer to create typed services with custom serialization (using our JSON context serializer support, if possible).
Approach 2
Try analyzing the code directly to infer the API and type usage. I believe this would be a huge work, and we will duplicate in some way how the OpenAPI already supports.
We need to think about how to integrate with OpenAPI.
Approach 1
Uses OpenAPI to understand the API, code, and required types. Match those types to our exported TypeScript types, then build a thin layer to create typed services with custom serialization (using our JSON context serializer support, if possible).
Approach 2
Try analyzing the code directly to infer the API and type usage. I believe this would be a huge work, and we will duplicate in some way how the OpenAPI already supports.