ebayapi 0.11.0 → 0.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (421) hide show
  1. data/CHANGELOG +42 -29
  2. data/MIT-LICENSE +1 -1
  3. data/README +1 -1
  4. data/Rakefile +4 -3
  5. data/examples/add_item.rb +46 -11
  6. data/examples/config.rb +6 -0
  7. data/examples/end_item.rb +0 -0
  8. data/examples/get_api_usage.rb +0 -0
  9. data/examples/get_attributes_xsl.rb +0 -0
  10. data/examples/get_ebay_details.rb +0 -0
  11. data/examples/get_ebay_time.rb +0 -0
  12. data/examples/get_ebay_time_raw.rb +0 -0
  13. data/examples/get_item.rb +0 -0
  14. data/examples/get_item_transactions.rb +0 -0
  15. data/examples/get_items_selling.rb +0 -0
  16. data/examples/get_my_messages.rb +0 -0
  17. data/examples/get_my_messages_folders.rb +0 -0
  18. data/examples/get_notification_preferences.rb +0 -0
  19. data/examples/get_notifications_usage.rb +0 -0
  20. data/examples/get_product_finder_xsl.rb +0 -0
  21. data/examples/get_search_results.rb +0 -0
  22. data/examples/get_user.rb +0 -0
  23. data/examples/mark_my_messages_message_as_read.rb +0 -0
  24. data/examples/revise_item.rb +0 -0
  25. data/examples/set_notification_preferences.rb +0 -0
  26. data/examples/verify_add_item.rb +0 -0
  27. data/lib/ebay/api.rb +5 -1
  28. data/lib/ebay/api_methods.rb +279 -79
  29. data/lib/ebay/request/base.rb +3 -3
  30. data/lib/ebay/request/connection.rb +4 -7
  31. data/lib/ebay/requests.rb +36 -11
  32. data/lib/ebay/requests/abstract.rb +2 -0
  33. data/lib/ebay/requests/add_item_from_selling_manager_template.rb +20 -0
  34. data/lib/ebay/requests/add_items.rb +16 -0
  35. data/lib/ebay/requests/add_selling_manager_inventory_folder.rb +19 -0
  36. data/lib/ebay/requests/add_selling_manager_product.rb +18 -0
  37. data/lib/ebay/requests/add_selling_manager_template.rb +20 -0
  38. data/lib/ebay/requests/complete_sale.rb +5 -0
  39. data/lib/ebay/requests/confirm_identity.rb +15 -0
  40. data/lib/ebay/requests/delete_selling_manager_inventory_folder.rb +15 -0
  41. data/lib/ebay/requests/delete_selling_manager_item_automation_rule.rb +19 -0
  42. data/lib/ebay/requests/delete_selling_manager_product.rb +15 -0
  43. data/lib/ebay/requests/delete_selling_manager_template.rb +15 -0
  44. data/lib/ebay/requests/delete_selling_manager_template_automation_rule.rb +21 -0
  45. data/lib/ebay/requests/end_items.rb +16 -0
  46. data/lib/ebay/requests/fetch_token.rb +2 -0
  47. data/lib/ebay/requests/get_account.rb +2 -0
  48. data/lib/ebay/requests/get_ad_format_leads.rb +4 -0
  49. data/lib/ebay/requests/get_attributes_cs.rb +0 -2
  50. data/lib/ebay/requests/get_category_listings.rb +2 -0
  51. data/lib/ebay/requests/get_charities.rb +2 -0
  52. data/lib/ebay/requests/{get_live_auction_catalog_details.rb → get_client_alerts_auth_token.rb} +2 -2
  53. data/lib/ebay/requests/get_feedback.rb +10 -2
  54. data/lib/ebay/requests/get_item.rb +4 -2
  55. data/lib/ebay/requests/get_item_transactions.rb +2 -0
  56. data/lib/ebay/requests/get_my_ebay_buying.rb +6 -0
  57. data/lib/ebay/requests/get_my_ebay_selling.rb +8 -0
  58. data/lib/ebay/requests/get_my_messages.rb +2 -0
  59. data/lib/ebay/requests/get_order_transactions.rb +2 -0
  60. data/lib/ebay/requests/get_products.rb +2 -0
  61. data/lib/ebay/requests/get_search_results.rb +2 -2
  62. data/lib/ebay/requests/get_seller_dashboard.rb +13 -0
  63. data/lib/ebay/requests/get_seller_list.rb +4 -0
  64. data/lib/ebay/requests/get_seller_transactions.rb +4 -0
  65. data/lib/ebay/requests/get_selling_manager_alerts.rb +13 -0
  66. data/lib/ebay/requests/get_selling_manager_email_log.rb +22 -0
  67. data/lib/ebay/requests/get_selling_manager_inventory.rb +29 -0
  68. data/lib/ebay/requests/get_selling_manager_inventory_folder.rb +19 -0
  69. data/lib/ebay/requests/get_selling_manager_item_automation_rule.rb +15 -0
  70. data/lib/ebay/requests/get_selling_manager_sale_record.rb +19 -0
  71. data/lib/ebay/requests/get_selling_manager_sold_listings.rb +32 -0
  72. data/lib/ebay/requests/get_selling_manager_template_automation_rule.rb +15 -0
  73. data/lib/ebay/requests/get_selling_manager_templates.rb +15 -0
  74. data/lib/ebay/{responses/get_ru_name.rb → requests/get_session_id.rb} +3 -3
  75. data/lib/ebay/requests/{get_return_url.rb → get_token_status.rb} +2 -2
  76. data/lib/ebay/requests/get_user_preferences.rb +2 -0
  77. data/lib/ebay/requests/move_selling_manager_inventory_folder.rb +17 -0
  78. data/lib/ebay/requests/revise_checkout_status.rb +2 -0
  79. data/lib/ebay/requests/revise_inventory_status.rb +16 -0
  80. data/lib/ebay/requests/revise_selling_manager_inventory_folder.rb +16 -0
  81. data/lib/ebay/requests/revise_selling_manager_product.rb +21 -0
  82. data/lib/ebay/requests/revise_selling_manager_sale_record.rb +22 -0
  83. data/lib/ebay/requests/revise_selling_manager_template.rb +26 -0
  84. data/lib/ebay/requests/revoke_token.rb +15 -0
  85. data/lib/ebay/requests/save_item_to_selling_manager_template.rb +19 -0
  86. data/lib/ebay/requests/send_invoice.rb +4 -0
  87. data/lib/ebay/requests/set_notification_preferences.rb +2 -0
  88. data/lib/ebay/requests/set_promotional_sale_listings.rb +2 -0
  89. data/lib/ebay/requests/set_selling_manager_feedback_options.rb +18 -0
  90. data/lib/ebay/requests/set_selling_manager_item_automation_rule.rb +21 -0
  91. data/lib/ebay/requests/set_selling_manager_template_automation_rule.rb +24 -0
  92. data/lib/ebay/requests/set_user_notes.rb +2 -0
  93. data/lib/ebay/requests/set_user_preferences.rb +2 -3
  94. data/lib/ebay/requests/upload_site_hosted_pictures.rb +4 -0
  95. data/lib/ebay/responses.rb +36 -11
  96. data/lib/ebay/responses/abstract.rb +2 -0
  97. data/lib/ebay/responses/{add_live_auction_item.rb → add_item_from_selling_manager_template.rb} +6 -2
  98. data/lib/ebay/responses/add_items.rb +16 -0
  99. data/lib/ebay/responses/add_selling_manager_inventory_folder.rb +15 -0
  100. data/lib/ebay/responses/add_selling_manager_product.rb +16 -0
  101. data/lib/ebay/responses/add_selling_manager_template.rb +29 -0
  102. data/lib/ebay/responses/confirm_identity.rb +15 -0
  103. data/lib/ebay/responses/delete_selling_manager_inventory_folder.rb +13 -0
  104. data/lib/ebay/responses/delete_selling_manager_item_automation_rule.rb +25 -0
  105. data/lib/ebay/responses/delete_selling_manager_product.rb +16 -0
  106. data/lib/ebay/responses/delete_selling_manager_template.rb +17 -0
  107. data/lib/ebay/responses/delete_selling_manager_template_automation_rule.rb +25 -0
  108. data/lib/ebay/responses/end_items.rb +16 -0
  109. data/lib/ebay/responses/get_category_listings.rb +2 -0
  110. data/lib/ebay/responses/get_client_alerts_auth_token.rb +17 -0
  111. data/lib/ebay/responses/get_ebay_details.rb +15 -0
  112. data/lib/ebay/responses/get_feedback.rb +7 -0
  113. data/lib/ebay/responses/get_my_ebay_buying.rb +4 -0
  114. data/lib/ebay/responses/get_my_ebay_selling.rb +6 -0
  115. data/lib/ebay/responses/get_notification_preferences.rb +2 -0
  116. data/lib/ebay/responses/get_products.rb +2 -0
  117. data/lib/ebay/responses/get_search_results.rb +2 -0
  118. data/lib/ebay/responses/get_seller_dashboard.rb +31 -0
  119. data/lib/ebay/responses/get_selling_manager_alerts.rb +16 -0
  120. data/lib/ebay/responses/get_selling_manager_email_log.rb +16 -0
  121. data/lib/ebay/responses/get_selling_manager_inventory.rb +21 -0
  122. data/lib/ebay/responses/get_selling_manager_inventory_folder.rb +16 -0
  123. data/lib/ebay/responses/get_selling_manager_item_automation_rule.rb +25 -0
  124. data/lib/ebay/responses/get_selling_manager_sale_record.rb +16 -0
  125. data/lib/ebay/responses/get_selling_manager_sold_listings.rb +19 -0
  126. data/lib/ebay/responses/get_selling_manager_template_automation_rule.rb +25 -0
  127. data/lib/ebay/responses/get_selling_manager_templates.rb +16 -0
  128. data/lib/ebay/responses/get_session_id.rb +15 -0
  129. data/lib/ebay/responses/get_token_status.rb +16 -0
  130. data/lib/ebay/responses/get_user_preferences.rb +2 -3
  131. data/lib/ebay/responses/items_canceled_event.rb +19 -0
  132. data/lib/ebay/responses/move_selling_manager_inventory_folder.rb +13 -0
  133. data/lib/ebay/responses/place_offer.rb +5 -0
  134. data/lib/ebay/responses/revise_inventory_status.rb +16 -0
  135. data/lib/ebay/responses/revise_selling_manager_inventory_folder.rb +16 -0
  136. data/lib/ebay/responses/revise_selling_manager_product.rb +16 -0
  137. data/lib/ebay/responses/revise_selling_manager_sale_record.rb +13 -0
  138. data/lib/ebay/responses/revise_selling_manager_template.rb +29 -0
  139. data/lib/ebay/responses/{set_return_url.rb → revoke_token.rb} +2 -2
  140. data/lib/ebay/responses/save_item_to_selling_manager_template.rb +15 -0
  141. data/lib/ebay/responses/set_selling_manager_feedback_options.rb +13 -0
  142. data/lib/ebay/responses/set_selling_manager_item_automation_rule.rb +25 -0
  143. data/lib/ebay/responses/set_selling_manager_template_automation_rule.rb +25 -0
  144. data/lib/ebay/schema/ebaySvc.xsd +110905 -0
  145. data/lib/ebay/schema/version.rb +1 -1
  146. data/lib/ebay/types.rb +51 -9
  147. data/lib/ebay/types/account_detail_entry_code.rb +8 -0
  148. data/lib/ebay/types/ad_format_lead.rb +16 -8
  149. data/lib/ebay/{requests/add_live_auction_item.rb → types/add_item_request_container.rb} +5 -3
  150. data/lib/ebay/types/add_item_response_container.rb +33 -0
  151. data/lib/ebay/types/address.rb +6 -0
  152. data/lib/ebay/types/announcement_message.rb +19 -0
  153. data/lib/ebay/types/announcement_message_code.rb +13 -0
  154. data/lib/ebay/types/application_delivery_preferences.rb +5 -0
  155. data/lib/ebay/types/automated_leave_feedback_event_code.rb +12 -0
  156. data/lib/ebay/types/average_rating_summary.rb +18 -0
  157. data/lib/ebay/types/best_offer_auto_accept_enabled_definition.rb +13 -0
  158. data/lib/ebay/types/bid_action_code.rb +4 -0
  159. data/lib/ebay/types/bid_approval_array.rb +0 -3
  160. data/lib/ebay/types/bidder_detail.rb +2 -3
  161. data/lib/ebay/types/business_seller_details.rb +31 -0
  162. data/lib/ebay/types/{digital_delivery_enabled_definition.rb → buyer_guarantee_enabled_definition.rb} +2 -2
  163. data/lib/ebay/types/buyer_payment_method_code.rb +7 -0
  164. data/lib/ebay/types/buyer_protection_code.rb +1 -0
  165. data/lib/ebay/types/{buyer_requirements.rb → buyer_requirement_details.rb} +8 -4
  166. data/lib/ebay/types/buyer_role_metrics.rb +21 -0
  167. data/lib/ebay/types/buyer_satisfaction_dashboard.rb +18 -0
  168. data/lib/ebay/types/buyer_satisfaction_status_code.rb +15 -0
  169. data/lib/ebay/types/calculated_shipping_rate.rb +2 -0
  170. data/lib/ebay/types/catalog_product.rb +2 -0
  171. data/lib/ebay/types/category_feature.rb +122 -2
  172. data/lib/ebay/types/charity_affiliation_detail.rb +19 -0
  173. data/lib/ebay/types/charity_info.rb +6 -0
  174. data/lib/ebay/types/charity_seller.rb +2 -0
  175. data/lib/ebay/types/charity_seller_status_code.rb +2 -0
  176. data/lib/ebay/types/checkout_status.rb +2 -0
  177. data/lib/ebay/types/classified_ad_auto_accept_enabled_definition.rb +13 -0
  178. data/lib/ebay/types/classified_ad_company_name_enabled_definition.rb +13 -0
  179. data/lib/ebay/types/classified_ad_contact_by_address_enabled_definition.rb +13 -0
  180. data/lib/ebay/types/classified_ad_phone_count_definition.rb +13 -0
  181. data/lib/ebay/types/classified_ad_street_count_definition.rb +13 -0
  182. data/lib/ebay/types/combined_fixed_price_treatment_enabled_definition.rb +13 -0
  183. data/lib/ebay/types/cost_group_flat_code.rb +12 -0
  184. data/lib/ebay/types/country_code.rb +2 -0
  185. data/lib/ebay/types/cross_border_trade_australia_enabled_definition.rb +13 -0
  186. data/lib/ebay/types/cross_border_trade_gb_enabled_definition.rb +13 -0
  187. data/lib/ebay/types/cross_border_trade_north_america_enabled_definition.rb +13 -0
  188. data/lib/ebay/types/day_of_week_code.rb +16 -0
  189. data/lib/ebay/types/delivery_url_detail.rb +19 -0
  190. data/lib/ebay/types/detail_name_code.rb +5 -0
  191. data/lib/ebay/types/device_type_code.rb +1 -0
  192. data/lib/ebay/types/dispute_record_type_code.rb +1 -0
  193. data/lib/ebay/types/ebay_motors_pro_ad_format_enabled_definition.rb +13 -0
  194. data/lib/ebay/types/ebay_motors_pro_auto_accept_enabled_definition.rb +13 -0
  195. data/lib/ebay/types/ebay_motors_pro_auto_decline_enabled_definition.rb +13 -0
  196. data/lib/ebay/types/ebay_motors_pro_best_offer_enabled_definition.rb +13 -0
  197. data/lib/ebay/types/ebay_motors_pro_company_name_enabled_definition.rb +13 -0
  198. data/lib/ebay/types/ebay_motors_pro_contact_by_address_enabled_definition.rb +13 -0
  199. data/lib/ebay/types/ebay_motors_pro_contact_by_email_enabled_definition.rb +13 -0
  200. data/lib/ebay/types/ebay_motors_pro_contact_by_phone_enabled_definition.rb +13 -0
  201. data/lib/ebay/types/ebay_motors_pro_counter_offer_enabled_definition.rb +13 -0
  202. data/lib/ebay/types/ebay_motors_pro_payment_method_check_out_enabled_definition.rb +13 -0
  203. data/lib/ebay/types/ebay_motors_pro_phone_count_definition.rb +13 -0
  204. data/lib/ebay/types/ebay_motors_pro_seller_contact_details_enabled_definition.rb +13 -0
  205. data/lib/ebay/types/ebay_motors_pro_shipping_method_enabled_definition.rb +13 -0
  206. data/lib/ebay/types/ebay_motors_pro_street_count_definition.rb +13 -0
  207. data/lib/ebay/types/end_item_request_container.rb +19 -0
  208. data/lib/ebay/types/end_item_response_container.rb +20 -0
  209. data/lib/ebay/types/express_item_requirements.rb +0 -2
  210. data/lib/ebay/types/express_product.rb +4 -0
  211. data/lib/ebay/types/feature_definitions.rb +183 -3
  212. data/lib/ebay/types/feature_id_code.rb +54 -0
  213. data/lib/ebay/types/fee.rb +4 -0
  214. data/lib/ebay/types/feedback_comment_array.rb +15 -0
  215. data/lib/ebay/types/feedback_detail.rb +2 -0
  216. data/lib/ebay/types/feedback_summary.rb +11 -3
  217. data/lib/ebay/types/feedback_summary_period_code.rb +11 -0
  218. data/lib/ebay/types/feedback_type_code.rb +13 -0
  219. data/lib/ebay/types/geographic_exposure_code.rb +12 -0
  220. data/lib/ebay/types/group1_max_flat_shipping_cost_definition.rb +13 -0
  221. data/lib/ebay/types/group2_max_flat_shipping_cost_definition.rb +13 -0
  222. data/lib/ebay/types/group3_max_flat_shipping_cost_definition.rb +13 -0
  223. data/lib/ebay/types/handling_time_enabled_definition.rb +13 -0
  224. data/lib/ebay/types/in_escrow_workflow_timeline_code.rb +12 -0
  225. data/lib/ebay/types/in_escrow_workflow_timeline_definition.rb +13 -0
  226. data/lib/ebay/types/integrated_merchant_credit_card_info.rb +15 -0
  227. data/lib/ebay/types/inventory_status.rb +21 -0
  228. data/lib/ebay/types/{express_detail_level_code.rb → inventory_tracking_method_code.rb} +3 -4
  229. data/lib/ebay/types/item.rb +30 -18
  230. data/lib/ebay/types/item_policy_violation.rb +17 -0
  231. data/lib/ebay/types/item_transaction_id.rb +2 -0
  232. data/lib/ebay/types/item_type_code.rb +19 -0
  233. data/lib/ebay/types/listing_details.rb +2 -5
  234. data/lib/ebay/types/listing_enhancement_duration_code.rb +60 -0
  235. data/lib/ebay/types/listing_enhancement_duration_definition.rb +13 -0
  236. data/lib/ebay/types/listing_enhancement_duration_reference.rb +15 -0
  237. data/lib/ebay/types/listing_start_price_details.rb +19 -0
  238. data/lib/ebay/types/{listing_subtype_enum.rb → listing_subtype_code.rb} +2 -1
  239. data/lib/ebay/types/listing_type_code.rb +1 -0
  240. data/lib/ebay/types/local_market_ad_format_enabled_definition.rb +13 -0
  241. data/lib/ebay/types/local_market_auto_accept_enabled_definition.rb +13 -0
  242. data/lib/ebay/types/local_market_auto_decline_enabled_definition.rb +13 -0
  243. data/lib/ebay/types/local_market_best_offer_enabled_definition.rb +13 -0
  244. data/lib/ebay/types/local_market_company_name_enabled_definition.rb +13 -0
  245. data/lib/ebay/types/local_market_contact_by_address_enabled_definition.rb +13 -0
  246. data/lib/ebay/types/local_market_contact_by_email_enabled_definition.rb +13 -0
  247. data/lib/ebay/types/local_market_contact_by_phone_enabled_definition.rb +13 -0
  248. data/lib/ebay/types/local_market_counter_offer_enabled_definition.rb +13 -0
  249. data/lib/ebay/types/local_market_payment_method_check_out_enabled_definition.rb +13 -0
  250. data/lib/ebay/types/local_market_phone_count_definition.rb +13 -0
  251. data/lib/ebay/types/local_market_seller_contact_details_enabled_definition.rb +13 -0
  252. data/lib/ebay/types/local_market_shipping_method_enabled_definition.rb +13 -0
  253. data/lib/ebay/types/local_market_street_count_definition.rb +13 -0
  254. data/lib/ebay/types/max_flat_shipping_cost_cbt_exempt_definition.rb +13 -0
  255. data/lib/ebay/types/max_flat_shipping_cost_definition.rb +13 -0
  256. data/lib/ebay/types/maximum_buyer_policy_violations.rb +17 -0
  257. data/lib/ebay/types/maximum_unpaid_item_strikes_info.rb +17 -0
  258. data/lib/ebay/types/my_ebay_favorite_search.rb +50 -0
  259. data/lib/ebay/types/my_messages_external_message_id_array.rb +15 -0
  260. data/lib/ebay/types/my_messages_message.rb +8 -0
  261. data/lib/ebay/types/non_subscription_definition.rb +13 -0
  262. data/lib/ebay/types/notification_details.rb +2 -0
  263. data/lib/ebay/types/notification_event_type_code.rb +20 -0
  264. data/lib/ebay/types/notification_user_data.rb +2 -0
  265. data/lib/ebay/types/offer.rb +4 -0
  266. data/lib/ebay/types/order.rb +6 -2
  267. data/lib/ebay/types/paid_status_code.rb +6 -0
  268. data/lib/ebay/types/paisa_pay_full_escrow_enabled_definition.rb +13 -0
  269. data/lib/ebay/types/payment_hold_status_code.rb +13 -0
  270. data/lib/ebay/types/payment_method_definition.rb +13 -0
  271. data/lib/ebay/types/payment_method_search_code.rb +1 -0
  272. data/lib/ebay/types/paypal_buyer_protection_enabled_definition.rb +13 -0
  273. data/lib/ebay/types/paypal_required_definition.rb +13 -0
  274. data/lib/ebay/types/paypal_required_for_store_owner_definition.rb +13 -0
  275. data/lib/ebay/types/period_code.rb +14 -0
  276. data/lib/ebay/types/picture_details.rb +2 -0
  277. data/lib/ebay/types/picture_upload_policy_code.rb +11 -0
  278. data/lib/ebay/types/policy_compliance_dashboard.rb +18 -0
  279. data/lib/ebay/types/policy_compliance_status_code.rb +13 -0
  280. data/lib/ebay/types/power_seller_dashboard.rb +18 -0
  281. data/lib/ebay/types/preferred_location_code.rb +14 -0
  282. data/lib/ebay/types/premium_subscription_definition.rb +13 -0
  283. data/lib/ebay/types/product_info.rb +2 -0
  284. data/lib/ebay/types/product_state_code.rb +14 -0
  285. data/lib/ebay/types/promotional_sale.rb +2 -0
  286. data/lib/ebay/types/promotional_sale_type_code.rb +12 -0
  287. data/lib/ebay/types/question_type_code.rb +1 -0
  288. data/lib/ebay/types/refund_details.rb +17 -0
  289. data/lib/ebay/types/refund_options_code.rb +12 -0
  290. data/lib/ebay/types/region_of_origin_details.rb +19 -0
  291. data/lib/ebay/types/regular_subscription_definition.rb +13 -0
  292. data/lib/ebay/types/reminders.rb +20 -0
  293. data/lib/ebay/types/return_policy.rb +45 -0
  294. data/lib/ebay/types/return_policy_details.rb +38 -0
  295. data/lib/ebay/types/return_policy_enabled_definition.rb +13 -0
  296. data/lib/ebay/types/returns_accepted_details.rb +17 -0
  297. data/lib/ebay/types/returns_accepted_options_code.rb +11 -0
  298. data/lib/ebay/types/returns_within_details.rb +17 -0
  299. data/lib/ebay/types/returns_within_options_code.rb +15 -0
  300. data/lib/ebay/types/revise_price_allowed_definition.rb +13 -0
  301. data/lib/ebay/types/revise_quantity_allowed_definition.rb +13 -0
  302. data/lib/ebay/types/search_flag_code.rb +20 -0
  303. data/lib/ebay/types/{live_auction_approval_status.rb → search_standing_dashboard.rb} +2 -4
  304. data/lib/ebay/types/search_standing_status_code.rb +12 -0
  305. data/lib/ebay/types/seller.rb +12 -9
  306. data/lib/ebay/types/seller_account_dashboard.rb +18 -0
  307. data/lib/ebay/types/seller_account_status_code.rb +12 -0
  308. data/lib/ebay/types/seller_dashboard_alert.rb +17 -0
  309. data/lib/ebay/types/seller_dashboard_alert_severity_code.rb +12 -0
  310. data/lib/ebay/types/seller_fee_discount_dashboard.rb +15 -0
  311. data/lib/ebay/types/seller_payment_method_code.rb +1 -0
  312. data/lib/ebay/types/seller_role_metrics.rb +33 -0
  313. data/lib/ebay/types/selling_manager_alert.rb +29 -0
  314. data/lib/ebay/types/selling_manager_alert_type_code.rb +14 -0
  315. data/lib/ebay/types/selling_manager_auto_list.rb +21 -0
  316. data/lib/ebay/types/selling_manager_auto_list_according_to_schedule.rb +27 -0
  317. data/lib/ebay/types/selling_manager_auto_list_min_active_items.rb +23 -0
  318. data/lib/ebay/types/selling_manager_auto_relist.rb +36 -0
  319. data/lib/ebay/types/selling_manager_auto_relist_option_code.rb +12 -0
  320. data/lib/ebay/types/selling_manager_auto_relist_type_code.rb +12 -0
  321. data/lib/ebay/types/selling_manager_auto_second_chance_offer.rb +23 -0
  322. data/lib/ebay/types/selling_manager_auto_second_chance_offer_type_code.rb +12 -0
  323. data/lib/ebay/types/selling_manager_automation_property_type_code.rb +12 -0
  324. data/lib/ebay/types/selling_manager_email_log.rb +21 -0
  325. data/lib/ebay/types/selling_manager_email_sent_status_code.rb +12 -0
  326. data/lib/ebay/types/selling_manager_email_type_code.rb +38 -0
  327. data/lib/ebay/types/selling_manager_folder_details.rb +28 -0
  328. data/lib/ebay/types/selling_manager_general_property_type_code.rb +12 -0
  329. data/lib/ebay/types/selling_manager_inventory_property_type_code.rb +15 -0
  330. data/lib/ebay/types/selling_manager_order_status.rb +45 -0
  331. data/lib/ebay/types/selling_manager_paid_status_code.rb +14 -0
  332. data/lib/ebay/types/selling_manager_paisa_pay_property_type_code.rb +14 -0
  333. data/lib/ebay/types/selling_manager_product.rb +22 -0
  334. data/lib/ebay/types/selling_manager_product_details.rb +13 -6
  335. data/lib/ebay/types/selling_manager_product_inventory_status.rb +25 -0
  336. data/lib/ebay/types/selling_manager_product_sort_code.rb +21 -0
  337. data/lib/ebay/types/selling_manager_search.rb +17 -0
  338. data/lib/ebay/types/selling_manager_search_type_code.rb +18 -0
  339. data/lib/ebay/types/selling_manager_shipped_status_code.rb +11 -0
  340. data/lib/ebay/types/selling_manager_sold_listings_property_type_code.rb +58 -0
  341. data/lib/ebay/types/selling_manager_sold_listings_sort_type_code.rb +30 -0
  342. data/lib/ebay/types/selling_manager_sold_order.rb +74 -0
  343. data/lib/ebay/types/selling_manager_sold_transaction.rb +52 -0
  344. data/lib/ebay/types/selling_manager_template_details.rb +25 -0
  345. data/lib/ebay/types/selling_manager_vendor_details.rb +17 -0
  346. data/lib/ebay/types/selling_status.rb +2 -0
  347. data/lib/ebay/types/shipment.rb +2 -0
  348. data/lib/ebay/types/shipment_delivery_status_code.rb +3 -0
  349. data/lib/ebay/types/shipping_carrier_code.rb +1 -0
  350. data/lib/ebay/types/shipping_carrier_details.rb +19 -0
  351. data/lib/ebay/types/shipping_cost_paid_by_details.rb +17 -0
  352. data/lib/ebay/types/shipping_cost_paid_by_options_code.rb +11 -0
  353. data/lib/ebay/types/shipping_details.rb +2 -0
  354. data/lib/ebay/types/shipping_package_details.rb +23 -0
  355. data/lib/ebay/types/shipping_service_code.rb +92 -0
  356. data/lib/ebay/types/shipping_service_details.rb +16 -0
  357. data/lib/ebay/types/shipping_service_options.rb +2 -0
  358. data/lib/ebay/types/shipping_service_package_details.rb +17 -0
  359. data/lib/ebay/types/shipping_type_code.rb +1 -0
  360. data/lib/ebay/types/simple_item_sort_code.rb +18 -0
  361. data/lib/ebay/types/site_defaults.rb +124 -2
  362. data/lib/ebay/types/speciality_subscription_definition.rb +13 -0
  363. data/lib/ebay/types/{transaction_platform.rb → status_code.rb} +3 -3
  364. data/lib/ebay/types/store_item_list_sort_order_code.rb +2 -0
  365. data/lib/ebay/types/store_owner_extended_listing_durations.rb +15 -0
  366. data/lib/ebay/types/store_owner_extended_listing_durations_definition.rb +13 -0
  367. data/lib/ebay/types/store_owner_extended_listing_durations_enabled_definition.rb +13 -0
  368. data/lib/ebay/types/time_range.rb +17 -0
  369. data/lib/ebay/types/token_status.rb +21 -0
  370. data/lib/ebay/types/token_status_code.rb +15 -0
  371. data/lib/ebay/types/transaction.rb +8 -2
  372. data/lib/ebay/types/transaction_platform_code.rb +1 -0
  373. data/lib/ebay/types/transaction_status.rb +4 -0
  374. data/lib/ebay/types/unit_code.rb +2 -0
  375. data/lib/ebay/types/unpaid_item_status_type_code.rb +16 -0
  376. data/lib/ebay/types/user.rb +6 -3
  377. data/lib/ebay/types/user_status_code.rb +1 -0
  378. data/lib/ebay/types/vat_details.rb +4 -0
  379. data/lib/ebay/types/vat_rate.rb +19 -0
  380. data/lib/ebay/types/warranty_duration_details.rb +17 -0
  381. data/lib/ebay/types/warranty_duration_options_code.rb +16 -0
  382. data/lib/ebay/types/{condition_selection_code.rb → warranty_offered_code.rb} +2 -3
  383. data/lib/ebay/types/warranty_offered_details.rb +17 -0
  384. data/lib/ebay/types/warranty_type_details.rb +17 -0
  385. data/lib/ebay/types/warranty_type_options_code.rb +12 -0
  386. data/lib/ebay/types/wish_list_entry.rb +27 -0
  387. data/test/unit/notifications_test.rb +0 -1
  388. data/test/unit/xml_mapping_money_node_test.rb +16 -1
  389. metadata +328 -116
  390. data/lib/ebay/requests/approve_live_auction_bidders.rb +0 -22
  391. data/lib/ebay/requests/get_cart.rb +0 -21
  392. data/lib/ebay/requests/get_live_auction_bidders.rb +0 -20
  393. data/lib/ebay/requests/get_ru_name.rb +0 -15
  394. data/lib/ebay/requests/get_search_results_express.rb +0 -56
  395. data/lib/ebay/requests/revise_live_auction_item.rb +0 -18
  396. data/lib/ebay/requests/set_cart.rb +0 -27
  397. data/lib/ebay/requests/set_return_url.rb +0 -20
  398. data/lib/ebay/responses/approve_live_auction_bidders.rb +0 -16
  399. data/lib/ebay/responses/get_cart.rb +0 -16
  400. data/lib/ebay/responses/get_live_auction_bidders.rb +0 -27
  401. data/lib/ebay/responses/get_live_auction_catalog_details.rb +0 -16
  402. data/lib/ebay/responses/get_return_url.rb +0 -18
  403. data/lib/ebay/responses/get_search_results_express.rb +0 -28
  404. data/lib/ebay/responses/revise_live_auction_item.rb +0 -22
  405. data/lib/ebay/responses/set_cart.rb +0 -16
  406. data/lib/ebay/types/authentication_entry.rb +0 -23
  407. data/lib/ebay/types/cart.rb +0 -35
  408. data/lib/ebay/types/checkout_complete_redirect.rb +0 -17
  409. data/lib/ebay/types/digital_delivery_details.rb +0 -21
  410. data/lib/ebay/types/digital_delivery_enabled_code.rb +0 -12
  411. data/lib/ebay/types/digital_delivery_method_code.rb +0 -12
  412. data/lib/ebay/types/domain_histogram.rb +0 -16
  413. data/lib/ebay/types/express_histogram_sort_code.rb +0 -12
  414. data/lib/ebay/types/express_item_sort_code.rb +0 -12
  415. data/lib/ebay/types/express_product_sort_code.rb +0 -12
  416. data/lib/ebay/types/live_auction_approval_status_array.rb +0 -16
  417. data/lib/ebay/types/live_auction_bid.rb +0 -21
  418. data/lib/ebay/types/live_auction_bid_array.rb +0 -16
  419. data/lib/ebay/types/live_auction_catalog.rb +0 -20
  420. data/lib/ebay/types/live_auction_details.rb +0 -23
  421. data/rakefile +0 -148
