gate-api 7.2.129__tar.gz → 7.2.144__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (776) hide show
  1. {gate_api-7.2.129 → gate_api-7.2.144}/PKG-INFO +14 -3
  2. {gate_api-7.2.129 → gate_api-7.2.144}/README.md +13 -2
  3. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/__init__.py +11 -1
  4. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/__init__.py +1 -0
  5. gate_api-7.2.144/gate_api/api/announcement_api.py +155 -0
  6. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/cfd_api.py +2 -2
  7. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/cross_ex_api.py +22 -22
  8. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/otc_api.py +182 -76
  9. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/p2p_api.py +2 -0
  10. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/spot_api.py +7 -2
  11. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/stock_api.py +6 -6
  12. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api_client.py +1 -1
  13. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/configuration.py +2 -2
  14. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/__init__.py +9 -0
  15. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_key_info_perms.py +2 -2
  16. gate_api-7.2.144/gate_api/models/announcement_article.py +530 -0
  17. gate_api-7.2.144/gate_api/models/announcement_article_language.py +153 -0
  18. gate_api-7.2.144/gate_api/models/announcement_article_list_data.py +153 -0
  19. gate_api-7.2.144/gate_api/models/announcement_article_list_request.py +431 -0
  20. gate_api-7.2.144/gate_api/models/announcement_article_list_response.py +209 -0
  21. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_order2_data.py +2 -2
  22. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_user_resp_data.py +4 -32
  23. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account_asset.py +12 -12
  24. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account_book_record.py +6 -6
  25. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account_update_request.py +2 -2
  26. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account_update_response.py +2 -2
  27. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_adl_rank.py +4 -4
  28. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_convert_quote_request.py +4 -4
  29. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_convert_quote_response.py +2 -2
  30. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_historical_margin_position.py +2 -2
  31. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_historical_position.py +30 -2
  32. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_isolated_margin_response.py +32 -4
  33. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_margin_interest_record.py +3 -3
  34. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_order.py +8 -8
  35. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_order_request.py +4 -4
  36. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_transfer_coin.py +2 -2
  37. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_transfer_record.py +4 -4
  38. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_transfer_request.py +4 -4
  39. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/currency_pair.py +29 -2
  40. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/exchanges_data_list.py +3 -3
  41. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/i18n_txt.py +4 -0
  42. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/inline_response2002.py +4 -4
  43. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mt5_account_data.py +2 -30
  44. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order.py +30 -2
  45. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list_item.py +23 -3
  46. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list_item_status_detail.py +4 -0
  47. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_item.py +3 -3
  48. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_create_multipart_request.py +64 -9
  49. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_enterprise_supplement_multipart_request.py +40 -16
  50. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_personal_supplement_multipart_request.py +38 -13
  51. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_mark_order_paid_request.py +2 -2
  52. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_request.py +38 -4
  53. gate_api-7.2.144/gate_api/models/otc_upload_pre_upload_data.py +209 -0
  54. gate_api-7.2.144/gate_api/models/otc_upload_pre_upload_policy_fields.py +298 -0
  55. gate_api-7.2.144/gate_api/models/otc_upload_pre_upload_request.py +164 -0
  56. gate_api-7.2.144/gate_api/models/otc_upload_pre_upload_response.py +209 -0
  57. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list_item.py +21 -3
  58. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_key_perms.py +2 -2
  59. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol.py +34 -6
  60. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_detail_data.py +4 -0
  61. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_detail_item.py +83 -5
  62. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_detail_item_symbol_descs.py +4 -0
  63. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_list_item.py +47 -7
  64. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_order_request.py +34 -6
  65. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_order_request.py +2 -2
  66. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trade.py +32 -4
  67. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_balance.py +2 -2
  68. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_asset_resp2_data.py +86 -2
  69. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_asset_resp_data.py +4 -32
  70. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/PKG-INFO +14 -3
  71. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/SOURCES.txt +10 -0
  72. {gate_api-7.2.129 → gate_api-7.2.144}/setup.py +1 -1
  73. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/account_api.py +0 -0
  74. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/activity_api.py +0 -0
  75. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/alpha_api.py +0 -0
  76. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/assetswap_api.py +0 -0
  77. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/bot_api.py +0 -0
  78. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/coupon_api.py +0 -0
  79. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/delivery_api.py +0 -0
  80. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/earn_api.py +0 -0
  81. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/earn_uni_api.py +0 -0
  82. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/flash_swap_api.py +0 -0
  83. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/futures_api.py +0 -0
  84. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/margin_api.py +0 -0
  85. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/margin_uni_api.py +0 -0
  86. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/multi_collateral_loan_api.py +0 -0
  87. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/options_api.py +0 -0
  88. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/rebate_api.py +0 -0
  89. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/square_api.py +0 -0
  90. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/sub_account_api.py +0 -0
  91. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/unified_api.py +0 -0
  92. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/wallet_api.py +0 -0
  93. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/welfare_api.py +0 -0
  94. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/api/withdrawal_api.py +0 -0
  95. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/exceptions.py +0 -0
  96. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_balance.py +0 -0
  97. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_book_response.py +0 -0
  98. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_detail.py +0 -0
  99. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_detail_key.py +0 -0
  100. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_key_info.py +0 -0
  101. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_rate_limit.py +0 -0
  102. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/account_transfer_detail.py +0 -0
  103. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/accounts_response.py +0 -0
  104. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ads_detail_request.py +0 -0
  105. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ads_list_request.py +0 -0
  106. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ads_update_status.py +0 -0
  107. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/agency_commission.py +0 -0
  108. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/agency_commission_history.py +0 -0
  109. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/agency_transaction.py +0 -0
  110. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/agency_transaction_history.py +0 -0
  111. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_create_data.py +0 -0
  112. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_create_success_response.py +0 -0
  113. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_discover_data.py +0 -0
  114. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_discover_success_response.py +0 -0
  115. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_base_info.py +0 -0
  116. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_detail_data.py +0 -0
  117. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_detail_success_response.py +0 -0
  118. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_metrics.py +0 -0
  119. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_position.py +0 -0
  120. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_running_data.py +0 -0
  121. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_running_item.py +0 -0
  122. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_running_success_response.py +0 -0
  123. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_stop_data.py +0 -0
  124. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_stop_request.py +0 -0
  125. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_portfolio_stop_success_response.py +0 -0
  126. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ai_hub_recommendation.py +0 -0
  127. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/alpha_currency.py +0 -0
  128. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/alpha_ticker.py +0 -0
  129. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/amend_options_order_request.py +0 -0
  130. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_config.py +0 -0
  131. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_evaluate.py +0 -0
  132. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_list_assets.py +0 -0
  133. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_order_create_v1.py +0 -0
  134. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_order_list_v1.py +0 -0
  135. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_order_preview_v1.py +0 -0
  136. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_asset_swap_order_query_v1.py +0 -0
  137. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_claim_reward_resp.py +0 -0
  138. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_claim_reward_resp_data.py +0 -0
  139. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_claim_task_resp.py +0 -0
  140. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp.py +0 -0
  141. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp_data.py +0 -0
  142. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_get_beginner_task_list_resp_data_tasks.py +0 -0
  143. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/api_response_ex_skill_get_user_identity_resp.py +0 -0
  144. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/asset_list_resp.py +0 -0
  145. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/asset_swap_frontend.py +0 -0
  146. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_coins_item.py +0 -0
  147. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_config_item.py +0 -0
  148. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_min_invest_amount.py +0 -0
  149. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_min_invest_amount_items.py +0 -0
  150. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_min_invest_amount_resp.py +0 -0
  151. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_order_item.py +0 -0
  152. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_add_position.py +0 -0
  153. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_create.py +0 -0
  154. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_create_items.py +0 -0
  155. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_create_resp.py +0 -0
  156. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_detail.py +0 -0
  157. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_list_info_resp.py +0 -0
  158. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_record_item.py +0 -0
  159. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_records_resp.py +0 -0
  160. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_stop.py +0 -0
  161. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_plan_update.py +0 -0
  162. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_invest_portfolio_item.py +0 -0
  163. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/auto_repay_setting.py +0 -0
  164. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/award_list_struct.py +0 -0
  165. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/award_list_struct_list.py +0 -0
  166. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/base_response.py +0 -0
  167. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_amend_item.py +0 -0
  168. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_amend_order_req.py +0 -0
  169. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_funding_rates_request.py +0 -0
  170. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_funding_rates_response.py +0 -0
  171. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_futures_order.py +0 -0
  172. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/batch_order.py +0 -0
  173. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/borrow_currency_info.py +0 -0
  174. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_commission.py +0 -0
  175. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_commission_item.py +0 -0
  176. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_commission_sub_broker_info.py +0 -0
  177. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_transaction.py +0 -0
  178. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/broker_transaction_history.py +0 -0
  179. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cancel_batch_order.py +0 -0
  180. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cancel_order.py +0 -0
  181. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cancel_order_result.py +0 -0
  182. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/categories.py +0 -0
  183. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/categories_data.py +0 -0
  184. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/categories_data_list.py +0 -0
  185. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/chase_order.py +0 -0
  186. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/claim_reward_error.py +0 -0
  187. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/claim_task_error.py +0 -0
  188. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/close_position.py +0 -0
  189. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/close_position_data.py +0 -0
  190. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_adjust.py +0 -0
  191. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_adjust_res.py +0 -0
  192. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_currency.py +0 -0
  193. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_currency_info.py +0 -0
  194. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_currency_res.py +0 -0
  195. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_current_rate.py +0 -0
  196. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_fix_rate.py +0 -0
  197. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/collateral_ltv.py +0 -0
  198. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/confirm_payment.py +0 -0
  199. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/confirm_receipt.py +0 -0
  200. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract.py +0 -0
  201. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_detail.py +0 -0
  202. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_detail_data.py +0 -0
  203. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_detail_data_list.py +0 -0
  204. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_martingale_create_params.py +0 -0
  205. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_martingale_create_request.py +0 -0
  206. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_martingale_direction.py +0 -0
  207. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/contract_stat.py +0 -0
  208. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/convert_currencies_v2_item.py +0 -0
  209. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/convert_small_balance.py +0 -0
  210. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/countdown_cancel_all_futures_task.py +0 -0
  211. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/countdown_cancel_all_options_task.py +0 -0
  212. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/countdown_cancel_all_spot_task.py +0 -0
  213. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_chase_order_req.py +0 -0
  214. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_chase_order_resp.py +0 -0
  215. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_earn_fixed_term_lend_response.py +0 -0
  216. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_earn_fixed_term_lend_response_data.py +0 -0
  217. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_earn_fixed_term_pre_redeem_response.py +0 -0
  218. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_multi_collateral_order.py +0 -0
  219. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_order.py +0 -0
  220. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_order2.py +0 -0
  221. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_order_detail.py +0 -0
  222. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_param.py +0 -0
  223. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_trail_order.py +0 -0
  224. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_trail_order_response.py +0 -0
  225. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_trail_order_result.py +0 -0
  226. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_transaction.py +0 -0
  227. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_transaction2.py +0 -0
  228. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_uni_lend.py +0 -0
  229. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_uni_loan.py +0 -0
  230. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/create_user_resp.py +0 -0
  231. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cross_margin_balance.py +0 -0
  232. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cross_margin_loan.py +0 -0
  233. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/cross_margin_repayment.py +0 -0
  234. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_account.py +0 -0
  235. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_batch_cancel_order_request.py +0 -0
  236. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_batch_cancel_order_response.py +0 -0
  237. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_close_position_request.py +0 -0
  238. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_coin_discount_rate.py +0 -0
  239. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_convert_order_request.py +0 -0
  240. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_convert_order_response.py +0 -0
  241. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_interest_rate.py +0 -0
  242. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_isolated_margin_request.py +0 -0
  243. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_leverage_request.py +0 -0
  244. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_leverage_response.py +0 -0
  245. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_margin_mode_request.py +0 -0
  246. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_margin_mode_response.py +0 -0
  247. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_margin_position.py +0 -0
  248. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_order_action_response.py +0 -0
  249. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_order_update_request.py +0 -0
  250. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_position.py +0 -0
  251. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_risk_limit.py +0 -0
  252. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_risk_limit_tier.py +0 -0
  253. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_special_fee.py +0 -0
  254. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_trade.py +0 -0
  255. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/crossex_transfer_response.py +0 -0
  256. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/currency.py +0 -0
  257. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/currency_chain.py +0 -0
  258. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/currency_quota.py +0 -0
  259. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/debit_fee.py +0 -0
  260. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delete_order.py +0 -0
  261. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delete_position.py +0 -0
  262. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_account.py +0 -0
  263. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_account_book.py +0 -0
  264. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_account_history.py +0 -0
  265. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_candlestick.py +0 -0
  266. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_contract.py +0 -0
  267. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_limit_risk_tiers.py +0 -0
  268. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_liquidate.py +0 -0
  269. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_my_trade.py +0 -0
  270. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_order.py +0 -0
  271. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_order_book.py +0 -0
  272. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_order_book_item.py +0 -0
  273. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_position.py +0 -0
  274. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_position_close.py +0 -0
  275. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_settlement.py +0 -0
  276. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_ticker.py +0 -0
  277. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delivery_trade.py +0 -0
  278. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/delta_neutral_enabled.py +0 -0
  279. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/deposit_address.py +0 -0
  280. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/deposit_record.py +0 -0
  281. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/discover_scene.py +0 -0
  282. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_get_balance.py +0 -0
  283. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_get_orders.py +0 -0
  284. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_get_plans.py +0 -0
  285. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_modify_order_reinvest_params.py +0 -0
  286. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_order_refund_params.py +0 -0
  287. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_order_refund_preview.py +0 -0
  288. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/dual_project_recommend.py +0 -0
  289. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/earn_fixed_term_pre_redeem_request.py +0 -0
  290. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/eligibility.py +0 -0
  291. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/eligibility_response.py +0 -0
  292. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/eligibility_response_all_of.py +0 -0
  293. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/err_code_msg.py +0 -0
  294. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/error_response.py +0 -0
  295. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/evaluate_item.py +0 -0
  296. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/evaluate_resp.py +0 -0
  297. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ex_skill_claim_reward_req.py +0 -0
  298. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ex_skill_claim_task_req.py +0 -0
  299. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/exchanges.py +0 -0
  300. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/exchanges_data.py +0 -0
  301. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fee_rate.py +0 -0
  302. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fee_rate_data.py +0 -0
  303. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fee_rate_data_list.py +0 -0
  304. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_bonus_info.py +0 -0
  305. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_coupon_info.py +0 -0
  306. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_history_record.py +0 -0
  307. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_lend_order.py +0 -0
  308. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_lend_request.py +0 -0
  309. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_product.py +0 -0
  310. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_product_info.py +0 -0
  311. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/fixed_term_product_simple.py +0 -0
  312. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_currency_pair.py +0 -0
  313. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_error_response.py +0 -0
  314. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_create_param.py +0 -0
  315. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_req.py +0 -0
  316. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_resp.py +0 -0
  317. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_create_resp_data.py +0 -0
  318. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_req.py +0 -0
  319. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_resp.py +0 -0
  320. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_many_to_one_order_preview_resp_data.py +0 -0
  321. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_req.py +0 -0
  322. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_resp.py +0 -0
  323. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_create_resp_data.py +0 -0
  324. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_req.py +0 -0
  325. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_resp.py +0 -0
  326. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_one_to_many_order_preview_resp_data.py +0 -0
  327. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_order.py +0 -0
  328. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_preview_order.py +0 -0
  329. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_multi_currency_preview_param.py +0 -0
  330. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order.py +0 -0
  331. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_create_req.py +0 -0
  332. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_create_resp.py +0 -0
  333. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_create_resp_data.py +0 -0
  334. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_preview.py +0 -0
  335. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_preview_resp.py +0 -0
  336. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_preview_resp_data.py +0 -0
  337. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_order_request.py +0 -0
  338. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/flash_swap_preview_request.py +0 -0
  339. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/funding_account.py +0 -0
  340. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/funding_rate_record.py +0 -0
  341. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/future_cancel_order_result.py +0 -0
  342. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_account.py +0 -0
  343. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_account_book.py +0 -0
  344. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_account_history.py +0 -0
  345. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_adl_risk_state.py +0 -0
  346. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_adl_risk_states.py +0 -0
  347. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_auto_deleverage.py +0 -0
  348. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_batch_amend_order_request.py +0 -0
  349. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_bbo_order.py +0 -0
  350. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_candlestick.py +0 -0
  351. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_direction.py +0 -0
  352. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_fee.py +0 -0
  353. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_grid_create_params.py +0 -0
  354. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_grid_create_request.py +0 -0
  355. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_index_constituents.py +0 -0
  356. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_initial_order.py +0 -0
  357. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_leverage.py +0 -0
  358. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_limit_risk_tiers.py +0 -0
  359. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_liq_order.py +0 -0
  360. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_liquidate.py +0 -0
  361. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order.py +0 -0
  362. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order_amendment.py +0 -0
  363. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order_book.py +0 -0
  364. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order_book_item.py +0 -0
  365. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_order_timerange.py +0 -0
  366. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_position_cross_mode.py +0 -0
  367. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_premium_index.py +0 -0
  368. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_price_trigger.py +0 -0
  369. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_price_triggered_order.py +0 -0
  370. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_risk_limit_tier.py +0 -0
  371. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_ticker.py +0 -0
  372. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_trade.py +0 -0
  373. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/futures_update_price_triggered_order.py +0 -0
  374. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/gate_error_response.py +0 -0
  375. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_beginner_task_list_error.py +0 -0
  376. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_chase_order_detail_resp.py +0 -0
  377. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_chase_orders_resp.py +0 -0
  378. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_chats_list_request.py +0 -0
  379. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_completed_transaction_list_request.py +0 -0
  380. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_counterparty_user_info_request.py +0 -0
  381. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_my_activity_entry_response.py +0 -0
  382. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_my_activity_entry_response_data.py +0 -0
  383. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_myself_payment_request.py +0 -0
  384. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_pending_transaction_list_request.py +0 -0
  385. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_transaction_details_request.py +0 -0
  386. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_user_coupon_detail_response.py +0 -0
  387. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_user_coupon_detail_response_data.py +0 -0
  388. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/get_user_identity_error.py +0 -0
  389. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/index_constituent.py +0 -0
  390. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/infinite_grid_create_params.py +0 -0
  391. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/infinite_grid_create_request.py +0 -0
  392. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/inline_response200.py +0 -0
  393. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/inline_response2001.py +0 -0
  394. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/insurance_record.py +0 -0
  395. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/klines.py +0 -0
  396. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/klines_data.py +0 -0
  397. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/klines_data_list.py +0 -0
  398. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ladder_apr.py +0 -0
  399. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ledger_record.py +0 -0
  400. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/leverage_failed_currencies.py +0 -0
  401. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/liquidate_order.py +0 -0
  402. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activities_response.py +0 -0
  403. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activities_response_data.py +0 -0
  404. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activities_response_data_list.py +0 -0
  405. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activity_types_response.py +0 -0
  406. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activity_types_response_data.py +0 -0
  407. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_activity_types_response_data_list.py +0 -0
  408. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_history_response.py +0 -0
  409. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_history_response_data.py +0 -0
  410. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_lends_response.py +0 -0
  411. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_lends_response_data.py +0 -0
  412. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_products_by_asset_response.py +0 -0
  413. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_products_by_asset_response_data.py +0 -0
  414. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_products_response.py +0 -0
  415. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_earn_fixed_term_products_response_data.py +0 -0
  416. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_error.py +0 -0
  417. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response.py +0 -0
  418. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data.py +0 -0
  419. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data_list.py +0 -0
  420. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data_live.py +0 -0
  421. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data_live_host.py +0 -0
  422. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_live_replay_response_data_video.py +0 -0
  423. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_square_ai_search_error.py +0 -0
  424. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_square_ai_search_response.py +0 -0
  425. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_square_ai_search_response_data.py +0 -0
  426. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_square_ai_search_response_data_items.py +0 -0
  427. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response.py +0 -0
  428. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data.py +0 -0
  429. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data_help_url.py +0 -0
  430. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data_jump_url.py +0 -0
  431. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data_list.py +0 -0
  432. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/list_user_coupons_response_data_progress_config.py +0 -0
  433. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_account.py +0 -0
  434. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_account_book.py +0 -0
  435. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_account_currency.py +0 -0
  436. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_grid_create_params.py +0 -0
  437. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_grid_create_request.py +0 -0
  438. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_leverage_tier.py +0 -0
  439. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_market_leverage.py +0 -0
  440. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_tiers.py +0 -0
  441. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/margin_transferable.py +0 -0
  442. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/max_uni_borrowable.py +0 -0
  443. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_futures_order.py +0 -0
  444. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_futures_position.py +0 -0
  445. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_margin_result.py +0 -0
  446. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_options_order.py +0 -0
  447. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_options_position.py +0 -0
  448. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_risk_unit.py +0 -0
  449. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_spot_balance.py +0 -0
  450. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mock_spot_order.py +0 -0
  451. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/mt5_account.py +0 -0
  452. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_chain_address_item.py +0 -0
  453. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_currency.py +0 -0
  454. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_item.py +0 -0
  455. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_order.py +0 -0
  456. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_record.py +0 -0
  457. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_collateral_record_currency.py +0 -0
  458. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_loan_item.py +0 -0
  459. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_loan_repay_item.py +0 -0
  460. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_repay_record.py +0 -0
  461. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/multi_repay_resp.py +0 -0
  462. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/my_ads_list_request.py +0 -0
  463. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/my_futures_trade.py +0 -0
  464. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/my_futures_trade_time_range.py +0 -0
  465. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/open_orders.py +0 -0
  466. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_account.py +0 -0
  467. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_account_book.py +0 -0
  468. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_candlestick.py +0 -0
  469. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_contract.py +0 -0
  470. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_mmp.py +0 -0
  471. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_mmp_reset.py +0 -0
  472. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_my_settlements.py +0 -0
  473. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_my_trade.py +0 -0
  474. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_order.py +0 -0
  475. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_order_book.py +0 -0
  476. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_position.py +0 -0
  477. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_position_close.py +0 -0
  478. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_position_close_order.py +0 -0
  479. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_settlement.py +0 -0
  480. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_ticker.py +0 -0
  481. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_trade.py +0 -0
  482. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_underlying.py +0 -0
  483. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/options_underlying_ticker.py +0 -0
  484. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_book.py +0 -0
  485. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_book2.py +0 -0
  486. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_book2_data.py +0 -0
  487. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_book_price.py +0 -0
  488. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_cancel.py +0 -0
  489. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_create_v1_req.py +0 -0
  490. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_create_v1_resp.py +0 -0
  491. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list.py +0 -0
  492. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list2.py +0 -0
  493. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list2_data.py +0 -0
  494. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list_data.py +0 -0
  495. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_history_list_data_list.py +0 -0
  496. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list.py +0 -0
  497. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list2.py +0 -0
  498. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list2_data.py +0 -0
  499. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_data.py +0 -0
  500. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_data_list.py +0 -0
  501. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_struct.py +0 -0
  502. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_struct_list.py +0 -0
  503. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_list_v1_resp.py +0 -0
  504. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_log.py +0 -0
  505. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_log_data.py +0 -0
  506. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_patch.py +0 -0
  507. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_preview_v1_req.py +0 -0
  508. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_preview_v1_resp.py +0 -0
  509. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_resp.py +0 -0
  510. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/order_response.py +0 -0
  511. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_action_response.py +0 -0
  512. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_create_response.py +0 -0
  513. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_create_response_data.py +0 -0
  514. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_id_request.py +0 -0
  515. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_list_item.py +0 -0
  516. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_list_response.py +0 -0
  517. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_list_result.py +0 -0
  518. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_supplement_checklist_item.py +0 -0
  519. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_supplement_checklist_response.py +0 -0
  520. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_bank_supplement_checklist_response_data.py +0 -0
  521. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_detail.py +0 -0
  522. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_detail_response.py +0 -0
  523. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_crypto_currency_info.py +0 -0
  524. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_fiat_currency_info.py +0 -0
  525. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_item.py +0 -0
  526. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_response.py +0 -0
  527. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_order_list_result.py +0 -0
  528. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_quote_request.py +0 -0
  529. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_quote_response.py +0 -0
  530. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_quote_result.py +0 -0
  531. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_create_response.py +0 -0
  532. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_list_item.py +0 -0
  533. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_list_response.py +0 -0
  534. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_list_result.py +0 -0
  535. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/otc_stable_coin_order_request.py +0 -0
  536. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/other_contact.py +0 -0
  537. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ad_detail.py +0 -0
  538. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ad_detail_response.py +0 -0
  539. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_list_item.py +0 -0
  540. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_list_response.py +0 -0
  541. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_list_trade_method.py +0 -0
  542. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_update_status_response.py +0 -0
  543. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_ads_update_status_result.py +0 -0
  544. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_chat_list_response.py +0 -0
  545. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_chat_list_result.py +0 -0
  546. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_chat_message.py +0 -0
  547. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_chat_message_payload.py +0 -0
  548. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_counterparty_user_info.py +0 -0
  549. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_counterparty_user_info_response.py +0 -0
  550. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_books_place_biz_push_order_response.py +0 -0
  551. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_books_place_biz_push_order_response_data.py +0 -0
  552. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_books_place_biz_push_order_response_data_risk_event.py +0 -0
  553. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_books_place_biz_push_order_response_data_risk_event_action.py +0 -0
  554. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_market_info.py +0 -0
  555. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_user_info.py +0 -0
  556. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_user_info_response.py +0 -0
  557. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_work_hours.py +0 -0
  558. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_merchant_work_hours_response.py +0 -0
  559. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_my_ad.py +0 -0
  560. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_my_ads_list_response.py +0 -0
  561. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_my_ads_list_result.py +0 -0
  562. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_payment_method_account.py +0 -0
  563. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_payment_method_group.py +0 -0
  564. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_payment_methods_response.py +0 -0
  565. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_send_chat_message_response.py +0 -0
  566. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_send_chat_message_result.py +0 -0
  567. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_action_response.py +0 -0
  568. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_convert_info.py +0 -0
  569. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_detail.py +0 -0
  570. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_detail_pay_others.py +0 -0
  571. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_detail_response.py +0 -0
  572. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_list_item.py +0 -0
  573. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_list_response.py +0 -0
  574. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_list_result.py +0 -0
  575. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_list_result_pay_others.py +0 -0
  576. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_transaction_time_marker.py +0 -0
  577. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_upload_chat_file_response.py +0 -0
  578. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/p2p_upload_chat_file_result.py +0 -0
  579. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_application.py +0 -0
  580. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_application_response.py +0 -0
  581. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_application_response_all_of.py +0 -0
  582. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_commission_history.py +0 -0
  583. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_data_aggregated.py +0 -0
  584. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_data_aggregated_response.py +0 -0
  585. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_data_aggregated_response_all_of.py +0 -0
  586. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_sub.py +0 -0
  587. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_sub_list.py +0 -0
  588. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/partner_transaction_history.py +0 -0
  589. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/patch_uni_lend.py +0 -0
  590. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_biz_push_order.py +0 -0
  591. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_dual_investment_order.py +0 -0
  592. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_dual_investment_order_params.py +0 -0
  593. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_order_request.py +0 -0
  594. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/place_order_response.py +0 -0
  595. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position.py +0 -0
  596. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_close.py +0 -0
  597. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_close_order.py +0 -0
  598. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list.py +0 -0
  599. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list_data.py +0 -0
  600. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list_data_close_detail.py +0 -0
  601. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list_data_list.py +0 -0
  602. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_history_list_data_realized_pnl_detail.py +0 -0
  603. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list.py +0 -0
  604. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list2.py +0 -0
  605. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list2_data.py +0 -0
  606. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list_data.py +0 -0
  607. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_list_data_list.py +0 -0
  608. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/position_timerange.py +0 -0
  609. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/preview_from_param.py +0 -0
  610. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/preview_order.py +0 -0
  611. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/preview_order_detail.py +0 -0
  612. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/preview_to_param.py +0 -0
  613. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/profit_loss_range.py +0 -0
  614. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quick_estimated_repayment.py +0 -0
  615. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quick_repayment_request.py +0 -0
  616. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quick_repayment_response.py +0 -0
  617. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quote_request.py +0 -0
  618. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/quote_response.py +0 -0
  619. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/rebate_user_info.py +0 -0
  620. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/recommend.py +0 -0
  621. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/recommend_v2_scheme.py +0 -0
  622. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/recommend_v2_strategy.py +0 -0
  623. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_currency_res.py +0 -0
  624. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_multi_loan.py +0 -0
  625. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_record_currency.py +0 -0
  626. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_record_left_interest.py +0 -0
  627. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_record_repaid_currency.py +0 -0
  628. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/repay_record_total_interest.py +0 -0
  629. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/risk_units.py +0 -0
  630. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/saved_address.py +0 -0
  631. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/send_chat_message_request.py +0 -0
  632. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/set_merchant_work_hours_request.py +0 -0
  633. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/small_balance.py +0 -0
  634. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/small_balance_history.py +0 -0
  635. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_account.py +0 -0
  636. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_account_book.py +0 -0
  637. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_currency_chain.py +0 -0
  638. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_fee.py +0 -0
  639. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_grid_create_params.py +0 -0
  640. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_grid_create_request.py +0 -0
  641. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_insurance_history.py +0 -0
  642. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_martingale_create_params.py +0 -0
  643. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_martingale_create_request.py +0 -0
  644. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_order_stop_loss.py +0 -0
  645. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_order_stop_profit.py +0 -0
  646. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_pov_order.py +0 -0
  647. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_pov_order_creator.py +0 -0
  648. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_price_put_order.py +0 -0
  649. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_price_trigger.py +0 -0
  650. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/spot_price_triggered_order.py +0 -0
  651. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_all_chase_orders_req.py +0 -0
  652. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_all_chase_orders_resp.py +0 -0
  653. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_all_trail_orders.py +0 -0
  654. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_chase_order_req.py +0 -0
  655. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_chase_order_resp.py +0 -0
  656. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stop_trail_order.py +0 -0
  657. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stp_group.py +0 -0
  658. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/stp_group_user.py +0 -0
  659. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/strategy_type.py +0 -0
  660. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account.py +0 -0
  661. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_balance.py +0 -0
  662. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_cross_margin_balance.py +0 -0
  663. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_futures_balance.py +0 -0
  664. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_key.py +0 -0
  665. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_margin_balance.py +0 -0
  666. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_to_sub_account.py +0 -0
  667. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_transfer.py +0 -0
  668. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_account_transfer_record_item.py +0 -0
  669. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_cross_margin_account.py +0 -0
  670. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/sub_user_mode.py +0 -0
  671. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/swap_coin.py +0 -0
  672. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/swap_coin_struct.py +0 -0
  673. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_commissions.py +0 -0
  674. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_commissions_data.py +0 -0
  675. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_commissions_data_list.py +0 -0
  676. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbol_detail.py +0 -0
  677. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols.py +0 -0
  678. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols2.py +0 -0
  679. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols2_data.py +0 -0
  680. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols_data.py +0 -0
  681. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/symbols_data_list.py +0 -0
  682. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/system_time.py +0 -0
  683. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/ticker.py +0 -0
  684. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/tokens.py +0 -0
  685. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/total_balance.py +0 -0
  686. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_close_position_request.py +0 -0
  687. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_error.py +0 -0
  688. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_order_update_request.py +0 -0
  689. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_position_update_request.py +0 -0
  690. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_close_position_request.py +0 -0
  691. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_error.py +0 -0
  692. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_order_update_request.py +0 -0
  693. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_spot_transaction_request.py +0 -0
  694. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_ticker.py +0 -0
  695. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_ticker_data.py +0 -0
  696. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trad_fi_transaction_request.py +0 -0
  697. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trade_fee.py +0 -0
  698. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_change_log.py +0 -0
  699. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order.py +0 -0
  700. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order_change_log_response.py +0 -0
  701. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order_detail_response.py +0 -0
  702. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order_list_response.py +0 -0
  703. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trail_order_response.py +0 -0
  704. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_id.py +0 -0
  705. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_item.py +0 -0
  706. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list.py +0 -0
  707. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list2.py +0 -0
  708. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list2_data.py +0 -0
  709. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list_data.py +0 -0
  710. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transaction_list_data_list.py +0 -0
  711. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transfer.py +0 -0
  712. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transfer_order_status.py +0 -0
  713. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/transferables_result.py +0 -0
  714. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trigger_order_response.py +0 -0
  715. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/trigger_time.py +0 -0
  716. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uid_push_order.py +0 -0
  717. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uid_push_withdrawal.py +0 -0
  718. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uid_push_withdrawal_resp.py +0 -0
  719. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_chart_point.py +0 -0
  720. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_currency.py +0 -0
  721. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_currency_interest.py +0 -0
  722. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_currency_pair.py +0 -0
  723. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_estimated_rate.py +0 -0
  724. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_interest_record.py +0 -0
  725. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_lend.py +0 -0
  726. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_lend_interest.py +0 -0
  727. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_lend_record.py +0 -0
  728. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_loan.py +0 -0
  729. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_loan_interest_record.py +0 -0
  730. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/uni_loan_record.py +0 -0
  731. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_account.py +0 -0
  732. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_borrowable.py +0 -0
  733. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_collateral_req.py +0 -0
  734. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_collateral_res.py +0 -0
  735. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_currency.py +0 -0
  736. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_discount.py +0 -0
  737. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_discount_tiers.py +0 -0
  738. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_history_loan_rate.py +0 -0
  739. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_history_loan_rate_rates.py +0 -0
  740. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_leverage_config.py +0 -0
  741. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_leverage_setting.py +0 -0
  742. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_loan.py +0 -0
  743. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_loan_record.py +0 -0
  744. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_loan_result.py +0 -0
  745. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_margin_tiers.py +0 -0
  746. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_mode_set.py +0 -0
  747. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_portfolio_input.py +0 -0
  748. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_portfolio_output.py +0 -0
  749. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_quick_repay_available_item.py +0 -0
  750. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_quick_repay_debt_item.py +0 -0
  751. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_quick_repay_repaid_info.py +0 -0
  752. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_quick_repay_used_info.py +0 -0
  753. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_risk_units.py +0 -0
  754. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_settings.py +0 -0
  755. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/unified_transferable.py +0 -0
  756. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_dual_comp_position_cross_mode_request.py +0 -0
  757. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_order.py +0 -0
  758. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_order2.py +0 -0
  759. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_order2_data.py +0 -0
  760. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_order_data.py +0 -0
  761. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_position.py +0 -0
  762. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/update_trail_order.py +0 -0
  763. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/upload_chat_file.py +0 -0
  764. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_asset_resp.py +0 -0
  765. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_asset_resp2.py +0 -0
  766. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_leverage_setting.py +0 -0
  767. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_sub.py +0 -0
  768. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/user_sub_relation.py +0 -0
  769. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/withdraw_status.py +0 -0
  770. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/withdrawal_record.py +0 -0
  771. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/models/withdrawals_del.py +0 -0
  772. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api/rest.py +0 -0
  773. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/dependency_links.txt +0 -0
  774. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/requires.txt +0 -0
  775. {gate_api-7.2.129 → gate_api-7.2.144}/gate_api.egg-info/top_level.txt +0 -0
  776. {gate_api-7.2.129 → gate_api-7.2.144}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gate-api
3
- Version: 7.2.129
3
+ Version: 7.2.144
4
4
  Summary: Gate API
5
5
  Home-page: https://github.com/gate/gateapi-python
6
6
  Author: Gate API support
@@ -32,8 +32,8 @@ APIv4 provides operations related to spot, margin, and contract trading, includi
32
32
 
33
33
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
34
34
 
35
- - API version: v4.106.129
36
- - Package version: 7.2.129
35
+ - API version: v4.106.144
36
+ - Package version: 7.2.144
37
37
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
38
38
  For more information, please visit [https://www.gate.com/page/contacts](https://www.gate.com/page/contacts)
39
39
 
@@ -231,6 +231,7 @@ Class | Method | HTTP request | Description
231
231
  *OTCApi* | [**get_otc_bank_supplement_checklist**](docs/OTCApi.md#get_otc_bank_supplement_checklist) | **GET** /otc/bank/bank_supplement_checklist | Query the checklist of materials to supplement for a bank card
232
232
  *OTCApi* | [**submit_otc_bank_personal_supplement**](docs/OTCApi.md#submit_otc_bank_personal_supplement) | **POST** /otc/bank/personal/bank_supplement | Submit Bank Card Supplement Materials (Personal)
233
233
  *OTCApi* | [**submit_otc_bank_enterprise_supplement**](docs/OTCApi.md#submit_otc_bank_enterprise_supplement) | **POST** /otc/bank/enterprise/bank_supplement | Submit Bank Card Supplement Materials (Enterprise)
234
+ *OTCApi* | [**create_otc_upload_pre_upload**](docs/OTCApi.md#create_otc_upload_pre_upload) | **POST** /otc/upload/pre_upload | Pre-upload file (temporary bucket)
234
235
  *OTCApi* | [**mark_otc_order_paid**](docs/OTCApi.md#mark_otc_order_paid) | **POST** /otc/order/paid | Mark fiat order as paid (deposit confirmation)
235
236
  *OTCApi* | [**cancel_otc_order**](docs/OTCApi.md#cancel_otc_order) | **POST** /otc/order/cancel | Fiat order cancellation
236
237
  *OTCApi* | [**list_otc_orders**](docs/OTCApi.md#list_otc_orders) | **GET** /otc/order/list | Fiat order list
@@ -309,6 +310,7 @@ Class | Method | HTTP request | Description
309
310
  *AlphaApi* | [**list_alpha_currencies**](docs/AlphaApi.md#list_alpha_currencies) | **GET** /alpha/currencies | Query currency information
310
311
  *AlphaApi* | [**list_alpha_tickers**](docs/AlphaApi.md#list_alpha_tickers) | **GET** /alpha/tickers | Query currency ticker
311
312
  *AlphaApi* | [**list_alpha_tokens**](docs/AlphaApi.md#list_alpha_tokens) | **GET** /alpha/tokens | Query Token Information
313
+ *AnnouncementApi* | [**list_announcement_articles**](docs/AnnouncementApi.md#list_announcement_articles) | **POST** /ann/list_article | List announcement articles
312
314
  *AssetswapApi* | [**list_asset_swap_assets**](docs/AssetswapApi.md#list_asset_swap_assets) | **GET** /asset-swap/asset/list | Portfolio optimization — currency list
313
315
  *AssetswapApi* | [**get_asset_swap_config**](docs/AssetswapApi.md#get_asset_swap_config) | **GET** /asset-swap/config | Portfolio optimization — configuration
314
316
  *AssetswapApi* | [**evaluate_asset_swap**](docs/AssetswapApi.md#evaluate_asset_swap) | **GET** /asset-swap/evaluate | Portfolio optimization — valuation
@@ -660,6 +662,11 @@ Class | Method | HTTP request | Description
660
662
  - [AlphaCurrency](docs/AlphaCurrency.md)
661
663
  - [AlphaTicker](docs/AlphaTicker.md)
662
664
  - [AmendOptionsOrderRequest](docs/AmendOptionsOrderRequest.md)
665
+ - [AnnouncementArticle](docs/AnnouncementArticle.md)
666
+ - [AnnouncementArticleLanguage](docs/AnnouncementArticleLanguage.md)
667
+ - [AnnouncementArticleListData](docs/AnnouncementArticleListData.md)
668
+ - [AnnouncementArticleListRequest](docs/AnnouncementArticleListRequest.md)
669
+ - [AnnouncementArticleListResponse](docs/AnnouncementArticleListResponse.md)
663
670
  - [ApiResponseAssetSwapConfig](docs/ApiResponseAssetSwapConfig.md)
664
671
  - [ApiResponseAssetSwapEvaluate](docs/ApiResponseAssetSwapEvaluate.md)
665
672
  - [ApiResponseAssetSwapListAssets](docs/ApiResponseAssetSwapListAssets.md)
@@ -1098,6 +1105,10 @@ Class | Method | HTTP request | Description
1098
1105
  - [OtcStableCoinOrderListResponse](docs/OtcStableCoinOrderListResponse.md)
1099
1106
  - [OtcStableCoinOrderListResult](docs/OtcStableCoinOrderListResult.md)
1100
1107
  - [OtcStableCoinOrderRequest](docs/OtcStableCoinOrderRequest.md)
1108
+ - [OtcUploadPreUploadData](docs/OtcUploadPreUploadData.md)
1109
+ - [OtcUploadPreUploadPolicyFields](docs/OtcUploadPreUploadPolicyFields.md)
1110
+ - [OtcUploadPreUploadRequest](docs/OtcUploadPreUploadRequest.md)
1111
+ - [OtcUploadPreUploadResponse](docs/OtcUploadPreUploadResponse.md)
1101
1112
  - [OtherContact](docs/OtherContact.md)
1102
1113
  - [P2pAdDetail](docs/P2pAdDetail.md)
1103
1114
  - [P2pAdDetailResponse](docs/P2pAdDetailResponse.md)
@@ -4,8 +4,8 @@ APIv4 provides operations related to spot, margin, and contract trading, includi
4
4
 
5
5
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
6
6
 
7
- - API version: v4.106.129
8
- - Package version: 7.2.129
7
+ - API version: v4.106.144
8
+ - Package version: 7.2.144
9
9
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
10
  For more information, please visit [https://www.gate.com/page/contacts](https://www.gate.com/page/contacts)
11
11
 
@@ -203,6 +203,7 @@ Class | Method | HTTP request | Description
203
203
  *OTCApi* | [**get_otc_bank_supplement_checklist**](docs/OTCApi.md#get_otc_bank_supplement_checklist) | **GET** /otc/bank/bank_supplement_checklist | Query the checklist of materials to supplement for a bank card
204
204
  *OTCApi* | [**submit_otc_bank_personal_supplement**](docs/OTCApi.md#submit_otc_bank_personal_supplement) | **POST** /otc/bank/personal/bank_supplement | Submit Bank Card Supplement Materials (Personal)
205
205
  *OTCApi* | [**submit_otc_bank_enterprise_supplement**](docs/OTCApi.md#submit_otc_bank_enterprise_supplement) | **POST** /otc/bank/enterprise/bank_supplement | Submit Bank Card Supplement Materials (Enterprise)
206
+ *OTCApi* | [**create_otc_upload_pre_upload**](docs/OTCApi.md#create_otc_upload_pre_upload) | **POST** /otc/upload/pre_upload | Pre-upload file (temporary bucket)
206
207
  *OTCApi* | [**mark_otc_order_paid**](docs/OTCApi.md#mark_otc_order_paid) | **POST** /otc/order/paid | Mark fiat order as paid (deposit confirmation)
207
208
  *OTCApi* | [**cancel_otc_order**](docs/OTCApi.md#cancel_otc_order) | **POST** /otc/order/cancel | Fiat order cancellation
208
209
  *OTCApi* | [**list_otc_orders**](docs/OTCApi.md#list_otc_orders) | **GET** /otc/order/list | Fiat order list
@@ -281,6 +282,7 @@ Class | Method | HTTP request | Description
281
282
  *AlphaApi* | [**list_alpha_currencies**](docs/AlphaApi.md#list_alpha_currencies) | **GET** /alpha/currencies | Query currency information
282
283
  *AlphaApi* | [**list_alpha_tickers**](docs/AlphaApi.md#list_alpha_tickers) | **GET** /alpha/tickers | Query currency ticker
283
284
  *AlphaApi* | [**list_alpha_tokens**](docs/AlphaApi.md#list_alpha_tokens) | **GET** /alpha/tokens | Query Token Information
285
+ *AnnouncementApi* | [**list_announcement_articles**](docs/AnnouncementApi.md#list_announcement_articles) | **POST** /ann/list_article | List announcement articles
284
286
  *AssetswapApi* | [**list_asset_swap_assets**](docs/AssetswapApi.md#list_asset_swap_assets) | **GET** /asset-swap/asset/list | Portfolio optimization — currency list
285
287
  *AssetswapApi* | [**get_asset_swap_config**](docs/AssetswapApi.md#get_asset_swap_config) | **GET** /asset-swap/config | Portfolio optimization — configuration
286
288
  *AssetswapApi* | [**evaluate_asset_swap**](docs/AssetswapApi.md#evaluate_asset_swap) | **GET** /asset-swap/evaluate | Portfolio optimization — valuation
@@ -632,6 +634,11 @@ Class | Method | HTTP request | Description
632
634
  - [AlphaCurrency](docs/AlphaCurrency.md)
633
635
  - [AlphaTicker](docs/AlphaTicker.md)
634
636
  - [AmendOptionsOrderRequest](docs/AmendOptionsOrderRequest.md)
637
+ - [AnnouncementArticle](docs/AnnouncementArticle.md)
638
+ - [AnnouncementArticleLanguage](docs/AnnouncementArticleLanguage.md)
639
+ - [AnnouncementArticleListData](docs/AnnouncementArticleListData.md)
640
+ - [AnnouncementArticleListRequest](docs/AnnouncementArticleListRequest.md)
641
+ - [AnnouncementArticleListResponse](docs/AnnouncementArticleListResponse.md)
635
642
  - [ApiResponseAssetSwapConfig](docs/ApiResponseAssetSwapConfig.md)
636
643
  - [ApiResponseAssetSwapEvaluate](docs/ApiResponseAssetSwapEvaluate.md)
637
644
  - [ApiResponseAssetSwapListAssets](docs/ApiResponseAssetSwapListAssets.md)
@@ -1070,6 +1077,10 @@ Class | Method | HTTP request | Description
1070
1077
  - [OtcStableCoinOrderListResponse](docs/OtcStableCoinOrderListResponse.md)
1071
1078
  - [OtcStableCoinOrderListResult](docs/OtcStableCoinOrderListResult.md)
1072
1079
  - [OtcStableCoinOrderRequest](docs/OtcStableCoinOrderRequest.md)
1080
+ - [OtcUploadPreUploadData](docs/OtcUploadPreUploadData.md)
1081
+ - [OtcUploadPreUploadPolicyFields](docs/OtcUploadPreUploadPolicyFields.md)
1082
+ - [OtcUploadPreUploadRequest](docs/OtcUploadPreUploadRequest.md)
1083
+ - [OtcUploadPreUploadResponse](docs/OtcUploadPreUploadResponse.md)
1073
1084
  - [OtherContact](docs/OtherContact.md)
1074
1085
  - [P2pAdDetail](docs/P2pAdDetail.md)
1075
1086
  - [P2pAdDetailResponse](docs/P2pAdDetailResponse.md)
@@ -14,7 +14,7 @@
14
14
 
15
15
  from __future__ import absolute_import
16
16
 
17
- __version__ = "7.2.129"
17
+ __version__ = "7.2.144"
18
18
 
19
19
  # import apis into sdk package
20
20
  from gate_api.api.activity_api import ActivityApi
@@ -28,6 +28,7 @@ from gate_api.api.sub_account_api import SubAccountApi
28
28
  from gate_api.api.unified_api import UnifiedApi
29
29
  from gate_api.api.account_api import AccountApi
30
30
  from gate_api.api.alpha_api import AlphaApi
31
+ from gate_api.api.announcement_api import AnnouncementApi
31
32
  from gate_api.api.assetswap_api import AssetswapApi
32
33
  from gate_api.api.bot_api import BotApi
33
34
  from gate_api.api.coupon_api import CouponApi
@@ -90,6 +91,11 @@ from gate_api.models.agency_transaction_history import AgencyTransactionHistory
90
91
  from gate_api.models.alpha_currency import AlphaCurrency
91
92
  from gate_api.models.alpha_ticker import AlphaTicker
92
93
  from gate_api.models.amend_options_order_request import AmendOptionsOrderRequest
94
+ from gate_api.models.announcement_article import AnnouncementArticle
95
+ from gate_api.models.announcement_article_language import AnnouncementArticleLanguage
96
+ from gate_api.models.announcement_article_list_data import AnnouncementArticleListData
97
+ from gate_api.models.announcement_article_list_request import AnnouncementArticleListRequest
98
+ from gate_api.models.announcement_article_list_response import AnnouncementArticleListResponse
93
99
  from gate_api.models.api_response_asset_swap_config import ApiResponseAssetSwapConfig
94
100
  from gate_api.models.api_response_asset_swap_evaluate import ApiResponseAssetSwapEvaluate
95
101
  from gate_api.models.api_response_asset_swap_list_assets import ApiResponseAssetSwapListAssets
@@ -528,6 +534,10 @@ from gate_api.models.otc_stable_coin_order_list_item import OtcStableCoinOrderLi
528
534
  from gate_api.models.otc_stable_coin_order_list_response import OtcStableCoinOrderListResponse
529
535
  from gate_api.models.otc_stable_coin_order_list_result import OtcStableCoinOrderListResult
530
536
  from gate_api.models.otc_stable_coin_order_request import OtcStableCoinOrderRequest
537
+ from gate_api.models.otc_upload_pre_upload_data import OtcUploadPreUploadData
538
+ from gate_api.models.otc_upload_pre_upload_policy_fields import OtcUploadPreUploadPolicyFields
539
+ from gate_api.models.otc_upload_pre_upload_request import OtcUploadPreUploadRequest
540
+ from gate_api.models.otc_upload_pre_upload_response import OtcUploadPreUploadResponse
531
541
  from gate_api.models.other_contact import OtherContact
532
542
  from gate_api.models.p2p_ad_detail import P2pAdDetail
533
543
  from gate_api.models.p2p_ad_detail_response import P2pAdDetailResponse
@@ -14,6 +14,7 @@ from gate_api.api.sub_account_api import SubAccountApi
14
14
  from gate_api.api.unified_api import UnifiedApi
15
15
  from gate_api.api.account_api import AccountApi
16
16
  from gate_api.api.alpha_api import AlphaApi
17
+ from gate_api.api.announcement_api import AnnouncementApi
17
18
  from gate_api.api.assetswap_api import AssetswapApi
18
19
  from gate_api.api.bot_api import BotApi
19
20
  from gate_api.api.coupon_api import CouponApi
@@ -0,0 +1,155 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Gate API
5
+
6
+ Welcome to Gate API APIv4 provides operations related to spot, margin, and contract trading, including public interfaces for querying market data and authenticated private interfaces for implementing API-based automated trading. # noqa: E501
7
+
8
+ Contact: support@mail.gate.com
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ from __future__ import absolute_import
14
+
15
+ import re # noqa: F401
16
+
17
+ # python 2 and python 3 compatibility library
18
+ import six
19
+
20
+ from gate_api.api_client import ApiClient
21
+ from gate_api.exceptions import ( # noqa: F401
22
+ ApiTypeError,
23
+ ApiValueError
24
+ )
25
+
26
+
27
+ class AnnouncementApi(object):
28
+ """NOTE: This class is auto generated by OpenAPI Generator
29
+ Ref: https://openapi-generator.tech
30
+
31
+ Do not edit the class manually.
32
+ """
33
+
34
+ def __init__(self, api_client=None):
35
+ if api_client is None:
36
+ api_client = ApiClient()
37
+ self.api_client = api_client
38
+
39
+ def list_announcement_articles(self, announcement_article_list_request, **kwargs): # noqa: E501
40
+ """List announcement articles # noqa: E501
41
+
42
+ Query announcement articles with pagination and filters for title, category, language, time, and other criteria. Send query parameters in the JSON request body. Both page and size are optional and must be strings when provided. No API key is required. # noqa: E501
43
+ This method makes a synchronous HTTP request by default. To make an
44
+ asynchronous HTTP request, please pass async_req=True
45
+ >>> thread = api.list_announcement_articles(announcement_article_list_request, async_req=True)
46
+ >>> result = thread.get()
47
+
48
+ :param bool async_req: execute request asynchronously
49
+ :param AnnouncementArticleListRequest announcement_article_list_request: (required)
50
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
51
+ be returned without reading/decoding response
52
+ data. Default is True.
53
+ :param _request_timeout: timeout setting for this request. If one
54
+ number provided, it will be total request
55
+ timeout. It can also be a pair (tuple) of
56
+ (connection, read) timeouts.
57
+ :rtype: gate_api.AnnouncementArticleListResponse
58
+ :return: If the method is called asynchronously,
59
+ returns the request thread.
60
+ """
61
+ kwargs['_return_http_data_only'] = True
62
+ return self.list_announcement_articles_with_http_info(announcement_article_list_request, **kwargs) # noqa: E501
63
+
64
+ def list_announcement_articles_with_http_info(self, announcement_article_list_request, **kwargs): # noqa: E501
65
+ """List announcement articles # noqa: E501
66
+
67
+ Query announcement articles with pagination and filters for title, category, language, time, and other criteria. Send query parameters in the JSON request body. Both page and size are optional and must be strings when provided. No API key is required. # noqa: E501
68
+ This method makes a synchronous HTTP request by default. To make an
69
+ asynchronous HTTP request, please pass async_req=True
70
+ >>> thread = api.list_announcement_articles_with_http_info(announcement_article_list_request, async_req=True)
71
+ >>> result = thread.get()
72
+
73
+ :param bool async_req: execute request asynchronously
74
+ :param AnnouncementArticleListRequest announcement_article_list_request: (required)
75
+ :param _return_http_data_only: response data without head status code
76
+ and headers
77
+ :param _preload_content: if False, the urllib3.HTTPResponse object will
78
+ be returned without reading/decoding response
79
+ data. Default is True.
80
+ :param _request_timeout: timeout setting for this request. If one
81
+ number provided, it will be total request
82
+ timeout. It can also be a pair (tuple) of
83
+ (connection, read) timeouts.
84
+ :rtype: tuple(gate_api.AnnouncementArticleListResponse, status_code(int), headers(HTTPHeaderDict))
85
+ :return: If the method is called asynchronously,
86
+ returns the request thread.
87
+ """
88
+
89
+ local_var_params = locals()
90
+
91
+ all_params = [
92
+ 'announcement_article_list_request'
93
+ ]
94
+ all_params.extend(
95
+ [
96
+ 'async_req',
97
+ '_return_http_data_only',
98
+ '_preload_content',
99
+ '_request_timeout'
100
+ ]
101
+ )
102
+
103
+ for k, v in six.iteritems(local_var_params['kwargs']):
104
+ if k not in all_params:
105
+ raise ApiTypeError(
106
+ "Got an unexpected keyword argument '%s'"
107
+ " to method list_announcement_articles" % k
108
+ )
109
+ local_var_params[k] = v
110
+ del local_var_params['kwargs']
111
+ # verify the required parameter 'announcement_article_list_request' is set
112
+ if self.api_client.client_side_validation and ('announcement_article_list_request' not in local_var_params or # noqa: E501
113
+ local_var_params['announcement_article_list_request'] is None): # noqa: E501
114
+ raise ApiValueError("Missing the required parameter `announcement_article_list_request` when calling `list_announcement_articles`") # noqa: E501
115
+
116
+ collection_formats = {}
117
+
118
+ path_params = {}
119
+
120
+ query_params = []
121
+
122
+ header_params = {}
123
+
124
+ form_params = []
125
+ local_var_files = {}
126
+
127
+ body_params = None
128
+ if 'announcement_article_list_request' in local_var_params:
129
+ body_params = local_var_params['announcement_article_list_request']
130
+ # HTTP header `Accept`
131
+ header_params['Accept'] = self.api_client.select_header_accept(
132
+ ['application/json']) # noqa: E501
133
+
134
+ # HTTP header `Content-Type`
135
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
136
+ ['application/json']) # noqa: E501
137
+
138
+ # Authentication setting
139
+ auth_settings = [] # noqa: E501
140
+
141
+ return self.api_client.call_api(
142
+ '/ann/list_article', 'POST',
143
+ path_params,
144
+ query_params,
145
+ header_params,
146
+ body=body_params,
147
+ post_params=form_params,
148
+ files=local_var_files,
149
+ response_type='AnnouncementArticleListResponse', # noqa: E501
150
+ auth_settings=auth_settings,
151
+ async_req=local_var_params.get('async_req'),
152
+ _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
153
+ _preload_content=local_var_params.get('_preload_content', True),
154
+ _request_timeout=local_var_params.get('_request_timeout'),
155
+ collection_formats=collection_formats)
@@ -337,7 +337,7 @@ class CFDApi(object):
337
337
  ['application/json']) # noqa: E501
338
338
 
339
339
  # Authentication setting
340
- auth_settings = [] # noqa: E501
340
+ auth_settings = ['apiv4'] # noqa: E501
341
341
 
342
342
  return self.api_client.call_api(
343
343
  '/tradfi/symbols/commissions', 'GET',
@@ -552,7 +552,7 @@ class CFDApi(object):
552
552
  ['application/json']) # noqa: E501
553
553
 
554
554
  # Authentication setting
555
- auth_settings = [] # noqa: E501
555
+ auth_settings = ['apiv4'] # noqa: E501
556
556
 
557
557
  return self.api_client.call_api(
558
558
  '/tradfi/symbols/detail', 'GET',
@@ -263,7 +263,7 @@ class CrossExApi(object):
263
263
  def list_crossex_transfer_coins(self, **kwargs): # noqa: E501
264
264
  """Query supported transfer currencies # noqa: E501
265
265
 
266
- `est_fee`: On-chain withdrawal fee. When a fund transfer involves an on-chain withdrawal, the exchange charges this fee. This value is for reference only; the actual fee charged by the exchange applies # noqa: E501
266
+ `est_fee`: Estimated fee. When a fund transfer involves an on-chain withdrawal, the exchange charges this fee. This value is for reference only; the actual fee charged by the exchange applies # noqa: E501
267
267
  This method makes a synchronous HTTP request by default. To make an
268
268
  asynchronous HTTP request, please pass async_req=True
269
269
  >>> thread = api.list_crossex_transfer_coins(async_req=True)
@@ -288,7 +288,7 @@ class CrossExApi(object):
288
288
  def list_crossex_transfer_coins_with_http_info(self, **kwargs): # noqa: E501
289
289
  """Query supported transfer currencies # noqa: E501
290
290
 
291
- `est_fee`: On-chain withdrawal fee. When a fund transfer involves an on-chain withdrawal, the exchange charges this fee. This value is for reference only; the actual fee charged by the exchange applies # noqa: E501
291
+ `est_fee`: Estimated fee. When a fund transfer involves an on-chain withdrawal, the exchange charges this fee. This value is for reference only; the actual fee charged by the exchange applies # noqa: E501
292
292
  This method makes a synchronous HTTP request by default. To make an
293
293
  asynchronous HTTP request, please pass async_req=True
294
294
  >>> thread = api.list_crossex_transfer_coins_with_http_info(async_req=True)
@@ -508,7 +508,7 @@ class CrossExApi(object):
508
508
  def create_crossex_transfer(self, **kwargs): # noqa: E501
509
509
  """Fund Transfer # noqa: E501
510
510
 
511
- Rate limit: 10 requests per 10 seconds - In cross-exchange mode, when transferring USDT, either `from` or `to` must be `SPOT`, and the other side must be `CROSSEX`. If `CROSSEX_${exchange_type}` (e.g. `CROSSEX_GATE`) is provided, it will be automatically treated as `CROSSEX`. - In isolated exchange mode, when transferring USDT, either `from` or `to` must be `CROSSEX_${exchange_type}`, and the other side must be `SPOT` or `CROSSEX_${exchange_type}`. If `CROSSEX` is provided, it will be automatically treated as `CROSSEX_GATE`. - When transferring non-USDT assets to or from CrossEx, neither `from` nor `to` can be `CROSSEX`; `CROSSEX_${exchange_type}` must be explicitly specified. - When transferring non-USDT assets, transfers between `CROSSEX_{exchange_type}` accounts are supported, for example: from = `CROSSEX_BINANCE`, to = `CROSSEX_GATE` - When either side of the transfer is `CROSSEX_KRAKEN`, only USDT is supported for now. - When either side of the transfer is `CROSSEX_HYPERLIQUID`, the other side must be `SPOT`, and only USDC is supported. # noqa: E501
511
+ Rate limit: 10 requests per 10 seconds - In cross-exchange mode, when transferring USDT, either `from` or `to` must be `SPOT`, and the other side must be `CROSSEX`. If `CROSSEX_${exchange_type}` (e.g. `CROSSEX_GATE`) is provided, it will be automatically treated as `CROSSEX`. - In isolated exchange mode, when transferring USDT, either `from` or `to` must be `CROSSEX_${exchange_type}`, and the other side must be `SPOT` or `CROSSEX_${exchange_type}`. If `CROSSEX` is provided, it will be automatically treated as `CROSSEX_GATE`. - When transferring non-USDT assets to or from CrossEx, neither `from` nor `to` can be `CROSSEX`; `CROSSEX_${exchange_type}` must be explicitly specified. - When transferring non-USDT assets, transfers between `CROSSEX_{exchange_type}` accounts are supported, for example: from = `CROSSEX_BINANCE`, to = `CROSSEX_GATE` - When either side of the transfer is `CROSSEX_KRAKEN`, only USDT is supported for now. - When either side of the transfer is `CROSSEX_HYPERLIQUID`, the other side must be `SPOT`, and only USDC is supported. - When either side of the transfer is `CROSSEX_LIGHTER`, the other side must be `SPOT`, and only USDC is supported. # noqa: E501
512
512
  This method makes a synchronous HTTP request by default. To make an
513
513
  asynchronous HTTP request, please pass async_req=True
514
514
  >>> thread = api.create_crossex_transfer(async_req=True)
@@ -533,7 +533,7 @@ class CrossExApi(object):
533
533
  def create_crossex_transfer_with_http_info(self, **kwargs): # noqa: E501
534
534
  """Fund Transfer # noqa: E501
535
535
 
536
- Rate limit: 10 requests per 10 seconds - In cross-exchange mode, when transferring USDT, either `from` or `to` must be `SPOT`, and the other side must be `CROSSEX`. If `CROSSEX_${exchange_type}` (e.g. `CROSSEX_GATE`) is provided, it will be automatically treated as `CROSSEX`. - In isolated exchange mode, when transferring USDT, either `from` or `to` must be `CROSSEX_${exchange_type}`, and the other side must be `SPOT` or `CROSSEX_${exchange_type}`. If `CROSSEX` is provided, it will be automatically treated as `CROSSEX_GATE`. - When transferring non-USDT assets to or from CrossEx, neither `from` nor `to` can be `CROSSEX`; `CROSSEX_${exchange_type}` must be explicitly specified. - When transferring non-USDT assets, transfers between `CROSSEX_{exchange_type}` accounts are supported, for example: from = `CROSSEX_BINANCE`, to = `CROSSEX_GATE` - When either side of the transfer is `CROSSEX_KRAKEN`, only USDT is supported for now. - When either side of the transfer is `CROSSEX_HYPERLIQUID`, the other side must be `SPOT`, and only USDC is supported. # noqa: E501
536
+ Rate limit: 10 requests per 10 seconds - In cross-exchange mode, when transferring USDT, either `from` or `to` must be `SPOT`, and the other side must be `CROSSEX`. If `CROSSEX_${exchange_type}` (e.g. `CROSSEX_GATE`) is provided, it will be automatically treated as `CROSSEX`. - In isolated exchange mode, when transferring USDT, either `from` or `to` must be `CROSSEX_${exchange_type}`, and the other side must be `SPOT` or `CROSSEX_${exchange_type}`. If `CROSSEX` is provided, it will be automatically treated as `CROSSEX_GATE`. - When transferring non-USDT assets to or from CrossEx, neither `from` nor `to` can be `CROSSEX`; `CROSSEX_${exchange_type}` must be explicitly specified. - When transferring non-USDT assets, transfers between `CROSSEX_{exchange_type}` accounts are supported, for example: from = `CROSSEX_BINANCE`, to = `CROSSEX_GATE` - When either side of the transfer is `CROSSEX_KRAKEN`, only USDT is supported for now. - When either side of the transfer is `CROSSEX_HYPERLIQUID`, the other side must be `SPOT`, and only USDC is supported. - When either side of the transfer is `CROSSEX_LIGHTER`, the other side must be `SPOT`, and only USDC is supported. # noqa: E501
537
537
  This method makes a synchronous HTTP request by default. To make an
538
538
  asynchronous HTTP request, please pass async_req=True
539
539
  >>> thread = api.create_crossex_transfer_with_http_info(async_req=True)
@@ -1205,7 +1205,7 @@ class CrossExApi(object):
1205
1205
  def create_crossex_convert_quote(self, **kwargs): # noqa: E501
1206
1206
  """Flash Swap Inquiry # noqa: E501
1207
1207
 
1208
- Rate limit: 100 requests per day For HYPERLIQUID, swaps between `HYPERLIQUID_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for HYPERLIQUID # noqa: E501
1208
+ Rate limit: 100 requests per day For HYPERLIQUID, swaps between `HYPERLIQUID_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for HYPERLIQUID. For LIGHTER, swaps between `LIGHTER_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for LIGHTER. For KRAKEN, only conversion from `KRAKEN_USD` to `CROSSEX_USDT` is supported. Flash Swap in isolated exchange mode is not currently supported for KRAKEN. # noqa: E501
1209
1209
  This method makes a synchronous HTTP request by default. To make an
1210
1210
  asynchronous HTTP request, please pass async_req=True
1211
1211
  >>> thread = api.create_crossex_convert_quote(async_req=True)
@@ -1230,7 +1230,7 @@ class CrossExApi(object):
1230
1230
  def create_crossex_convert_quote_with_http_info(self, **kwargs): # noqa: E501
1231
1231
  """Flash Swap Inquiry # noqa: E501
1232
1232
 
1233
- Rate limit: 100 requests per day For HYPERLIQUID, swaps between `HYPERLIQUID_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for HYPERLIQUID # noqa: E501
1233
+ Rate limit: 100 requests per day For HYPERLIQUID, swaps between `HYPERLIQUID_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for HYPERLIQUID. For LIGHTER, swaps between `LIGHTER_USDC` and `CROSSEX_USDT` are supported. Flash Swap in isolated exchange mode is not currently supported for LIGHTER. For KRAKEN, only conversion from `KRAKEN_USD` to `CROSSEX_USDT` is supported. Flash Swap in isolated exchange mode is not currently supported for KRAKEN. # noqa: E501
1234
1234
  This method makes a synchronous HTTP request by default. To make an
1235
1235
  asynchronous HTTP request, please pass async_req=True
1236
1236
  >>> thread = api.create_crossex_convert_quote_with_http_info(async_req=True)
@@ -1433,14 +1433,14 @@ class CrossExApi(object):
1433
1433
  def get_crossex_account(self, **kwargs): # noqa: E501
1434
1434
  """Query Account Assets # noqa: E501
1435
1435
 
1436
- Rate Limit: 200 requests per 10 seconds If 100% initial_margin_rate < 110%, transferring out the margin currency is prohibited. If initial_margin_rate < 100%, the system will automatically cancel orders; only closing positions is allowed, not opening new ones. If maintenance_margin_rate 100%, the system will force liquidation. # noqa: E501
1436
+ Rate limit: 200 requests per 10 seconds If 100% <= initial_margin_rate < 110%, transferring out the margin currency is prohibited. If initial_margin_rate < 100%, the system automatically cancels orders; only closing positions is allowed, not opening new ones. If maintenance_margin_rate <= 100%, the system forces liquidation. # noqa: E501
1437
1437
  This method makes a synchronous HTTP request by default. To make an
1438
1438
  asynchronous HTTP request, please pass async_req=True
1439
1439
  >>> thread = api.get_crossex_account(async_req=True)
1440
1440
  >>> result = thread.get()
1441
1441
 
1442
1442
  :param bool async_req: execute request asynchronously
1443
- :param str exchange_type: Trading venue identifier. Omit in cross-exchange mode; required in isolated-per-venue mode (`BINANCE` / `OKX` / `GATE` / `BYBIT` / `KRAKEN` / `HYPERLIQUID` / `DERIBIT`).
1443
+ :param str exchange_type: Trading venue identifier. Omit in cross-exchange mode; required in isolated-per-venue mode (`BINANCE` / `OKX` / `GATE` / `BYBIT` / `KRAKEN` / `HYPERLIQUID` / `DERIBIT` / `LIGHTER`).
1444
1444
  :param _preload_content: if False, the urllib3.HTTPResponse object will
1445
1445
  be returned without reading/decoding response
1446
1446
  data. Default is True.
@@ -1458,14 +1458,14 @@ class CrossExApi(object):
1458
1458
  def get_crossex_account_with_http_info(self, **kwargs): # noqa: E501
1459
1459
  """Query Account Assets # noqa: E501
1460
1460
 
1461
- Rate Limit: 200 requests per 10 seconds If 100% initial_margin_rate < 110%, transferring out the margin currency is prohibited. If initial_margin_rate < 100%, the system will automatically cancel orders; only closing positions is allowed, not opening new ones. If maintenance_margin_rate 100%, the system will force liquidation. # noqa: E501
1461
+ Rate limit: 200 requests per 10 seconds If 100% <= initial_margin_rate < 110%, transferring out the margin currency is prohibited. If initial_margin_rate < 100%, the system automatically cancels orders; only closing positions is allowed, not opening new ones. If maintenance_margin_rate <= 100%, the system forces liquidation. # noqa: E501
1462
1462
  This method makes a synchronous HTTP request by default. To make an
1463
1463
  asynchronous HTTP request, please pass async_req=True
1464
1464
  >>> thread = api.get_crossex_account_with_http_info(async_req=True)
1465
1465
  >>> result = thread.get()
1466
1466
 
1467
1467
  :param bool async_req: execute request asynchronously
1468
- :param str exchange_type: Trading venue identifier. Omit in cross-exchange mode; required in isolated-per-venue mode (`BINANCE` / `OKX` / `GATE` / `BYBIT` / `KRAKEN` / `HYPERLIQUID` / `DERIBIT`).
1468
+ :param str exchange_type: Trading venue identifier. Omit in cross-exchange mode; required in isolated-per-venue mode (`BINANCE` / `OKX` / `GATE` / `BYBIT` / `KRAKEN` / `HYPERLIQUID` / `DERIBIT` / `LIGHTER`).
1469
1469
  :param _return_http_data_only: response data without head status code
1470
1470
  and headers
1471
1471
  :param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -3648,11 +3648,11 @@ class CrossExApi(object):
3648
3648
 
3649
3649
  :param bool async_req: execute request asynchronously
3650
3650
  :param str symbol: Currency pair
3651
- :param int _from: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3652
- :param int to: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3653
- :param int page: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3654
- :param int limit: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3655
- :param str exchange_type: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3651
+ :param int _from: Start Millisecond Timestamp
3652
+ :param int to: End Millisecond Timestamp
3653
+ :param int page: Page number
3654
+ :param int limit: Maximum number returned by list, max 1000
3655
+ :param str exchange_type: Exchange
3656
3656
  :param _preload_content: if False, the urllib3.HTTPResponse object will
3657
3657
  be returned without reading/decoding response
3658
3658
  data. Default is True.
@@ -3678,11 +3678,11 @@ class CrossExApi(object):
3678
3678
 
3679
3679
  :param bool async_req: execute request asynchronously
3680
3680
  :param str symbol: Currency pair
3681
- :param int _from: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3682
- :param int to: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3683
- :param int page: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3684
- :param int limit: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3685
- :param str exchange_type: Project-Id-Version: GateApiTools 1.0.0 Report-Msgid-Bugs-To: EMAIL@ADDRESS POT-Creation-Date: 2025-11-12 18:14+0800 PO-Revision-Date: 2019-01-02 17:30+0800 Last-Translator: FULL NAME <EMAIL@ADDRESS> Language: en Language-Team: en <L@li.org> Plural-Forms: nplurals=2; plural=(n !=1) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Generated-By: Babel 2.8.0
3681
+ :param int _from: Start Millisecond Timestamp
3682
+ :param int to: End Millisecond Timestamp
3683
+ :param int page: Page number
3684
+ :param int limit: Maximum number returned by list, max 1000
3685
+ :param str exchange_type: Exchange
3686
3686
  :param _return_http_data_only: response data without head status code
3687
3687
  and headers
3688
3688
  :param _preload_content: if False, the urllib3.HTTPResponse object will
@@ -4048,7 +4048,7 @@ class CrossExApi(object):
4048
4048
 
4049
4049
  :param bool async_req: execute request asynchronously
4050
4050
  :param str coin: Query by specified currency name
4051
- :param str exchange_type: OKX/GATE/BINANCE/BYBIT/KRAKEN/HYPERLIQUID/DERIBIT
4051
+ :param str exchange_type: OKX/GATE/BINANCE/BYBIT/KRAKEN/HYPERLIQUID/DERIBIT/LIGHTER
4052
4052
  :param _preload_content: if False, the urllib3.HTTPResponse object will
4053
4053
  be returned without reading/decoding response
4054
4054
  data. Default is True.
@@ -4074,7 +4074,7 @@ class CrossExApi(object):
4074
4074
 
4075
4075
  :param bool async_req: execute request asynchronously
4076
4076
  :param str coin: Query by specified currency name
4077
- :param str exchange_type: OKX/GATE/BINANCE/BYBIT/KRAKEN/HYPERLIQUID/DERIBIT
4077
+ :param str exchange_type: OKX/GATE/BINANCE/BYBIT/KRAKEN/HYPERLIQUID/DERIBIT/LIGHTER
4078
4078
  :param _return_http_data_only: response data without head status code
4079
4079
  and headers
4080
4080
  :param _preload_content: if False, the urllib3.HTTPResponse object will