kalshi-python-sync 3.8.0__tar.gz → 3.9.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.
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/PKG-INFO +3 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/README.md +2 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/__init__.py +5 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/account_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/api_keys_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/communications_api.py +16 -16
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/events_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/exchange_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/fcm_api.py +6 -6
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/historical_api.py +338 -6
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/incentive_programs_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/live_data_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/market_api.py +15 -15
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/milestone_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/multivariate_api.py +7 -4
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/order_groups_api.py +26 -26
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/orders_api.py +24 -24
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/portfolio_api.py +556 -34
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/search_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/structured_targets_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api_client.py +2 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/configuration.py +3 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/exceptions.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/__init__.py +4 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/accept_quote_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/amend_order_request.py +3 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/amend_order_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/announcement.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/api_key.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/apply_subaccount_transfer_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/associated_event.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/batch_cancel_orders_individual_response.py +3 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/batch_cancel_orders_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/batch_cancel_orders_request_order.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/batch_cancel_orders_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/batch_create_orders_individual_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/batch_create_orders_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/batch_create_orders_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/batch_get_market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/bid_ask_distribution.py +7 -15
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/bid_ask_distribution_historical.py +5 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/cancel_order_response.py +3 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_api_key_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_api_key_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_market_in_multivariate_event_collection_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_market_in_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_order_group_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_order_group_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_order_request.py +3 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_order_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_quote_request.py +3 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_quote_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_rfq_request.py +2 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_rfq_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/create_subaccount_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/daily_schedule.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/decrease_order_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/decrease_order_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/error_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/event_data.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/event_position.py +7 -17
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/exchange_instance.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/exchange_status.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/fill.py +11 -15
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/forecast_percentiles_point.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/generate_api_key_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/generate_api_key_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_account_api_limits_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_api_keys_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_balance_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_communications_id_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_event_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_event_forecast_percentiles_history_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_event_metadata_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_event_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_events_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_exchange_announcements_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_exchange_schedule_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_fills_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_filters_by_sports_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_historical_cutoff_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_incentive_programs_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_live_data_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_live_datas_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_market_candlesticks_historical_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_market_orderbook_response.py +2 -8
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_market_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_markets_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_milestone_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_milestones_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_multivariate_event_collection_lookup_history_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_multivariate_event_collections_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_multivariate_events_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_order_group_response.py +3 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_order_groups_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_order_queue_position_response.py +5 -7
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_order_queue_positions_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_order_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_orders_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_portfolio_resting_order_total_value_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_positions_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_quote_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_quotes_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_rfq_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_rfqs_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_series_fee_changes_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_series_list_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_series_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_settlements_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_structured_target_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_structured_targets_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_subaccount_balances_response.py +1 -1
- kalshi_python_sync-3.9.0/kalshi_python_sync/models/get_subaccount_netting_response.py +95 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_subaccount_transfers_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_tags_for_series_categories_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_trades_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/get_user_data_timestamp_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/incentive_program.py +2 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/intra_exchange_instance_transfer_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/intra_exchange_instance_transfer_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/live_data.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/lookup_point.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/lookup_tickers_for_market_in_multivariate_event_collection_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/lookup_tickers_for_market_in_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/maintenance_window.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/market.py +17 -46
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/market_candlestick.py +2 -6
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/market_candlestick_historical.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/market_candlesticks_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/market_metadata.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/market_position.py +6 -16
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/milestone.py +4 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/multivariate_event_collection.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/mve_selected_leg.py +2 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/order.py +8 -28
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/order_group.py +3 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/order_queue_position.py +5 -7
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/order_status.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/orderbook_count_fp.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/percentile_point.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/price_distribution.py +11 -67
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/price_distribution_historical.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/price_range.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/quote.py +6 -14
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/rfq.py +4 -8
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/schedule.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/scope_list.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/self_trade_prevention_type.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/series.py +2 -4
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/series_fee_change.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/settlement.py +9 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/settlement_source.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/sport_filter_details.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/structured_target.py +4 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/subaccount_balance.py +2 -2
- kalshi_python_sync-3.9.0/kalshi_python_sync/models/subaccount_netting_config.py +89 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/subaccount_transfer.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/ticker_pair.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/trade.py +6 -14
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/update_order_group_limit_request.py +1 -1
- kalshi_python_sync-3.9.0/kalshi_python_sync/models/update_subaccount_netting_request.py +89 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/models/weekly_schedule.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/rest.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync.egg-info/PKG-INFO +3 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync.egg-info/SOURCES.txt +6 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/pyproject.toml +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/setup.py +2 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_accept_quote_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_account_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_amend_order_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_amend_order_response.py +1 -41
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_announcement.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_api_key.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_api_keys_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_apply_subaccount_transfer_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_associated_event.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_batch_cancel_orders_individual_response.py +1 -13
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_batch_cancel_orders_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_batch_cancel_orders_request_order.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_batch_cancel_orders_response.py +1 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_batch_create_orders_individual_response.py +1 -11
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_batch_create_orders_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_batch_create_orders_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_batch_get_market_candlesticks_response.py +1 -37
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_bid_ask_distribution.py +1 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_bid_ask_distribution_historical.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_cancel_order_response.py +1 -23
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_communications_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_api_key_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_api_key_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_market_in_multivariate_event_collection_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_market_in_multivariate_event_collection_response.py +3 -15
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_order_group_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_order_group_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_order_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_order_response.py +1 -21
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_quote_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_quote_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_rfq_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_rfq_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_create_subaccount_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_daily_schedule.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_decrease_order_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_decrease_order_response.py +1 -21
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_error_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_event_data.py +3 -15
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_event_position.py +1 -11
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_events_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_exchange_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_exchange_instance.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_exchange_status.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_fcm_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_fill.py +5 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_forecast_percentiles_point.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_generate_api_key_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_generate_api_key_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_account_api_limits_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_api_keys_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_balance_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_communications_id_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_event_candlesticks_response.py +1 -37
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_event_forecast_percentiles_history_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_event_metadata_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_event_response.py +9 -57
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_events_response.py +8 -29
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_exchange_announcements_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_exchange_schedule_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_fills_response.py +5 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_filters_by_sports_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_historical_cutoff_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_incentive_programs_response.py +1 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_live_data_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_live_datas_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_market_candlesticks_historical_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_market_candlesticks_response.py +1 -37
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_market_orderbook_response.py +1 -35
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_market_response.py +5 -29
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_markets_response.py +5 -29
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_milestone_response.py +7 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_milestones_response.py +7 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_multivariate_event_collection_lookup_history_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_multivariate_event_collections_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_multivariate_events_response.py +5 -29
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_order_group_response.py +1 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_order_groups_response.py +1 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_order_queue_position_response.py +2 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_order_queue_positions_response.py +1 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_order_response.py +1 -21
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_orders_response.py +1 -21
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_portfolio_resting_order_total_value_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_positions_response.py +1 -21
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_quote_response.py +1 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_quotes_response.py +1 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_rfq_response.py +1 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_rfqs_response.py +1 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_series_fee_changes_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_series_list_response.py +1 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_series_response.py +1 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_settlements_response.py +5 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_structured_target_response.py +4 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_structured_targets_response.py +4 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_subaccount_balances_response.py +1 -1
- kalshi_python_sync-3.9.0/test/test_get_subaccount_netting_response.py +60 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_subaccount_transfers_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_tags_for_series_categories_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_trades_response.py +1 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_get_user_data_timestamp_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_historical_api.py +8 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_incentive_program.py +1 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_incentive_programs_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_intra_exchange_instance_transfer_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_intra_exchange_instance_transfer_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_live_data.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_live_data_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_lookup_point.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_lookup_tickers_for_market_in_multivariate_event_collection_request.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_lookup_tickers_for_market_in_multivariate_event_collection_response.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_maintenance_window.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_market.py +5 -28
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_market_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_market_candlestick.py +1 -37
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_market_candlestick_historical.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_market_candlesticks_response.py +1 -37
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_market_metadata.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_market_position.py +1 -11
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_milestone.py +4 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_milestone_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_multivariate_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_multivariate_event_collection.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_mve_selected_leg.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_order.py +3 -21
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_order_group.py +1 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_order_groups_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_order_queue_position.py +2 -3
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_order_status.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_orderbook_count_fp.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_orders_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_percentile_point.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_portfolio_api.py +15 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_price_distribution.py +1 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_price_distribution_historical.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_price_range.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_quote.py +1 -8
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_rfq.py +1 -4
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_schedule.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_scope_list.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_search_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_self_trade_prevention_type.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_series.py +1 -2
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_series_fee_change.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_settlement.py +5 -5
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_settlement_source.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_sport_filter_details.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_structured_target.py +4 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_structured_targets_api.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_subaccount_balance.py +1 -1
- kalshi_python_sync-3.9.0/test/test_subaccount_netting_config.py +54 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_subaccount_transfer.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_ticker_pair.py +1 -1
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_trade.py +1 -9
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_update_order_group_limit_request.py +1 -1
- kalshi_python_sync-3.9.0/test/test_update_subaccount_netting_request.py +54 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/test/test_weekly_schedule.py +1 -1
- kalshi_python_sync-3.8.0/kalshi_python_sync/models/orderbook.py +0 -94
- kalshi_python_sync-3.8.0/test/test_orderbook.py +0 -72
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/__init__.py +0 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api_response.py +0 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/auth.py +0 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/py.typed +0 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync.egg-info/dependency_links.txt +0 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync.egg-info/requires.txt +0 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync.egg-info/top_level.txt +0 -0
- {kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kalshi_python_sync
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.9.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
|
|
@@ -28,8 +28,8 @@ Complete API for the Kalshi trading platform including all handlers for SDK gene
|
|
|
28
28
|
|
|
29
29
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
30
30
|
|
|
31
|
-
- API version: 3.
|
|
32
|
-
- Package version: 3.
|
|
31
|
+
- API version: 3.9.0
|
|
32
|
+
- Package version: 3.9.0
|
|
33
33
|
- Generator version: 7.17.0
|
|
34
34
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
35
35
|
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.
|
|
7
|
-
- Package version: 3.
|
|
6
|
+
- API version: 3.9.0
|
|
7
|
+
- Package version: 3.9.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.
|
|
10
|
+
The version of the OpenAPI document: 3.9.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.
|
|
16
|
+
__version__ = "3.9.0"
|
|
17
17
|
|
|
18
18
|
# import apis into sdk package
|
|
19
19
|
from kalshi_python_sync.api.account_api import AccountApi
|
|
@@ -151,6 +151,7 @@ from kalshi_python_sync.models.get_settlements_response import GetSettlementsRes
|
|
|
151
151
|
from kalshi_python_sync.models.get_structured_target_response import GetStructuredTargetResponse
|
|
152
152
|
from kalshi_python_sync.models.get_structured_targets_response import GetStructuredTargetsResponse
|
|
153
153
|
from kalshi_python_sync.models.get_subaccount_balances_response import GetSubaccountBalancesResponse
|
|
154
|
+
from kalshi_python_sync.models.get_subaccount_netting_response import GetSubaccountNettingResponse
|
|
154
155
|
from kalshi_python_sync.models.get_subaccount_transfers_response import GetSubaccountTransfersResponse
|
|
155
156
|
from kalshi_python_sync.models.get_tags_for_series_categories_response import GetTagsForSeriesCategoriesResponse
|
|
156
157
|
from kalshi_python_sync.models.get_trades_response import GetTradesResponse
|
|
@@ -176,7 +177,6 @@ from kalshi_python_sync.models.order import Order
|
|
|
176
177
|
from kalshi_python_sync.models.order_group import OrderGroup
|
|
177
178
|
from kalshi_python_sync.models.order_queue_position import OrderQueuePosition
|
|
178
179
|
from kalshi_python_sync.models.order_status import OrderStatus
|
|
179
|
-
from kalshi_python_sync.models.orderbook import Orderbook
|
|
180
180
|
from kalshi_python_sync.models.orderbook_count_fp import OrderbookCountFp
|
|
181
181
|
from kalshi_python_sync.models.percentile_point import PercentilePoint
|
|
182
182
|
from kalshi_python_sync.models.price_distribution import PriceDistribution
|
|
@@ -194,10 +194,12 @@ from kalshi_python_sync.models.settlement_source import SettlementSource
|
|
|
194
194
|
from kalshi_python_sync.models.sport_filter_details import SportFilterDetails
|
|
195
195
|
from kalshi_python_sync.models.structured_target import StructuredTarget
|
|
196
196
|
from kalshi_python_sync.models.subaccount_balance import SubaccountBalance
|
|
197
|
+
from kalshi_python_sync.models.subaccount_netting_config import SubaccountNettingConfig
|
|
197
198
|
from kalshi_python_sync.models.subaccount_transfer import SubaccountTransfer
|
|
198
199
|
from kalshi_python_sync.models.ticker_pair import TickerPair
|
|
199
200
|
from kalshi_python_sync.models.trade import Trade
|
|
200
201
|
from kalshi_python_sync.models.update_order_group_limit_request import UpdateOrderGroupLimitRequest
|
|
202
|
+
from kalshi_python_sync.models.update_subaccount_netting_request import UpdateSubaccountNettingRequest
|
|
201
203
|
from kalshi_python_sync.models.weekly_schedule import WeeklySchedule
|
|
202
204
|
|
|
203
205
|
|
|
@@ -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.
|
|
8
|
+
The version of the OpenAPI document: 3.9.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
{kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/api_keys_api.py
RENAMED
|
@@ -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.
|
|
8
|
+
The version of the OpenAPI document: 3.9.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
{kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/communications_api.py
RENAMED
|
@@ -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.
|
|
8
|
+
The version of the OpenAPI document: 3.9.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -2233,7 +2233,7 @@ class CommunicationsApi:
|
|
|
2233
2233
|
|
|
2234
2234
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
2235
2235
|
:type cursor: str
|
|
2236
|
-
:param event_ticker: Event ticker
|
|
2236
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
2237
2237
|
:type event_ticker: str
|
|
2238
2238
|
:param market_ticker: Filter by market ticker
|
|
2239
2239
|
:type market_ticker: str
|
|
@@ -2308,7 +2308,7 @@ class CommunicationsApi:
|
|
|
2308
2308
|
def get_quotes_with_http_info(
|
|
2309
2309
|
self,
|
|
2310
2310
|
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,
|
|
2311
|
-
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker
|
|
2311
|
+
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
|
|
2312
2312
|
market_ticker: Annotated[Optional[StrictStr], Field(description="Filter by market ticker")] = None,
|
|
2313
2313
|
limit: Annotated[Optional[Annotated[int, Field(le=500, strict=True, ge=1)]], Field(description="Parameter to specify the number of results per page. Defaults to 500.")] = None,
|
|
2314
2314
|
status: Annotated[Optional[StrictStr], Field(description="Filter quotes by status")] = None,
|
|
@@ -2335,7 +2335,7 @@ class CommunicationsApi:
|
|
|
2335
2335
|
|
|
2336
2336
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
2337
2337
|
:type cursor: str
|
|
2338
|
-
:param event_ticker: Event ticker
|
|
2338
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
2339
2339
|
:type event_ticker: str
|
|
2340
2340
|
:param market_ticker: Filter by market ticker
|
|
2341
2341
|
:type market_ticker: str
|
|
@@ -2409,7 +2409,7 @@ class CommunicationsApi:
|
|
|
2409
2409
|
def get_quotes_without_preload_content(
|
|
2410
2410
|
self,
|
|
2411
2411
|
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,
|
|
2412
|
-
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker
|
|
2412
|
+
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
|
|
2413
2413
|
market_ticker: Annotated[Optional[StrictStr], Field(description="Filter by market ticker")] = None,
|
|
2414
2414
|
limit: Annotated[Optional[Annotated[int, Field(le=500, strict=True, ge=1)]], Field(description="Parameter to specify the number of results per page. Defaults to 500.")] = None,
|
|
2415
2415
|
status: Annotated[Optional[StrictStr], Field(description="Filter quotes by status")] = None,
|
|
@@ -2436,7 +2436,7 @@ class CommunicationsApi:
|
|
|
2436
2436
|
|
|
2437
2437
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
2438
2438
|
:type cursor: str
|
|
2439
|
-
:param event_ticker: Event ticker
|
|
2439
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
2440
2440
|
:type event_ticker: str
|
|
2441
2441
|
:param market_ticker: Filter by market ticker
|
|
2442
2442
|
:type market_ticker: str
|
|
@@ -2888,11 +2888,11 @@ class CommunicationsApi:
|
|
|
2888
2888
|
|
|
2889
2889
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
2890
2890
|
:type cursor: str
|
|
2891
|
-
:param event_ticker: Event ticker
|
|
2891
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
2892
2892
|
:type event_ticker: str
|
|
2893
2893
|
:param market_ticker: Filter by market ticker
|
|
2894
2894
|
:type market_ticker: str
|
|
2895
|
-
:param subaccount: Subaccount number (0 for primary, 1-32 for subaccounts). If omitted,
|
|
2895
|
+
:param subaccount: Subaccount number (0 for primary, 1-32 for subaccounts). If omitted, defaults to all subaccounts.
|
|
2896
2896
|
:type subaccount: int
|
|
2897
2897
|
:param limit: Parameter to specify the number of results per page. Defaults to 100.
|
|
2898
2898
|
:type limit: int
|
|
@@ -2957,9 +2957,9 @@ class CommunicationsApi:
|
|
|
2957
2957
|
def get_rfqs_with_http_info(
|
|
2958
2958
|
self,
|
|
2959
2959
|
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,
|
|
2960
|
-
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker
|
|
2960
|
+
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
|
|
2961
2961
|
market_ticker: Annotated[Optional[StrictStr], Field(description="Filter by market ticker")] = None,
|
|
2962
|
-
subaccount: Annotated[Optional[StrictInt], Field(description="Subaccount number (0 for primary, 1-32 for subaccounts). If omitted,
|
|
2962
|
+
subaccount: Annotated[Optional[StrictInt], Field(description="Subaccount number (0 for primary, 1-32 for subaccounts). If omitted, defaults to all subaccounts.")] = None,
|
|
2963
2963
|
limit: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Parameter to specify the number of results per page. Defaults to 100.")] = None,
|
|
2964
2964
|
status: Annotated[Optional[StrictStr], Field(description="Filter RFQs by status")] = None,
|
|
2965
2965
|
creator_user_id: Annotated[Optional[StrictStr], Field(description="Filter RFQs by creator user ID")] = None,
|
|
@@ -2982,11 +2982,11 @@ class CommunicationsApi:
|
|
|
2982
2982
|
|
|
2983
2983
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
2984
2984
|
:type cursor: str
|
|
2985
|
-
:param event_ticker: Event ticker
|
|
2985
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
2986
2986
|
:type event_ticker: str
|
|
2987
2987
|
:param market_ticker: Filter by market ticker
|
|
2988
2988
|
:type market_ticker: str
|
|
2989
|
-
:param subaccount: Subaccount number (0 for primary, 1-32 for subaccounts). If omitted,
|
|
2989
|
+
:param subaccount: Subaccount number (0 for primary, 1-32 for subaccounts). If omitted, defaults to all subaccounts.
|
|
2990
2990
|
:type subaccount: int
|
|
2991
2991
|
:param limit: Parameter to specify the number of results per page. Defaults to 100.
|
|
2992
2992
|
:type limit: int
|
|
@@ -3050,9 +3050,9 @@ class CommunicationsApi:
|
|
|
3050
3050
|
def get_rfqs_without_preload_content(
|
|
3051
3051
|
self,
|
|
3052
3052
|
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,
|
|
3053
|
-
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker
|
|
3053
|
+
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
|
|
3054
3054
|
market_ticker: Annotated[Optional[StrictStr], Field(description="Filter by market ticker")] = None,
|
|
3055
|
-
subaccount: Annotated[Optional[StrictInt], Field(description="Subaccount number (0 for primary, 1-32 for subaccounts). If omitted,
|
|
3055
|
+
subaccount: Annotated[Optional[StrictInt], Field(description="Subaccount number (0 for primary, 1-32 for subaccounts). If omitted, defaults to all subaccounts.")] = None,
|
|
3056
3056
|
limit: Annotated[Optional[Annotated[int, Field(le=100, strict=True, ge=1)]], Field(description="Parameter to specify the number of results per page. Defaults to 100.")] = None,
|
|
3057
3057
|
status: Annotated[Optional[StrictStr], Field(description="Filter RFQs by status")] = None,
|
|
3058
3058
|
creator_user_id: Annotated[Optional[StrictStr], Field(description="Filter RFQs by creator user ID")] = None,
|
|
@@ -3075,11 +3075,11 @@ class CommunicationsApi:
|
|
|
3075
3075
|
|
|
3076
3076
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
3077
3077
|
:type cursor: str
|
|
3078
|
-
:param event_ticker: Event ticker
|
|
3078
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
3079
3079
|
:type event_ticker: str
|
|
3080
3080
|
:param market_ticker: Filter by market ticker
|
|
3081
3081
|
:type market_ticker: str
|
|
3082
|
-
:param subaccount: Subaccount number (0 for primary, 1-32 for subaccounts). If omitted,
|
|
3082
|
+
:param subaccount: Subaccount number (0 for primary, 1-32 for subaccounts). If omitted, defaults to all subaccounts.
|
|
3083
3083
|
:type subaccount: int
|
|
3084
3084
|
:param limit: Parameter to specify the number of results per page. Defaults to 100.
|
|
3085
3085
|
:type limit: int
|
|
@@ -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.
|
|
8
|
+
The version of the OpenAPI document: 3.9.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
{kalshi_python_sync-3.8.0 → kalshi_python_sync-3.9.0}/kalshi_python_sync/api/exchange_api.py
RENAMED
|
@@ -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.
|
|
8
|
+
The version of the OpenAPI document: 3.9.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.
|
|
8
|
+
The version of the OpenAPI document: 3.9.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -59,7 +59,7 @@ class FcmApi:
|
|
|
59
59
|
:type subtrader_id: str
|
|
60
60
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
61
61
|
:type cursor: str
|
|
62
|
-
:param event_ticker: Event ticker
|
|
62
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
63
63
|
:type event_ticker: str
|
|
64
64
|
:param ticker: Filter by market ticker
|
|
65
65
|
:type ticker: str
|
|
@@ -132,7 +132,7 @@ class FcmApi:
|
|
|
132
132
|
self,
|
|
133
133
|
subtrader_id: Annotated[StrictStr, Field(description="Restricts the response to orders for a specific subtrader (FCM members only)")],
|
|
134
134
|
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,
|
|
135
|
-
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker
|
|
135
|
+
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
|
|
136
136
|
ticker: Annotated[Optional[StrictStr], Field(description="Filter by market ticker")] = None,
|
|
137
137
|
min_ts: Annotated[Optional[StrictInt], Field(description="Restricts the response to orders after a timestamp, formatted as a Unix Timestamp")] = None,
|
|
138
138
|
max_ts: Annotated[Optional[StrictInt], Field(description="Restricts the response to orders before a timestamp, formatted as a Unix Timestamp")] = None,
|
|
@@ -159,7 +159,7 @@ class FcmApi:
|
|
|
159
159
|
:type subtrader_id: str
|
|
160
160
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
161
161
|
:type cursor: str
|
|
162
|
-
:param event_ticker: Event ticker
|
|
162
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
163
163
|
:type event_ticker: str
|
|
164
164
|
:param ticker: Filter by market ticker
|
|
165
165
|
:type ticker: str
|
|
@@ -231,7 +231,7 @@ class FcmApi:
|
|
|
231
231
|
self,
|
|
232
232
|
subtrader_id: Annotated[StrictStr, Field(description="Restricts the response to orders for a specific subtrader (FCM members only)")],
|
|
233
233
|
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,
|
|
234
|
-
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker
|
|
234
|
+
event_ticker: Annotated[Optional[StrictStr], Field(description="Event ticker to filter by. Only a single event ticker is supported.")] = None,
|
|
235
235
|
ticker: Annotated[Optional[StrictStr], Field(description="Filter by market ticker")] = None,
|
|
236
236
|
min_ts: Annotated[Optional[StrictInt], Field(description="Restricts the response to orders after a timestamp, formatted as a Unix Timestamp")] = None,
|
|
237
237
|
max_ts: Annotated[Optional[StrictInt], Field(description="Restricts the response to orders before a timestamp, formatted as a Unix Timestamp")] = None,
|
|
@@ -258,7 +258,7 @@ class FcmApi:
|
|
|
258
258
|
:type subtrader_id: str
|
|
259
259
|
:param cursor: Pagination cursor. Use the cursor value returned from the previous response to get the next page of results. Leave empty for the first page.
|
|
260
260
|
:type cursor: str
|
|
261
|
-
:param event_ticker: Event ticker
|
|
261
|
+
:param event_ticker: Event ticker to filter by. Only a single event ticker is supported.
|
|
262
262
|
:type event_ticker: str
|
|
263
263
|
:param ticker: Filter by market ticker
|
|
264
264
|
:type ticker: str
|