kalshi-python-async 3.12.0__tar.gz → 3.14.0__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 (378) hide show
  1. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/PKG-INFO +3 -3
  2. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/README.md +2 -2
  3. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/__init__.py +19 -2
  4. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/account_api.py +239 -1
  5. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/api_keys_api.py +4 -4
  6. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/communications_api.py +1 -1
  7. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/events_api.py +1 -4
  8. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/exchange_api.py +1 -1
  9. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/fcm_api.py +1 -1
  10. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/historical_api.py +18 -1
  11. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/incentive_programs_api.py +18 -1
  12. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/live_data_api.py +1 -1
  13. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/market_api.py +1 -7
  14. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/milestone_api.py +1 -1
  15. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/multivariate_api.py +7 -7
  16. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/order_groups_api.py +1 -1
  17. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/orders_api.py +1964 -208
  18. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/portfolio_api.py +1 -1
  19. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/search_api.py +1 -1
  20. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/structured_targets_api.py +1 -1
  21. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api_client.py +2 -2
  22. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/configuration.py +3 -3
  23. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/exceptions.py +1 -1
  24. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/__init__.py +18 -1
  25. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/accept_quote_request.py +1 -1
  26. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/amend_order_request.py +2 -2
  27. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/amend_order_response.py +1 -1
  28. kalshi_python_async-3.14.0/kalshi_python_async/models/amend_order_v2_request.py +98 -0
  29. kalshi_python_async-3.14.0/kalshi_python_async/models/amend_order_v2_response.py +97 -0
  30. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/announcement.py +1 -1
  31. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/api_key.py +1 -1
  32. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/apply_subaccount_transfer_request.py +1 -1
  33. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/associated_event.py +1 -1
  34. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/batch_cancel_orders_individual_response.py +2 -2
  35. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/batch_cancel_orders_request.py +1 -1
  36. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/batch_cancel_orders_request_order.py +1 -1
  37. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/batch_cancel_orders_response.py +1 -1
  38. kalshi_python_async-3.14.0/kalshi_python_async/models/batch_cancel_orders_v2_request.py +95 -0
  39. kalshi_python_async-3.14.0/kalshi_python_async/models/batch_cancel_orders_v2_request_orders_inner.py +90 -0
  40. kalshi_python_async-3.14.0/kalshi_python_async/models/batch_cancel_orders_v2_response.py +95 -0
  41. kalshi_python_async-3.14.0/kalshi_python_async/models/batch_cancel_orders_v2_response_orders_inner.py +107 -0
  42. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/batch_create_orders_individual_response.py +1 -1
  43. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/batch_create_orders_request.py +1 -1
  44. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/batch_create_orders_response.py +1 -1
  45. kalshi_python_async-3.14.0/kalshi_python_async/models/batch_create_orders_v2_request.py +95 -0
  46. kalshi_python_async-3.14.0/kalshi_python_async/models/batch_create_orders_v2_response.py +95 -0
  47. kalshi_python_async-3.14.0/kalshi_python_async/models/batch_create_orders_v2_response_orders_inner.py +113 -0
  48. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/batch_get_market_candlesticks_response.py +1 -1
  49. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/bid_ask_distribution.py +1 -1
  50. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/bid_ask_distribution_historical.py +1 -1
  51. kalshi_python_async-3.14.0/kalshi_python_async/models/book_side.py +37 -0
  52. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/cancel_order_response.py +2 -2
  53. kalshi_python_async-3.14.0/kalshi_python_async/models/cancel_order_v2_response.py +91 -0
  54. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_api_key_request.py +1 -1
  55. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_api_key_response.py +1 -1
  56. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_market_in_multivariate_event_collection_request.py +1 -1
  57. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_market_in_multivariate_event_collection_response.py +1 -1
  58. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_order_group_request.py +2 -2
  59. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_order_group_response.py +1 -1
  60. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_order_request.py +2 -2
  61. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_order_response.py +1 -1
  62. kalshi_python_async-3.14.0/kalshi_python_async/models/create_order_v2_request.py +121 -0
  63. kalshi_python_async-3.14.0/kalshi_python_async/models/create_order_v2_response.py +97 -0
  64. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_quote_request.py +1 -1
  65. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_quote_response.py +1 -1
  66. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_rfq_request.py +2 -2
  67. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_rfq_response.py +1 -1
  68. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/create_subaccount_response.py +1 -1
  69. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/daily_schedule.py +1 -1
  70. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/decrease_order_request.py +3 -3
  71. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/decrease_order_response.py +1 -1
  72. kalshi_python_async-3.14.0/kalshi_python_async/models/decrease_order_v2_request.py +87 -0
  73. kalshi_python_async-3.14.0/kalshi_python_async/models/decrease_order_v2_response.py +91 -0
  74. kalshi_python_async-3.14.0/kalshi_python_async/models/endpoint_token_cost.py +91 -0
  75. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/error_response.py +1 -1
  76. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/event_data.py +1 -1
  77. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/event_position.py +2 -2
  78. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/exchange_instance.py +1 -1
  79. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/exchange_status.py +1 -1
  80. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/fill.py +2 -2
  81. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/forecast_percentiles_point.py +1 -1
  82. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/generate_api_key_request.py +1 -1
  83. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/generate_api_key_response.py +1 -1
  84. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_account_api_limits_response.py +1 -1
  85. kalshi_python_async-3.14.0/kalshi_python_async/models/get_account_endpoint_costs_response.py +97 -0
  86. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_api_keys_response.py +1 -1
  87. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_balance_response.py +1 -1
  88. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_communications_id_response.py +1 -1
  89. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_event_candlesticks_response.py +1 -1
  90. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_event_forecast_percentiles_history_response.py +1 -1
  91. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_event_metadata_response.py +1 -1
  92. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_event_response.py +1 -1
  93. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_events_response.py +1 -1
  94. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_exchange_announcements_response.py +1 -1
  95. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_exchange_schedule_response.py +1 -1
  96. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_fills_response.py +1 -1
  97. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_filters_by_sports_response.py +1 -1
  98. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_game_stats_response.py +1 -1
  99. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_historical_cutoff_response.py +1 -1
  100. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_incentive_programs_response.py +1 -1
  101. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_live_data_response.py +1 -1
  102. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_live_datas_response.py +1 -1
  103. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_market_candlesticks_historical_response.py +1 -1
  104. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_market_candlesticks_response.py +1 -1
  105. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_market_orderbook_response.py +1 -1
  106. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_market_orderbooks_response.py +1 -1
  107. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_market_response.py +1 -1
  108. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_markets_response.py +1 -1
  109. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_milestone_response.py +1 -1
  110. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_milestones_response.py +1 -1
  111. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_multivariate_event_collection_lookup_history_response.py +1 -1
  112. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_multivariate_event_collection_response.py +1 -1
  113. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_multivariate_event_collections_response.py +1 -1
  114. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_multivariate_events_response.py +1 -1
  115. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_order_group_response.py +2 -2
  116. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_order_groups_response.py +1 -1
  117. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_order_queue_position_response.py +2 -2
  118. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_order_queue_positions_response.py +1 -1
  119. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_order_response.py +1 -1
  120. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_orders_response.py +1 -1
  121. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_portfolio_resting_order_total_value_response.py +1 -1
  122. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_positions_response.py +1 -1
  123. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_quote_response.py +1 -1
  124. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_quotes_response.py +1 -1
  125. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_rfq_response.py +1 -1
  126. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_rfqs_response.py +1 -1
  127. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_series_fee_changes_response.py +1 -1
  128. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_series_list_response.py +1 -1
  129. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_series_response.py +1 -1
  130. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_settlements_response.py +1 -1
  131. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_structured_target_response.py +1 -1
  132. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_structured_targets_response.py +1 -1
  133. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_subaccount_balances_response.py +1 -1
  134. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_subaccount_netting_response.py +1 -1
  135. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_subaccount_transfers_response.py +1 -1
  136. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_tags_for_series_categories_response.py +1 -1
  137. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_trades_response.py +1 -1
  138. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/get_user_data_timestamp_response.py +1 -1
  139. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/incentive_program.py +5 -3
  140. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/intra_exchange_instance_transfer_request.py +1 -1
  141. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/intra_exchange_instance_transfer_response.py +1 -1
  142. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/live_data.py +1 -1
  143. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/lookup_point.py +1 -1
  144. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/lookup_tickers_for_market_in_multivariate_event_collection_request.py +1 -1
  145. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/lookup_tickers_for_market_in_multivariate_event_collection_response.py +1 -1
  146. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/maintenance_window.py +1 -1
  147. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/market.py +14 -7
  148. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/market_candlestick.py +3 -3
  149. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/market_candlestick_historical.py +3 -3
  150. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/market_candlesticks_response.py +1 -1
  151. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/market_metadata.py +1 -1
  152. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/market_orderbook_fp.py +1 -1
  153. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/market_position.py +2 -2
  154. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/milestone.py +1 -1
  155. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/multivariate_event_collection.py +1 -1
  156. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/mve_selected_leg.py +1 -1
  157. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/order.py +4 -4
  158. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/order_group.py +2 -2
  159. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/order_queue_position.py +2 -2
  160. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/order_status.py +1 -1
  161. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/orderbook_count_fp.py +1 -1
  162. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/percentile_point.py +1 -1
  163. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/play_by_play.py +1 -1
  164. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/play_by_play_periods_inner.py +1 -1
  165. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/price_distribution.py +1 -1
  166. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/price_distribution_historical.py +1 -1
  167. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/price_range.py +1 -1
  168. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/quote.py +10 -6
  169. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/rfq.py +6 -4
  170. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/schedule.py +1 -1
  171. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/scope_list.py +1 -1
  172. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/self_trade_prevention_type.py +1 -1
  173. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/series.py +2 -2
  174. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/series_fee_change.py +1 -1
  175. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/settlement.py +3 -3
  176. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/settlement_source.py +1 -1
  177. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/sport_filter_details.py +1 -1
  178. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/structured_target.py +1 -1
  179. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/subaccount_balance.py +1 -1
  180. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/subaccount_netting_config.py +1 -1
  181. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/subaccount_transfer.py +1 -1
  182. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/ticker_pair.py +1 -1
  183. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/trade.py +2 -2
  184. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/update_order_group_limit_request.py +2 -2
  185. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/update_subaccount_netting_request.py +1 -1
  186. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/models/weekly_schedule.py +1 -1
  187. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/rest.py +1 -1
  188. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async.egg-info/PKG-INFO +3 -3
  189. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async.egg-info/SOURCES.txt +34 -0
  190. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/pyproject.toml +1 -1
  191. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/setup.py +2 -2
  192. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_accept_quote_request.py +1 -1
  193. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_account_api.py +8 -1
  194. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_amend_order_request.py +1 -1
  195. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_amend_order_response.py +1 -1
  196. kalshi_python_async-3.14.0/test/test_amend_order_v2_request.py +60 -0
  197. kalshi_python_async-3.14.0/test/test_amend_order_v2_response.py +57 -0
  198. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_announcement.py +1 -1
  199. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_api_key.py +1 -1
  200. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_api_keys_api.py +1 -1
  201. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_apply_subaccount_transfer_request.py +1 -1
  202. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_associated_event.py +1 -1
  203. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_batch_cancel_orders_individual_response.py +1 -1
  204. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_batch_cancel_orders_request.py +1 -1
  205. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_batch_cancel_orders_request_order.py +1 -1
  206. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_batch_cancel_orders_response.py +1 -1
  207. kalshi_python_async-3.14.0/test/test_batch_cancel_orders_v2_request.py +60 -0
  208. kalshi_python_async-3.14.0/test/test_batch_cancel_orders_v2_request_orders_inner.py +53 -0
  209. kalshi_python_async-3.14.0/test/test_batch_cancel_orders_v2_response.py +64 -0
  210. kalshi_python_async-3.14.0/test/test_batch_cancel_orders_v2_response_orders_inner.py +60 -0
  211. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_batch_create_orders_individual_response.py +1 -1
  212. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_batch_create_orders_request.py +1 -1
  213. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_batch_create_orders_response.py +1 -1
  214. kalshi_python_async-3.14.0/test/test_batch_create_orders_v2_request.py +82 -0
  215. kalshi_python_async-3.14.0/test/test_batch_create_orders_v2_response.py +70 -0
  216. kalshi_python_async-3.14.0/test/test_batch_create_orders_v2_response_orders_inner.py +61 -0
  217. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_batch_get_market_candlesticks_response.py +1 -1
  218. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_bid_ask_distribution.py +1 -1
  219. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_bid_ask_distribution_historical.py +1 -1
  220. kalshi_python_async-3.14.0/test/test_book_side.py +33 -0
  221. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_cancel_order_response.py +1 -1
  222. kalshi_python_async-3.14.0/test/test_cancel_order_v2_response.py +55 -0
  223. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_communications_api.py +1 -1
  224. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_api_key_request.py +1 -1
  225. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_api_key_response.py +1 -1
  226. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_market_in_multivariate_event_collection_request.py +1 -1
  227. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_market_in_multivariate_event_collection_response.py +2 -1
  228. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_order_group_request.py +1 -1
  229. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_order_group_response.py +1 -1
  230. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_order_request.py +1 -1
  231. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_order_response.py +1 -1
  232. kalshi_python_async-3.14.0/test/test_create_order_v2_request.py +70 -0
  233. kalshi_python_async-3.14.0/test/test_create_order_v2_response.py +59 -0
  234. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_quote_request.py +1 -1
  235. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_quote_response.py +1 -1
  236. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_rfq_request.py +1 -1
  237. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_rfq_response.py +1 -1
  238. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_create_subaccount_response.py +1 -1
  239. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_daily_schedule.py +1 -1
  240. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_decrease_order_request.py +1 -1
  241. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_decrease_order_response.py +1 -1
  242. kalshi_python_async-3.14.0/test/test_decrease_order_v2_request.py +52 -0
  243. kalshi_python_async-3.14.0/test/test_decrease_order_v2_response.py +55 -0
  244. kalshi_python_async-3.14.0/test/test_endpoint_token_cost.py +56 -0
  245. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_error_response.py +1 -1
  246. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_event_data.py +2 -1
  247. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_event_position.py +1 -1
  248. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_events_api.py +1 -1
  249. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_exchange_api.py +1 -1
  250. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_exchange_instance.py +1 -1
  251. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_exchange_status.py +1 -1
  252. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_fcm_api.py +1 -1
  253. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_fill.py +1 -1
  254. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_forecast_percentiles_point.py +1 -1
  255. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_generate_api_key_request.py +1 -1
  256. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_generate_api_key_response.py +1 -1
  257. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_account_api_limits_response.py +1 -1
  258. kalshi_python_async-3.14.0/test/test_get_account_endpoint_costs_response.py +64 -0
  259. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_api_keys_response.py +1 -1
  260. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_balance_response.py +1 -1
  261. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_communications_id_response.py +1 -1
  262. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_event_candlesticks_response.py +1 -1
  263. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_event_forecast_percentiles_history_response.py +1 -1
  264. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_event_metadata_response.py +1 -1
  265. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_event_response.py +5 -1
  266. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_events_response.py +3 -1
  267. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_exchange_announcements_response.py +1 -1
  268. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_exchange_schedule_response.py +1 -1
  269. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_fills_response.py +1 -1
  270. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_filters_by_sports_response.py +1 -1
  271. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_game_stats_response.py +1 -1
  272. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_historical_cutoff_response.py +1 -1
  273. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_incentive_programs_response.py +3 -1
  274. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_live_data_response.py +1 -1
  275. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_live_datas_response.py +1 -1
  276. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_market_candlesticks_historical_response.py +1 -1
  277. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_market_candlesticks_response.py +1 -1
  278. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_market_orderbook_response.py +1 -1
  279. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_market_orderbooks_response.py +1 -1
  280. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_market_response.py +3 -1
  281. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_markets_response.py +3 -1
  282. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_milestone_response.py +1 -1
  283. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_milestones_response.py +1 -1
  284. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_multivariate_event_collection_lookup_history_response.py +1 -1
  285. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_multivariate_event_collection_response.py +1 -1
  286. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_multivariate_event_collections_response.py +1 -1
  287. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_multivariate_events_response.py +3 -1
  288. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_order_group_response.py +1 -1
  289. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_order_groups_response.py +1 -1
  290. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_order_queue_position_response.py +1 -1
  291. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_order_queue_positions_response.py +1 -1
  292. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_order_response.py +1 -1
  293. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_orders_response.py +1 -1
  294. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_portfolio_resting_order_total_value_response.py +1 -1
  295. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_positions_response.py +1 -1
  296. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_quote_response.py +5 -1
  297. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_quotes_response.py +5 -1
  298. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_rfq_response.py +3 -1
  299. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_rfqs_response.py +3 -1
  300. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_series_fee_changes_response.py +1 -1
  301. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_series_list_response.py +1 -1
  302. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_series_response.py +1 -1
  303. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_settlements_response.py +1 -1
  304. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_structured_target_response.py +1 -1
  305. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_structured_targets_response.py +1 -1
  306. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_subaccount_balances_response.py +1 -1
  307. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_subaccount_netting_response.py +1 -1
  308. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_subaccount_transfers_response.py +1 -1
  309. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_tags_for_series_categories_response.py +1 -1
  310. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_trades_response.py +1 -1
  311. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_get_user_data_timestamp_response.py +1 -1
  312. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_historical_api.py +1 -1
  313. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_incentive_program.py +3 -1
  314. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_incentive_programs_api.py +1 -1
  315. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_intra_exchange_instance_transfer_request.py +1 -1
  316. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_intra_exchange_instance_transfer_response.py +1 -1
  317. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_live_data.py +1 -1
  318. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_live_data_api.py +1 -1
  319. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_lookup_point.py +1 -1
  320. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_lookup_tickers_for_market_in_multivariate_event_collection_request.py +1 -1
  321. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_lookup_tickers_for_market_in_multivariate_event_collection_response.py +1 -1
  322. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_maintenance_window.py +1 -1
  323. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_market.py +2 -1
  324. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_market_api.py +1 -1
  325. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_market_candlestick.py +1 -1
  326. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_market_candlestick_historical.py +1 -1
  327. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_market_candlesticks_response.py +1 -1
  328. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_market_metadata.py +1 -1
  329. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_market_orderbook_fp.py +1 -1
  330. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_market_position.py +1 -1
  331. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_milestone.py +1 -1
  332. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_milestone_api.py +1 -1
  333. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_multivariate_api.py +1 -1
  334. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_multivariate_event_collection.py +1 -1
  335. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_mve_selected_leg.py +1 -1
  336. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_order.py +1 -1
  337. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_order_group.py +1 -1
  338. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_order_groups_api.py +1 -1
  339. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_order_queue_position.py +1 -1
  340. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_order_status.py +1 -1
  341. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_orderbook_count_fp.py +1 -1
  342. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_orders_api.py +43 -1
  343. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_percentile_point.py +1 -1
  344. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_play_by_play.py +1 -1
  345. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_play_by_play_periods_inner.py +1 -1
  346. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_portfolio_api.py +1 -1
  347. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_price_distribution.py +1 -1
  348. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_price_distribution_historical.py +1 -1
  349. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_price_range.py +1 -1
  350. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_quote.py +3 -1
  351. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_rfq.py +2 -1
  352. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_schedule.py +1 -1
  353. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_scope_list.py +1 -1
  354. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_search_api.py +1 -1
  355. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_self_trade_prevention_type.py +1 -1
  356. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_series.py +1 -1
  357. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_series_fee_change.py +1 -1
  358. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_settlement.py +1 -1
  359. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_settlement_source.py +1 -1
  360. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_sport_filter_details.py +1 -1
  361. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_structured_target.py +1 -1
  362. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_structured_targets_api.py +1 -1
  363. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_subaccount_balance.py +1 -1
  364. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_subaccount_netting_config.py +1 -1
  365. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_subaccount_transfer.py +1 -1
  366. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_ticker_pair.py +1 -1
  367. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_trade.py +1 -1
  368. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_update_order_group_limit_request.py +1 -1
  369. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_update_subaccount_netting_request.py +1 -1
  370. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/test/test_weekly_schedule.py +1 -1
  371. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api/__init__.py +0 -0
  372. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/api_response.py +0 -0
  373. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/auth.py +0 -0
  374. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async/py.typed +0 -0
  375. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async.egg-info/dependency_links.txt +0 -0
  376. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async.egg-info/requires.txt +0 -0
  377. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/kalshi_python_async.egg-info/top_level.txt +0 -0
  378. {kalshi_python_async-3.12.0 → kalshi_python_async-3.14.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kalshi_python_async
3
- Version: 3.12.0
3
+ Version: 3.14.0
4
4
  Summary: Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
5
5
  Home-page: https://github.com/Kalshi/exchange-infra
6
6
  Author: OpenAPI Generator community
@@ -29,8 +29,8 @@ Complete API for the Kalshi trading platform including all handlers for SDK gene
29
29
 
30
30
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
31
31
 
32
- - API version: 3.12.0
33
- - Package version: 3.12.0
32
+ - API version: 3.14.0
33
+ - Package version: 3.14.0
34
34
  - Generator version: 7.17.0
35
35
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
36
36
  For more information, please visit []()
@@ -3,8 +3,8 @@ Complete API for the Kalshi trading platform including all handlers for SDK gene
3
3
 
4
4
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
5
 
6
- - API version: 3.12.0
7
- - Package version: 3.12.0
6
+ - API version: 3.14.0
7
+ - Package version: 3.14.0
8
8
  - Generator version: 7.17.0
9
9
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
10
  For more information, please visit []()
@@ -7,13 +7,13 @@
7
7
 
8
8
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
9
9
 
10
- The version of the OpenAPI document: 3.12.0
10
+ The version of the OpenAPI document: 3.14.0
11
11
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
12
 
13
13
  Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
- __version__ = "3.12.0"
16
+ __version__ = "3.14.0"
17
17
 
18
18
  # import apis into sdk package
19
19
  from kalshi_python_async.api.account_api import AccountApi
@@ -64,6 +64,8 @@ from kalshi_python_async.exceptions import (
64
64
  from kalshi_python_async.models.accept_quote_request import AcceptQuoteRequest
65
65
  from kalshi_python_async.models.amend_order_request import AmendOrderRequest
66
66
  from kalshi_python_async.models.amend_order_response import AmendOrderResponse
67
+ from kalshi_python_async.models.amend_order_v2_request import AmendOrderV2Request
68
+ from kalshi_python_async.models.amend_order_v2_response import AmendOrderV2Response
67
69
  from kalshi_python_async.models.announcement import Announcement
68
70
  from kalshi_python_async.models.api_key import ApiKey
69
71
  from kalshi_python_async.models.apply_subaccount_transfer_request import ApplySubaccountTransferRequest
@@ -72,13 +74,22 @@ from kalshi_python_async.models.batch_cancel_orders_individual_response import B
72
74
  from kalshi_python_async.models.batch_cancel_orders_request import BatchCancelOrdersRequest
73
75
  from kalshi_python_async.models.batch_cancel_orders_request_order import BatchCancelOrdersRequestOrder
74
76
  from kalshi_python_async.models.batch_cancel_orders_response import BatchCancelOrdersResponse
77
+ from kalshi_python_async.models.batch_cancel_orders_v2_request import BatchCancelOrdersV2Request
78
+ from kalshi_python_async.models.batch_cancel_orders_v2_request_orders_inner import BatchCancelOrdersV2RequestOrdersInner
79
+ from kalshi_python_async.models.batch_cancel_orders_v2_response import BatchCancelOrdersV2Response
80
+ from kalshi_python_async.models.batch_cancel_orders_v2_response_orders_inner import BatchCancelOrdersV2ResponseOrdersInner
75
81
  from kalshi_python_async.models.batch_create_orders_individual_response import BatchCreateOrdersIndividualResponse
76
82
  from kalshi_python_async.models.batch_create_orders_request import BatchCreateOrdersRequest
77
83
  from kalshi_python_async.models.batch_create_orders_response import BatchCreateOrdersResponse
84
+ from kalshi_python_async.models.batch_create_orders_v2_request import BatchCreateOrdersV2Request
85
+ from kalshi_python_async.models.batch_create_orders_v2_response import BatchCreateOrdersV2Response
86
+ from kalshi_python_async.models.batch_create_orders_v2_response_orders_inner import BatchCreateOrdersV2ResponseOrdersInner
78
87
  from kalshi_python_async.models.batch_get_market_candlesticks_response import BatchGetMarketCandlesticksResponse
79
88
  from kalshi_python_async.models.bid_ask_distribution import BidAskDistribution
80
89
  from kalshi_python_async.models.bid_ask_distribution_historical import BidAskDistributionHistorical
90
+ from kalshi_python_async.models.book_side import BookSide
81
91
  from kalshi_python_async.models.cancel_order_response import CancelOrderResponse
92
+ from kalshi_python_async.models.cancel_order_v2_response import CancelOrderV2Response
82
93
  from kalshi_python_async.models.create_api_key_request import CreateApiKeyRequest
83
94
  from kalshi_python_async.models.create_api_key_response import CreateApiKeyResponse
84
95
  from kalshi_python_async.models.create_market_in_multivariate_event_collection_request import CreateMarketInMultivariateEventCollectionRequest
@@ -87,6 +98,8 @@ from kalshi_python_async.models.create_order_group_request import CreateOrderGro
87
98
  from kalshi_python_async.models.create_order_group_response import CreateOrderGroupResponse
88
99
  from kalshi_python_async.models.create_order_request import CreateOrderRequest
89
100
  from kalshi_python_async.models.create_order_response import CreateOrderResponse
101
+ from kalshi_python_async.models.create_order_v2_request import CreateOrderV2Request
102
+ from kalshi_python_async.models.create_order_v2_response import CreateOrderV2Response
90
103
  from kalshi_python_async.models.create_quote_request import CreateQuoteRequest
91
104
  from kalshi_python_async.models.create_quote_response import CreateQuoteResponse
92
105
  from kalshi_python_async.models.create_rfq_request import CreateRFQRequest
@@ -95,6 +108,9 @@ from kalshi_python_async.models.create_subaccount_response import CreateSubaccou
95
108
  from kalshi_python_async.models.daily_schedule import DailySchedule
96
109
  from kalshi_python_async.models.decrease_order_request import DecreaseOrderRequest
97
110
  from kalshi_python_async.models.decrease_order_response import DecreaseOrderResponse
111
+ from kalshi_python_async.models.decrease_order_v2_request import DecreaseOrderV2Request
112
+ from kalshi_python_async.models.decrease_order_v2_response import DecreaseOrderV2Response
113
+ from kalshi_python_async.models.endpoint_token_cost import EndpointTokenCost
98
114
  from kalshi_python_async.models.error_response import ErrorResponse
99
115
  from kalshi_python_async.models.event_data import EventData
100
116
  from kalshi_python_async.models.event_position import EventPosition
@@ -105,6 +121,7 @@ from kalshi_python_async.models.forecast_percentiles_point import ForecastPercen
105
121
  from kalshi_python_async.models.generate_api_key_request import GenerateApiKeyRequest
106
122
  from kalshi_python_async.models.generate_api_key_response import GenerateApiKeyResponse
107
123
  from kalshi_python_async.models.get_account_api_limits_response import GetAccountApiLimitsResponse
124
+ from kalshi_python_async.models.get_account_endpoint_costs_response import GetAccountEndpointCostsResponse
108
125
  from kalshi_python_async.models.get_api_keys_response import GetApiKeysResponse
109
126
  from kalshi_python_async.models.get_balance_response import GetBalanceResponse
110
127
  from kalshi_python_async.models.get_communications_id_response import GetCommunicationsIDResponse
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -16,6 +16,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
16
16
  from typing_extensions import Annotated
17
17
 
18
18
  from kalshi_python_async.models.get_account_api_limits_response import GetAccountApiLimitsResponse
19
+ from kalshi_python_async.models.get_account_endpoint_costs_response import GetAccountEndpointCostsResponse
19
20
 
20
21
  from kalshi_python_async.api_client import ApiClient, RequestSerialized
21
22
  from kalshi_python_async.api_response import ApiResponse
@@ -276,3 +277,240 @@ class AccountApi:
276
277
  )
277
278
 
278
279
 
280
+
281
+
282
+ @validate_call
283
+ async def get_account_endpoint_costs(
284
+ self,
285
+ ) -> GetAccountEndpointCostsResponse:
286
+ """List Non-Default Endpoint Costs
287
+
288
+ Lists API v2 endpoints whose configured token cost differs from the default cost. Endpoints that use the default cost are omitted.
289
+
290
+ :param _request_timeout: timeout setting for this request. If one
291
+ number provided, it will be total request
292
+ timeout. It can also be a pair (tuple) of
293
+ (connection, read) timeouts.
294
+ :type _request_timeout: int, tuple(int, int), optional
295
+ :param _request_auth: set to override the auth_settings for an a single
296
+ request; this effectively ignores the
297
+ authentication in the spec for a single request.
298
+ :type _request_auth: dict, optional
299
+ :param _content_type: force content-type for the request.
300
+ :type _content_type: str, Optional
301
+ :param _headers: set to override the headers for a single
302
+ request; this effectively ignores the headers
303
+ in the spec for a single request.
304
+ :type _headers: dict, optional
305
+ :param _host_index: set to override the host_index for a single
306
+ request; this effectively ignores the host_index
307
+ in the spec for a single request.
308
+ :type _host_index: int, optional
309
+ :return: Returns the result object.
310
+ """ # noqa: E501
311
+
312
+
313
+ _param = self._get_account_endpoint_costs_serialize(
314
+ _request_auth=None,
315
+ _content_type=None,
316
+ _headers=None,
317
+ _host_index=0
318
+ )
319
+
320
+ _response_types_map: Dict[str, Optional[str]] = {
321
+ '200': "GetAccountEndpointCostsResponse",
322
+ '500': None,
323
+ }
324
+ response_data = await self.api_client.call_api(
325
+ *_param,
326
+ _request_timeout=None,
327
+ )
328
+ await response_data.read()
329
+ return self.api_client.response_deserialize(
330
+ response_data=response_data,
331
+ response_types_map=_response_types_map,
332
+ ).data
333
+
334
+
335
+ @validate_call
336
+ async def get_account_endpoint_costs_with_http_info(
337
+ self,
338
+ _request_timeout: Union[
339
+ None,
340
+ Annotated[StrictFloat, Field(gt=0)],
341
+ Tuple[
342
+ Annotated[StrictFloat, Field(gt=0)],
343
+ Annotated[StrictFloat, Field(gt=0)]
344
+ ]
345
+ ] = None,
346
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
347
+ _content_type: Optional[StrictStr] = None,
348
+ _headers: Optional[Dict[StrictStr, Any]] = None,
349
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
350
+ ) -> ApiResponse[GetAccountEndpointCostsResponse]:
351
+ """List Non-Default Endpoint Costs
352
+
353
+ Lists API v2 endpoints whose configured token cost differs from the default cost. Endpoints that use the default cost are omitted.
354
+
355
+ :param _request_timeout: timeout setting for this request. If one
356
+ number provided, it will be total request
357
+ timeout. It can also be a pair (tuple) of
358
+ (connection, read) timeouts.
359
+ :type _request_timeout: int, tuple(int, int), optional
360
+ :param _request_auth: set to override the auth_settings for an a single
361
+ request; this effectively ignores the
362
+ authentication in the spec for a single request.
363
+ :type _request_auth: dict, optional
364
+ :param _content_type: force content-type for the request.
365
+ :type _content_type: str, Optional
366
+ :param _headers: set to override the headers for a single
367
+ request; this effectively ignores the headers
368
+ in the spec for a single request.
369
+ :type _headers: dict, optional
370
+ :param _host_index: set to override the host_index for a single
371
+ request; this effectively ignores the host_index
372
+ in the spec for a single request.
373
+ :type _host_index: int, optional
374
+ :return: Returns the result object.
375
+ """ # noqa: E501
376
+
377
+ _param = self._get_account_endpoint_costs_serialize(
378
+ _request_auth=_request_auth,
379
+ _content_type=_content_type,
380
+ _headers=_headers,
381
+ _host_index=_host_index
382
+ )
383
+
384
+ _response_types_map: Dict[str, Optional[str]] = {
385
+ '200': "GetAccountEndpointCostsResponse",
386
+ '500': None,
387
+ }
388
+ response_data = await self.api_client.call_api(
389
+ *_param,
390
+ _request_timeout=_request_timeout
391
+ )
392
+ await response_data.read()
393
+ return self.api_client.response_deserialize(
394
+ response_data=response_data,
395
+ response_types_map=_response_types_map,
396
+ )
397
+
398
+
399
+ @validate_call
400
+ async def get_account_endpoint_costs_without_preload_content(
401
+ self,
402
+ _request_timeout: Union[
403
+ None,
404
+ Annotated[StrictFloat, Field(gt=0)],
405
+ Tuple[
406
+ Annotated[StrictFloat, Field(gt=0)],
407
+ Annotated[StrictFloat, Field(gt=0)]
408
+ ]
409
+ ] = None,
410
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
411
+ _content_type: Optional[StrictStr] = None,
412
+ _headers: Optional[Dict[StrictStr, Any]] = None,
413
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
414
+ ) -> RESTResponseType:
415
+ """List Non-Default Endpoint Costs
416
+
417
+ Lists API v2 endpoints whose configured token cost differs from the default cost. Endpoints that use the default cost are omitted.
418
+
419
+ :param _request_timeout: timeout setting for this request. If one
420
+ number provided, it will be total request
421
+ timeout. It can also be a pair (tuple) of
422
+ (connection, read) timeouts.
423
+ :type _request_timeout: int, tuple(int, int), optional
424
+ :param _request_auth: set to override the auth_settings for an a single
425
+ request; this effectively ignores the
426
+ authentication in the spec for a single request.
427
+ :type _request_auth: dict, optional
428
+ :param _content_type: force content-type for the request.
429
+ :type _content_type: str, Optional
430
+ :param _headers: set to override the headers for a single
431
+ request; this effectively ignores the headers
432
+ in the spec for a single request.
433
+ :type _headers: dict, optional
434
+ :param _host_index: set to override the host_index for a single
435
+ request; this effectively ignores the host_index
436
+ in the spec for a single request.
437
+ :type _host_index: int, optional
438
+ :return: Returns the result object.
439
+ """ # noqa: E501
440
+
441
+ _param = self._get_account_endpoint_costs_serialize(
442
+ _request_auth=_request_auth,
443
+ _content_type=_content_type,
444
+ _headers=_headers,
445
+ _host_index=_host_index
446
+ )
447
+
448
+ _response_types_map: Dict[str, Optional[str]] = {
449
+ '200': "GetAccountEndpointCostsResponse",
450
+ '500': None,
451
+ }
452
+ response_data = await self.api_client.call_api(
453
+ *_param,
454
+ _request_timeout=_request_timeout
455
+ )
456
+ return response_data.response
457
+
458
+
459
+ def _get_account_endpoint_costs_serialize(
460
+ self,
461
+ _request_auth,
462
+ _content_type,
463
+ _headers,
464
+ _host_index,
465
+ ) -> RequestSerialized:
466
+
467
+ _host = None
468
+
469
+ _collection_formats: Dict[str, str] = {
470
+ }
471
+
472
+ _path_params: Dict[str, str] = {}
473
+ _query_params: List[Tuple[str, str]] = []
474
+ _header_params: Dict[str, Optional[str]] = _headers or {}
475
+ _form_params: List[Tuple[str, str]] = []
476
+ _files: Dict[
477
+ str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
478
+ ] = {}
479
+ _body_params: Optional[bytes] = None
480
+
481
+ # process the path parameters
482
+ # process the query parameters
483
+ # process the header parameters
484
+ # process the form parameters
485
+ # process the body parameter
486
+
487
+
488
+ # set the HTTP header `Accept`
489
+ if 'Accept' not in _header_params:
490
+ _header_params['Accept'] = self.api_client.select_header_accept(
491
+ [
492
+ 'application/json'
493
+ ]
494
+ )
495
+
496
+
497
+ # authentication setting
498
+ _auth_settings: List[str] = [
499
+ ]
500
+
501
+ return self.api_client.param_serialize(
502
+ method='GET',
503
+ resource_path='/account/endpoint_costs',
504
+ path_params=_path_params,
505
+ query_params=_query_params,
506
+ header_params=_header_params,
507
+ body=_body_params,
508
+ post_params=_form_params,
509
+ files=_files,
510
+ auth_settings=_auth_settings,
511
+ collection_formats=_collection_formats,
512
+ _host=_host,
513
+ _request_auth=_request_auth
514
+ )
515
+
516
+
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -49,7 +49,7 @@ class ApiKeysApi:
49
49
  ) -> CreateApiKeyResponse:
50
50
  """Create API Key
51
51
 
52
- Endpoint for creating a new API key with a user-provided public key. This endpoint allows users with Premier or Market Maker API usage levels to create API keys by providing their own RSA public key. The platform will use this public key to verify signatures on API requests.
52
+ Endpoint for creating a new API key with a user-provided public key. This endpoint allows users to create API keys by providing their own RSA public key. The platform will use this public key to verify signatures on API requests.
53
53
 
54
54
  :param create_api_key_request: (required)
55
55
  :type create_api_key_request: CreateApiKeyRequest
@@ -123,7 +123,7 @@ class ApiKeysApi:
123
123
  ) -> ApiResponse[CreateApiKeyResponse]:
124
124
  """Create API Key
125
125
 
126
- Endpoint for creating a new API key with a user-provided public key. This endpoint allows users with Premier or Market Maker API usage levels to create API keys by providing their own RSA public key. The platform will use this public key to verify signatures on API requests.
126
+ Endpoint for creating a new API key with a user-provided public key. This endpoint allows users to create API keys by providing their own RSA public key. The platform will use this public key to verify signatures on API requests.
127
127
 
128
128
  :param create_api_key_request: (required)
129
129
  :type create_api_key_request: CreateApiKeyRequest
@@ -194,7 +194,7 @@ class ApiKeysApi:
194
194
  ) -> RESTResponseType:
195
195
  """Create API Key
196
196
 
197
- Endpoint for creating a new API key with a user-provided public key. This endpoint allows users with Premier or Market Maker API usage levels to create API keys by providing their own RSA public key. The platform will use this public key to verify signatures on API requests.
197
+ Endpoint for creating a new API key with a user-provided public key. This endpoint allows users to create API keys by providing their own RSA public key. The platform will use this public key to verify signatures on API requests.
198
198
 
199
199
  :param create_api_key_request: (required)
200
200
  :type create_api_key_request: CreateApiKeyRequest
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -643,9 +643,6 @@ class EventsApi:
643
643
 
644
644
  # authentication setting
645
645
  _auth_settings: List[str] = [
646
- 'kalshiAccessSignature',
647
- 'kalshiAccessKey',
648
- 'kalshiAccessTimestamp'
649
646
  ]
650
647
 
651
648
  return self.api_client.param_serialize(
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -860,6 +860,7 @@ class HistoricalApi:
860
860
  cursor: Any = None,
861
861
  tickers: Any = None,
862
862
  event_ticker: Any = None,
863
+ series_ticker: Any = None,
863
864
  mve_filter: Any = None,
864
865
  ) -> GetMarketsResponse:
865
866
  """Get Historical Markets
@@ -874,6 +875,8 @@ class HistoricalApi:
874
875
  :type tickers: str
875
876
  :param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
876
877
  :type event_ticker: str
878
+ :param series_ticker: Filter by series ticker
879
+ :type series_ticker: str
877
880
  :param mve_filter: Filter by multivariate events (combos). By default, MVE markets are included.
878
881
  :type mve_filter: str
879
882
  :param _request_timeout: timeout setting for this request. If one
@@ -904,6 +907,7 @@ class HistoricalApi:
904
907
  cursor=cursor,
905
908
  tickers=tickers,
906
909
  event_ticker=event_ticker,
910
+ series_ticker=series_ticker,
907
911
  mve_filter=mve_filter,
908
912
  _request_auth=None,
909
913
  _content_type=None,
@@ -934,6 +938,7 @@ class HistoricalApi:
934
938
  cursor: Annotated[Optional[StrictStr], Field(description="Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.")] = None,
935
939
  tickers: Annotated[Optional[StrictStr], Field(description="Filter by specific market tickers. Comma-separated list of market tickers to retrieve.")] = None,
936
940
  event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
941
+ series_ticker: Annotated[Optional[StrictStr], Field(description="Filter by series ticker")] = None,
937
942
  mve_filter: Annotated[Optional[StrictStr], Field(description="Filter by multivariate events (combos). By default, MVE markets are included.")] = None,
