Skip to content

Commit

Permalink
Add parameters to orders.update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pimm committed Oct 14, 2020
1 parent 58bf0b4 commit 95d3e9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/orders/parameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface GetParameters {
embed?: OrderEmbed[];
}

export type UpdateParameters = PickOptional<OrderData, 'billingAddress' | 'shippingAddress'> & {
export type UpdateParameters = PickOptional<OrderData, 'billingAddress' | 'shippingAddress' | 'redirectUrl' | 'webhookUrl'> & {
orderNumber?: string;
testmode?: boolean;
};
Expand Down

0 comments on commit 95d3e9f

Please sign in to comment.