@@ -12,6 +12,7 @@ module Ebay # :nodoc:
12
12
  # boolean_node :exclude_summary, 'ExcludeSummary', 'true', 'false', :optional => true
13
13
  # text_node :account_entry_sort_type, 'AccountEntrySortType', :optional => true
14
14
  # text_node :currency, 'Currency', :optional => true
15
+ # text_node :item_id, 'ItemID', :optional => true
15
16
  class GetAccount < Abstract
16
17
  include XML::Mapping
17
18
  include Initializer
@@ -25,6 +26,7 @@ module Ebay # :nodoc:
25
26
  boolean_node :exclude_summary, 'ExcludeSummary', 'true', 'false', :optional => true
26
27
  text_node :account_entry_sort_type, 'AccountEntrySortType', :optional => true
27
28
  text_node :currency, 'Currency', :optional => true
29
+ text_node :item_id, 'ItemID', :optional => true
28
30
  end
29
31
  end
30
32
  end
@@ -5,6 +5,8 @@ module Ebay # :nodoc:
5
5
  # text_node :item_id, 'ItemID', :optional => true
6
6
  # text_node :status, 'Status', :optional => true
7
7
  # boolean_node :include_member_messages, 'IncludeMemberMessages', 'true', 'false', :optional => true
8
+ # time_node :start_creation_time, 'StartCreationTime', :optional => true
9
+ # time_node :end_creation_time, 'EndCreationTime', :optional => true
8
10
  class GetAdFormatLeads < Abstract
9
11
  include XML::Mapping
10
12
  include Initializer
@@ -12,6 +14,8 @@ module Ebay # :nodoc:
12
14
  text_node :item_id, 'ItemID', :optional => true
13
15
  text_node :status, 'Status', :optional => true
14
16
  boolean_node :include_member_messages, 'IncludeMemberMessages', 'true', 'false', :optional => true
17
+ time_node :start_creation_time, 'StartCreationTime', :optional => true
18
+ time_node :end_creation_time, 'EndCreationTime', :optional => true
15
19
  end
16
20
  end
17
21
  end
@@ -5,7 +5,6 @@ module Ebay # :nodoc:
5
5
  # text_node :attribute_system_version, 'AttributeSystemVersion', :optional => true
6
6
  # numeric_node :attribute_set_id, 'AttributeSetID', :optional => true
7
7
  # boolean_node :include_category_mapping_details, 'IncludeCategoryMappingDetails', 'true', 'false', :optional => true
8
- # boolean_node :digital_delivery, 'DigitalDelivery', 'true', 'false', :optional => true
9
8
  class GetAttributesCS < Abstract
10
9
  include XML::Mapping
11
10
  include Initializer
@@ -13,7 +12,6 @@ module Ebay # :nodoc:
13
12
  text_node :attribute_system_version, 'AttributeSystemVersion', :optional => true
14
13
  numeric_node :attribute_set_id, 'AttributeSetID', :optional => true
15
14
  boolean_node :include_category_mapping_details, 'IncludeCategoryMappingDetails', 'true', 'false', :optional => true
16
- boolean_node :digital_delivery, 'DigitalDelivery', 'true', 'false', :optional => true
17
15
  end
18
16
  end
19
17
  end
@@ -24,6 +24,7 @@ module Ebay # :nodoc:
24
24
  # text_node :local_search_postal_code, 'LocalSearchPostalCode', :optional => true
25
25
  # numeric_node :max_related_search_keywords, 'MaxRelatedSearchKeywords', :optional => true
26
26
  # object_node :group, 'Group', :class => Group, :optional => true
27
+ # boolean_node :hide_duplicate_items, 'HideDuplicateItems', 'true', 'false', :optional => true
27
28
  class GetCategoryListings < Abstract
28
29
  include XML::Mapping
29
30
  include Initializer
@@ -46,6 +47,7 @@ module Ebay # :nodoc:
46
47
  text_node :local_search_postal_code, 'LocalSearchPostalCode', :optional => true
47
48
  numeric_node :max_related_search_keywords, 'MaxRelatedSearchKeywords', :optional => true
48
49
  object_node :group, 'Group', :class => Group, :optional => true
