Skip to content

Commit 7635038

Browse files
authored
Merge pull request #57 from uJhin/1.3.4
[Update] Upbit OPEN API Version 1.3.4
2 parents ff40803 + 8fc2159 commit 7635038

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

client/python/upbit/models.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,11 @@ def Withdraw_krw(self, **kwargs) -> dict:
714714
715715
:param amount: 출금 원화 수량
716716
:type amount: str
717+
718+
:param two_factor_type: 2차 인증 수단 (optional)
719+
- kakao_pay: 카카오페이 인증 (default)
720+
- naver: 네이버 인증
721+
:type two_factor_type: str
717722
"""
718723

719724
future = self.__client.Withdraw.Withdraw_krw(**kwargs)

client/python/upbit/pkginfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _get_versions(package_name):
2929
PACKAGE_NAME = "upbit-client"
3030

3131
OPEN_API_VERSION = "1.3.4"
32-
CURRENT_VERSION = OPEN_API_VERSION+".0"
32+
CURRENT_VERSION = OPEN_API_VERSION+".1"
3333

3434
RELEASED_VERSION = _get_versions(PACKAGE_NAME)
3535
LATEST_VERSION = RELEASED_VERSION[0]

mapper/swg_mapper.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,14 @@
829829
"description": "출금 원화 수량\n",
830830
"required": true,
831831
"type": "string"
832+
},
833+
{
834+
"name": "two_factor_type",
835+
"in": "formData",
836+
"description": "2차 인증 수단 (기본 값 : kakao_pay)\n",
837+
"required": false,
838+
"type": "string",
839+
"default": "kakao_pay"
832840
}
833841
],
834842
"responses": {

0 commit comments

Comments
 (0)