cs2cap 1.0.3__tar.gz → 2.0.1__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.
- {cs2cap-1.0.3 → cs2cap-2.0.1}/PKG-INFO +7 -3
- {cs2cap-1.0.3 → cs2cap-2.0.1}/README.md +6 -2
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/__init__.py +11 -5
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/__init__.py +1 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/bids_api.py +11 -8
- cs2cap-2.0.1/cs2cap/api/images_api.py +294 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/market_intelligence_api.py +434 -13
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/portfolio_api.py +18 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/prices_api.py +23 -20
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/sales_api.py +46 -29
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api_client.py +6 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/configuration.py +1 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/__init__.py +4 -2
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_delivery_summary.py +8 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/all_providers.py +3 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_bid_quote.py +20 -2
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_price_quote.py +20 -2
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/bids_response.py +4 -4
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/buy_order_item.py +20 -2
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/buy_order_provider.py +1 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/item_out.py +23 -1
- cs2cap-2.0.1/cs2cap/models/market_history_chart_meta.py +98 -0
- cs2cap-2.0.1/cs2cap/models/market_history_chart_point.py +96 -0
- cs2cap-2.0.1/cs2cap/models/market_history_chart_response.py +101 -0
- cs2cap-2.0.1/cs2cap/models/market_history_chart_series.py +97 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_item.py +20 -2
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_item_analytics_summary.py +15 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_history_meta.py +3 -3
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_line_item.py +22 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/price_candle_item.py +2 -2
- cs2cap-1.0.3/cs2cap/models/bids_filter_meta.py → cs2cap-2.0.1/cs2cap/models/prices_filter_meta.py +4 -4
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/prices_meta.py +4 -4
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/providers.py +8 -4
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/recent_sales_provider.py +0 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/sales_filters_meta.py +1 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/sales_history_response.py +9 -13
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/sales_meta.py +1 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_create_request.py +3 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_delivery_detail.py +3 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_delivery_summary.py +3 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_endpoint_summary.py +3 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_update_request.py +8 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap.egg-info/PKG-INFO +7 -3
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap.egg-info/SOURCES.txt +10 -4
- {cs2cap-1.0.3 → cs2cap-2.0.1}/pyproject.toml +1 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/setup.py +1 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_delivery_summary.py +1 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_event_summary.py +2 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_bid_item.py +2 -16
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_bid_quote.py +1 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_bids_response.py +2 -28
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_price_item.py +2 -16
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_price_quote.py +1 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_prices_response.py +2 -28
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_bids_response.py +4 -24
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_buy_order_item.py +1 -0
- cs2cap-2.0.1/test/test_images_api.py +38 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_item_out.py +5 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_items_paginated_response_item_out.py +10 -0
- cs2cap-2.0.1/test/test_market_history_chart_meta.py +63 -0
- cs2cap-2.0.1/test/test_market_history_chart_point.py +55 -0
- cs2cap-2.0.1/test/test_market_history_chart_response.py +78 -0
- cs2cap-1.0.3/test/test_bids_filter_meta.py → cs2cap-2.0.1/test/test_market_history_chart_series.py +18 -16
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_intelligence_api.py +7 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_item.py +1 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_item_analytics_summary.py +2 -0
- cs2cap-2.0.1/test/test_portfolio_data.py +62 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_line_item.py +4 -8
- cs2cap-2.0.1/test/test_portfolio_response.py +64 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_price_candle_item.py +6 -2
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_prices_filter_meta.py +1 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_prices_meta.py +4 -2
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_prices_paginated_response_market_item.py +4 -28
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_providers.py +3 -1
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_sales_history_response.py +14 -6
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_create_request.py +1 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_deliveries_response.py +2 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_delivery_detail.py +2 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_delivery_summary.py +2 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_endpoint_summary.py +2 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_endpoints_response.py +2 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_secret_response.py +2 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_update_request.py +1 -0
- cs2cap-1.0.3/cs2cap/models/bids_meta.py +0 -95
- cs2cap-1.0.3/cs2cap/models/prices_filter_meta.py +0 -106
- cs2cap-1.0.3/test/test_bids_meta.py +0 -72
- cs2cap-1.0.3/test/test_portfolio_data.py +0 -96
- cs2cap-1.0.3/test/test_portfolio_response.py +0 -110
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/account_alerts_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/account_api_keys_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/account_watchlist_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/account_webhooks_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/foreign_exchange_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/inventory_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/items_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api/providers_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/api_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/exceptions.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/account_mutation_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_batch_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_batch_create_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_batch_create_result.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_definition.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_event_summary.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_events_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_item_summary.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_list_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/alert_update_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/api_key_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_bid_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_bids_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_bids_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_bids_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_price_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_prices_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_prices_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/batch_prices_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/charm_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/child_api_key_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/child_api_key_create_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/child_api_key_detail_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/child_api_key_list_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/child_api_key_update_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/cursor_pagination_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/error_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/fx_rates_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/indicator_data_coverage.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/indicator_momentum.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/indicator_signals.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/indicator_volatility.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/indicator_volume.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/inspect_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/items_catalog_summary.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/items_filter_metadata.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/items_metadata_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/items_paginated_response_item_out.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/items_pagination_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/loc_inner.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_arbitrage_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_arbitrage_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_arbitrage_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_arbitrage_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_index_group.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_indexes_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_indexes_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_indexes_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_indicators_item_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_indicators_item_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_indicators_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_item_analytics_coverage.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_item_analytics_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_item_analytics_provider.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_item_analytics_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_items_snapshot_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_items_snapshot_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_items_snapshot_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/market_time_window_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/pagination_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/phase_name.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_add_item_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_create.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_history_page.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_history_point.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_import_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_import_result.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_item_out.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_list_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_out.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_request_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/portfolio_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/price_candles_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/price_candles_page.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/price_history_filters_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/price_history_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/price_snapshot.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/price_snapshot_page.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/prices_paginated_response_market_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/provider_features.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/provider_fees.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/provider_health.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/provider_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/sale_record_detail.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/steam_inventory_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/steam_inventory_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/sticker_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/transaction_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/transaction_out.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/transaction_update_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/validation_error_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/validation_error_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/watchlist_batch_create_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/watchlist_create_batch_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/watchlist_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/watchlist_create_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/watchlist_create_single_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/watchlist_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/watchlist_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_deliveries_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_delivery_attempt_summary.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_endpoints_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/models/webhook_secret_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/py.typed +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap/rest.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap.egg-info/dependency_links.txt +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap.egg-info/requires.txt +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/cs2cap.egg-info/top_level.txt +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/setup.cfg +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_account_alerts_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_account_api_keys_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_account_mutation_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_account_watchlist_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_account_webhooks_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_batch_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_batch_create_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_batch_create_result.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_definition.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_events_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_item_summary.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_list_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_alert_update_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_all_providers.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_api_key_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_bids_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_bids_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_prices_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_batch_prices_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_bids_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_buy_order_provider.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_charm_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_child_api_key_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_child_api_key_create_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_child_api_key_detail_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_child_api_key_list_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_child_api_key_update_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_cursor_pagination_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_error_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_foreign_exchange_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_fx_rates_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_indicator_data_coverage.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_indicator_momentum.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_indicator_signals.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_indicator_volatility.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_indicator_volume.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_inspect_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_inventory_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_items_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_items_catalog_summary.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_items_filter_metadata.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_items_metadata_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_items_pagination_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_loc_inner.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_arbitrage_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_arbitrage_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_arbitrage_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_arbitrage_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_index_group.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_indexes_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_indexes_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_indexes_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_indicators_item_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_indicators_item_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_indicators_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_item_analytics_coverage.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_item_analytics_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_item_analytics_provider.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_item_analytics_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_items_snapshot_data.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_items_snapshot_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_items_snapshot_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_market_time_window_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_pagination_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_phase_name.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_add_item_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_create.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_history_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_history_page.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_history_point.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_import_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_import_result.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_item_out.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_list_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_out.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_portfolio_request_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_price_candles_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_price_candles_page.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_price_history_filters_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_price_history_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_price_snapshot.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_price_snapshot_page.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_prices_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_provider_features.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_provider_fees.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_provider_health.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_provider_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_providers_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_recent_sales_provider.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_sale_record_detail.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_sales_api.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_sales_filters_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_sales_meta.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_steam_inventory_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_steam_inventory_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_sticker_info.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_transaction_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_transaction_out.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_transaction_update_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_validation_error_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_validation_error_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_watchlist_batch_create_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_watchlist_create_batch_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_watchlist_create_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_watchlist_create_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_watchlist_create_single_request.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_watchlist_item.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_watchlist_response.py +0 -0
- {cs2cap-1.0.3 → cs2cap-2.0.1}/test/test_webhook_delivery_attempt_summary.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cs2cap
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: CS2Cap market data API client
|
|
5
5
|
Home-page: https://cs2cap.com
|
|
6
6
|
Author: CS2Cap
|
|
@@ -112,11 +112,13 @@ Class | Method | HTTP request | Description
|
|
|
112
112
|
*BidsApi* | [**list_bids**](docs/BidsApi.md#list_bids) | **GET** /v1/bids | List Bids
|
|
113
113
|
*BidsApi* | [**stream_full_bids_snapshot**](docs/BidsApi.md#stream_full_bids_snapshot) | **POST** /v1/bids | Stream Full Bids Snapshot
|
|
114
114
|
*ForeignExchangeApi* | [**get_fx_rates**](docs/ForeignExchangeApi.md#get_fx_rates) | **GET** /v1/fx | Get Fx Rates
|
|
115
|
+
*ImagesApi* | [**list_game_images**](docs/ImagesApi.md#list_game_images) | **GET** /v1/images | List Game Images
|
|
115
116
|
*InventoryApi* | [**fetch_steam_inventory**](docs/InventoryApi.md#fetch_steam_inventory) | **GET** /v1/inventory/steam | Fetch Steam Inventory
|
|
116
117
|
*InventoryApi* | [**fetch_steam_inventory_by_steam_id**](docs/InventoryApi.md#fetch_steam_inventory_by_steam_id) | **GET** /v1/inventory/steam/lookup | Fetch Steam Inventory by Steam ID
|
|
117
118
|
*ItemsApi* | [**get_item_catalog_metadata**](docs/ItemsApi.md#get_item_catalog_metadata) | **GET** /v1/items/metadata | Get Item Catalog Metadata
|
|
118
119
|
*ItemsApi* | [**list_items**](docs/ItemsApi.md#list_items) | **GET** /v1/items | List Items
|
|
119
120
|
*MarketIntelligenceApi* | [**get_arbitrage_opportunities**](docs/MarketIntelligenceApi.md#get_arbitrage_opportunities) | **GET** /v1/market/arbitrage | Get Arbitrage Opportunities
|
|
121
|
+
*MarketIntelligenceApi* | [**get_deep_price_history_chart**](docs/MarketIntelligenceApi.md#get_deep_price_history_chart) | **GET** /v1/market/history/chart | Get Deep Price History Chart
|
|
120
122
|
*MarketIntelligenceApi* | [**get_indicators**](docs/MarketIntelligenceApi.md#get_indicators) | **GET** /v1/market/indicators | Get Indicators
|
|
121
123
|
*MarketIntelligenceApi* | [**get_item_analytics**](docs/MarketIntelligenceApi.md#get_item_analytics) | **GET** /v1/market/items/{item_id} | Get Item Analytics
|
|
122
124
|
*MarketIntelligenceApi* | [**get_market_analytics_snapshot**](docs/MarketIntelligenceApi.md#get_market_analytics_snapshot) | **GET** /v1/market/items | Get Market Analytics Snapshot
|
|
@@ -170,8 +172,6 @@ Class | Method | HTTP request | Description
|
|
|
170
172
|
- [BatchPricesMeta](docs/BatchPricesMeta.md)
|
|
171
173
|
- [BatchPricesRequest](docs/BatchPricesRequest.md)
|
|
172
174
|
- [BatchPricesResponse](docs/BatchPricesResponse.md)
|
|
173
|
-
- [BidsFilterMeta](docs/BidsFilterMeta.md)
|
|
174
|
-
- [BidsMeta](docs/BidsMeta.md)
|
|
175
175
|
- [BidsResponse](docs/BidsResponse.md)
|
|
176
176
|
- [BuyOrderItem](docs/BuyOrderItem.md)
|
|
177
177
|
- [BuyOrderProvider](docs/BuyOrderProvider.md)
|
|
@@ -201,6 +201,10 @@ Class | Method | HTTP request | Description
|
|
|
201
201
|
- [MarketArbitrageItem](docs/MarketArbitrageItem.md)
|
|
202
202
|
- [MarketArbitrageMeta](docs/MarketArbitrageMeta.md)
|
|
203
203
|
- [MarketArbitrageResponse](docs/MarketArbitrageResponse.md)
|
|
204
|
+
- [MarketHistoryChartMeta](docs/MarketHistoryChartMeta.md)
|
|
205
|
+
- [MarketHistoryChartPoint](docs/MarketHistoryChartPoint.md)
|
|
206
|
+
- [MarketHistoryChartResponse](docs/MarketHistoryChartResponse.md)
|
|
207
|
+
- [MarketHistoryChartSeries](docs/MarketHistoryChartSeries.md)
|
|
204
208
|
- [MarketIndexGroup](docs/MarketIndexGroup.md)
|
|
205
209
|
- [MarketIndexesData](docs/MarketIndexesData.md)
|
|
206
210
|
- [MarketIndexesMeta](docs/MarketIndexesMeta.md)
|
|
@@ -91,11 +91,13 @@ Class | Method | HTTP request | Description
|
|
|
91
91
|
*BidsApi* | [**list_bids**](docs/BidsApi.md#list_bids) | **GET** /v1/bids | List Bids
|
|
92
92
|
*BidsApi* | [**stream_full_bids_snapshot**](docs/BidsApi.md#stream_full_bids_snapshot) | **POST** /v1/bids | Stream Full Bids Snapshot
|
|
93
93
|
*ForeignExchangeApi* | [**get_fx_rates**](docs/ForeignExchangeApi.md#get_fx_rates) | **GET** /v1/fx | Get Fx Rates
|
|
94
|
+
*ImagesApi* | [**list_game_images**](docs/ImagesApi.md#list_game_images) | **GET** /v1/images | List Game Images
|
|
94
95
|
*InventoryApi* | [**fetch_steam_inventory**](docs/InventoryApi.md#fetch_steam_inventory) | **GET** /v1/inventory/steam | Fetch Steam Inventory
|
|
95
96
|
*InventoryApi* | [**fetch_steam_inventory_by_steam_id**](docs/InventoryApi.md#fetch_steam_inventory_by_steam_id) | **GET** /v1/inventory/steam/lookup | Fetch Steam Inventory by Steam ID
|
|
96
97
|
*ItemsApi* | [**get_item_catalog_metadata**](docs/ItemsApi.md#get_item_catalog_metadata) | **GET** /v1/items/metadata | Get Item Catalog Metadata
|
|
97
98
|
*ItemsApi* | [**list_items**](docs/ItemsApi.md#list_items) | **GET** /v1/items | List Items
|
|
98
99
|
*MarketIntelligenceApi* | [**get_arbitrage_opportunities**](docs/MarketIntelligenceApi.md#get_arbitrage_opportunities) | **GET** /v1/market/arbitrage | Get Arbitrage Opportunities
|
|
100
|
+
*MarketIntelligenceApi* | [**get_deep_price_history_chart**](docs/MarketIntelligenceApi.md#get_deep_price_history_chart) | **GET** /v1/market/history/chart | Get Deep Price History Chart
|
|
99
101
|
*MarketIntelligenceApi* | [**get_indicators**](docs/MarketIntelligenceApi.md#get_indicators) | **GET** /v1/market/indicators | Get Indicators
|
|
100
102
|
*MarketIntelligenceApi* | [**get_item_analytics**](docs/MarketIntelligenceApi.md#get_item_analytics) | **GET** /v1/market/items/{item_id} | Get Item Analytics
|
|
101
103
|
*MarketIntelligenceApi* | [**get_market_analytics_snapshot**](docs/MarketIntelligenceApi.md#get_market_analytics_snapshot) | **GET** /v1/market/items | Get Market Analytics Snapshot
|
|
@@ -149,8 +151,6 @@ Class | Method | HTTP request | Description
|
|
|
149
151
|
- [BatchPricesMeta](docs/BatchPricesMeta.md)
|
|
150
152
|
- [BatchPricesRequest](docs/BatchPricesRequest.md)
|
|
151
153
|
- [BatchPricesResponse](docs/BatchPricesResponse.md)
|
|
152
|
-
- [BidsFilterMeta](docs/BidsFilterMeta.md)
|
|
153
|
-
- [BidsMeta](docs/BidsMeta.md)
|
|
154
154
|
- [BidsResponse](docs/BidsResponse.md)
|
|
155
155
|
- [BuyOrderItem](docs/BuyOrderItem.md)
|
|
156
156
|
- [BuyOrderProvider](docs/BuyOrderProvider.md)
|
|
@@ -180,6 +180,10 @@ Class | Method | HTTP request | Description
|
|
|
180
180
|
- [MarketArbitrageItem](docs/MarketArbitrageItem.md)
|
|
181
181
|
- [MarketArbitrageMeta](docs/MarketArbitrageMeta.md)
|
|
182
182
|
- [MarketArbitrageResponse](docs/MarketArbitrageResponse.md)
|
|
183
|
+
- [MarketHistoryChartMeta](docs/MarketHistoryChartMeta.md)
|
|
184
|
+
- [MarketHistoryChartPoint](docs/MarketHistoryChartPoint.md)
|
|
185
|
+
- [MarketHistoryChartResponse](docs/MarketHistoryChartResponse.md)
|
|
186
|
+
- [MarketHistoryChartSeries](docs/MarketHistoryChartSeries.md)
|
|
183
187
|
- [MarketIndexGroup](docs/MarketIndexGroup.md)
|
|
184
188
|
- [MarketIndexesData](docs/MarketIndexesData.md)
|
|
185
189
|
- [MarketIndexesMeta](docs/MarketIndexesMeta.md)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "
|
|
17
|
+
__version__ = "2.0.1"
|
|
18
18
|
|
|
19
19
|
# Define package exports
|
|
20
20
|
__all__ = [
|
|
@@ -24,6 +24,7 @@ __all__ = [
|
|
|
24
24
|
"AccountWebhooksApi",
|
|
25
25
|
"BidsApi",
|
|
26
26
|
"ForeignExchangeApi",
|
|
27
|
+
"ImagesApi",
|
|
27
28
|
"InventoryApi",
|
|
28
29
|
"ItemsApi",
|
|
29
30
|
"MarketIntelligenceApi",
|
|
@@ -64,8 +65,6 @@ __all__ = [
|
|
|
64
65
|
"BatchPricesMeta",
|
|
65
66
|
"BatchPricesRequest",
|
|
66
67
|
"BatchPricesResponse",
|
|
67
|
-
"BidsFilterMeta",
|
|
68
|
-
"BidsMeta",
|
|
69
68
|
"BidsResponse",
|
|
70
69
|
"BuyOrderItem",
|
|
71
70
|
"BuyOrderProvider",
|
|
@@ -95,6 +94,10 @@ __all__ = [
|
|
|
95
94
|
"MarketArbitrageItem",
|
|
96
95
|
"MarketArbitrageMeta",
|
|
97
96
|
"MarketArbitrageResponse",
|
|
97
|
+
"MarketHistoryChartMeta",
|
|
98
|
+
"MarketHistoryChartPoint",
|
|
99
|
+
"MarketHistoryChartResponse",
|
|
100
|
+
"MarketHistoryChartSeries",
|
|
98
101
|
"MarketIndexGroup",
|
|
99
102
|
"MarketIndexesData",
|
|
100
103
|
"MarketIndexesMeta",
|
|
@@ -184,6 +187,7 @@ from cs2cap.api.account_watchlist_api import AccountWatchlistApi as AccountWatch
|
|
|
184
187
|
from cs2cap.api.account_webhooks_api import AccountWebhooksApi as AccountWebhooksApi
|
|
185
188
|
from cs2cap.api.bids_api import BidsApi as BidsApi
|
|
186
189
|
from cs2cap.api.foreign_exchange_api import ForeignExchangeApi as ForeignExchangeApi
|
|
190
|
+
from cs2cap.api.images_api import ImagesApi as ImagesApi
|
|
187
191
|
from cs2cap.api.inventory_api import InventoryApi as InventoryApi
|
|
188
192
|
from cs2cap.api.items_api import ItemsApi as ItemsApi
|
|
189
193
|
from cs2cap.api.market_intelligence_api import MarketIntelligenceApi as MarketIntelligenceApi
|
|
@@ -228,8 +232,6 @@ from cs2cap.models.batch_price_quote import BatchPriceQuote as BatchPriceQuote
|
|
|
228
232
|
from cs2cap.models.batch_prices_meta import BatchPricesMeta as BatchPricesMeta
|
|
229
233
|
from cs2cap.models.batch_prices_request import BatchPricesRequest as BatchPricesRequest
|
|
230
234
|
from cs2cap.models.batch_prices_response import BatchPricesResponse as BatchPricesResponse
|
|
231
|
-
from cs2cap.models.bids_filter_meta import BidsFilterMeta as BidsFilterMeta
|
|
232
|
-
from cs2cap.models.bids_meta import BidsMeta as BidsMeta
|
|
233
235
|
from cs2cap.models.bids_response import BidsResponse as BidsResponse
|
|
234
236
|
from cs2cap.models.buy_order_item import BuyOrderItem as BuyOrderItem
|
|
235
237
|
from cs2cap.models.buy_order_provider import BuyOrderProvider as BuyOrderProvider
|
|
@@ -259,6 +261,10 @@ from cs2cap.models.market_arbitrage_data import MarketArbitrageData as MarketArb
|
|
|
259
261
|
from cs2cap.models.market_arbitrage_item import MarketArbitrageItem as MarketArbitrageItem
|
|
260
262
|
from cs2cap.models.market_arbitrage_meta import MarketArbitrageMeta as MarketArbitrageMeta
|
|
261
263
|
from cs2cap.models.market_arbitrage_response import MarketArbitrageResponse as MarketArbitrageResponse
|
|
264
|
+
from cs2cap.models.market_history_chart_meta import MarketHistoryChartMeta as MarketHistoryChartMeta
|
|
265
|
+
from cs2cap.models.market_history_chart_point import MarketHistoryChartPoint as MarketHistoryChartPoint
|
|
266
|
+
from cs2cap.models.market_history_chart_response import MarketHistoryChartResponse as MarketHistoryChartResponse
|
|
267
|
+
from cs2cap.models.market_history_chart_series import MarketHistoryChartSeries as MarketHistoryChartSeries
|
|
262
268
|
from cs2cap.models.market_index_group import MarketIndexGroup as MarketIndexGroup
|
|
263
269
|
from cs2cap.models.market_indexes_data import MarketIndexesData as MarketIndexesData
|
|
264
270
|
from cs2cap.models.market_indexes_meta import MarketIndexesMeta as MarketIndexesMeta
|
|
@@ -7,6 +7,7 @@ from cs2cap.api.account_watchlist_api import AccountWatchlistApi
|
|
|
7
7
|
from cs2cap.api.account_webhooks_api import AccountWebhooksApi
|
|
8
8
|
from cs2cap.api.bids_api import BidsApi
|
|
9
9
|
from cs2cap.api.foreign_exchange_api import ForeignExchangeApi
|
|
10
|
+
from cs2cap.api.images_api import ImagesApi
|
|
10
11
|
from cs2cap.api.inventory_api import InventoryApi
|
|
11
12
|
from cs2cap.api.items_api import ItemsApi
|
|
12
13
|
from cs2cap.api.market_intelligence_api import MarketIntelligenceApi
|
|
@@ -23,7 +23,7 @@ from cs2cap.models.batch_bids_response import BatchBidsResponse
|
|
|
23
23
|
from cs2cap.models.bids_response import BidsResponse
|
|
24
24
|
from cs2cap.models.buy_order_provider import BuyOrderProvider
|
|
25
25
|
|
|
26
|
-
from cs2cap.api_client import ApiClient, RequestSerialized
|
|
26
|
+
from cs2cap.api_client import ApiClient, RequestSerialized, _enum_value
|
|
27
27
|
from cs2cap.api_response import ApiResponse
|
|
28
28
|
from cs2cap.rest import RESTResponseType
|
|
29
29
|
|
|
@@ -355,7 +355,7 @@ class BidsApi:
|
|
|
355
355
|
) -> BidsResponse:
|
|
356
356
|
"""List Bids
|
|
357
357
|
|
|
358
|
-
Return current highest bids from providers that support buy orders. Filters: - `item_id` or `market_hash_name` - optional `phase` - `providers` limited to buy-order-capable provider keys - `currency`, `limit`, and `offset` Behavior: -
|
|
358
|
+
Return current highest bids from providers that support buy orders. Filters: - `item_id` or `market_hash_name` - optional `phase` - `providers` limited to buy-order-capable provider keys - `currency`, `limit`, and `offset` Behavior: - requesting a provider that does not support buy orders returns `400` Response: - `meta` with filters and providers queried - flattened per-provider bid rows - offset pagination metadata
|
|
359
359
|
|
|
360
360
|
:param item_id: Filter by item ID. When provided, canonical market_hash_name and phase from catalog are used and take precedence over request market_hash_name/phase.
|
|
361
361
|
:type item_id: int
|
|
@@ -452,7 +452,7 @@ class BidsApi:
|
|
|
452
452
|
) -> ApiResponse[BidsResponse]:
|
|
453
453
|
"""List Bids
|
|
454
454
|
|
|
455
|
-
Return current highest bids from providers that support buy orders. Filters: - `item_id` or `market_hash_name` - optional `phase` - `providers` limited to buy-order-capable provider keys - `currency`, `limit`, and `offset` Behavior: -
|
|
455
|
+
Return current highest bids from providers that support buy orders. Filters: - `item_id` or `market_hash_name` - optional `phase` - `providers` limited to buy-order-capable provider keys - `currency`, `limit`, and `offset` Behavior: - requesting a provider that does not support buy orders returns `400` Response: - `meta` with filters and providers queried - flattened per-provider bid rows - offset pagination metadata
|
|
456
456
|
|
|
457
457
|
:param item_id: Filter by item ID. When provided, canonical market_hash_name and phase from catalog are used and take precedence over request market_hash_name/phase.
|
|
458
458
|
:type item_id: int
|
|
@@ -549,7 +549,7 @@ class BidsApi:
|
|
|
549
549
|
) -> RESTResponseType:
|
|
550
550
|
"""List Bids
|
|
551
551
|
|
|
552
|
-
Return current highest bids from providers that support buy orders. Filters: - `item_id` or `market_hash_name` - optional `phase` - `providers` limited to buy-order-capable provider keys - `currency`, `limit`, and `offset` Behavior: -
|
|
552
|
+
Return current highest bids from providers that support buy orders. Filters: - `item_id` or `market_hash_name` - optional `phase` - `providers` limited to buy-order-capable provider keys - `currency`, `limit`, and `offset` Behavior: - requesting a provider that does not support buy orders returns `400` Response: - `meta` with filters and providers queried - flattened per-provider bid rows - offset pagination metadata
|
|
553
553
|
|
|
554
554
|
:param item_id: Filter by item ID. When provided, canonical market_hash_name and phase from catalog are used and take precedence over request market_hash_name/phase.
|
|
555
555
|
:type item_id: int
|
|
@@ -659,7 +659,7 @@ class BidsApi:
|
|
|
659
659
|
|
|
660
660
|
if phase is not None:
|
|
661
661
|
|
|
662
|
-
_query_params.append(('phase', phase
|
|
662
|
+
_query_params.append(('phase', _enum_value(phase)))
|
|
663
663
|
|
|
664
664
|
if providers is not None:
|
|
665
665
|
|
|
@@ -733,7 +733,7 @@ class BidsApi:
|
|
|
733
733
|
) -> str:
|
|
734
734
|
"""Stream Full Bids Snapshot
|
|
735
735
|
|
|
736
|
-
Return the full live bids snapshot as an NDJSON stream. Behavior: - pro and quant tiers only - requires
|
|
736
|
+
Return the full live bids snapshot as an NDJSON stream. Behavior: - pro and quant tiers only - requires an API key (not a session token) - optional `providers` filter; omit to stream all providers - fixed USD output - `highest_bid` values are returned in USD minor units - one JSON object per line using the `BuyOrderItem` field set - per-API-key rolling 24h quota of successful stream starts (pro: 50, quant: 300, per endpoint) - max 1 concurrent stream per API key for this endpoint (409 otherwise)
|
|
737
737
|
|
|
738
738
|
:param providers:
|
|
739
739
|
:type providers: List[BuyOrderProvider]
|
|
@@ -774,6 +774,7 @@ class BidsApi:
|
|
|
774
774
|
'429': "ErrorResponse",
|
|
775
775
|
'422': "ValidationErrorResponse",
|
|
776
776
|
'503': "ErrorResponse",
|
|
777
|
+
'409': "ErrorResponse",
|
|
777
778
|
}
|
|
778
779
|
response_data = self.api_client.call_api(
|
|
779
780
|
*_param,
|
|
@@ -805,7 +806,7 @@ class BidsApi:
|
|
|
805
806
|
) -> ApiResponse[str]:
|
|
806
807
|
"""Stream Full Bids Snapshot
|
|
807
808
|
|
|
808
|
-
Return the full live bids snapshot as an NDJSON stream. Behavior: - pro and quant tiers only - requires
|
|
809
|
+
Return the full live bids snapshot as an NDJSON stream. Behavior: - pro and quant tiers only - requires an API key (not a session token) - optional `providers` filter; omit to stream all providers - fixed USD output - `highest_bid` values are returned in USD minor units - one JSON object per line using the `BuyOrderItem` field set - per-API-key rolling 24h quota of successful stream starts (pro: 50, quant: 300, per endpoint) - max 1 concurrent stream per API key for this endpoint (409 otherwise)
|
|
809
810
|
|
|
810
811
|
:param providers:
|
|
811
812
|
:type providers: List[BuyOrderProvider]
|
|
@@ -846,6 +847,7 @@ class BidsApi:
|
|
|
846
847
|
'429': "ErrorResponse",
|
|
847
848
|
'422': "ValidationErrorResponse",
|
|
848
849
|
'503': "ErrorResponse",
|
|
850
|
+
'409': "ErrorResponse",
|
|
849
851
|
}
|
|
850
852
|
response_data = self.api_client.call_api(
|
|
851
853
|
*_param,
|
|
@@ -877,7 +879,7 @@ class BidsApi:
|
|
|
877
879
|
) -> RESTResponseType:
|
|
878
880
|
"""Stream Full Bids Snapshot
|
|
879
881
|
|
|
880
|
-
Return the full live bids snapshot as an NDJSON stream. Behavior: - pro and quant tiers only - requires
|
|
882
|
+
Return the full live bids snapshot as an NDJSON stream. Behavior: - pro and quant tiers only - requires an API key (not a session token) - optional `providers` filter; omit to stream all providers - fixed USD output - `highest_bid` values are returned in USD minor units - one JSON object per line using the `BuyOrderItem` field set - per-API-key rolling 24h quota of successful stream starts (pro: 50, quant: 300, per endpoint) - max 1 concurrent stream per API key for this endpoint (409 otherwise)
|
|
881
883
|
|
|
882
884
|
:param providers:
|
|
883
885
|
:type providers: List[BuyOrderProvider]
|
|
@@ -918,6 +920,7 @@ class BidsApi:
|
|
|
918
920
|
'429': "ErrorResponse",
|
|
919
921
|
'422': "ValidationErrorResponse",
|
|
920
922
|
'503': "ErrorResponse",
|
|
923
|
+
'409': "ErrorResponse",
|
|
921
924
|
}
|
|
922
925
|
response_data = self.api_client.call_api(
|
|
923
926
|
*_param,
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
"""
|
|
2
|
+
CS2Cap
|
|
3
|
+
|
|
4
|
+
CS2Cap aggregates and analyzes Counter-Strike 2 marketplace data across multiple providers via a unified REST API.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
8
|
+
|
|
9
|
+
Do not edit the class manually.
|
|
10
|
+
""" # noqa: E501
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
import warnings
|
|
14
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
15
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
16
|
+
from typing_extensions import Annotated
|
|
17
|
+
|
|
18
|
+
from pydantic import StrictStr
|
|
19
|
+
from typing import Dict, List
|
|
20
|
+
|
|
21
|
+
from cs2cap.api_client import ApiClient, RequestSerialized
|
|
22
|
+
from cs2cap.api_response import ApiResponse
|
|
23
|
+
from cs2cap.rest import RESTResponseType
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class ImagesApi:
|
|
27
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
28
|
+
Ref: https://openapi-generator.tech
|
|
29
|
+
|
|
30
|
+
Do not edit the class manually.
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
def __init__(self, api_client=None) -> None:
|
|
34
|
+
if api_client is None:
|
|
35
|
+
api_client = ApiClient.get_default()
|
|
36
|
+
self.api_client = api_client
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
@validate_call
|
|
40
|
+
def list_game_images(
|
|
41
|
+
self,
|
|
42
|
+
_request_timeout: Union[
|
|
43
|
+
None,
|
|
44
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
45
|
+
Tuple[
|
|
46
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
47
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
48
|
+
]
|
|
49
|
+
] = None,
|
|
50
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
51
|
+
_content_type: Optional[StrictStr] = None,
|
|
52
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
53
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
54
|
+
) -> Dict[str, List[str]]:
|
|
55
|
+
"""List Game Images
|
|
56
|
+
|
|
57
|
+
Return a directory of CS2 catalog display names mapped to their image URLs on the CS2Cap CDN. Names that map to multiple distinct images return all URLs.
|
|
58
|
+
|
|
59
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
60
|
+
number provided, it will be total request
|
|
61
|
+
timeout. It can also be a pair (tuple) of
|
|
62
|
+
(connection, read) timeouts.
|
|
63
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
64
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
65
|
+
request; this effectively ignores the
|
|
66
|
+
authentication in the spec for a single request.
|
|
67
|
+
:type _request_auth: dict, optional
|
|
68
|
+
:param _content_type: force content-type for the request.
|
|
69
|
+
:type _content_type: str, Optional
|
|
70
|
+
:param _headers: set to override the headers for a single
|
|
71
|
+
request; this effectively ignores the headers
|
|
72
|
+
in the spec for a single request.
|
|
73
|
+
:type _headers: dict, optional
|
|
74
|
+
:param _host_index: set to override the host_index for a single
|
|
75
|
+
request; this effectively ignores the host_index
|
|
76
|
+
in the spec for a single request.
|
|
77
|
+
:type _host_index: int, optional
|
|
78
|
+
:return: Returns the result object.
|
|
79
|
+
""" # noqa: E501
|
|
80
|
+
|
|
81
|
+
_param = self._list_game_images_serialize(
|
|
82
|
+
_request_auth=_request_auth,
|
|
83
|
+
_content_type=_content_type,
|
|
84
|
+
_headers=_headers,
|
|
85
|
+
_host_index=_host_index
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
89
|
+
'200': "Dict[str, List[str]]",
|
|
90
|
+
'401': "ErrorResponse",
|
|
91
|
+
'403': "ErrorResponse",
|
|
92
|
+
'429': "ErrorResponse",
|
|
93
|
+
'422': "ValidationErrorResponse",
|
|
94
|
+
}
|
|
95
|
+
response_data = self.api_client.call_api(
|
|
96
|
+
*_param,
|
|
97
|
+
_request_timeout=_request_timeout
|
|
98
|
+
)
|
|
99
|
+
response_data.read()
|
|
100
|
+
return self.api_client.response_deserialize(
|
|
101
|
+
response_data=response_data,
|
|
102
|
+
response_types_map=_response_types_map,
|
|
103
|
+
).data
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
@validate_call
|
|
107
|
+
def list_game_images_with_http_info(
|
|
108
|
+
self,
|
|
109
|
+
_request_timeout: Union[
|
|
110
|
+
None,
|
|
111
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
112
|
+
Tuple[
|
|
113
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
114
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
115
|
+
]
|
|
116
|
+
] = None,
|
|
117
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
118
|
+
_content_type: Optional[StrictStr] = None,
|
|
119
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
120
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
121
|
+
) -> ApiResponse[Dict[str, List[str]]]:
|
|
122
|
+
"""List Game Images
|
|
123
|
+
|
|
124
|
+
Return a directory of CS2 catalog display names mapped to their image URLs on the CS2Cap CDN. Names that map to multiple distinct images return all URLs.
|
|
125
|
+
|
|
126
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
127
|
+
number provided, it will be total request
|
|
128
|
+
timeout. It can also be a pair (tuple) of
|
|
129
|
+
(connection, read) timeouts.
|
|
130
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
131
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
132
|
+
request; this effectively ignores the
|
|
133
|
+
authentication in the spec for a single request.
|
|
134
|
+
:type _request_auth: dict, optional
|
|
135
|
+
:param _content_type: force content-type for the request.
|
|
136
|
+
:type _content_type: str, Optional
|
|
137
|
+
:param _headers: set to override the headers for a single
|
|
138
|
+
request; this effectively ignores the headers
|
|
139
|
+
in the spec for a single request.
|
|
140
|
+
:type _headers: dict, optional
|
|
141
|
+
:param _host_index: set to override the host_index for a single
|
|
142
|
+
request; this effectively ignores the host_index
|
|
143
|
+
in the spec for a single request.
|
|
144
|
+
:type _host_index: int, optional
|
|
145
|
+
:return: Returns the result object.
|
|
146
|
+
""" # noqa: E501
|
|
147
|
+
|
|
148
|
+
_param = self._list_game_images_serialize(
|
|
149
|
+
_request_auth=_request_auth,
|
|
150
|
+
_content_type=_content_type,
|
|
151
|
+
_headers=_headers,
|
|
152
|
+
_host_index=_host_index
|
|
153
|
+
)
|
|
154
|
+
|
|
155
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
156
|
+
'200': "Dict[str, List[str]]",
|
|
157
|
+
'401': "ErrorResponse",
|
|
158
|
+
'403': "ErrorResponse",
|
|
159
|
+
'429': "ErrorResponse",
|
|
160
|
+
'422': "ValidationErrorResponse",
|
|
161
|
+
}
|
|
162
|
+
response_data = self.api_client.call_api(
|
|
163
|
+
*_param,
|
|
164
|
+
_request_timeout=_request_timeout
|
|
165
|
+
)
|
|
166
|
+
response_data.read()
|
|
167
|
+
return self.api_client.response_deserialize(
|
|
168
|
+
response_data=response_data,
|
|
169
|
+
response_types_map=_response_types_map,
|
|
170
|
+
)
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
@validate_call
|
|
174
|
+
def list_game_images_without_preload_content(
|
|
175
|
+
self,
|
|
176
|
+
_request_timeout: Union[
|
|
177
|
+
None,
|
|
178
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
179
|
+
Tuple[
|
|
180
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
181
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
182
|
+
]
|
|
183
|
+
] = None,
|
|
184
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
185
|
+
_content_type: Optional[StrictStr] = None,
|
|
186
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
187
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
188
|
+
) -> RESTResponseType:
|
|
189
|
+
"""List Game Images
|
|
190
|
+
|
|
191
|
+
Return a directory of CS2 catalog display names mapped to their image URLs on the CS2Cap CDN. Names that map to multiple distinct images return all URLs.
|
|
192
|
+
|
|
193
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
194
|
+
number provided, it will be total request
|
|
195
|
+
timeout. It can also be a pair (tuple) of
|
|
196
|
+
(connection, read) timeouts.
|
|
197
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
198
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
199
|
+
request; this effectively ignores the
|
|
200
|
+
authentication in the spec for a single request.
|
|
201
|
+
:type _request_auth: dict, optional
|
|
202
|
+
:param _content_type: force content-type for the request.
|
|
203
|
+
:type _content_type: str, Optional
|
|
204
|
+
:param _headers: set to override the headers for a single
|
|
205
|
+
request; this effectively ignores the headers
|
|
206
|
+
in the spec for a single request.
|
|
207
|
+
:type _headers: dict, optional
|
|
208
|
+
:param _host_index: set to override the host_index for a single
|
|
209
|
+
request; this effectively ignores the host_index
|
|
210
|
+
in the spec for a single request.
|
|
211
|
+
:type _host_index: int, optional
|
|
212
|
+
:return: Returns the result object.
|
|
213
|
+
""" # noqa: E501
|
|
214
|
+
|
|
215
|
+
_param = self._list_game_images_serialize(
|
|
216
|
+
_request_auth=_request_auth,
|
|
217
|
+
_content_type=_content_type,
|
|
218
|
+
_headers=_headers,
|
|
219
|
+
_host_index=_host_index
|
|
220
|
+
)
|
|
221
|
+
|
|
222
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
223
|
+
'200': "Dict[str, List[str]]",
|
|
224
|
+
'401': "ErrorResponse",
|
|
225
|
+
'403': "ErrorResponse",
|
|
226
|
+
'429': "ErrorResponse",
|
|
227
|
+
'422': "ValidationErrorResponse",
|
|
228
|
+
}
|
|
229
|
+
response_data = self.api_client.call_api(
|
|
230
|
+
*_param,
|
|
231
|
+
_request_timeout=_request_timeout
|
|
232
|
+
)
|
|
233
|
+
return response_data.response
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
def _list_game_images_serialize(
|
|
237
|
+
self,
|
|
238
|
+
_request_auth,
|
|
239
|
+
_content_type,
|
|
240
|
+
_headers,
|
|
241
|
+
_host_index,
|
|
242
|
+
) -> RequestSerialized:
|
|
243
|
+
|
|
244
|
+
_host = None
|
|
245
|
+
|
|
246
|
+
_collection_formats: Dict[str, str] = {
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
_path_params: Dict[str, str] = {}
|
|
250
|
+
_query_params: List[Tuple[str, str]] = []
|
|
251
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
252
|
+
_form_params: List[Tuple[str, str]] = []
|
|
253
|
+
_files: Dict[
|
|
254
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
255
|
+
] = {}
|
|
256
|
+
_body_params: Optional[bytes] = None
|
|
257
|
+
|
|
258
|
+
# process the path parameters
|
|
259
|
+
# process the query parameters
|
|
260
|
+
# process the header parameters
|
|
261
|
+
# process the form parameters
|
|
262
|
+
# process the body parameter
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
# set the HTTP header `Accept`
|
|
266
|
+
if 'Accept' not in _header_params:
|
|
267
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
268
|
+
[
|
|
269
|
+
'application/json'
|
|
270
|
+
]
|
|
271
|
+
)
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
# authentication setting
|
|
275
|
+
_auth_settings: List[str] = [
|
|
276
|
+
'BearerAuth'
|
|
277
|
+
]
|
|
278
|
+
|
|
279
|
+
return self.api_client.param_serialize(
|
|
280
|
+
method='GET',
|
|
281
|
+
resource_path='/v1/images',
|
|
282
|
+
path_params=_path_params,
|
|
283
|
+
query_params=_query_params,
|
|
284
|
+
header_params=_header_params,
|
|
285
|
+
body=_body_params,
|
|
286
|
+
post_params=_form_params,
|
|
287
|
+
files=_files,
|
|
288
|
+
auth_settings=_auth_settings,
|
|
289
|
+
collection_formats=_collection_formats,
|
|
290
|
+
_host=_host,
|
|
291
|
+
_request_auth=_request_auth
|
|
292
|
+
)
|
|
293
|
+
|
|
294
|
+
|