50
+ boolean_node :hide_duplicate_items, 'HideDuplicateItems', 'true', 'false', :optional => true
49
51
  end
50
52
  end
51
53
  end
@@ -9,6 +9,7 @@ module Ebay # :nodoc:
9
9
  # numeric_node :charity_domain, 'CharityDomain', :optional => true
10
10
  # boolean_node :include_description, 'IncludeDescription', 'true', 'false', :optional => true
11
11
  # text_node :match_type, 'MatchType', :optional => true
12
+ # boolean_node :featured, 'Featured', 'true', 'false', :optional => true
12
13
  class GetCharities < Abstract
13
14
  include XML::Mapping
14
15
  include Initializer
@@ -20,6 +21,7 @@ module Ebay # :nodoc:
20
21
  numeric_node :charity_domain, 'CharityDomain', :optional => true
21
22
  boolean_node :include_description, 'IncludeDescription', 'true', 'false', :optional => true
22
23
  text_node :match_type, 'MatchType', :optional => true
24
+ boolean_node :featured, 'Featured', 'true', 'false', :optional => true
23
25
  end
24
26
  end
25
27
  end
@@ -2,10 +2,10 @@
2
2
  module Ebay # :nodoc:
3
3
  module Requests # :nodoc:
4
4
  # == Attributes
5
- class GetLiveAuctionCatalogDetails < Abstract
5
+ class GetClientAlertsAuthToken < Abstract
6
6
  include XML::Mapping
7
7
  include Initializer
8
- root_element_name 'GetLiveAuctionCatalogDetailsRequest'
8
+ root_element_name 'GetClientAlertsAuthTokenRequest'
9
9
  end
10
10
  end
11
11
  end
@@ -3,16 +3,24 @@ require 'ebay/types/pagination'
3
3
  module Ebay # :nodoc:
4
4
  module Requests # :nodoc:
5
5
  # == Attributes
6
- # object_node :pagination, 'Pagination', :class => Pagination, :optional => true
7
6
  # text_node :user_id, 'UserID', :optional => true
8
7
  # text_node :feedback_id, 'FeedbackID', :optional => true
8
+ # text_node :item_id, 'ItemID', :optional => true
9
+ # text_node :transaction_id, 'TransactionID', :optional => true
10
+ # value_array_node :comment_types, 'CommentType', :default_value => []
11
+ # text_node :feedback_type, 'FeedbackType', :optional => true
12
+ # object_node :pagination, 'Pagination', :class => Pagination, :optional => true
9
13
  class GetFeedback < Abstract
10
14
  include XML::Mapping
11
15
  include Initializer
12
16
  root_element_name 'GetFeedbackRequest'
13
- object_node :pagination, 'Pagination', :class => Pagination, :optional => true
14
17
  text_node :user_id, 'UserID', :optional => true
15
18
  text_node :feedback_id, 'FeedbackID', :optional => true
19
+ text_node :item_id, 'ItemID', :optional => true
20
+ text_node :transaction_id, 'TransactionID', :optional => true
21
+ value_array_node :comment_types, 'CommentType', :default_value => []
22
+ text_node :feedback_type, 'FeedbackType', :optional => true
23
+ object_node :pagination, 'Pagination', :class => Pagination, :optional => true
16
24
  end
17
25
  end
18
26
  end
@@ -3,19 +3,21 @@ module Ebay # :nodoc:
3
3
  module Requests # :nodoc:
4
4
  # == Attributes
5
5
  # text_node :item_id, 'ItemID', :optional => true
6
- # boolean_node :include_express_requirements, 'IncludeExpressRequirements', 'true', 'false', :optional => true
7
6
  # boolean_node :include_watch_count, 'IncludeWatchCount', 'true', 'false', :optional => true
8
7
  # boolean_node :include_cross_promotion, 'IncludeCrossPromotion', 'true', 'false', :optional => true
9
8
  # boolean_node :include_item_specifics, 'IncludeItemSpecifics', 'true', 'false', :optional => true
9
+ # boolean_node :include_tax_table, 'IncludeTaxTable', 'true', 'false', :optional => true
10
+ # text_node :sku, 'SKU', :optional => true
10
11
  class GetItem < Abstract
11
12
  include XML::Mapping
12
13
  include Initializer
13
14
  root_element_name 'GetItemRequest'
14
15
  text_node :item_id, 'ItemID', :optional => true
15
- boolean_node :include_express_requirements, 'IncludeExpressRequirements', 'true', 'false', :optional => true
16
16
  boolean_node :include_watch_count, 'IncludeWatchCount', 'true', 'false', :optional => true
17
17
  boolean_node :include_cross_promotion, 'IncludeCrossPromotion', 'true', 'false', :optional => true
18
18
  boolean_node :include_item_specifics, 'IncludeItemSpecifics', 'true', 'false', :optional => true
19
+ boolean_node :include_tax_table, 'IncludeTaxTable', 'true', 'false', :optional => true
20
+ text_node :sku, 'SKU', :optional => true
19
21
  end
20
22
  end
21
23
  end
@@ -11,6 +11,7 @@ module Ebay # :nodoc:
11
11
  # boolean_node :include_final_value_fee, 'IncludeFinalValueFee', 'true', 'false', :optional => true
12
12
  # boolean_node :include_containing_order, 'IncludeContainingOrder', 'true', 'false', :optional => true
13
13
  # text_node :platform, 'Platform', :optional => true
14
+ # numeric_node :number_of_days, 'NumberOfDays', :optional => true
14
15
  class GetItemTransactions < Abstract
15
16
  include XML::Mapping
16
17
  include Initializer
@@ -23,6 +24,7 @@ module Ebay # :nodoc:
23
24
  boolean_node :include_final_value_fee, 'IncludeFinalValueFee', 'true', 'false', :optional => true
24
25
  boolean_node :include_containing_order, 'IncludeContainingOrder', 'true', 'false', :optional => true
25
26
  text_node :platform, 'Platform', :optional => true
27
+ numeric_node :number_of_days, 'NumberOfDays', :optional => true
26
28
  end
27
29
  end
28
30
  end
@@ -14,6 +14,9 @@ module Ebay # :nodoc:
14
14
  # object_node :favorite_sellers, 'FavoriteSellers', :class => MyeBaySelection, :optional => true
15
15
  # object_node :second_chance_offer, 'SecondChanceOffer', :class => MyeBaySelection, :optional => true
16
16
  # object_node :bid_assistant_list, 'BidAssistantList', :class => BidAssistantList, :optional => true
17
+ # object_node :deleted_from_won_list, 'DeletedFromWonList', :class => ItemListCustomization, :optional => true
18
+ # object_node :deleted_from_lost_list, 'DeletedFromLostList', :class => ItemListCustomization, :optional => true
19
+ # object_node :buying_summary, 'BuyingSummary', :class => ItemListCustomization, :optional => true
17
20
  class GetMyeBayBuying < Abstract
18
21
  include XML::Mapping
19
22
  include Initializer
@@ -27,6 +30,9 @@ module Ebay # :nodoc:
27
30
  object_node :favorite_sellers, 'FavoriteSellers', :class => MyeBaySelection, :optional => true
28
31
  object_node :second_chance_offer, 'SecondChanceOffer', :class => MyeBaySelection, :optional => true
29
32
  object_node :bid_assistant_list, 'BidAssistantList', :class => BidAssistantList, :optional => true
33
+ object_node :deleted_from_won_list, 'DeletedFromWonList', :class => ItemListCustomization, :optional => true
34
+ object_node :deleted_from_lost_list, 'DeletedFromLostList', :class => ItemListCustomization, :optional => true
35
+ object_node :buying_summary, 'BuyingSummary', :class => ItemListCustomization, :optional => true
30
36
  end
31
37
  end
32
38
  end
@@ -7,6 +7,10 @@ module Ebay # :nodoc:
7
7
  # object_node :active_list, 'ActiveList', :class => ItemListCustomization, :optional => true
8
8
  # object_node :sold_list, 'SoldList', :class => ItemListCustomization, :optional => true
9
9
  # object_node :unsold_list, 'UnsoldList', :class => ItemListCustomization, :optional => true
10
+ # object_node :bid_list, 'BidList', :class => ItemListCustomization, :optional => true
11
+ # object_node :deleted_from_sold_list, 'DeletedFromSoldList', :class => ItemListCustomization, :optional => true
12
+ # object_node :deleted_from_unsold_list, 'DeletedFromUnsoldList', :class => ItemListCustomization, :optional => true
13
+ # object_node :selling_summary, 'SellingSummary', :class => ItemListCustomization, :optional => true
10
14
  class GetMyeBaySelling < Abstract
11
15
  include XML::Mapping
12
16
  include Initializer
@@ -15,6 +19,10 @@ module Ebay # :nodoc:
15
19
  object_node :active_list, 'ActiveList', :class => ItemListCustomization, :optional => true
16
20
  object_node :sold_list, 'SoldList', :class => ItemListCustomization, :optional => true
17
21
  object_node :unsold_list, 'UnsoldList', :class => ItemListCustomization, :optional => true
22
+ object_node :bid_list, 'BidList', :class => ItemListCustomization, :optional => true
23
+ object_node :deleted_from_sold_list, 'DeletedFromSoldList', :class => ItemListCustomization, :optional => true
24
+ object_node :deleted_from_unsold_list, 'DeletedFromUnsoldList', :class => ItemListCustomization, :optional => true
25
+ object_node :selling_summary, 'SellingSummary', :class => ItemListCustomization, :optional => true
18
26
  end
19
27
  end
20
28
  end
@@ -7,6 +7,7 @@ module Ebay # :nodoc:
7
7
  # numeric_node :folder_id, 'FolderID', :optional => true
8
8
  # time_node :start_time, 'StartTime', :optional => true
9
9
  # time_node :end_time, 'EndTime', :optional => true
10
+ # value_array_node :external_message_ids, 'ExternalMessageIDs', 'ExternalMessageID', :default_value => []
10
11
  class GetMyMessages < Abstract
11
12
  include XML::Mapping
12
13
  include Initializer
@@ -16,6 +17,7 @@ module Ebay # :nodoc:
16
17
  numeric_node :folder_id, 'FolderID', :optional => true
17
18
  time_node :start_time, 'StartTime', :optional => true
18
19
  time_node :end_time, 'EndTime', :optional => true
20
+ value_array_node :external_message_ids, 'ExternalMessageIDs', 'ExternalMessageID', :default_value => []
19
21
  end
20
22
  end
21
23
  end
@@ -6,6 +6,7 @@ module Ebay # :nodoc:
6
6
  # array_node :item_transaction_ids, 'ItemTransactionIDArray', 'ItemTransactionID', :class => ItemTransactionID, :default_value => []
7
7
  # value_array_node :order_ids, 'OrderIDArray', 'OrderID', :default_value => []
8
8
  # text_node :platform, 'Platform', :optional => true
9
+ # boolean_node :include_final_value_fees, 'IncludeFinalValueFees', 'true', 'false', :optional => true
9
10
  class GetOrderTransactions < Abstract
10
11
  include XML::Mapping
11
12
  include Initializer
@@ -13,6 +14,7 @@ module Ebay # :nodoc:
13
14
  array_node :item_transaction_ids, 'ItemTransactionIDArray', 'ItemTransactionID', :class => ItemTransactionID, :default_value => []
14
15
  value_array_node :order_ids, 'OrderIDArray', 'OrderID', :default_value => []
15
16
  text_node :platform, 'Platform', :optional => true
17
+ boolean_node :include_final_value_fees, 'IncludeFinalValueFees', 'true', 'false', :optional => true
16
18
  end
17
19
  end
18
20
  end
@@ -11,6 +11,7 @@ module Ebay # :nodoc:
11
11
  # boolean_node :include_buying_guide_details, 'IncludeBuyingGuideDetails', 'true', 'false', :optional => true
12
12
  # boolean_node :include_histogram, 'IncludeHistogram', 'true', 'false', :optional => true
13
13
  # object_node :affiliate_tracking_details, 'AffiliateTrackingDetails', :class => AffiliateTrackingDetails, :optional => true
14
+ # boolean_node :hide_duplicate_items, 'HideDuplicateItems', 'true', 'false', :optional => true
14
15
  class GetProducts < Abstract
15
16
  include XML::Mapping
16
17
  include Initializer
@@ -22,6 +23,7 @@ module Ebay # :nodoc:
22
23
  boolean_node :include_buying_guide_details, 'IncludeBuyingGuideDetails', 'true', 'false', :optional => true
23
24
  boolean_node :include_histogram, 'IncludeHistogram', 'true', 'false', :optional => true
24
25
  object_node :affiliate_tracking_details, 'AffiliateTrackingDetails', :class => AffiliateTrackingDetails, :optional => true
26
+ boolean_node :hide_duplicate_items, 'HideDuplicateItems', 'true', 'false', :optional => true
25
27
  end
26
28
  end
27
29
  end
@@ -46,7 +46,6 @@ module Ebay # :nodoc:
46
46
  # numeric_node :quantity, 'Quantity', :optional => true
47
47
  # text_node :quantity_operator, 'QuantityOperator', :optional => true
48
48
  # text_node :seller_business_type, 'SellerBusinessType', :optional => true
49
- # boolean_node :digital_delivery, 'DigitalDelivery', 'true', 'false', :optional => true
50
49
  # boolean_node :include_condition, 'IncludeCondition', 'true', 'false', :optional => true
51
50
  # boolean_node :include_feedback, 'IncludeFeedback', 'true', 'false', :optional => true
52
51
  # numeric_node :charity_id, 'CharityID', :optional => true
@@ -57,6 +56,7 @@ module Ebay # :nodoc:
57
56
  # text_node :item_condition, 'ItemCondition', :optional => true
58
57
  # object_node :ticket_finder, 'TicketFinder', :class => TicketDetails, :optional => true
59
58
  # object_node :group, 'Group', :class => Group, :optional => true
59
+ # boolean_node :hide_duplicate_items, 'HideDuplicateItems', 'true', 'false', :optional => true
60
60
  class GetSearchResults < Abstract
61
61
  include XML::Mapping
62
62
  include Initializer
@@ -92,7 +92,6 @@ module Ebay # :nodoc:
92
92
  numeric_node :quantity, 'Quantity', :optional => true
93
93
  text_node :quantity_operator, 'QuantityOperator', :optional => true
94
94
  text_node :seller_business_type, 'SellerBusinessType', :optional => true
95
- boolean_node :digital_delivery, 'DigitalDelivery', 'true', 'false', :optional => true
96
95
  boolean_node :include_condition, 'IncludeCondition', 'true', 'false', :optional => true
97
96
  boolean_node :include_feedback, 'IncludeFeedback', 'true', 'false', :optional => true
98
97
  numeric_node :charity_id, 'CharityID', :optional => true
@@ -103,6 +102,7 @@ module Ebay # :nodoc:
103
102
  text_node :item_condition, 'ItemCondition', :optional => true
104
103
  object_node :ticket_finder, 'TicketFinder', :class => TicketDetails, :optional => true
105
104
  object_node :group, 'Group', :class => Group, :optional => true
105
+ boolean_node :hide_duplicate_items, 'HideDuplicateItems', 'true', 'false', :optional => true
106
106
  end
107
107
  end
108
108
  end
@@ -0,0 +1,13 @@
1
+
2
+ module Ebay # :nodoc:
3
+ module Requests # :nodoc:
4
+ # == Attributes
5
+ class GetSellerDashboard < Abstract
6
+ include XML::Mapping
7
+ include Initializer
8
+ root_element_name 'GetSellerDashboardRequest'
9
+ end
10
+ end
11
+ end
12
+
13
+
@@ -14,6 +14,8 @@ module Ebay # :nodoc:
14
14
  # text_node :granularity_level, 'GranularityLevel', :optional => true
15
15
  # value_array_node :skus, 'SKUArray', 'SKU', :default_value => []
16
16
  # boolean_node :include_watch_count, 'IncludeWatchCount', 'true', 'false', :optional => true
17
+ # boolean_node :admin_ended_items_only, 'AdminEndedItemsOnly', 'true', 'false', :optional => true
18
+ # numeric_node :category_id, 'CategoryID', :optional => true
17
19
  class GetSellerList < Abstract
18
20
  include XML::Mapping
19
21
  include Initializer
@@ -29,6 +31,8 @@ module Ebay # :nodoc:
29
31
  text_node :granularity_level, 'GranularityLevel', :optional => true
30
32
  value_array_node :skus, 'SKUArray', 'SKU', :default_value => []
31
33
  boolean_node :include_watch_count, 'IncludeWatchCount', 'true', 'false', :optional => true
34
+ boolean_node :admin_ended_items_only, 'AdminEndedItemsOnly', 'true', 'false', :optional => true
35
+ numeric_node :category_id, 'CategoryID', :optional => true
32
36
  end
33
37
  end
34
38
  end
@@ -10,6 +10,8 @@ module Ebay # :nodoc:
10
10
  # boolean_node :include_containing_order, 'IncludeContainingOrder', 'true', 'false', :optional => true
11
11
  # value_array_node :skus, 'SKUArray', 'SKU', :default_value => []
12
12
  # text_node :platform, 'Platform', :optional => true
13
+ # numeric_node :number_of_days, 'NumberOfDays', :optional => true
14
+ # text_node :inventory_tracking_method, 'InventoryTrackingMethod', :optional => true
13
15
  class GetSellerTransactions < Abstract
14
16
  include XML::Mapping
15
17
  include Initializer
@@ -21,6 +23,8 @@ module Ebay # :nodoc:
21
23
  boolean_node :include_containing_order, 'IncludeContainingOrder', 'true', 'false', :optional => true
22
24
  value_array_node :skus, 'SKUArray', 'SKU', :default_value => []
23
25
  text_node :platform, 'Platform', :optional => true
26
+ numeric_node :number_of_days, 'NumberOfDays', :optional => true
27
+ text_node :inventory_tracking_method, 'InventoryTrackingMethod', :optional => true
24
28
  end
25
29
  end
26
30
  end
@@ -0,0 +1,13 @@
1
+
2
+ module Ebay # :nodoc:
3
+ module Requests # :nodoc:
4
+ # == Attributes
5
+ class GetSellingManagerAlerts < Abstract
6
+ include XML::Mapping
7
+ include Initializer
8
+ root_element_name 'GetSellingManagerAlertsRequest'
9
+ end
10
+ end
11
+ end
12
+
13
+
@@ -0,0 +1,22 @@
1
+ require 'ebay/types/time_range'
2
+
3
+ module Ebay # :nodoc:
4
+ module Requests # :nodoc:
5
+ # == Attributes
6
+ # text_node :item_id, 'ItemID', :optional => true
7
+ # numeric_node :transaction_id, 'TransactionID', :optional => true
8
+ # text_node :order_id, 'OrderID', :optional => true
9
+ # object_node :email_date_range, 'EmailDateRange', :class => TimeRange, :optional => true
10
+ class GetSellingManagerEmailLog < Abstract
11
+ include XML::Mapping
12
+ include Initializer
13
+ root_element_name 'GetSellingManagerEmailLogRequest'
14
+ text_node :item_id, 'ItemID', :optional => true
15
+ numeric_node :transaction_id, 'TransactionID', :optional => true
16
+ text_node :order_id, 'OrderID', :optional => true
17
+ object_node :email_date_range, 'EmailDateRange', :class => TimeRange, :optional => true
18
+ end
19
+ end
20
+ end
21
+
22
+
@@ -0,0 +1,29 @@
1
+ require 'ebay/types/pagination'
2
+ require 'ebay/types/selling_manager_search'
3
+
4
+ module Ebay # :nodoc:
5
+ module Requests # :nodoc:
6
+ # == Attributes
7
+ # text_node :sort, 'Sort', :optional => true
8
+ # numeric_node :folder_id, 'FolderID', :optional => true
9
+ # object_node :pagination, 'Pagination', :class => Pagination, :optional => true
10
+ # text_node :sort_order, 'SortOrder', :optional => true
11
+ # object_node :search, 'Search', :class => SellingManagerSearch, :optional => true
12
+ # numeric_node :store_category_id, 'StoreCategoryID', :optional => true
13
+ # value_array_node :filters, 'Filter', :default_value => []
14
+ class GetSellingManagerInventory < Abstract
15
+ include XML::Mapping
16
+ include Initializer
17
+ root_element_name 'GetSellingManagerInventoryRequest'
18
+ text_node :sort, 'Sort', :optional => true
19
+ numeric_node :folder_id, 'FolderID', :optional => true
20
+ object_node :pagination, 'Pagination', :class => Pagination, :optional => true
21
+ text_node :sort_order, 'SortOrder', :optional => true
22
+ object_node :search, 'Search', :class => SellingManagerSearch, :optional => true
23
+ numeric_node :store_category_id, 'StoreCategoryID', :optional => true
24
+ value_array_node :filters, 'Filter', :default_value => []
25
+ end
26
+ end
27
+ end
28
+
29
+
@@ -0,0 +1,19 @@
1
+
2
+ module Ebay # :nodoc:
3
+ module Requests # :nodoc:
4
+ # == Attributes
5
+ # numeric_node :folder_id, 'FolderID', :optional => true
6
+ # numeric_node :max_depth, 'MaxDepth', :optional => true
7
+ # boolean_node :full_recursion, 'FullRecursion', 'true', 'false', :optional => true
8
+ class GetSellingManagerInventoryFolder < Abstract
9
+ include XML::Mapping
10
+ include Initializer
11
+ root_element_name 'GetSellingManagerInventoryFolderRequest'
12
+ numeric_node :folder_id, 'FolderID', :optional => true
13
+ numeric_node :max_depth, 'MaxDepth', :optional => true
14
+ boolean_node :full_recursion, 'FullRecursion', 'true', 'false', :optional => true
15
+ end
16
+ end
17
+ end
18
+
19
+
@@ -0,0 +1,15 @@
1
+
2
+ module Ebay # :nodoc:
3
+ module Requests # :nodoc:
4
+ # == Attributes
5
+ # text_node :item_id, 'ItemID', :optional => true
6
+ class GetSellingManagerItemAutomationRule < Abstract
7
+ include XML::Mapping
8
+ include Initializer
9
+ root_element_name 'GetSellingManagerItemAutomationRuleRequest'
10
+ text_node :item_id, 'ItemID', :optional => true
11
+ end
12
+ end
13
+ end
14
+
15
+