wbapi-async 0.2.2__tar.gz → 0.2.3__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.
- wbapi_async-0.2.3/PKG-INFO +77 -0
- wbapi_async-0.2.3/pyproject.toml +126 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/__init__.py +102 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/enums/__init__.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/enums/availability_filters_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/enums/field.py +30 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/enums/mode.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/enums/stock_type.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/__init__.py +36 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_create_the_report.py +19 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_group_data.py +36 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_grouped_product_cards_statistics_per_days.py +29 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_main_page.py +35 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_orders_and_positions_by_product_search_texts.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_pagination_by_groups.py +35 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_pagination_by_products_within_a_group.py +40 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_product_cards_statistics_per_days.py +26 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_product_cards_statistics_per_period.py +33 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_product_data.py +37 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_regenerate_the_report.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_search_texts_by_product.py +31 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_size_data.py +30 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_warehouse_data.py +20 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/__init__.py +88 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/avg_stock_turnover.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/comparison.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/conversions.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/current_period.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/float_graph_by_period_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/group_data_item.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/grouped_product_cards_statistics_per_days_item.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/history.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/main_page_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/metrics.py +30 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/office_missing_time.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/offices_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/order_by.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/orders_and_positions_by_product_search_texts_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/pagination_by_groups_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/pagination_by_products_within_a_group_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/past.py +27 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/past_period.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/period.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/product.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/product_cards_statistics_per_days_response.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/product_cards_statistics_per_period_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/product_data_item.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/sale_rate.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/search_texts_by_product_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/selected.py +27 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/selected_period.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/size_data_item.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/statistic.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/stocks.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/table_product_item_st.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/tag.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/time_to_ready.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/time_to_ready_dynamic.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/warehouse_data_item.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/wb_club.py +15 -0
- wbapi_async-0.2.3/src/wbapi_async/analytics/types/wb_club_dynamic.py +15 -0
- wbapi_async-0.2.3/src/wbapi_async/client/api.py +5903 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/__init__.py +84 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/enums/__init__.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/enums/event_type.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/enums/sender.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/methods/get_feedbacks_list.py +30 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/methods/get_list_of_archived_feedbacks.py +28 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/methods/get_list_of_pinned_and_unpinned_feedback.py +33 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/methods/get_pinned_and_unpinned_feedback_number.py +28 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/__init__.py +74 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/answer.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/chat_events_item.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/chat_list_item.py +15 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/event_attachments.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/feedbacks_list_item.py +41 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/file.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/good_card.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/image.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/last_message.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/list_of_archived_feedbacks_item.py +41 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/list_of_pinned_and_unpinned_feedback_response.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/message.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/photo_links_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/pin_feedback_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/pinned_and_unpinned_feedback_number_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/pinned_feedback_limits_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/product_details.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/question_list_item.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/unpin_feedback_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/communications/types/video.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/enums/__init__.py +96 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/__init__.py +24 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/enums/__init__.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/enums/report_type.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/methods/get_documents.py +21 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/methods/get_documents_list.py +32 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/methods/get_realization_sales_report.py +27 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/types/__init__.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/types/document_response.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/types/documents_response.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/types/params_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/finances/types/realization_sales_report_response.py +98 -0
- wbapi_async-0.2.3/src/wbapi_async/general/__init__.py +34 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/__init__.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/aggregation_level.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/availability_filters_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/cargo_type.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/cargo_type_2.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/code.py +20 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/countries_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/cross_border_type.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/delivery_type.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/delivery_type_2.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/delivery_type_3.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/event_type.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/field.py +30 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/mode.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/order.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/period.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/pin_on.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/placement_types_item.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/placement_types_item_2.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/position_cluster.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/report_type.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/role.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/sender.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/sort_list_.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/state.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/status.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/status_2.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/status_i_ds_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/stock_type.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/supplier_status.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/top_order_by.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/type__2.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/warehouse_type.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/enums/wb_status.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/general/methods/create_an_invitation_for_a_new_user.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/general/methods/update_users_access_permissions.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/__init__.py +28 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/a_list_of_seller_active_or_invited_users_item.py +24 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/access_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/advert_list_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/adverts.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/answer.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/bids_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/cards_to_add_item.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/characteristics_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/connection_check_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/contacts_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/current_period.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/cursor.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/customs_declaration.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/data.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/dimensions.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/error.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/errors_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/expiration.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/filter_.py +15 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/getting_seller_portal_news_item.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/good_card.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/gtin.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/imei.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/invite.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/invitee_info.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/items_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/message.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/meta.py +20 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/nm_bids_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/nms.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/nms_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/offices_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/options.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/order.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/orders_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/params_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/past_period.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/period.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/photo_links_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/photos_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/placements.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/placements_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/product_details.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/ranging_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/selected_period.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/sgtin.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/show_hours_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/sizes_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/sort.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/statuses_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/stocks_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/tags_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/timestamps.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/types_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/uin.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/user_access.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/video.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/warehouses_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/general/types/wholesale.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/__init__.py +52 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/methods/__init__.py +38 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/methods/add_data_matrix_codes_to_the_assembly_orders_chestny_znak.py +28 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/methods/add_gtin_to_the_assembly_orders.py +27 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/methods/add_imei_to_the_assembly_orders.py +27 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/methods/add_uin_unique_identification_numbers_to_the_assembly_orders.py +26 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/methods/get_assembly_order_metadata.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/methods/get_check_if_the_order_belongs_to_the_buyer.py +24 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/__init__.py +52 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/add_data_matrix_codes_to_the_assembly_orders_chestny_znak_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/add_gtin_to_the_assembly_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/add_imei_to_the_assembly_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/add_uin_unique_identification_numbers_to_the_assembly_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/api_meta_error_response.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/api_orders_error_response.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/assembly_order_metadata_item.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/cancel_the_assembly_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/delete_assembly_order_metadata_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/new_assembly_orders_list_item.py +31 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/notify_that_the_assembly_orders_are_ready_for_pickup_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/notify_that_the_orders_were_received_by_the_buyers_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/in_store_pickup/types/retrieve_information_on_completed_assembly_orders_item.py +28 -0
- wbapi_async-0.2.3/src/wbapi_async/methods/__init__.py +570 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/__init__.py +76 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/enums/__init__.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/enums/delivery_type_3.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/enums/height_stickers.py +5 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/enums/type__stickers.py +5 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/enums/width_stickers.py +5 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/__init__.py +42 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/add_custom_declaration_to_the_orders.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/add_data_matrix_codes_to_assembly_orders_chestny_znak.py +26 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/add_gtin_to_assembly_orders.py +27 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/add_imei_to_assembly_orders.py +27 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/add_uin_unique_identification_number_to_assembly_orders.py +26 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/get_b2_b_buyer_information.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/get_stickers_for_assembly_orders_with_delivery_to_pickup_point.py +28 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/notify_that_the_orders_are_declined.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/methods/notify_that_the_orders_are_received.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/__init__.py +68 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/add_data_matrix_codes_to_assembly_orders_chestny_znak_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/add_gtin_to_assembly_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/add_imei_to_assembly_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/add_uin_unique_identification_number_to_assembly_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/api_b2b_client_info.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/api_batch_error_response.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/api_gtin.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/api_imei.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/api_order_code_request.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/api_sgti_ns.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/api_uin.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/assembly_order_statuses_item.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/b2_b_buyer_information_item.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/cancel_assembly_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/delete_assembly_orders_metadata_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/errors_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/new_orders_list_item.py +38 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/notify_that_the_orders_are_declined_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/notify_that_the_orders_are_received_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/orders_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/transfer_to_assembly_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbs/types/transfer_to_delivery_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/__init__.py +42 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/methods/__init__.py +36 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/methods/get_buyer_information.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/methods/get_courier_info.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/methods/get_delivery_date_and_time.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/methods/get_orders_stickers.py +32 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/types/__init__.py +42 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/types/contacts.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/types/courier_info.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/types/courier_info_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/types/information_on_completed_orders_item.py +31 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_dbw/types/new_orders_item.py +33 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/__init__.py +116 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/__init__.py +20 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/cargo_type_2.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/cross_border_type.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/delivery_type_2.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/height.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/supplier_status.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/type_.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/wb_status.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/enums/width.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/methods/__init__.py +74 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/methods/get_assembly_orders_stickers.py +29 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/methods/get_orders_with_client_information.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/methods/get_status_history_for_crossborder_orders.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/methods/get_the_supply_box_qr_code_stickers.py +27 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/methods/get_the_supply_qr_code.py +24 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/__init__.py +94 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/a_supplies_list_item.py +20 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/address.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/assembly_orders_item.py +38 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/assembly_orders_metadata_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/assembly_orders_statuses_item.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/customs_declaration.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/expiration.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/gtin.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/imei.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/meta.py +20 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/new_assembly_orders_item.py +44 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/options.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/sgtin.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/status_history_for_crossborder_orders_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/statuses_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/supply_details_response.py +20 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbs/types/uin.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/__init__.py +30 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/enums/__init__.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/enums/status_i_ds_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/enums/type__models_date_filter_request.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/methods/__init__.py +16 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/methods/get_acceptance_options.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/methods/get_supplies_list.py +26 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/__init__.py +26 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/acceptance_options_item.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/error.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/models_date_filter_request.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/models_good_in_box.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/models_volume_tariff.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/supplies_list_response.py +21 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/supply_package_response.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/transit_directions_response.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/orders_fbw/types/warehouses_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/products/__init__.py +148 -0
- wbapi_async-0.2.3/src/wbapi_async/products/enums/__init__.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/products/enums/cargo_type.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/products/enums/delivery_type.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/products/enums/locale.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/__init__.py +102 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/create_product_cards_with_merge.py +31 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/get_list_of_failed_product_cards_with_errors.py +34 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/get_product_cards_in_trash_list.py +24 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/get_product_cards_list.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/set_prices_and_discounts.py +21 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/set_size_prices.py +21 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/set_wb_club_discounts.py +21 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/update_contacts_list.py +24 -0
- wbapi_async-0.2.3/src/wbapi_async/products/methods/update_inventory.py +24 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/__init__.py +142 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/cards_to_add_item.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/characteristics_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/club_disc_req.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/contacts_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/cursor.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/data.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/dimensions.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/filter_.py +15 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/good.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/limits_for_the_product_cards_response.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/offices_response.py +20 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/order.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/photos_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/processed_upload_state_response.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/product_cards_in_trash_list_item.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/product_cards_list_item.py +33 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/products_with_prices_by_articles_item.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/products_with_prices_item.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/set_prices_and_discounts_response.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/set_size_prices_response.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/set_wb_club_discounts_response.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/settings.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/size_good_req.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/sizes_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/sort.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/stocks_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/supplier_task_metadata.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/supplier_task_metadata_buffer.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/tags_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/unprocessed_upload_state_response.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/warehouses_response.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/products/types/wholesale.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/__init__.py +150 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/enums/__init__.py +16 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/enums/bid_type.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/enums/payment_type.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/enums/placement_types_item.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/enums/placement_types_item_2.py +6 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/enums/status_2.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/enums/type__2.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/__init__.py +80 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/add_product_to_the_promotion.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/changing_campaigns_bids.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/changing_placements_in_campaigns_with_custom_bid.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/changing_the_list_of_product_cards_in_campaigns.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/create_campaign.py +29 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/delete_bids_from_search_clusters.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_active_and_inactive_search_cluster_lists.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_campaigns_information.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_daily_search_clusters_statistics.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_list_of_campaign_minus_phrases.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_list_of_search_clusters_bids.py +22 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_media_campaign_statistics.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_minimum_bids_for_product_cards.py +28 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_product_cards_for_campaigns.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/get_search_clusters_statistics.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/methods/set_bids_for_search_clusters.py +23 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/__init__.py +134 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/active_and_inactive_search_cluster_lists_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/add_product_to_the_promotion_response.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/advert_list_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/advert_n_ms_settings.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/advert_settings.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/advert_subject.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/adverts.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/bids_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/campaigns_information_item.py +18 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/campaigns_lists_item.py +13 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/changing_campaigns_bids_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/changing_the_list_of_product_cards_in_campaigns_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/daily_search_clusters_statistics_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/data.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/information_about_media_campaign_item.py +34 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/items_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/media_campaigns_number_response.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/minimum_bids_for_product_cards_item.py +11 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/nm_bids_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/nms.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/nms_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/placements.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/placements_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/promotions_details_item.py +24 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/promotions_list_item.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/ranging_item.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/recommended_bids_for_items_and_search_clusters_item.py +15 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/search_clusters_statistics_item.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/show_hours_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/timestamps.py +12 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_bid_recommendation_reach_max.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_bid_recommendation_reach_medium.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_bid_recommendation_reach_min.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_get_norm_query_bids_request_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_get_norm_query_list_request_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_get_norm_query_list_response_item_norm_queries.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_get_norm_query_minus_request_item.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_get_norm_query_stats_item_stat.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v0_set_norm_query_bids_request_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v1_get_norm_query_stats_response_item_daily_stat.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/promotion/types/v1_get_norm_query_stats_response_item_stat.py +17 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/__init__.py +50 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/enums/__init__.py +14 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/enums/countries_item.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/enums/sort.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/enums/sort_blocked.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/enums/sort_shadowed.py +9 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/enums/warehouse_type.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/methods/__init__.py +36 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/methods/get_blocked_product_cards.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/methods/get_hidden_from_the_catalog.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/methods/get_report_on_products_with_mandatory_labeling.py +25 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/methods/get_substitutions_and_incorrect_attachments.py +31 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/types/__init__.py +40 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/types/check_the_status_response.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/types/create_task_response_data.py +7 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/types/generate_the_report_response.py +10 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/types/get_tasks_response_data.py +8 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/types/orders_response.py +36 -0
- wbapi_async-0.2.3/src/wbapi_async/reports/types/sales_response.py +37 -0
- wbapi_async-0.2.3/src/wbapi_async/types/__init__.py +836 -0
- wbapi_async-0.2.2/PKG-INFO +0 -77
- wbapi_async-0.2.2/pyproject.toml +0 -126
- wbapi_async-0.2.2/src/wbapi_async/analytics/__init__.py +0 -56
- wbapi_async-0.2.2/src/wbapi_async/analytics/enums/__init__.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/analytics/enums/product_data_availability.py +0 -12
- wbapi_async-0.2.2/src/wbapi_async/analytics/enums/product_data_order_field.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/analytics/enums/product_data_order_mode.py +0 -8
- wbapi_async-0.2.2/src/wbapi_async/analytics/enums/product_data_stock_type.py +0 -9
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/__init__.py +0 -36
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/create_the_report.py +0 -19
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/group_data.py +0 -19
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/grouped_product_cards_statistics_per_days.py +0 -31
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/main_page.py +0 -37
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/orders_and_positions_by_product_search_texts.py +0 -26
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/pagination_by_groups.py +0 -37
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/pagination_by_products_within_a_group.py +0 -36
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/product_cards_statistics_per_days.py +0 -28
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/product_cards_statistics_per_period.py +0 -34
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/product_data.py +0 -39
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/regenerate_the_report.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/search_texts_by_product.py +0 -31
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/size_data.py +0 -30
- wbapi_async-0.2.2/src/wbapi_async/analytics/methods/warehouse_data.py +0 -20
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/__init__.py +0 -42
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/group_data_item.py +0 -17
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/grouped_product_cards_statistics_per_days_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/main_page_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/orders_and_positions_by_product_search_texts_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/pagination_by_groups_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/pagination_by_products_within_a_group_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/product_cards_statistics_per_days_response.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/product_cards_statistics_per_period_response.py +0 -11
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/product_data_item.py +0 -19
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/product_data_order_by.py +0 -12
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/product_data_period.py +0 -8
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/search_texts_by_product_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/size_data_item.py +0 -14
- wbapi_async-0.2.2/src/wbapi_async/analytics/types/warehouse_data_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/client/api.py +0 -5902
- wbapi_async-0.2.2/src/wbapi_async/communications/__init__.py +0 -60
- wbapi_async-0.2.2/src/wbapi_async/communications/enums/__init__.py +0 -10
- wbapi_async-0.2.2/src/wbapi_async/communications/methods/get_feedbacks_list.py +0 -30
- wbapi_async-0.2.2/src/wbapi_async/communications/methods/get_list_of_archived_feedbacks.py +0 -28
- wbapi_async-0.2.2/src/wbapi_async/communications/methods/get_list_of_pinned_and_unpinned_feedback.py +0 -32
- wbapi_async-0.2.2/src/wbapi_async/communications/methods/get_pinned_and_unpinned_feedback_number.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/communications/types/__init__.py +0 -54
- wbapi_async-0.2.2/src/wbapi_async/communications/types/chat_events_item.py +0 -21
- wbapi_async-0.2.2/src/wbapi_async/communications/types/chat_list_item.py +0 -15
- wbapi_async-0.2.2/src/wbapi_async/communications/types/feedbacks_list_item.py +0 -39
- wbapi_async-0.2.2/src/wbapi_async/communications/types/list_of_archived_feedbacks_item.py +0 -39
- wbapi_async-0.2.2/src/wbapi_async/communications/types/list_of_pinned_and_unpinned_feedback_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/communications/types/pin_feedback_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/communications/types/pinned_and_unpinned_feedback_number_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/communications/types/pinned_feedback_limits_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/communications/types/question_list_item.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/communications/types/unpin_feedback_response.py +0 -7
- wbapi_async-0.2.2/src/wbapi_async/enums/__init__.py +0 -54
- wbapi_async-0.2.2/src/wbapi_async/finances/__init__.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/finances/enums/__init__.py +0 -4
- wbapi_async-0.2.2/src/wbapi_async/finances/methods/get_documents.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/finances/methods/get_documents_list.py +0 -31
- wbapi_async-0.2.2/src/wbapi_async/finances/methods/get_realization_sales_report.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/finances/types/__init__.py +0 -16
- wbapi_async-0.2.2/src/wbapi_async/finances/types/document_response.py +0 -11
- wbapi_async-0.2.2/src/wbapi_async/finances/types/documents_response.py +0 -11
- wbapi_async-0.2.2/src/wbapi_async/finances/types/realization_sales_report_response.py +0 -97
- wbapi_async-0.2.2/src/wbapi_async/general/__init__.py +0 -28
- wbapi_async-0.2.2/src/wbapi_async/general/enums/__init__.py +0 -14
- wbapi_async-0.2.2/src/wbapi_async/general/enums/order_deductions.py +0 -6
- wbapi_async-0.2.2/src/wbapi_async/general/methods/create_an_invitation_for_a_new_user.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/general/methods/update_users_access_permissions.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/general/types/__init__.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/general/types/a_list_of_seller_active_or_invited_users_item.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/general/types/connection_check_response.py +0 -10
- wbapi_async-0.2.2/src/wbapi_async/general/types/getting_seller_portal_news_item.py +0 -15
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/__init__.py +0 -48
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/methods/__init__.py +0 -38
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/methods/add_data_matrix_codes_to_the_assembly_orders_chestny_znak.py +0 -30
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/methods/add_gtin_to_the_assembly_orders.py +0 -29
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/methods/add_imei_to_the_assembly_orders.py +0 -29
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/methods/add_uin_unique_identification_numbers_to_the_assembly_orders.py +0 -28
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/methods/check_if_the_order_belongs_to_the_buyer.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/methods/get_assembly_order_metadata.py +0 -22
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/__init__.py +0 -48
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/add_data_matrix_codes_to_the_assembly_orders_chestny_znak_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/add_gtin_to_the_assembly_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/add_imei_to_the_assembly_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/add_uin_unique_identification_numbers_to_the_assembly_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/assembly_order_metadata_response.py +0 -11
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/cancel_the_assembly_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/delete_assembly_order_metadata_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/new_assembly_orders_list_item.py +0 -30
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/notify_that_the_assembly_orders_are_ready_for_pickup_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/notify_that_the_orders_were_received_by_the_buyers_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/in_store_pickup/types/retrieve_information_on_completed_assembly_orders_item.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/methods/__init__.py +0 -562
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/__init__.py +0 -50
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/__init__.py +0 -42
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/add_custom_declaration_to_the_orders.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/add_data_matrix_codes_to_assembly_orders_chestny_znak.py +0 -28
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/add_gtin_to_assembly_orders.py +0 -29
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/add_imei_to_assembly_orders.py +0 -29
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/add_uin_unique_identification_number_to_assembly_orders.py +0 -28
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/b2_b_buyer_information.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/get_stickers_for_assembly_orders_with_delivery_to_pickup_point.py +0 -26
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/notify_that_the_orders_are_declined.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/methods/notify_that_the_orders_are_received.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/__init__.py +0 -50
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/add_data_matrix_codes_to_assembly_orders_chestny_znak_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/add_gtin_to_assembly_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/add_imei_to_assembly_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/add_uin_unique_identification_number_to_assembly_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/assembly_order_statuses_item.py +0 -14
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/b2_b_buyer_information_item.py +0 -14
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/cancel_assembly_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/delete_assembly_orders_metadata_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/new_orders_list_item.py +0 -36
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/notify_that_the_orders_are_declined_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/notify_that_the_orders_are_received_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/transfer_to_assembly_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbs/types/transfer_to_delivery_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/__init__.py +0 -38
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/methods/__init__.py +0 -36
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/methods/buyer_information.py +0 -22
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/methods/courier_info.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/methods/delivery_date_and_time.py +0 -22
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/methods/get_orders_stickers.py +0 -30
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/types/__init__.py +0 -38
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/types/courier_info_item.py +0 -12
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/types/information_on_completed_orders_item.py +0 -30
- wbapi_async-0.2.2/src/wbapi_async/orders_dbw/types/new_orders_item.py +0 -32
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/__init__.py +0 -86
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/enums/__init__.py +0 -10
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/methods/__init__.py +0 -74
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/methods/get_assembly_orders_stickers.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/methods/get_the_supply_box_qr_code_stickers.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/methods/get_the_supply_qr_code.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/methods/orders_with_client_information.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/methods/status_history_for_crossborder_orders.py +0 -22
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/types/__init__.py +0 -74
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/types/a_supplies_list_item.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/types/assembly_orders_item.py +0 -35
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/types/assembly_orders_metadata_item.py +0 -12
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/types/assembly_orders_statuses_item.py +0 -11
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/types/new_assembly_orders_item.py +0 -41
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/types/status_history_for_crossborder_orders_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_fbs/types/supply_details_response.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/__init__.py +0 -16
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/methods/__init__.py +0 -16
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/methods/acceptance_options.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/methods/supplies_list.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/types/__init__.py +0 -16
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/types/acceptance_options_item.py +0 -14
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/types/supplies_list_response.py +0 -20
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/types/supply_package_response.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/orders_fbw/types/transit_directions_response.py +0 -15
- wbapi_async-0.2.2/src/wbapi_async/products/__init__.py +0 -104
- wbapi_async-0.2.2/src/wbapi_async/products/enums/__init__.py +0 -4
- wbapi_async-0.2.2/src/wbapi_async/products/methods/__init__.py +0 -102
- wbapi_async-0.2.2/src/wbapi_async/products/methods/create_product_cards_with_merge.py +0 -33
- wbapi_async-0.2.2/src/wbapi_async/products/methods/list_of_failed_product_cards_with_errors.py +0 -35
- wbapi_async-0.2.2/src/wbapi_async/products/methods/product_cards_in_trash_list.py +0 -26
- wbapi_async-0.2.2/src/wbapi_async/products/methods/product_cards_list.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/products/methods/set_prices_and_discounts.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/products/methods/set_size_prices.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/products/methods/set_wb_club_discounts.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/products/methods/update_contacts_list.py +0 -26
- wbapi_async-0.2.2/src/wbapi_async/products/methods/update_inventory.py +0 -26
- wbapi_async-0.2.2/src/wbapi_async/products/types/__init__.py +0 -102
- wbapi_async-0.2.2/src/wbapi_async/products/types/limits_for_the_product_cards_response.py +0 -14
- wbapi_async-0.2.2/src/wbapi_async/products/types/offices_response.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/products/types/processed_upload_state_response.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/products/types/product_cards_in_trash_list_item.py +0 -22
- wbapi_async-0.2.2/src/wbapi_async/products/types/product_cards_list_item.py +0 -29
- wbapi_async-0.2.2/src/wbapi_async/products/types/products_with_prices_by_articles_item.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/products/types/products_with_prices_item.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/products/types/set_prices_and_discounts_response.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/products/types/set_size_prices_response.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/products/types/set_wb_club_discounts_response.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/products/types/unprocessed_upload_state_response.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/products/types/warehouses_response.py +0 -15
- wbapi_async-0.2.2/src/wbapi_async/promotion/__init__.py +0 -90
- wbapi_async-0.2.2/src/wbapi_async/promotion/enums/__init__.py +0 -8
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/__init__.py +0 -80
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/active_and_inactive_search_cluster_lists.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/add_product_to_the_promotion.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/changing_campaigns_bids.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/changing_placements_in_campaigns_with_custom_bid.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/changing_the_list_of_product_cards_in_campaigns.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/create_campaign.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/daily_search_clusters_statistics.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/delete_bids_from_search_clusters.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/get_campaigns_information.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/list_of_campaign_minus_phrases.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/list_of_search_clusters_bids.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/media_campaign_statistics.py +0 -18
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/minimum_bids_for_product_cards.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/product_cards_for_campaigns.py +0 -17
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/search_clusters_statistics.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/promotion/methods/set_bids_for_search_clusters.py +0 -25
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/__init__.py +0 -82
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/active_and_inactive_search_cluster_lists_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/add_product_to_the_promotion_response.py +0 -11
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/campaigns_information_item.py +0 -16
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/campaigns_lists_item.py +0 -14
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/changing_campaigns_bids_item.py +0 -12
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/changing_the_list_of_product_cards_in_campaigns_item.py +0 -12
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/daily_search_clusters_statistics_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/information_about_media_campaign_item.py +0 -35
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/media_campaigns_number_response.py +0 -12
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/minimum_bids_for_product_cards_item.py +0 -12
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/promotions_details_item.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/promotions_list_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/recommended_bids_for_items_and_search_clusters_item.py +0 -14
- wbapi_async-0.2.2/src/wbapi_async/promotion/types/search_clusters_statistics_item.py +0 -13
- wbapi_async-0.2.2/src/wbapi_async/reports/__init__.py +0 -44
- wbapi_async-0.2.2/src/wbapi_async/reports/enums/__init__.py +0 -10
- wbapi_async-0.2.2/src/wbapi_async/reports/methods/__init__.py +0 -40
- wbapi_async-0.2.2/src/wbapi_async/reports/methods/get_blocked_product_cards.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/reports/methods/get_goods_return.py +0 -23
- wbapi_async-0.2.2/src/wbapi_async/reports/methods/get_hidden_from_the_catalog.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/reports/methods/get_substitutions_and_incorrect_attachments.py +0 -30
- wbapi_async-0.2.2/src/wbapi_async/reports/methods/report_on_products_with_mandatory_labeling.py +0 -24
- wbapi_async-0.2.2/src/wbapi_async/reports/types/__init__.py +0 -38
- wbapi_async-0.2.2/src/wbapi_async/reports/types/check_the_status_response.py +0 -11
- wbapi_async-0.2.2/src/wbapi_async/reports/types/generate_the_report_response.py +0 -11
- wbapi_async-0.2.2/src/wbapi_async/reports/types/goods_return_item.py +0 -27
- wbapi_async-0.2.2/src/wbapi_async/reports/types/orders_response.py +0 -35
- wbapi_async-0.2.2/src/wbapi_async/reports/types/sales_response.py +0 -36
- wbapi_async-0.2.2/src/wbapi_async/types/__init__.py +0 -608
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/.gitignore +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/LICENSE +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/README.md +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/enums/aggregation_level.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/enums/position_cluster.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/enums/top_order_by.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/methods/get_the_report.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/methods/get_the_reports_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/types/create_the_report_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/types/regenerate_the_report_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/types/the_report_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/analytics/types/the_reports_list_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/client/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/client/session/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/client/session/base.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/client/session/headers.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/enums/order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/enums/pin_on.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/enums/state.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/answer_buyers_application.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/edit_response_to_feedback.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_buyers_return_applications.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_chat_events.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_chat_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_file_from_the_message.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_number_of_feedbacks.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_number_of_questions.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_pinned_feedback_limits.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_question_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_the_feedback_by_id.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_the_question_by_id.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_unanswered_feedbacks.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_unanswered_questions.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/get_unseen_feedbacks_and_questions.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/pin_feedback.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/reply_to_feedback.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/return_product_by_feedback_id.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/send_message.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/unpin_feedback.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/methods/working_with_questions.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/answer_buyers_application_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/buyers_return_applications_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/edit_response_to_feedback_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/file_from_the_message_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/number_of_feedbacks_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/number_of_questions_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/reply_to_feedback_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/return_product_by_feedback_id_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/send_message_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/the_feedback_by_id_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/the_question_by_id_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/unanswered_feedbacks_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/unanswered_questions_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/unseen_feedbacks_and_questions_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/communications/types/working_with_questions_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/exceptions.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/finances/enums/period.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/general → wbapi_async-0.2.3/src/wbapi_async/finances}/enums/sort_list_.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/finances/methods/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/finances/methods/get_document.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/finances/methods/get_documents_categories.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/finances/methods/get_sellers_balance.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/finances/types/documents_categories_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/finances/types/documents_list_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/finances/types/sellers_balance_response.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/promotion → wbapi_async-0.2.3/src/wbapi_async/general}/enums/bid_type.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/orders_fbs → wbapi_async-0.2.3/src/wbapi_async/general}/enums/height.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/enums/height_stickers.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/products → wbapi_async-0.2.3/src/wbapi_async/general}/enums/locale.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/promotion → wbapi_async-0.2.3/src/wbapi_async/general}/enums/payment_type.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/reports → wbapi_async-0.2.3/src/wbapi_async/general}/enums/sort.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/reports → wbapi_async-0.2.3/src/wbapi_async/general}/enums/sort_blocked.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/reports → wbapi_async-0.2.3/src/wbapi_async/general}/enums/sort_shadowed.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/orders_fbs → wbapi_async-0.2.3/src/wbapi_async/general}/enums/type_.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/enums/type__stickers.py +0 -0
- {wbapi_async-0.2.2/src/wbapi_async/orders_fbs → wbapi_async-0.2.3/src/wbapi_async/general}/enums/width.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/enums/width_stickers.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/methods/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/methods/delete_user.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/methods/get_a_list_of_seller_active_or_invited_users.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/methods/get_connection_check.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/methods/get_getting_seller_portal_news.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/methods/get_seller_information.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/types/create_an_invitation_for_a_new_user_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/types/delete_user_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/types/seller_information_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/general/types/update_users_access_permissions_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/methods/assign_a_data_matrix_code_to_the_assembly_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/methods/cancel_the_assembly_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/methods/get_new_assembly_orders_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/methods/get_retrieve_information_on_completed_assembly_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/methods/notify_that_the_assembly_order_is_ready_for_pickup.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/methods/notify_that_the_assembly_orders_are_ready_for_pickup.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/methods/notify_that_the_buyer_refused_the_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/methods/notify_that_the_orders_were_received_by_the_buyers.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/types/assign_a_data_matrix_code_to_the_assembly_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/types/check_if_the_order_belongs_to_the_buyer_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/types/notify_that_the_assembly_order_is_ready_for_pickup_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/in_store_pickup/types/notify_that_the_buyer_refused_the_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/methods/base.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/methods/get_product_detail.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/methods/pagination.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/methods/cancel_assembly_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/methods/delete_assembly_orders_metadata.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/methods/get_assembly_order_statuses.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/methods/get_information_on_paid_delivery.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/methods/get_new_orders_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/methods/notify_that_the_buyer_has_declined_the_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/methods/notify_that_the_order_has_been_accepted_by_the_buyer.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/types/add_custom_declaration_to_the_orders_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/types/information_on_paid_delivery_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/types/notify_that_the_buyer_has_declined_the_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/types/notify_that_the_order_has_been_accepted_by_the_buyer_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbs/types/stickers_for_assembly_orders_with_delivery_to_pickup_point_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/add_data_matrix_code_to_the_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/add_gtin_to_the_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/add_imei_to_the_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/add_uin_unique_identification_number_to_the_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/cancel_the_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/delete_order_metadata.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/get_information_on_completed_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/get_new_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/get_order_metadata.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/get_orders_statuses.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/transfer_to_assembly.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/methods/transfer_to_delivery.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/add_data_matrix_code_to_the_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/add_gtin_to_the_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/add_imei_to_the_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/add_uin_unique_identification_number_to_the_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/buyer_information_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/cancel_the_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/delete_order_metadata_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/delivery_date_and_time_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/order_metadata_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/orders_statuses_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/orders_stickers_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/transfer_to_assembly_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_dbw/types/transfer_to_delivery_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/add_assembly_orders_to_the_supply.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/add_boxes_to_the_supply.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/add_custom_declaration_number_to_the_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/add_data_matrix_code_to_the_assembly_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/add_expiration_date_to_the_assembly_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/add_gtin_to_the_assembly_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/add_imei_to_the_assembly_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/add_uin_unique_identification_number_to_the_assembly_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/cancel_the_assembly_order.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/create_a_new_supply.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/create_pass.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/delete_assembly_order_metadata.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/delete_boxes_from_the_supply.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/delete_the_pass.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/delete_the_supply.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_a_supplies_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_all_assembly_orders_for_reshipment.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_assembly_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_assembly_orders_metadata.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_assembly_orders_statuses.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_new_assembly_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_offices_for_pass.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_passes.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_stickers_for_crossborder_assembly_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_supply_assembly_order_ids.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_supply_boxes_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/get_supply_details.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/move_the_supply_to_the_delivery.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/methods/update_pass.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/add_assembly_orders_to_the_supply_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/add_boxes_to_the_supply_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/add_custom_declaration_number_to_the_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/add_data_matrix_code_to_the_assembly_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/add_expiration_date_to_the_assembly_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/add_gtin_to_the_assembly_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/add_imei_to_the_assembly_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/add_uin_unique_identification_number_to_the_assembly_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/all_assembly_orders_for_reshipment_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/assembly_orders_stickers_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/cancel_the_assembly_order_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/create_a_new_supply_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/create_pass_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/delete_assembly_order_metadata_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/delete_boxes_from_the_supply_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/delete_the_pass_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/delete_the_supply_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/move_the_supply_to_the_delivery_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/offices_for_pass_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/orders_with_client_information_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/passes_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/stickers_for_crossborder_assembly_orders_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/supply_assembly_order_ids_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/supply_boxes_list_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/the_supply_box_qr_code_stickers_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/the_supply_qr_code_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbs/types/update_pass_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbw/methods/get_supply_package.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbw/methods/get_supply_products.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbw/methods/get_transit_directions.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbw/methods/get_warehouses_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbw/types/supply_products_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/orders_fbw/types/warehouses_list_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/create_a_tag.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/create_product_cards.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/create_warehouse.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/delete_inventory.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/delete_the_tag.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/delete_warehouse.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/generation_of_skus.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_brands.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_color.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_contacts_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_country_of_origin.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_gender.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_hscodes.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_inventory.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_limits_for_the_product_cards.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_offices.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_processed_upload_details.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_processed_upload_state.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_product_sizes_with_prices.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_products_in_quarantine.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_products_parent_categories.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_products_with_prices.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_products_with_prices_by_articles.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_season.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_subject_characteristics.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_subjects_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_tags_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_unprocessed_upload_details.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_unprocessed_upload_state.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_vat_rate.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/get_warehouses.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/merging_or_separating_of_product_cards.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/recover_product_card_from_trash.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/tag_management_in_the_product_card.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/transfer_product_card_to_trash.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/update_product_cards.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/update_the_tag.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/update_warehouse.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/upload_media_file.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/methods/upload_media_files_via_links.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/brands_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/color_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/contacts_list_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/country_of_origin_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/create_a_tag_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/create_product_cards_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/create_product_cards_with_merge_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/create_warehouse_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/delete_inventory_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/delete_the_tag_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/delete_warehouse_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/gender_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/generation_of_skus_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/hscodes_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/inventory_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/list_of_failed_product_cards_with_errors_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/merging_or_separating_of_product_cards_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/processed_upload_details_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/product_sizes_with_prices_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/products_in_quarantine_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/products_parent_categories_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/recover_product_card_from_trash_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/season_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/subject_characteristics_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/subjects_list_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/tag_management_in_the_product_card_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/tags_list_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/transfer_product_card_to_trash_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/unprocessed_upload_details_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/update_contacts_list_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/update_inventory_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/update_product_cards_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/update_the_tag_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/update_warehouse_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/upload_media_file_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/upload_media_files_via_links_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/products/types/vat_rate_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_balance.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_campaign_budget.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_campaigns_lists.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_campaigns_statistics.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_delete_campaign.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_information_about_media_campaign.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_launch_campaign.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_list_of_media_campaigns.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_list_of_products_for_participating_in_the_promotion.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_media_campaigns_number.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_pause_campaign.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_promotions_details.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_promotions_list.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_receiving_costs_history.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_receiving_the_history_of_account_topups.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_recommended_bids_for_items_and_search_clusters.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_stop_campaign.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/get_subjects_for_campaigns.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/rename_campaign.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/setting_and_deleting_minus_phrases.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/methods/topup_of_the_campaign_budget.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/balance_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/campaign_budget_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/campaigns_statistics_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/changing_placements_in_campaigns_with_custom_bid_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/create_campaign_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/delete_bids_from_search_clusters_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/delete_campaign_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/launch_campaign_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/list_of_campaign_minus_phrases_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/list_of_media_campaigns_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/list_of_products_for_participating_in_the_promotion_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/list_of_search_clusters_bids_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/media_campaign_statistics_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/pause_campaign_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/product_cards_for_campaigns_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/receiving_costs_history_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/receiving_the_history_of_account_topups_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/rename_campaign_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/set_bids_for_search_clusters_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/setting_and_deleting_minus_phrases_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/stop_campaign_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/subjects_for_campaigns_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/promotion/types/topup_of_the_campaign_budget_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/py.typed +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_check_the_status.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_create_the_report.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_generate_the_report.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_logistics_and_storage_costs_multiplier.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_orders.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_parent_categories_of_the_brand.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_product_labeling.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_report.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_sales.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_selfpurchases.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_seller_brands.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_warehouse.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/methods/get_warehouse_measurements.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/blocked_product_cards_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/hidden_from_the_catalog_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/logistics_and_storage_costs_multiplier_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/parent_categories_of_the_brand_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/product_labeling_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/report_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/report_on_products_with_mandatory_labeling_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/selfpurchases_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/seller_brands_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/substitutions_and_incorrect_attachments_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/warehouse_measurements_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/reports/types/warehouse_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/methods/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/methods/get_box_tariffs.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/methods/get_pallet_tariffs.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/methods/get_product_category_commission.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/methods/get_return_tariffs.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/methods/get_supply_tariffs.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/types/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/types/box_tariffs_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/types/pallet_tariffs_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/types/product_category_commission_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/types/return_tariffs_item.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/tariffs/types/supply_tariffs_response.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/types/base.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/types/error.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/types/product_detail.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/types/request_limit.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/utils/__init__.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/utils/paginate.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/utils/token.py +0 -0
- {wbapi_async-0.2.2 → wbapi_async-0.2.3}/src/wbapi_async/utils/unofficial.py +0 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wbapi-async
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Summary: Asynchronous client for Wildberries API
|
|
5
|
+
Project-URL: Documentation, https://serdukow.github.io/wbapi-async/
|
|
6
|
+
Project-URL: Repository, https://github.com/serdukow/wbapi-async
|
|
7
|
+
Project-URL: Changelog, https://github.com/serdukow/wbapi-async/blob/main/CHANGELOG.md
|
|
8
|
+
Project-URL: Issues, https://github.com/serdukow/wbapi-async/issues
|
|
9
|
+
Author-email: Andrei Serdiukov <asyncdf@gmail.com>
|
|
10
|
+
Maintainer-email: Andrei Serdiukov <asyncdf@gmail.com>
|
|
11
|
+
License: MIT
|
|
12
|
+
License-File: LICENSE
|
|
13
|
+
Keywords: api,async,client,wb,wildberries
|
|
14
|
+
Classifier: Development Status :: 4 - Beta
|
|
15
|
+
Classifier: Framework :: AsyncIO
|
|
16
|
+
Classifier: Framework :: Pydantic :: 2
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
19
|
+
Classifier: Programming Language :: Python :: 3
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Typing :: Typed
|
|
25
|
+
Requires-Python: <3.14,>=3.11
|
|
26
|
+
Requires-Dist: aiolimiter<2.0.0,>=1.2.1
|
|
27
|
+
Requires-Dist: httpx<0.29.0,>=0.28.1
|
|
28
|
+
Requires-Dist: pydantic<2.12.2,>=2.4.1
|
|
29
|
+
Provides-Extra: dev
|
|
30
|
+
Requires-Dist: pre-commit<5.0.0,>=4.3.0; extra == 'dev'
|
|
31
|
+
Requires-Dist: ruff<0.15.0,>=0.14.1; extra == 'dev'
|
|
32
|
+
Provides-Extra: docs
|
|
33
|
+
Requires-Dist: mkdocs-material>=9.6.0; extra == 'docs'
|
|
34
|
+
Requires-Dist: mkdocstrings[python]>=0.29.0; extra == 'docs'
|
|
35
|
+
Provides-Extra: lint
|
|
36
|
+
Requires-Dist: pre-commit<5.0.0,>=4.3.0; extra == 'lint'
|
|
37
|
+
Requires-Dist: ruff<0.15.0,>=0.14.1; extra == 'lint'
|
|
38
|
+
Provides-Extra: test
|
|
39
|
+
Requires-Dist: pytest-asyncio<2.0.0,>=1.2.0; extra == 'test'
|
|
40
|
+
Requires-Dist: pytest-httpx<0.37.0,>=0.35.0; extra == 'test'
|
|
41
|
+
Requires-Dist: pytest<9.0.0,>=8.4.2; extra == 'test'
|
|
42
|
+
Requires-Dist: python-dotenv<2.0.0,>=1.2.1; extra == 'test'
|
|
43
|
+
Description-Content-Type: text/markdown
|
|
44
|
+
|
|
45
|
+
<p align="center">
|
|
46
|
+
<a href="https://dev.wildberries.ru/"><img src="https://upload.wikimedia.org/wikipedia/commons/4/41/Wildberries_2023_Pink.svg" alt="WbAPI"></a>
|
|
47
|
+
</p>
|
|
48
|
+
|
|
49
|
+
<div align="center">
|
|
50
|
+
|
|
51
|
+
## Asynchronous client for Wildberries API
|
|
52
|
+
|
|
53
|
+
[](https://opensource.org/licenses/MIT)
|
|
54
|
+
[](https://pypi.org/project/wild-api/)
|
|
55
|
+
[](https://pypi.python.org/pypi/wild-api)
|
|
56
|
+
[](https://serdukow.github.io/wbapi-async/)
|
|
57
|
+
[]()
|
|
58
|
+
|
|
59
|
+
</div>
|
|
60
|
+
|
|
61
|
+
> [!CAUTION]
|
|
62
|
+
> The library is under active development and **is currently not recommended for use in production environments**
|
|
63
|
+
|
|
64
|
+
## Features
|
|
65
|
+
|
|
66
|
+
- **Fully async** — built on `httpx` and `asyncio`
|
|
67
|
+
- **Type-safe** — Pydantic v2 models with `py.typed` marker
|
|
68
|
+
- **Auto-pagination** — fetch all pages with a single `await paginate(...)`
|
|
69
|
+
- **Rate limiting** — per-method limits with `aiolimiter`
|
|
70
|
+
- **Auto-retry** — automatic retry on HTTP 429
|
|
71
|
+
- **Always up to date** — methods are [auto-generated](https://github.com/serdukow/wbapi-codegen) from [wb api](https://dev.wildberries.ru) as soon as they change
|
|
72
|
+
|
|
73
|
+
## Docs
|
|
74
|
+
|
|
75
|
+
**[wbapi-async](https://serdukow.github.io/wbapi-async/)**
|
|
76
|
+
|
|
77
|
+
**[WB API](https://dev.wildberries.ru)**
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "wbapi-async"
|
|
7
|
+
version = "0.2.3"
|
|
8
|
+
description = "Asynchronous client for Wildberries API"
|
|
9
|
+
authors = [
|
|
10
|
+
{ name = "Andrei Serdiukov", email = "asyncdf@gmail.com" },
|
|
11
|
+
]
|
|
12
|
+
maintainers = [
|
|
13
|
+
{ name = "Andrei Serdiukov", email = "asyncdf@gmail.com" },
|
|
14
|
+
]
|
|
15
|
+
readme = "README.md"
|
|
16
|
+
requires-python = ">=3.11,<3.14"
|
|
17
|
+
license = {text = "MIT"}
|
|
18
|
+
keywords = ["wb", "wildberries", "api", "client", "async"]
|
|
19
|
+
classifiers = [
|
|
20
|
+
"Development Status :: 4 - Beta",
|
|
21
|
+
"Intended Audience :: Developers",
|
|
22
|
+
"License :: OSI Approved :: MIT License",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Programming Language :: Python :: 3.13",
|
|
27
|
+
"Framework :: AsyncIO",
|
|
28
|
+
"Framework :: Pydantic :: 2",
|
|
29
|
+
"Typing :: Typed",
|
|
30
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
31
|
+
]
|
|
32
|
+
dependencies = [
|
|
33
|
+
"aiolimiter (>=1.2.1,<2.0.0)",
|
|
34
|
+
"httpx (>=0.28.1,<0.29.0)",
|
|
35
|
+
"pydantic (>=2.4.1,<2.12.2)",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[project.optional-dependencies]
|
|
39
|
+
dev = [
|
|
40
|
+
"ruff (>=0.14.1,<0.15.0)",
|
|
41
|
+
"pre-commit (>=4.3.0,<5.0.0)",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
test = [
|
|
45
|
+
"pytest (>=8.4.2,<9.0.0)",
|
|
46
|
+
"pytest-asyncio (>=1.2.0,<2.0.0)",
|
|
47
|
+
"pytest-httpx (>=0.35.0,<0.37.0)",
|
|
48
|
+
"python-dotenv (>=1.2.1,<2.0.0)"
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
lint = [
|
|
52
|
+
"ruff (>=0.14.1,<0.15.0)",
|
|
53
|
+
"pre-commit (>=4.3.0,<5.0.0)",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
docs = [
|
|
57
|
+
"mkdocs-material (>=9.6.0)",
|
|
58
|
+
"mkdocstrings[python] (>=0.29.0)",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[project.urls]
|
|
62
|
+
Documentation = "https://serdukow.github.io/wbapi-async/"
|
|
63
|
+
Repository = "https://github.com/serdukow/wbapi-async"
|
|
64
|
+
Changelog = "https://github.com/serdukow/wbapi-async/blob/main/CHANGELOG.md"
|
|
65
|
+
Issues = "https://github.com/serdukow/wbapi-async/issues"
|
|
66
|
+
|
|
67
|
+
[tool.hatch.build.targets.sdist]
|
|
68
|
+
only-include = [
|
|
69
|
+
"src/wbapi_async",
|
|
70
|
+
"README.md",
|
|
71
|
+
"pyproject.toml"
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[tool.hatch.build.targets.wheel]
|
|
75
|
+
packages = ["src/wbapi_async"]
|
|
76
|
+
|
|
77
|
+
[tool.ruff]
|
|
78
|
+
exclude = [
|
|
79
|
+
".git",
|
|
80
|
+
"build",
|
|
81
|
+
"dist",
|
|
82
|
+
"venv",
|
|
83
|
+
".venv",
|
|
84
|
+
"docs",
|
|
85
|
+
"tests",
|
|
86
|
+
"dev",
|
|
87
|
+
"scripts",
|
|
88
|
+
"*.egg-info",
|
|
89
|
+
]
|
|
90
|
+
line-length = 110
|
|
91
|
+
target-version = "py313"
|
|
92
|
+
|
|
93
|
+
[tool.ruff.lint]
|
|
94
|
+
select = ["E", "F", "I", "UP", "C4", "B", "RUF100"]
|
|
95
|
+
fixable = ["ALL"]
|
|
96
|
+
|
|
97
|
+
[tool.ruff.lint.isort]
|
|
98
|
+
known-first-party = ["wbapi_async"]
|
|
99
|
+
force-sort-within-sections = true
|
|
100
|
+
order-by-type = true
|
|
101
|
+
combine-as-imports = true
|
|
102
|
+
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
|
|
103
|
+
lines-between-types = 1
|
|
104
|
+
lines-after-imports = 2
|
|
105
|
+
|
|
106
|
+
[tool.ruff.lint.pep8-naming]
|
|
107
|
+
classmethod-decorators = ["classmethod"]
|
|
108
|
+
staticmethod-decorators = ["staticmethod"]
|
|
109
|
+
|
|
110
|
+
[tool.ruff.format]
|
|
111
|
+
quote-style = "double"
|
|
112
|
+
indent-style = "space"
|
|
113
|
+
line-ending = "lf"
|
|
114
|
+
skip-magic-trailing-comma = false
|
|
115
|
+
docstring-code-format = true
|
|
116
|
+
docstring-code-line-length = 60
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
[tool.pytest.ini_options]
|
|
120
|
+
addopts = "-vv -s --log-cli-level=DEBUG"
|
|
121
|
+
asyncio_mode = "auto"
|
|
122
|
+
markers = [
|
|
123
|
+
"unit: unit tests",
|
|
124
|
+
"integration: integration tests",
|
|
125
|
+
"slow: slow running tests"
|
|
126
|
+
]
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
from .enums.aggregation_level import AggregationLevel
|
|
2
|
+
from .enums.availability_filters_item import AvailabilityFiltersItem
|
|
3
|
+
from .enums.field import Field
|
|
4
|
+
from .enums.mode import Mode
|
|
5
|
+
from .enums.position_cluster import PositionCluster
|
|
6
|
+
from .enums.stock_type import StockType
|
|
7
|
+
from .enums.top_order_by import TopOrderBy
|
|
8
|
+
from .types.avg_stock_turnover import AvgStockTurnover
|
|
9
|
+
from .types.comparison import Comparison
|
|
10
|
+
from .types.conversions import Conversions
|
|
11
|
+
from .types.create_the_report_response import CreateTheReportResponse
|
|
12
|
+
from .types.current_period import CurrentPeriod
|
|
13
|
+
from .types.float_graph_by_period_item import FloatGraphByPeriodItem
|
|
14
|
+
from .types.group_data_item import GroupDataItem
|
|
15
|
+
from .types.grouped_product_cards_statistics_per_days_item import GroupedProductCardsStatisticsPerDaysItem
|
|
16
|
+
from .types.history import History
|
|
17
|
+
from .types.main_page_response import MainPageResponse
|
|
18
|
+
from .types.metrics import Metrics
|
|
19
|
+
from .types.office_missing_time import OfficeMissingTime
|
|
20
|
+
from .types.offices_item import OfficesItem
|
|
21
|
+
from .types.order_by import OrderBy
|
|
22
|
+
from .types.orders_and_positions_by_product_search_texts_response import (
|
|
23
|
+
OrdersAndPositionsByProductSearchTextsResponse,
|
|
24
|
+
)
|
|
25
|
+
from .types.pagination_by_groups_response import PaginationByGroupsResponse
|
|
26
|
+
from .types.pagination_by_products_within_a_group_response import PaginationByProductsWithinAGroupResponse
|
|
27
|
+
from .types.past import Past
|
|
28
|
+
from .types.past_period import PastPeriod
|
|
29
|
+
from .types.period import Period
|
|
30
|
+
from .types.product import Product
|
|
31
|
+
from .types.product_cards_statistics_per_days_response import ProductCardsStatisticsPerDaysResponse
|
|
32
|
+
from .types.product_cards_statistics_per_period_item import ProductCardsStatisticsPerPeriodItem
|
|
33
|
+
from .types.product_data_item import ProductDataItem
|
|
34
|
+
from .types.regenerate_the_report_response import RegenerateTheReportResponse
|
|
35
|
+
from .types.sale_rate import SaleRate
|
|
36
|
+
from .types.search_texts_by_product_response import SearchTextsByProductResponse
|
|
37
|
+
from .types.selected import Selected
|
|
38
|
+
from .types.selected_period import SelectedPeriod
|
|
39
|
+
from .types.size_data_item import SizeDataItem
|
|
40
|
+
from .types.statistic import Statistic
|
|
41
|
+
from .types.stocks import Stocks
|
|
42
|
+
from .types.table_product_item_st import TableProductItemSt
|
|
43
|
+
from .types.tag import Tag
|
|
44
|
+
from .types.the_report_response import TheReportResponse
|
|
45
|
+
from .types.the_reports_list_item import TheReportsListItem
|
|
46
|
+
from .types.time_to_ready import TimeToReady
|
|
47
|
+
from .types.time_to_ready_dynamic import TimeToReadyDynamic
|
|
48
|
+
from .types.warehouse_data_item import WarehouseDataItem
|
|
49
|
+
from .types.wb_club import WbClub
|
|
50
|
+
from .types.wb_club_dynamic import WbClubDynamic
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
__all__ = (
|
|
54
|
+
"AggregationLevel",
|
|
55
|
+
"AvailabilityFiltersItem",
|
|
56
|
+
"AvgStockTurnover",
|
|
57
|
+
"Comparison",
|
|
58
|
+
"Conversions",
|
|
59
|
+
"CreateTheReportResponse",
|
|
60
|
+
"CurrentPeriod",
|
|
61
|
+
"Field",
|
|
62
|
+
"FloatGraphByPeriodItem",
|
|
63
|
+
"GroupDataItem",
|
|
64
|
+
"GroupedProductCardsStatisticsPerDaysItem",
|
|
65
|
+
"History",
|
|
66
|
+
"MainPageResponse",
|
|
67
|
+
"Metrics",
|
|
68
|
+
"Mode",
|
|
69
|
+
"OfficeMissingTime",
|
|
70
|
+
"OfficesItem",
|
|
71
|
+
"OrderBy",
|
|
72
|
+
"OrdersAndPositionsByProductSearchTextsResponse",
|
|
73
|
+
"PaginationByGroupsResponse",
|
|
74
|
+
"PaginationByProductsWithinAGroupResponse",
|
|
75
|
+
"Past",
|
|
76
|
+
"PastPeriod",
|
|
77
|
+
"Period",
|
|
78
|
+
"PositionCluster",
|
|
79
|
+
"Product",
|
|
80
|
+
"ProductCardsStatisticsPerDaysResponse",
|
|
81
|
+
"ProductCardsStatisticsPerPeriodItem",
|
|
82
|
+
"ProductDataItem",
|
|
83
|
+
"RegenerateTheReportResponse",
|
|
84
|
+
"SaleRate",
|
|
85
|
+
"SearchTextsByProductResponse",
|
|
86
|
+
"Selected",
|
|
87
|
+
"SelectedPeriod",
|
|
88
|
+
"SizeDataItem",
|
|
89
|
+
"Statistic",
|
|
90
|
+
"Stocks",
|
|
91
|
+
"StockType",
|
|
92
|
+
"TableProductItemSt",
|
|
93
|
+
"Tag",
|
|
94
|
+
"TheReportResponse",
|
|
95
|
+
"TheReportsListItem",
|
|
96
|
+
"TimeToReady",
|
|
97
|
+
"TimeToReadyDynamic",
|
|
98
|
+
"TopOrderBy",
|
|
99
|
+
"WarehouseDataItem",
|
|
100
|
+
"WbClub",
|
|
101
|
+
"WbClubDynamic",
|
|
102
|
+
)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from .aggregation_level import AggregationLevel
|
|
2
|
+
from .availability_filters_item import AvailabilityFiltersItem
|
|
3
|
+
from .field import Field
|
|
4
|
+
from .mode import Mode
|
|
5
|
+
from .position_cluster import PositionCluster
|
|
6
|
+
from .stock_type import StockType
|
|
7
|
+
from .top_order_by import TopOrderBy
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
__all__ = (
|
|
11
|
+
"AggregationLevel",
|
|
12
|
+
"AvailabilityFiltersItem",
|
|
13
|
+
"Field",
|
|
14
|
+
"Mode",
|
|
15
|
+
"PositionCluster",
|
|
16
|
+
"StockType",
|
|
17
|
+
"TopOrderBy",
|
|
18
|
+
)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
from enum import StrEnum
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class Field(StrEnum):
|
|
5
|
+
"""Sort field:"""
|
|
6
|
+
|
|
7
|
+
OPENCARD = "openCard"
|
|
8
|
+
ADDTOCART = "addToCart"
|
|
9
|
+
ORDERCOUNT = "orderCount"
|
|
10
|
+
ORDERSUM = "orderSum"
|
|
11
|
+
BUYOUTCOUNT = "buyoutCount"
|
|
12
|
+
BUYOUTSUM = "buyoutSum"
|
|
13
|
+
CANCELCOUNT = "cancelCount"
|
|
14
|
+
CANCELSUM = "cancelSum"
|
|
15
|
+
AVGPRICE = "avgPrice"
|
|
16
|
+
STOCKMPQTY = "stockMpQty"
|
|
17
|
+
STOCKWBQTY = "stockWbQty"
|
|
18
|
+
SHAREORDERPERCENT = "shareOrderPercent"
|
|
19
|
+
ADDTOWISHLIST = "addToWishlist"
|
|
20
|
+
TIMETOREADY = "timeToReady"
|
|
21
|
+
LOCALIZATIONPERCENT = "localizationPercent"
|
|
22
|
+
WBCLUB_ORDERCOUNT = "wbClub.orderCount"
|
|
23
|
+
WBCLUB_ORDERSUM = "wbClub.orderSum"
|
|
24
|
+
WBCLUB_BUYOUTSUM = "wbClub.buyoutSum"
|
|
25
|
+
WBCLUB_CANCELSUM = "wbClub.cancelSum"
|
|
26
|
+
WBCLUB_BUYOUTCOUNT = "wbClub.buyoutCount"
|
|
27
|
+
WBCLUB_AVGPRICE = "wbClub.avgPrice"
|
|
28
|
+
WBCLUB_BUYOUTPERCENT = "wbClub.buyoutPercent"
|
|
29
|
+
WBCLUB_AVGORDERCOUNTPERDAY = "wbClub.avgOrderCountPerDay"
|
|
30
|
+
WBCLUB_CANCELCOUNT = "wbClub.cancelCount"
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
from .get_create_the_report import GetCreateTheReport
|
|
2
|
+
from .get_group_data import GetGroupData
|
|
3
|
+
from .get_grouped_product_cards_statistics_per_days import GetGroupedProductCardsStatisticsPerDays
|
|
4
|
+
from .get_main_page import GetMainPage
|
|
5
|
+
from .get_orders_and_positions_by_product_search_texts import GetOrdersAndPositionsByProductSearchTexts
|
|
6
|
+
from .get_pagination_by_groups import GetPaginationByGroups
|
|
7
|
+
from .get_pagination_by_products_within_a_group import GetPaginationByProductsWithinAGroup
|
|
8
|
+
from .get_product_cards_statistics_per_days import GetProductCardsStatisticsPerDays
|
|
9
|
+
from .get_product_cards_statistics_per_period import GetProductCardsStatisticsPerPeriod
|
|
10
|
+
from .get_product_data import GetProductData
|
|
11
|
+
from .get_regenerate_the_report import GetRegenerateTheReport
|
|
12
|
+
from .get_search_texts_by_product import GetSearchTextsByProduct
|
|
13
|
+
from .get_size_data import GetSizeData
|
|
14
|
+
from .get_the_report import GetTheReport
|
|
15
|
+
from .get_the_reports_list import GetTheReportsList
|
|
16
|
+
from .get_warehouse_data import GetWarehouseData
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
__all__ = (
|
|
20
|
+
"GetCreateTheReport",
|
|
21
|
+
"GetGroupData",
|
|
22
|
+
"GetGroupedProductCardsStatisticsPerDays",
|
|
23
|
+
"GetMainPage",
|
|
24
|
+
"GetOrdersAndPositionsByProductSearchTexts",
|
|
25
|
+
"GetPaginationByGroups",
|
|
26
|
+
"GetPaginationByProductsWithinAGroup",
|
|
27
|
+
"GetProductCardsStatisticsPerDays",
|
|
28
|
+
"GetProductCardsStatisticsPerPeriod",
|
|
29
|
+
"GetProductData",
|
|
30
|
+
"GetRegenerateTheReport",
|
|
31
|
+
"GetSearchTextsByProduct",
|
|
32
|
+
"GetSizeData",
|
|
33
|
+
"GetTheReport",
|
|
34
|
+
"GetTheReportsList",
|
|
35
|
+
"GetWarehouseData",
|
|
36
|
+
)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from ...methods.base import WbMethod
|
|
2
|
+
from ...types import CreateTheReportResponse, RequestLimit
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
class GetCreateTheReport(WbMethod):
|
|
6
|
+
"""
|
|
7
|
+
The method creates a task for generating a report with advanced seller analytics. You can
|
|
8
|
+
createa CSV-version of [sales funnel](/openapi/analytics#tag/Sales-Funnel) or [search
|
|
9
|
+
parameters](/openapi/analytics#tag/Search-Queries-for-Your-Items)report with grouping:
|
|
10
|
+
|
|
11
|
+
Source: https://dev.wildberries.ru/en/docs/openapi/analytics#tag/Seller-Analytics-CSV/paths/~1api~1v2~1nm-report~1downloads/post
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
__return__ = CreateTheReportResponse
|
|
15
|
+
__api__ = "seller-analytics-api"
|
|
16
|
+
__method__ = "api/v2/nm-report/downloads"
|
|
17
|
+
__http_method__ = "POST"
|
|
18
|
+
|
|
19
|
+
request_limit: RequestLimit = RequestLimit(period=60, limit=10, interval=600, burst=5)
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
from pydantic import Field
|
|
2
|
+
|
|
3
|
+
from ...methods.base import WbMethod
|
|
4
|
+
from ...types import CurrentPeriod, GroupDataItem, OrderBy, RequestLimit
|
|
5
|
+
from ..enums.availability_filters_item import AvailabilityFiltersItem
|
|
6
|
+
from ..enums.stock_type import StockType
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class GetGroupData(WbMethod):
|
|
10
|
+
"""
|
|
11
|
+
Forms a dataset for inventory by product group. The product group is described by a tuple of
|
|
12
|
+
`subjectID,brandName, tagID`.
|
|
13
|
+
|
|
14
|
+
Source: https://dev.wildberries.ru/en/docs/openapi/analytics#tag/Stocks-Report/paths/~1api~1v2~1stocks-report~1products~1groups/post
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
__return__ = GroupDataItem
|
|
18
|
+
__api__ = "seller-analytics-api"
|
|
19
|
+
__method__ = "api/v2/stocks-report/products/groups"
|
|
20
|
+
__http_method__ = "POST"
|
|
21
|
+
__data_key__ = "data.groups"
|
|
22
|
+
__pagination__ = "offset"
|
|
23
|
+
|
|
24
|
+
request_limit: RequestLimit = RequestLimit(period=60, limit=10, interval=600, burst=5)
|
|
25
|
+
|
|
26
|
+
nm_i_ds: list[int] | None = Field(None, alias="nmIDs")
|
|
27
|
+
subject_i_ds: list[int] | None = Field(None, alias="subjectIDs")
|
|
28
|
+
brand_names: list[str] | None = Field(None, alias="brandNames")
|
|
29
|
+
tag_i_ds: list[int] | None = Field(None, alias="tagIDs")
|
|
30
|
+
current_period: CurrentPeriod = Field(alias="currentPeriod")
|
|
31
|
+
stock_type: StockType = Field(alias="stockType")
|
|
32
|
+
skip_deleted_nm: bool = Field(alias="skipDeletedNm")
|
|
33
|
+
availability_filters: list[AvailabilityFiltersItem] = Field(alias="availabilityFilters")
|
|
34
|
+
order_by: OrderBy = Field(alias="orderBy")
|
|
35
|
+
limit: int | None = Field(100)
|
|
36
|
+
offset: int = Field()
|
wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_grouped_product_cards_statistics_per_days.py
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from pydantic import Field
|
|
2
|
+
|
|
3
|
+
from ...methods.base import WbMethod
|
|
4
|
+
from ...types import GroupedProductCardsStatisticsPerDaysItem, RequestLimit, SelectedPeriod
|
|
5
|
+
from ..enums.aggregation_level import AggregationLevel
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class GetGroupedProductCardsStatisticsPerDays(WbMethod):
|
|
9
|
+
"""
|
|
10
|
+
The method returns statistics for product cards by day or by week. Product cards are grouped by
|
|
11
|
+
subjects,brands and tags. You can get data for a maximum of the last week.
|
|
12
|
+
|
|
13
|
+
Source: https://dev.wildberries.ru/en/docs/openapi/analytics#tag/Sales-Funnel/paths/~1api~1analytics~1v3~1sales-funnel~1grouped~1history/post
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
__return__ = GroupedProductCardsStatisticsPerDaysItem
|
|
17
|
+
__api__ = "seller-analytics-api"
|
|
18
|
+
__method__ = "api/analytics/v3/sales-funnel/grouped/history"
|
|
19
|
+
__http_method__ = "POST"
|
|
20
|
+
__data_key__ = "data"
|
|
21
|
+
|
|
22
|
+
request_limit: RequestLimit = RequestLimit(period=60, limit=10, interval=600, burst=5)
|
|
23
|
+
|
|
24
|
+
selected_period: SelectedPeriod = Field(alias="selectedPeriod")
|
|
25
|
+
brand_names: list[str] | None = Field(None, alias="brandNames")
|
|
26
|
+
subject_ids: list[int] | None = Field(None, alias="subjectIds")
|
|
27
|
+
tag_ids: list[int] | None = Field(None, alias="tagIds")
|
|
28
|
+
skip_deleted_nm: bool | None = Field(None, alias="skipDeletedNm")
|
|
29
|
+
aggregation_level: AggregationLevel | None = Field(AggregationLevel.DAY, alias="aggregationLevel")
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
from pydantic import Field
|
|
2
|
+
|
|
3
|
+
from ...methods.base import WbMethod
|
|
4
|
+
from ...types import CurrentPeriod, MainPageResponse, OrderBy, PastPeriod, RequestLimit
|
|
5
|
+
from ..enums.position_cluster import PositionCluster
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class GetMainPage(WbMethod):
|
|
9
|
+
"""
|
|
10
|
+
Forms a dataset for the main report page with: - General information - Product positions - Data
|
|
11
|
+
onvisibility and transitions to the product card - Data for the table by groups
|
|
12
|
+
|
|
13
|
+
Source: https://dev.wildberries.ru/en/docs/openapi/analytics#tag/Search-Queries-for-Your-Items/paths/~1api~1v2~1search-report~1report/post
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
__return__ = MainPageResponse
|
|
17
|
+
__api__ = "seller-analytics-api"
|
|
18
|
+
__method__ = "api/v2/search-report/report"
|
|
19
|
+
__http_method__ = "POST"
|
|
20
|
+
__pagination__ = "offset"
|
|
21
|
+
|
|
22
|
+
request_limit: RequestLimit = RequestLimit(period=60, limit=10, interval=600, burst=5)
|
|
23
|
+
|
|
24
|
+
current_period: CurrentPeriod = Field(alias="currentPeriod")
|
|
25
|
+
past_period: PastPeriod | None = Field(None, alias="pastPeriod")
|
|
26
|
+
nm_ids: list[int] | None = Field(None, alias="nmIds")
|
|
27
|
+
subject_ids: list[int] | None = Field(None, alias="subjectIds")
|
|
28
|
+
brand_names: list[str] | None = Field(None, alias="brandNames")
|
|
29
|
+
tag_ids: list[int] | None = Field(None, alias="tagIds")
|
|
30
|
+
position_cluster: PositionCluster = Field(alias="positionCluster")
|
|
31
|
+
order_by: OrderBy = Field(alias="orderBy")
|
|
32
|
+
include_substituted_sk_us: bool | None = Field(True, alias="includeSubstitutedSKUs")
|
|
33
|
+
include_search_texts: bool | None = Field(True, alias="includeSearchTexts")
|
|
34
|
+
limit: int = Field()
|
|
35
|
+
offset: int = Field()
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from pydantic import Field
|
|
2
|
+
|
|
3
|
+
from ...finances.enums.period import Period
|
|
4
|
+
from ...methods.base import WbMethod
|
|
5
|
+
from ...types import OrdersAndPositionsByProductSearchTextsResponse, RequestLimit
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class GetOrdersAndPositionsByProductSearchTexts(WbMethod):
|
|
9
|
+
"""
|
|
10
|
+
Forms data for a table on the number of orders and positions by queries. The data is specified
|
|
11
|
+
withina period for a specific product.
|
|
12
|
+
|
|
13
|
+
Source: https://dev.wildberries.ru/en/docs/openapi/analytics#tag/Search-Queries-for-Your-Items/paths/~1api~1v2~1search-report~1product~1orders/post
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
__return__ = OrdersAndPositionsByProductSearchTextsResponse
|
|
17
|
+
__api__ = "seller-analytics-api"
|
|
18
|
+
__method__ = "api/v2/search-report/product/orders"
|
|
19
|
+
__http_method__ = "POST"
|
|
20
|
+
|
|
21
|
+
request_limit: RequestLimit = RequestLimit(period=60, limit=10, interval=600, burst=5)
|
|
22
|
+
|
|
23
|
+
period: Period = Field()
|
|
24
|
+
nm_id: int = Field(alias="nmId")
|
|
25
|
+
search_texts: list[str] = Field(alias="searchTexts")
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
from pydantic import Field
|
|
2
|
+
|
|
3
|
+
from ...methods.base import WbMethod
|
|
4
|
+
from ...types import CurrentPeriod, OrderBy, PaginationByGroupsResponse, PastPeriod, RequestLimit
|
|
5
|
+
from ..enums.position_cluster import PositionCluster
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class GetPaginationByGroups(WbMethod):
|
|
9
|
+
"""
|
|
10
|
+
Pagination by groups in the report. It is possible only if there is a filter by brand, subject,
|
|
11
|
+
ortag.
|
|
12
|
+
|
|
13
|
+
Source: https://dev.wildberries.ru/en/docs/openapi/analytics#tag/Search-Queries-for-Your-Items/paths/~1api~1v2~1search-report~1table~1groups/post
|
|
14
|
+
"""
|
|
15
|
+
|
|
16
|
+
__return__ = PaginationByGroupsResponse
|
|
17
|
+
__api__ = "seller-analytics-api"
|
|
18
|
+
__method__ = "api/v2/search-report/table/groups"
|
|
19
|
+
__http_method__ = "POST"
|
|
20
|
+
__pagination__ = "offset"
|
|
21
|
+
|
|
22
|
+
request_limit: RequestLimit = RequestLimit(period=60, limit=10, interval=600, burst=5)
|
|
23
|
+
|
|
24
|
+
current_period: CurrentPeriod = Field(alias="currentPeriod")
|
|
25
|
+
past_period: PastPeriod | None = Field(None, alias="pastPeriod")
|
|
26
|
+
nm_ids: list[int] | None = Field(None, alias="nmIds")
|
|
27
|
+
subject_ids: list[int] | None = Field(None, alias="subjectIds")
|
|
28
|
+
brand_names: list[str] | None = Field(None, alias="brandNames")
|
|
29
|
+
tag_ids: list[int] | None = Field(None, alias="tagIds")
|
|
30
|
+
order_by: OrderBy = Field(alias="orderBy")
|
|
31
|
+
position_cluster: PositionCluster = Field(alias="positionCluster")
|
|
32
|
+
include_substituted_sk_us: bool | None = Field(True, alias="includeSubstitutedSKUs")
|
|
33
|
+
include_search_texts: bool | None = Field(True, alias="includeSearchTexts")
|
|
34
|
+
limit: int = Field()
|
|
35
|
+
offset: int = Field()
|
wbapi_async-0.2.3/src/wbapi_async/analytics/methods/get_pagination_by_products_within_a_group.py
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
from pydantic import Field
|
|
2
|
+
|
|
3
|
+
from ...methods.base import WbMethod
|
|
4
|
+
from ...types import (
|
|
5
|
+
CurrentPeriod,
|
|
6
|
+
OrderBy,
|
|
7
|
+
PaginationByProductsWithinAGroupResponse,
|
|
8
|
+
PastPeriod,
|
|
9
|
+
RequestLimit,
|
|
10
|
+
)
|
|
11
|
+
from ..enums.position_cluster import PositionCluster
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class GetPaginationByProductsWithinAGroup(WbMethod):
|
|
15
|
+
"""
|
|
16
|
+
Pagination by products within a group. It is possible regardless of the presence of filters.
|
|
17
|
+
|
|
18
|
+
Source: https://dev.wildberries.ru/en/docs/openapi/analytics#tag/Search-Queries-for-Your-Items/paths/~1api~1v2~1search-report~1table~1details/post
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
__return__ = PaginationByProductsWithinAGroupResponse
|
|
22
|
+
__api__ = "seller-analytics-api"
|
|
23
|
+
__method__ = "api/v2/search-report/table/details"
|
|
24
|
+
__http_method__ = "POST"
|
|
25
|
+
__pagination__ = "offset"
|
|
26
|
+
|
|
27
|
+
request_limit: RequestLimit = RequestLimit(period=60, limit=10, interval=600, burst=5)
|
|
28
|
+
|
|
29
|
+
current_period: CurrentPeriod = Field(alias="currentPeriod")
|
|
30
|
+
past_period: PastPeriod | None = Field(None, alias="pastPeriod")
|
|
31
|
+
subject_id: int | None = Field(None, alias="subjectId")
|
|
32
|
+
brand_name: str | None = Field(None, alias="brandName")
|
|
33
|
+
tag_id: int | None = Field(None, alias="tagId")
|
|
34
|
+
nm_ids: list[int] | None = Field(None, alias="nmIds")
|
|
35
|
+
order_by: OrderBy = Field(alias="orderBy")
|
|
36
|
+
position_cluster: PositionCluster = Field(alias="positionCluster")
|
|
37
|
+
include_substituted_sk_us: bool | None = Field(True, alias="includeSubstitutedSKUs")
|
|
38
|
+
include_search_texts: bool | None = Field(True, alias="includeSearchTexts")
|
|
39
|
+
limit: int = Field()
|
|
40
|
+
offset: int = Field()
|