938
943
  _request_timeout: Union[
939
944
  None,
@@ -960,6 +965,8 @@ class HistoricalApi:
960
965
  :type tickers: str
961
966
  :param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
962
967
  :type event_ticker: str
968
+ :param series_ticker: Filter by series ticker
969
+ :type series_ticker: str
963
970
  :param mve_filter: Filter by multivariate events (combos). By default, MVE markets are included.
964
971
  :type mve_filter: str
965
972
  :param _request_timeout: timeout setting for this request. If one
@@ -989,6 +996,7 @@ class HistoricalApi:
989
996
  cursor=cursor,
990
997
  tickers=tickers,
991
998
  event_ticker=event_ticker,
999
+ series_ticker=series_ticker,
992
1000
  mve_filter=mve_filter,
993
1001
  _request_auth=_request_auth,
994
1002
  _content_type=_content_type,
@@ -1019,6 +1027,7 @@ class HistoricalApi:
1019
1027
  cursor: Annotated[Optional[StrictStr], Field(description="Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.")] = None,
1020
1028
  tickers: Annotated[Optional[StrictStr], Field(description="Filter by specific market tickers. Comma-separated list of market tickers to retrieve.")] = None,
1021
1029
  event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
1030
+ series_ticker: Annotated[Optional[StrictStr], Field(description="Filter by series ticker")] = None,
1022
1031
  mve_filter: Annotated[Optional[StrictStr], Field(description="Filter by multivariate events (combos). By default, MVE markets are included.")] = None,
1023
1032
  _request_timeout: Union[
1024
1033
  None,
@@ -1045,6 +1054,8 @@ class HistoricalApi:
1045
1054
  :type tickers: str
1046
1055
  :param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
1047
1056
  :type event_ticker: str
1057
+ :param series_ticker: Filter by series ticker
1058
+ :type series_ticker: str
1048
1059
  :param mve_filter: Filter by multivariate events (combos). By default, MVE markets are included.
1049
1060
  :type mve_filter: str
1050
1061
  :param _request_timeout: timeout setting for this request. If one
@@ -1074,6 +1085,7 @@ class HistoricalApi:
1074
1085
  cursor=cursor,
1075
1086
  tickers=tickers,
1076
1087
  event_ticker=event_ticker,
1088
+ series_ticker=series_ticker,
1077
1089
  mve_filter=mve_filter,
1078
1090
  _request_auth=_request_auth,
1079
1091
  _content_type=_content_type,
@@ -1099,6 +1111,7 @@ class HistoricalApi:
1099
1111
  cursor,
1100
1112
  tickers,
1101
1113
  event_ticker,
1114
+ series_ticker,
1102
1115
  mve_filter,
1103
1116
  _request_auth,
1104
1117
  _content_type,
@@ -1138,6 +1151,10 @@ class HistoricalApi:
1138
1151
 
1139
1152
  _query_params.append(('event_ticker', event_ticker))
1140
1153
 
1154
+ if series_ticker is not None:
1155
+
1156
+ _query_params.append(('series_ticker', series_ticker))
1157
+
1141
1158
  if mve_filter is not None:
1142
1159
 
1143
1160
  _query_params.append(('mve_filter', mve_filter))
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -43,6 +43,7 @@ class IncentiveProgramsApi:
43
43
  self,
44
44
  status: Any = None,
45
45
  type: Any = None,
46
+ incentive_description: Any = None,
46
47
  limit: Any = None,
47
48
  cursor: Any = None,
48
49
  ) -> GetIncentiveProgramsResponse:
@@ -54,6 +55,8 @@ class IncentiveProgramsApi:
54
55
  :type status: str
55
56
  :param type: Type filter. Can be \"all\", \"liquidity\", or \"volume\". Default is \"all\".
56
57
  :type type: str
58
+ :param incentive_description: Filter by exact incentive description.
59
+ :type incentive_description: str
57
60
  :param limit: Number of results per page. Defaults to 100. Maximum value is 10000.
58
61
  :type limit: int
59
62
  :param cursor: Cursor for pagination
@@ -84,6 +87,7 @@ class IncentiveProgramsApi:
84
87
  _param = self._get_incentive_programs_serialize(
85
88
  status=status,
86
89
  type=type,
90
+ incentive_description=incentive_description,
87
91
  limit=limit,
88
92
  cursor=cursor,
89
93
  _request_auth=None,
@@ -113,6 +117,7 @@ class IncentiveProgramsApi:
113
117
  self,
114
118
  status: Annotated[Optional[StrictStr], Field(description="Status filter. Can be \"all\", \"active\", \"upcoming\", \"closed\", or \"paid_out\". Default is \"all\".")] = None,
115
119
  type: Annotated[Optional[StrictStr], Field(description="Type filter. Can be \"all\", \"liquidity\", or \"volume\". Default is \"all\".")] = None,
120
+ incentive_description: Annotated[Optional[StrictStr], Field(description="Filter by exact incentive description.")] = None,
116
121
  limit: Annotated[Optional[Annotated[int, Field(le=10000, strict=True, ge=1)]], Field(description="Number of results per page. Defaults to 100. Maximum value is 10000.")] = None,
117
122
  cursor: Annotated[Optional[StrictStr], Field(description="Cursor for pagination")] = None,
118
123
  _request_timeout: Union[
@@ -136,6 +141,8 @@ class IncentiveProgramsApi:
136
141
  :type status: str
137
142
  :param type: Type filter. Can be \"all\", \"liquidity\", or \"volume\". Default is \"all\".
138
143
  :type type: str
144
+ :param incentive_description: Filter by exact incentive description.
145
+ :type incentive_description: str
139
146
  :param limit: Number of results per page. Defaults to 100. Maximum value is 10000.
140
147
  :type limit: int
141
148
  :param cursor: Cursor for pagination
@@ -165,6 +172,7 @@ class IncentiveProgramsApi:
165
172
  _param = self._get_incentive_programs_serialize(
166
173
  status=status,
167
174
  type=type,
175
+ incentive_description=incentive_description,
168
176
  limit=limit,
169
177
  cursor=cursor,
170
178
  _request_auth=_request_auth,
@@ -194,6 +202,7 @@ class IncentiveProgramsApi:
194
202
  self,
195
203
  status: Annotated[Optional[StrictStr], Field(description="Status filter. Can be \"all\", \"active\", \"upcoming\", \"closed\", or \"paid_out\". Default is \"all\".")] = None,
196
204
  type: Annotated[Optional[StrictStr], Field(description="Type filter. Can be \"all\", \"liquidity\", or \"volume\". Default is \"all\".")] = None,
205
+ incentive_description: Annotated[Optional[StrictStr], Field(description="Filter by exact incentive description.")] = None,
197
206
  limit: Annotated[Optional[Annotated[int, Field(le=10000, strict=True, ge=1)]], Field(description="Number of results per page. Defaults to 100. Maximum value is 10000.")] = None,
198
207
  cursor: Annotated[Optional[StrictStr], Field(description="Cursor for pagination")] = None,
199
208
  _request_timeout: Union[
@@ -217,6 +226,8 @@ class IncentiveProgramsApi:
217
226
  :type status: str
218
227
  :param type: Type filter. Can be \"all\", \"liquidity\", or \"volume\". Default is \"all\".
219
228
  :type type: str
229
+ :param incentive_description: Filter by exact incentive description.
230
+ :type incentive_description: str
220
231
  :param limit: Number of results per page. Defaults to 100. Maximum value is 10000.
221
232
  :type limit: int
222
233
  :param cursor: Cursor for pagination
@@ -246,6 +257,7 @@ class IncentiveProgramsApi:
246
257
  _param = self._get_incentive_programs_serialize(
247
258
  status=status,
248
259
  type=type,
260
+ incentive_description=incentive_description,
249
261
  limit=limit,
250
262
  cursor=cursor,
251
263
  _request_auth=_request_auth,
@@ -270,6 +282,7 @@ class IncentiveProgramsApi:
270
282
  self,
271
283
  status,
272
284
  type,
285
+ incentive_description,
273
286
  limit,
274
287
  cursor,
275
288
  _request_auth,
@@ -302,6 +315,10 @@ class IncentiveProgramsApi:
302
315
 
303
316
  _query_params.append(('type', type))
304
317
 
318
+ if incentive_description is not None:
319
+
320
+ _query_params.append(('incentive_description', incentive_description))
321
+
305
322
  if limit is not None:
306
323
 
307
324
  _query_params.append(('limit', limit))
@@ -5,7 +5,7 @@
5
5
 
6
6
  Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
7
7
 
8
- The version of the OpenAPI document: 3.12.0
8
+ The version of the OpenAPI document: 3.14.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.