Skip to content

Commit 5a1f29a

Browse files
author
方佳
committed
Merge branch 'main_merge_0610' into 'main'
fix: Query Orders History V2 See merge request webull/openapi-python-sdk!12
2 parents 3f88a74 + f94b7e6 commit 5a1f29a

File tree

11 files changed

+14
-14
lines changed

11 files changed

+14
-14
lines changed

webull-python-sdk-core/webullsdkcore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.12"
1+
__version__ = "0.1.13"
22

33
import logging
44

webull-python-sdk-demos/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
LONG_DESCRIPTION = fp.read()
1616

1717
requires = [
18-
"webull-python-sdk-mdata==0.1.12",
19-
"webull-python-sdk-trade==0.1.12"
18+
"webull-python-sdk-mdata==0.1.13",
19+
"webull-python-sdk-trade==0.1.13"
2020
]
2121

2222
setup_args = {

webull-python-sdk-mdata/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
LONG_DESCRIPTION = fp.read()
1616

1717
requires = [
18-
"webull-python-sdk-core==0.1.12",
19-
"webull-python-sdk-quotes-core==0.1.12"
18+
"webull-python-sdk-core==0.1.13",
19+
"webull-python-sdk-quotes-core==0.1.13"
2020
]
2121

2222
setup_args = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# coding=utf-8
22

3-
__version__ = '0.1.12'
3+
__version__ = '0.1.13'

webull-python-sdk-quotes-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"grpcio==1.51.1",
2525
"grpcio-tools==1.51.1",
2626
"protobuf==4.21.12",
27-
"webull-python-sdk-core==0.1.12"
27+
"webull-python-sdk-core==0.1.13"
2828
]
2929

3030
setup_args = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.12"
1+
__version__ = "0.1.13"

webull-python-sdk-trade-events-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"grpcio==1.51.1",
2424
"grpcio-tools==1.51.1",
2525
"protobuf==4.21.12",
26-
"webull-python-sdk-core==0.1.12"
26+
"webull-python-sdk-core==0.1.13"
2727
]
2828

2929
setup_args = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.12"
1+
__version__ = "0.1.13"

webull-python-sdk-trade/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
LONG_DESCRIPTION = fp.read()
1616

1717
requires = [
18-
"webull-python-sdk-trade-events-core==0.1.12",
19-
"webull-python-sdk-core==0.1.12"
18+
"webull-python-sdk-trade-events-core==0.1.13",
19+
"webull-python-sdk-core==0.1.13"
2020
]
2121

2222
setup_args = {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.1.12"
1+
__version__ = "0.1.13"
22

webull-python-sdk-trade/webullsdktrade/request/v2/get_order_history_request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
class OrderHistoryRequest(ApiRequest):
1919
def __init__(self):
20-
ApiRequest.__init__(self, "/openapi/account/orders/history", version='v1', method="GET", body_params={})
20+
ApiRequest.__init__(self, "/openapi/account/orders/history", version='v1', method="GET", query_params={})
2121

2222
def set_account_id(self, account_id):
2323
self.add_query_param("account_id", account_id)

0 commit comments

Comments
 (0)