You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking at the typedefs of this SDK, I see a big void of actual type-safety:
Even looking at the docs I still don't know what different endpoints are supposed to return without actually invoking the call. The problem with that is that we won't have any reconciliation reports in our sandbox environment.
This example above is just in order to showcase and issue and grokking that is a separate issue.
Suggestion: You shouldn't need to manually write the implementation of every endpoint and instead be able to automatically generate a typesafe SDK based on your OpenAPI-schema using something like the openapi-generator.
Automating this would likely:
Greatly reduce the amount of effort needed to put into this SDK
Improve your quality of life maintaining it
Remove inconsistencies between the actual API & this SDK
Improve the experience for your customers
The text was updated successfully, but these errors were encountered:
@KATT The very minimal type defs were intentional. You can use our API reference to see details about the payloads. We are also exploring generators or full types support as well.
Hey gang!
Looking at the typedefs of this SDK, I see a big void of actual type-safety:
Even looking at the docs I still don't know what different endpoints are supposed to return without actually invoking the call. The problem with that is that we won't have any reconciliation reports in our sandbox environment.
This example above is just in order to showcase and issue and grokking that is a separate issue.
Suggestion: You shouldn't need to manually write the implementation of every endpoint and instead be able to automatically generate a typesafe SDK based on your OpenAPI-schema using something like the openapi-generator.
Automating this would likely:
The text was updated successfully, but these errors were encountered: