We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The GET orders endpoint accepts a "customer" parameter instead of "customer_id". The typescript definitions need to reflect this.
I think this can most easily achieved by changing:
export type OrdersParams = Partial<Orders>;
to
export type OrdersParams = Partial<Omit<Orders, 'customer_id'> & {'customer': number}>;
The text was updated successfully, but these errors were encountered:
Hi, @dmoebius, i have assigned you to this issue, if you have a chance to create a PR, would be very helpfull. Thank in advance.
Sorry, something went wrong.
dmoebius
No branches or pull requests
The GET orders endpoint accepts a "customer" parameter instead of "customer_id". The typescript definitions need to reflect this.
I think this can most easily achieved by changing:
to
The text was updated successfully, but these errors were encountered: