-
Notifications
You must be signed in to change notification settings - Fork 6
Correct history for issued_to
+ fix changelog for Estimates
#73
New issue
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
Conversation
- Renames the `issuedTo` parameter for `orders` to `issued_to`. | ||
|
||
## [1.23.0] - 2022-06-03 | ||
|
||
### Added | ||
|
||
- Adds support for the `issued_to` parameter on `orders`, to add support for creating and placing orders on behalf of another party. | ||
- Adds support for the `issuedTo` parameter on `orders`, to add support for creating and placing orders on behalf of another party. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@holtbp fixing the timeline here.
src/api/OrdersApi.js
Outdated
if (id === undefined || id === null) { | ||
if (_id === undefined || _id === null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand this change, this seems incorrect.
src/api/OrdersApi.js
Outdated
const _placeOrderRequest = PlaceOrderRequest.constructFromObject( | ||
opts, | ||
new CreateOrderRequest() | ||
); | ||
let postBody = _placeOrderRequest; | ||
let postBody = opts['placeOrderRequest']; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also strange, investigating.
import V1OrdersIssuedTo from './V1OrdersIssuedTo'; | ||
import OrderIssuedTo from './OrderIssuedTo'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoids introducing this weird solo V1 file (this change is due to using a reusable schema for order_issued_to
in swagger).
### Breaking | ||
|
||
- Renames the `issuedTo` parameter for `orders` to `issued_to`. | ||
|
||
## [1.23.0] - 2022-06-03 | ||
|
||
### Added | ||
|
||
- Adds support for the `issued_to` parameter on `orders`, to add support for creating and placing orders on behalf of another party. | ||
- Adds support for the `issuedTo` parameter on `orders`, to add support for creating and placing orders on behalf of another party. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@holtbp I'm rewriting the timeline here.
issued_to
+ fix changelog for Estimates
What
issued_to
Why
SDK Release Checklist