wink-sdk-travel-agent 0.0.41__tar.gz → 0.0.42__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.

Potentially problematic release.


This version of wink-sdk-travel-agent might be problematic. Click here for more details.

Files changed (279) hide show
  1. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/PKG-INFO +24 -24
  2. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/README.md +23 -23
  3. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/pyproject.toml +2 -2
  4. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/setup.py +5 -4
  5. wink_sdk_travel_agent-0.0.42/test/test_analytics_api.py +46 -0
  6. wink_sdk_travel_agent-0.0.42/test/test_booking_analytics_supplier.py +83 -0
  7. wink_sdk_travel_agent-0.0.42/test/test_booking_overview_request_supplier.py +54 -0
  8. wink_sdk_travel_agent-0.0.42/test/test_chart_category_axis_supplier.py +54 -0
  9. wink_sdk_travel_agent-0.0.42/test/test_chart_legend_supplier.py +54 -0
  10. wink_sdk_travel_agent-0.0.42/test/test_chart_series_supplier.py +55 -0
  11. wink_sdk_travel_agent-0.0.42/test/test_chart_title_supplier.py +52 -0
  12. wink_sdk_travel_agent-0.0.42/test/test_grouped_booking_sales_metrics_supplier_details.py +58 -0
  13. wink_sdk_travel_agent-0.0.42/test/test_line_chart_supplier.py +73 -0
  14. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/__init__.py +349 -0
  15. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/api/__init__.py +22 -0
  16. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/api/analytics_api.py +671 -0
  17. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/api/travel_agent_api.py +1 -324
  18. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/api_client.py +9 -2
  19. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/configuration.py +3 -3
  20. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/exceptions.py +1 -1
  21. {wink_sdk_travel_agent-0.0.41/wink_sdk_travel_agent → wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models}/__init__.py +113 -25
  22. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/agent_booking_request_agent.py +4 -4
  23. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/aggregate_descriptor_agent.py +1 -1
  24. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/authenticated_user_agent.py +3 -2
  25. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/bed_agent.py +1 -1
  26. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/bedroom_agent.py +1 -1
  27. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/bedroom_configuration_agent.py +3 -2
  28. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/beneficiary_agent.py +1 -1
  29. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/beneficiary_charge_agent.py +1 -1
  30. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_agent.py +14 -13
  31. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models/booking_analytics_supplier.py +96 -0
  32. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_ancillary_agent.py +7 -6
  33. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_confirmations_agent.py +1 -1
  34. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_contract_agent.py +10 -9
  35. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_contract_item_agent.py +1 -1
  36. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_contract_payment_details_agent.py +1 -1
  37. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_itinerary_agent.py +1 -1
  38. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_itinerary_room_configuration_agent.py +1 -1
  39. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_itinerary_room_configuration_child_agent.py +1 -1
  40. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models/booking_overview_request_supplier.py +97 -0
  41. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_user_agent.py +3 -2
  42. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_user_request_agent.py +1 -1
  43. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_user_session_agent.py +1 -1
  44. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/boolean_response_agent.py +1 -1
  45. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/cancellation_detail_agent.py +1 -1
  46. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/cancellation_policy_exception_agent.py +3 -3
  47. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/cancellation_policy_exceptions_agent.py +1 -1
  48. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/cancellation_policy_lightweight_agent.py +4 -3
  49. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models/chart_category_axis_supplier.py +88 -0
  50. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models/chart_legend_supplier.py +88 -0
  51. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models/chart_series_supplier.py +90 -0
  52. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models/chart_title_supplier.py +88 -0
  53. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/child_agent.py +1 -1
  54. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/commissionable_entry_agent.py +1 -1
  55. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/composite_filter_descriptor_agent.py +1 -1
  56. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/contact_agent.py +1 -1
  57. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/country_lightweight_agent.py +1 -1
  58. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/create_agent_booking400_response.py +1 -1
  59. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/create_agent_booking_request_agent.py +1 -1
  60. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/custom_monetary_amount.py +1 -1
  61. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/customization_lightweight_agent.py +5 -4
  62. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/customization_theme_colors_agent.py +1 -1
  63. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/extra_charge_agent.py +1 -1
  64. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/extra_charges_agent.py +1 -1
  65. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/filter_descriptor_agent.py +1 -1
  66. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/general_manager_agent.py +1 -1
  67. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/generic_error_message.py +4 -6
  68. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/geo_json_point_agent.py +1 -1
  69. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/geo_name_lightweight_agent.py +1 -1
  70. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/group_descriptor_agent.py +1 -1
  71. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models/grouped_booking_sales_metrics_supplier_details.py +110 -0
  72. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/guest_room_lightweight_agent.py +5 -4
  73. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/guest_user_agent.py +3 -2
  74. wink_sdk_travel_agent-0.0.42/wink_sdk_travel_agent/models/line_chart_supplier.py +122 -0
  75. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/localized_description_agent.py +1 -1
  76. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/localized_price_agent.py +10 -10
  77. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/media_author_attribution_agent.py +1 -1
  78. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/page_booking_agent.py +1 -1
  79. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/pageable_object_agent.py +4 -4
  80. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/payout_agent.py +4 -3
  81. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/payout_fee_agent.py +3 -2
  82. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/perk_lightweight_agent.py +1 -1
  83. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/personal_agent.py +1 -1
  84. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/preferences_agent.py +1 -1
  85. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/profile_lightweight_agent.py +4 -4
  86. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/profile_user_agent.py +1 -1
  87. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/property_aggregate_lightweight_agent.py +6 -3
  88. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/property_policy_agent.py +1 -1
  89. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/quote_lightweight_agent.py +1 -1
  90. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/rate_plan_level_fee_agent.py +1 -1
  91. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/refund_agent.py +1 -1
  92. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/review_answer_agent.py +3 -3
  93. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/review_lightweight_agent.py +5 -4
  94. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/review_user_agent.py +3 -2
  95. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/room_configuration_agent.py +1 -1
  96. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/room_configuration_price_rate_plan_agent.py +3 -2
  97. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/room_stay_agent.py +10 -9
  98. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/simple_address_agent.py +1 -1
  99. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/simple_date_time_itinerary_agent.py +6 -6
  100. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/simple_description_agent.py +1 -1
  101. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/simple_multimedia_agent.py +3 -2
  102. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/social_agent.py +1 -1
  103. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/sort_descriptor_agent.py +1 -1
  104. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/sort_object_agent.py +5 -5
  105. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/state_agent.py +1 -1
  106. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/stay_rate_agent.py +1 -1
  107. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/sub_country_lightweight_agent.py +1 -1
  108. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/sub_sub_country_lightweight_agent.py +1 -1
  109. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/supplier_contract_item_policy_agent.py +1 -1
  110. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/travel_inventory_recognition_agent.py +3 -2
  111. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/rest.py +1 -1
  112. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent.egg-info/PKG-INFO +24 -24
  113. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent.egg-info/SOURCES.txt +18 -0
  114. wink_sdk_travel_agent-0.0.41/wink_sdk_travel_agent/api/__init__.py +0 -5
  115. wink_sdk_travel_agent-0.0.41/wink_sdk_travel_agent/models/__init__.py +0 -105
  116. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/LICENSE +0 -0
  117. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/setup.cfg +0 -0
  118. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_address_agent.py +0 -0
  119. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_affiliate_account_agent.py +0 -0
  120. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_affiliate_account_user_agent.py +0 -0
  121. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_agent_booking_request_agent.py +0 -0
  122. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_aggregate_descriptor_agent.py +0 -0
  123. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_ancillary_request_agent.py +0 -0
  124. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_authenticated_user_agent.py +0 -0
  125. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_bed_agent.py +0 -0
  126. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_bedroom_agent.py +0 -0
  127. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_bedroom_configuration_agent.py +0 -0
  128. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_beneficiary_agent.py +0 -0
  129. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_beneficiary_charge_agent.py +0 -0
  130. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_agent.py +0 -0
  131. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_ancillary_agent.py +0 -0
  132. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_confirmations_agent.py +0 -0
  133. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_contract_agent.py +0 -0
  134. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_contract_item_agent.py +0 -0
  135. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_contract_payment_details_agent.py +0 -0
  136. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_itinerary_agent.py +0 -0
  137. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_itinerary_room_configuration_agent.py +0 -0
  138. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_itinerary_room_configuration_child_agent.py +0 -0
  139. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_user_agent.py +0 -0
  140. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_user_request_agent.py +0 -0
  141. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_user_session_agent.py +0 -0
  142. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_booking_view_agent.py +0 -0
  143. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_boolean_response_agent.py +0 -0
  144. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_cancellation_detail_agent.py +0 -0
  145. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_cancellation_policy_agent.py +0 -0
  146. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_cancellation_policy_exception_agent.py +0 -0
  147. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_cancellation_policy_exceptions_agent.py +0 -0
  148. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_cancellation_policy_lightweight_agent.py +0 -0
  149. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_child_agent.py +0 -0
  150. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_commissionable_entry_agent.py +0 -0
  151. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_company_agent.py +0 -0
  152. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_company_user_agent.py +0 -0
  153. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_company_view_agent.py +0 -0
  154. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_composite_filter_descriptor_agent.py +0 -0
  155. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_contact_agent.py +0 -0
  156. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_country_agent.py +0 -0
  157. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_country_lightweight_agent.py +0 -0
  158. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_create_agent_booking400_response.py +0 -0
  159. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_create_agent_booking_request_agent.py +0 -0
  160. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_custom_monetary_amount.py +0 -0
  161. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_customization_lightweight_agent.py +0 -0
  162. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_customization_theme_colors_agent.py +0 -0
  163. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_daily_rate_agent.py +0 -0
  164. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_dow_pattern_group_agent.py +0 -0
  165. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_engine_configuration_booking_report_agent.py +0 -0
  166. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_engine_configuration_theme_agent.py +0 -0
  167. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_engine_configuration_theme_colors_agent.py +0 -0
  168. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_extra_charge_agent.py +0 -0
  169. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_extra_charges_agent.py +0 -0
  170. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_fee_agent.py +0 -0
  171. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_filter_descriptor_agent.py +0 -0
  172. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_general_manager_agent.py +0 -0
  173. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_generic_error_message.py +0 -0
  174. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_geo_json_point_agent.py +0 -0
  175. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_geo_name_agent.py +0 -0
  176. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_geo_name_lightweight_agent.py +0 -0
  177. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_group_descriptor_agent.py +0 -0
  178. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_guest_room_agent.py +0 -0
  179. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_guest_room_lightweight_agent.py +0 -0
  180. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_guest_user_agent.py +0 -0
  181. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_hotel_on_map_agent.py +0 -0
  182. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_image_attribution_agent.py +0 -0
  183. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_localized_description_agent.py +0 -0
  184. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_localized_price_agent.py +0 -0
  185. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_managed_by_entity_agent.py +0 -0
  186. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_managed_by_entity_rules_agent.py +0 -0
  187. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_media_author_attribution_agent.py +0 -0
  188. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_online_presence_agent.py +0 -0
  189. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_page_booking_agent.py +0 -0
  190. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_page_booking_view_agent.py +0 -0
  191. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_pageable_object_agent.py +0 -0
  192. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_payout_agent.py +0 -0
  193. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_payout_fee_agent.py +0 -0
  194. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_pending_refund_agent.py +0 -0
  195. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_perk_lightweight_agent.py +0 -0
  196. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_personal_agent.py +0 -0
  197. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_pet_info_dto_agent.py +0 -0
  198. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_preferences_agent.py +0 -0
  199. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_profile_agent.py +0 -0
  200. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_profile_lightweight_agent.py +0 -0
  201. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_profile_user_agent.py +0 -0
  202. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_property_aggregate_lightweight_agent.py +0 -0
  203. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_property_policy_agent.py +0 -0
  204. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_quote_agent.py +0 -0
  205. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_quote_lightweight_agent.py +0 -0
  206. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_rate_plan_agent.py +0 -0
  207. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_rate_plan_level_fee_agent.py +0 -0
  208. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_refund_agent.py +0 -0
  209. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_reporting_ancillary_agent.py +0 -0
  210. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_reporting_daily_rate_agent.py +0 -0
  211. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_reporting_extra_charge_agent.py +0 -0
  212. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_review_agent.py +0 -0
  213. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_review_answer_agent.py +0 -0
  214. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_review_lightweight_agent.py +0 -0
  215. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_review_user_agent.py +0 -0
  216. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_room_configuration_agent.py +0 -0
  217. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_room_configuration_price_rate_plan_agent.py +0 -0
  218. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_room_stay_agent.py +0 -0
  219. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_simple_address_agent.py +0 -0
  220. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_simple_date_time_itinerary_agent.py +0 -0
  221. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_simple_description_agent.py +0 -0
  222. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_simple_multimedia_agent.py +0 -0
  223. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_social_agent.py +0 -0
  224. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_sort_descriptor_agent.py +0 -0
  225. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_sort_object.py +0 -0
  226. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_sort_object_agent.py +0 -0
  227. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_state_agent.py +0 -0
  228. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_stay_rate_agent.py +0 -0
  229. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_sub_country_agent.py +0 -0
  230. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_sub_country_lightweight_agent.py +0 -0
  231. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_sub_sub_country_agent.py +0 -0
  232. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_sub_sub_country_lightweight_agent.py +0 -0
  233. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_supplier_contract_item_policy_agent.py +0 -0
  234. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_travel_agent_agent.py +0 -0
  235. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_travel_agent_api.py +0 -0
  236. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_travel_inventory_recognition_agent.py +0 -0
  237. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/test/test_upsert_travel_agent_request_agent.py +0 -0
  238. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/api_response.py +0 -0
  239. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/address_agent.py +0 -0
  240. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/affiliate_account_agent.py +0 -0
  241. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/affiliate_account_user_agent.py +0 -0
  242. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/ancillary_request_agent.py +0 -0
  243. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/booking_view_agent.py +0 -0
  244. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/cancellation_policy_agent.py +0 -0
  245. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/company_agent.py +0 -0
  246. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/company_user_agent.py +0 -0
  247. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/company_view_agent.py +0 -0
  248. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/country_agent.py +0 -0
  249. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/daily_rate_agent.py +0 -0
  250. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/dow_pattern_group_agent.py +0 -0
  251. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/engine_configuration_booking_report_agent.py +0 -0
  252. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/engine_configuration_theme_agent.py +0 -0
  253. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/engine_configuration_theme_colors_agent.py +0 -0
  254. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/fee_agent.py +0 -0
  255. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/geo_name_agent.py +0 -0
  256. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/guest_room_agent.py +0 -0
  257. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/hotel_on_map_agent.py +0 -0
  258. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/image_attribution_agent.py +0 -0
  259. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/managed_by_entity_agent.py +0 -0
  260. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/managed_by_entity_rules_agent.py +0 -0
  261. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/online_presence_agent.py +0 -0
  262. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/page_booking_view_agent.py +0 -0
  263. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/pending_refund_agent.py +0 -0
  264. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/pet_info_dto_agent.py +0 -0
  265. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/profile_agent.py +0 -0
  266. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/quote_agent.py +0 -0
  267. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/rate_plan_agent.py +0 -0
  268. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/reporting_ancillary_agent.py +0 -0
  269. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/reporting_daily_rate_agent.py +0 -0
  270. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/reporting_extra_charge_agent.py +0 -0
  271. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/review_agent.py +0 -0
  272. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/sort_object.py +0 -0
  273. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/sub_country_agent.py +0 -0
  274. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/sub_sub_country_agent.py +0 -0
  275. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/travel_agent_agent.py +0 -0
  276. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/models/upsert_travel_agent_request_agent.py +0 -0
  277. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent/py.typed +0 -0
  278. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent.egg-info/dependency_links.txt +0 -0
  279. {wink_sdk_travel_agent-0.0.41 → wink_sdk_travel_agent-0.0.42}/wink_sdk_travel_agent.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wink_sdk_travel_agent
3
- Version: 0.0.41
3
+ Version: 0.0.42
4
4
  Summary: Wink API
5
5
  Home-page: https://github.com/wink-travel/wink-sdk-python.git
6
6
  Author: Bjorn Harvold
@@ -320,14 +320,14 @@ Browse the endpoints in the left navigation bar to get started.
320
320
 
321
321
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
322
322
 
323
- - API version: 30.18.6
324
- - Package version: 0.0.41
325
- - Generator version: 7.12.0
323
+ - API version: 30.20.0
324
+ - Package version: 0.0.42
325
+ - Generator version: 7.15.0
326
326
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
327
327
 
328
328
  ## Requirements.
329
329
 
330
- Python 3.8+
330
+ Python 3.9+
331
331
 
332
332
  ## Installation & Usage
333
333
  ### pip install
@@ -339,9 +339,9 @@ pip install wink_sdk_travel_agent
339
339
 
340
340
  Or you can install it directly from the repository using:
341
341
  ```sh
342
- pip install git+https://github.com/wink-travel/wink-sdk-python.git@v0.0.41#egg=wink_sdk_travel_agent&subdirectory=wink-sdk-travel-agent
342
+ pip install git+https://github.com/wink-travel/wink-sdk-python.git@v0.0.42#egg=wink_sdk_travel_agent&subdirectory=wink-sdk-travel-agent
343
343
  ```
344
- (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/wink-travel/wink-sdk-python.git@v0.0.41#egg=wink_sdk_travel_agent&subdirectory=wink_sdk_travel_agent`)
344
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/wink-travel/wink-sdk-python.git@v0.0.42#egg=wink_sdk_travel_agent&subdirectory=wink_sdk_travel_agent`)
345
345
 
346
346
  Then import the package:
347
347
  ```python
@@ -393,19 +393,18 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
393
393
  # Enter a context with an instance of the API client
394
394
  with wink_sdk_travel_agent.ApiClient(configuration) as api_client:
395
395
  # Create an instance of the API class
396
- api_instance = wink_sdk_travel_agent.TravelAgentApi(api_client)
397
- company_identifier = 'company-1' # str | Cancel booking owned by company identifier
398
- booking_identifier = 'booking-1' # str | Cancel booking by identifier
399
- cancellation_detail_agent = wink_sdk_travel_agent.CancellationDetailAgent() # CancellationDetailAgent |
396
+ api_instance = wink_sdk_travel_agent.AnalyticsApi(api_client)
397
+ company_identifier = 'company-1' # str | Show active booking count for company with this identifier
398
+ booking_overview_request_supplier = wink_sdk_travel_agent.BookingOverviewRequestSupplier() # BookingOverviewRequestSupplier | Overview request body
400
399
  wink_version = 'wink_version_example' # str | (optional)
401
400
 
402
401
  try:
403
- # Cancel Booking
404
- api_response = api_instance.cancel_booking_as_travel_agent(company_identifier, booking_identifier, cancellation_detail_agent, wink_version=wink_version)
405
- print("The response of TravelAgentApi->cancel_booking_as_travel_agent:\n")
402
+ # Affiliate Booking Analytics
403
+ api_response = api_instance.show_affiliate_booking_analytics(company_identifier, booking_overview_request_supplier, wink_version=wink_version)
404
+ print("The response of AnalyticsApi->show_affiliate_booking_analytics:\n")
406
405
  pprint(api_response)
407
406
  except ApiException as e:
408
- print("Exception when calling TravelAgentApi->cancel_booking_as_travel_agent: %s\n" % e)
407
+ print("Exception when calling AnalyticsApi->show_affiliate_booking_analytics: %s\n" % e)
409
408
 
410
409
  ```
411
410
 
@@ -415,19 +414,17 @@ All URIs are relative to *https://api.wink.travel*
415
414
 
416
415
  Class | Method | HTTP request | Description
417
416
  ------------ | ------------- | ------------- | -------------
417
+ *AnalyticsApi* | [**show_affiliate_booking_analytics**](docs/AnalyticsApi.md#show_affiliate_booking_analytics) | **POST** /api/affiliate/{companyIdentifier}/booking/analytics | Affiliate Booking Analytics
418
+ *AnalyticsApi* | [**show_booking_overview**](docs/AnalyticsApi.md#show_booking_overview) | **GET** /api/affiliate/{companyIdentifier}/booking/overview | Affiliate Booking Overview
418
419
  *TravelAgentApi* | [**cancel_booking_as_travel_agent**](docs/TravelAgentApi.md#cancel_booking_as_travel_agent) | **PATCH** /api/affiliate/{companyIdentifier}/booking/{bookingIdentifier} | Cancel Booking
419
420
  *TravelAgentApi* | [**create_agent_booking**](docs/TravelAgentApi.md#create_agent_booking) | **POST** /api/booking/agent | Create Agent Booking
420
421
  *TravelAgentApi* | [**resend_booking_confirmation_email_as_travel_agent**](docs/TravelAgentApi.md#resend_booking_confirmation_email_as_travel_agent) | **PATCH** /api/affiliate/{companyIdentifier}/booking/{bookingIdentifier}/resend | Resend Booking Confirmation
421
422
  *TravelAgentApi* | [**show_booking_as_travel_agent**](docs/TravelAgentApi.md#show_booking_as_travel_agent) | **GET** /api/affiliate/{companyIdentifier}/booking/{bookingIdentifier} | Show Booking
422
423
  *TravelAgentApi* | [**show_booking_grid_as_travel_agent**](docs/TravelAgentApi.md#show_booking_grid_as_travel_agent) | **POST** /api/affiliate/{companyIdentifier}/booking/grid | Show Bookings
423
- *TravelAgentApi* | [**update_agent**](docs/TravelAgentApi.md#update_agent) | **PATCH** /api/affiliate/{companyIdentifier}/agent | Update Agent
424
424
 
425
425
 
426
426
  ## Documentation For Models
427
427
 
428
- - [AddressAgent](docs/AddressAgent.md)
429
- - [AffiliateAccountAgent](docs/AffiliateAccountAgent.md)
430
- - [AffiliateAccountUserAgent](docs/AffiliateAccountUserAgent.md)
431
428
  - [AgentBookingRequestAgent](docs/AgentBookingRequestAgent.md)
432
429
  - [AggregateDescriptorAgent](docs/AggregateDescriptorAgent.md)
433
430
  - [AuthenticatedUserAgent](docs/AuthenticatedUserAgent.md)
@@ -437,6 +434,7 @@ Class | Method | HTTP request | Description
437
434
  - [BeneficiaryAgent](docs/BeneficiaryAgent.md)
438
435
  - [BeneficiaryChargeAgent](docs/BeneficiaryChargeAgent.md)
439
436
  - [BookingAgent](docs/BookingAgent.md)
437
+ - [BookingAnalyticsSupplier](docs/BookingAnalyticsSupplier.md)
440
438
  - [BookingAncillaryAgent](docs/BookingAncillaryAgent.md)
441
439
  - [BookingConfirmationsAgent](docs/BookingConfirmationsAgent.md)
442
440
  - [BookingContractAgent](docs/BookingContractAgent.md)
@@ -445,6 +443,7 @@ Class | Method | HTTP request | Description
445
443
  - [BookingItineraryAgent](docs/BookingItineraryAgent.md)
446
444
  - [BookingItineraryRoomConfigurationAgent](docs/BookingItineraryRoomConfigurationAgent.md)
447
445
  - [BookingItineraryRoomConfigurationChildAgent](docs/BookingItineraryRoomConfigurationChildAgent.md)
446
+ - [BookingOverviewRequestSupplier](docs/BookingOverviewRequestSupplier.md)
448
447
  - [BookingUserAgent](docs/BookingUserAgent.md)
449
448
  - [BookingUserRequestAgent](docs/BookingUserRequestAgent.md)
450
449
  - [BookingUserSessionAgent](docs/BookingUserSessionAgent.md)
@@ -453,6 +452,10 @@ Class | Method | HTTP request | Description
453
452
  - [CancellationPolicyExceptionAgent](docs/CancellationPolicyExceptionAgent.md)
454
453
  - [CancellationPolicyExceptionsAgent](docs/CancellationPolicyExceptionsAgent.md)
455
454
  - [CancellationPolicyLightweightAgent](docs/CancellationPolicyLightweightAgent.md)
455
+ - [ChartCategoryAxisSupplier](docs/ChartCategoryAxisSupplier.md)
456
+ - [ChartLegendSupplier](docs/ChartLegendSupplier.md)
457
+ - [ChartSeriesSupplier](docs/ChartSeriesSupplier.md)
458
+ - [ChartTitleSupplier](docs/ChartTitleSupplier.md)
456
459
  - [ChildAgent](docs/ChildAgent.md)
457
460
  - [CommissionableEntryAgent](docs/CommissionableEntryAgent.md)
458
461
  - [CompositeFilterDescriptorAgent](docs/CompositeFilterDescriptorAgent.md)
@@ -471,12 +474,12 @@ Class | Method | HTTP request | Description
471
474
  - [GeoJsonPointAgent](docs/GeoJsonPointAgent.md)
472
475
  - [GeoNameLightweightAgent](docs/GeoNameLightweightAgent.md)
473
476
  - [GroupDescriptorAgent](docs/GroupDescriptorAgent.md)
477
+ - [GroupedBookingSalesMetricsSupplierDetails](docs/GroupedBookingSalesMetricsSupplierDetails.md)
474
478
  - [GuestRoomLightweightAgent](docs/GuestRoomLightweightAgent.md)
475
479
  - [GuestUserAgent](docs/GuestUserAgent.md)
480
+ - [LineChartSupplier](docs/LineChartSupplier.md)
476
481
  - [LocalizedDescriptionAgent](docs/LocalizedDescriptionAgent.md)
477
482
  - [LocalizedPriceAgent](docs/LocalizedPriceAgent.md)
478
- - [ManagedByEntityAgent](docs/ManagedByEntityAgent.md)
479
- - [ManagedByEntityRulesAgent](docs/ManagedByEntityRulesAgent.md)
480
483
  - [MediaAuthorAttributionAgent](docs/MediaAuthorAttributionAgent.md)
481
484
  - [PageBookingAgent](docs/PageBookingAgent.md)
482
485
  - [PageableObjectAgent](docs/PageableObjectAgent.md)
@@ -510,9 +513,7 @@ Class | Method | HTTP request | Description
510
513
  - [SubCountryLightweightAgent](docs/SubCountryLightweightAgent.md)
511
514
  - [SubSubCountryLightweightAgent](docs/SubSubCountryLightweightAgent.md)
512
515
  - [SupplierContractItemPolicyAgent](docs/SupplierContractItemPolicyAgent.md)
513
- - [TravelAgentAgent](docs/TravelAgentAgent.md)
514
516
  - [TravelInventoryRecognitionAgent](docs/TravelInventoryRecognitionAgent.md)
515
- - [UpsertTravelAgentRequestAgent](docs/UpsertTravelAgentRequestAgent.md)
516
517
 
517
518
 
518
519
  <a id="documentation-for-authorization"></a>
@@ -536,4 +537,3 @@ Authentication schemes defined for the API:
536
537
 
537
538
  bjorn@wink.travel
538
539
 
539
-
@@ -104,14 +104,14 @@ Browse the endpoints in the left navigation bar to get started.
104
104
 
105
105
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
106
106
 
107
- - API version: 30.18.6
108
- - Package version: 0.0.41
109
- - Generator version: 7.12.0
107
+ - API version: 30.20.0
108
+ - Package version: 0.0.42
109
+ - Generator version: 7.15.0
110
110
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
111
111
 
112
112
  ## Requirements.
113
113
 
114
- Python 3.8+
114
+ Python 3.9+
115
115
 
116
116
  ## Installation & Usage
117
117
  ### pip install
@@ -123,9 +123,9 @@ pip install wink_sdk_travel_agent
123
123
 
124
124
  Or you can install it directly from the repository using:
125
125
  ```sh
126
- pip install git+https://github.com/wink-travel/wink-sdk-python.git@v0.0.41#egg=wink_sdk_travel_agent&subdirectory=wink-sdk-travel-agent
126
+ pip install git+https://github.com/wink-travel/wink-sdk-python.git@v0.0.42#egg=wink_sdk_travel_agent&subdirectory=wink-sdk-travel-agent
127
127
  ```
128
- (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/wink-travel/wink-sdk-python.git@v0.0.41#egg=wink_sdk_travel_agent&subdirectory=wink_sdk_travel_agent`)
128
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/wink-travel/wink-sdk-python.git@v0.0.42#egg=wink_sdk_travel_agent&subdirectory=wink_sdk_travel_agent`)
129
129
 
130
130
  Then import the package:
131
131
  ```python
@@ -177,19 +177,18 @@ configuration.access_token = os.environ["ACCESS_TOKEN"]
177
177
  # Enter a context with an instance of the API client
178
178
  with wink_sdk_travel_agent.ApiClient(configuration) as api_client:
179
179
  # Create an instance of the API class
180
- api_instance = wink_sdk_travel_agent.TravelAgentApi(api_client)
181
- company_identifier = 'company-1' # str | Cancel booking owned by company identifier
182
- booking_identifier = 'booking-1' # str | Cancel booking by identifier
183
- cancellation_detail_agent = wink_sdk_travel_agent.CancellationDetailAgent() # CancellationDetailAgent |
180
+ api_instance = wink_sdk_travel_agent.AnalyticsApi(api_client)
181
+ company_identifier = 'company-1' # str | Show active booking count for company with this identifier
182
+ booking_overview_request_supplier = wink_sdk_travel_agent.BookingOverviewRequestSupplier() # BookingOverviewRequestSupplier | Overview request body
184
183
  wink_version = 'wink_version_example' # str | (optional)
185
184
 
186
185
  try:
187
- # Cancel Booking
188
- api_response = api_instance.cancel_booking_as_travel_agent(company_identifier, booking_identifier, cancellation_detail_agent, wink_version=wink_version)
189
- print("The response of TravelAgentApi->cancel_booking_as_travel_agent:\n")
186
+ # Affiliate Booking Analytics
187
+ api_response = api_instance.show_affiliate_booking_analytics(company_identifier, booking_overview_request_supplier, wink_version=wink_version)
188
+ print("The response of AnalyticsApi->show_affiliate_booking_analytics:\n")
190
189
  pprint(api_response)
191
190
  except ApiException as e:
192
- print("Exception when calling TravelAgentApi->cancel_booking_as_travel_agent: %s\n" % e)
191
+ print("Exception when calling AnalyticsApi->show_affiliate_booking_analytics: %s\n" % e)
193
192
 
194
193
  ```
195
194
 
@@ -199,19 +198,17 @@ All URIs are relative to *https://api.wink.travel*
199
198
 
200
199
  Class | Method | HTTP request | Description
201
200
  ------------ | ------------- | ------------- | -------------
201
+ *AnalyticsApi* | [**show_affiliate_booking_analytics**](docs/AnalyticsApi.md#show_affiliate_booking_analytics) | **POST** /api/affiliate/{companyIdentifier}/booking/analytics | Affiliate Booking Analytics
202
+ *AnalyticsApi* | [**show_booking_overview**](docs/AnalyticsApi.md#show_booking_overview) | **GET** /api/affiliate/{companyIdentifier}/booking/overview | Affiliate Booking Overview
202
203
  *TravelAgentApi* | [**cancel_booking_as_travel_agent**](docs/TravelAgentApi.md#cancel_booking_as_travel_agent) | **PATCH** /api/affiliate/{companyIdentifier}/booking/{bookingIdentifier} | Cancel Booking
203
204
  *TravelAgentApi* | [**create_agent_booking**](docs/TravelAgentApi.md#create_agent_booking) | **POST** /api/booking/agent | Create Agent Booking
204
205
  *TravelAgentApi* | [**resend_booking_confirmation_email_as_travel_agent**](docs/TravelAgentApi.md#resend_booking_confirmation_email_as_travel_agent) | **PATCH** /api/affiliate/{companyIdentifier}/booking/{bookingIdentifier}/resend | Resend Booking Confirmation
205
206
  *TravelAgentApi* | [**show_booking_as_travel_agent**](docs/TravelAgentApi.md#show_booking_as_travel_agent) | **GET** /api/affiliate/{companyIdentifier}/booking/{bookingIdentifier} | Show Booking
206
207
  *TravelAgentApi* | [**show_booking_grid_as_travel_agent**](docs/TravelAgentApi.md#show_booking_grid_as_travel_agent) | **POST** /api/affiliate/{companyIdentifier}/booking/grid | Show Bookings
207
- *TravelAgentApi* | [**update_agent**](docs/TravelAgentApi.md#update_agent) | **PATCH** /api/affiliate/{companyIdentifier}/agent | Update Agent
208
208
 
209
209
 
210
210
  ## Documentation For Models
211
211
 
212
- - [AddressAgent](docs/AddressAgent.md)
213
- - [AffiliateAccountAgent](docs/AffiliateAccountAgent.md)
214
- - [AffiliateAccountUserAgent](docs/AffiliateAccountUserAgent.md)
215
212
  - [AgentBookingRequestAgent](docs/AgentBookingRequestAgent.md)
216
213
  - [AggregateDescriptorAgent](docs/AggregateDescriptorAgent.md)
217
214
  - [AuthenticatedUserAgent](docs/AuthenticatedUserAgent.md)
@@ -221,6 +218,7 @@ Class | Method | HTTP request | Description
221
218
  - [BeneficiaryAgent](docs/BeneficiaryAgent.md)
222
219
  - [BeneficiaryChargeAgent](docs/BeneficiaryChargeAgent.md)
223
220
  - [BookingAgent](docs/BookingAgent.md)
221
+ - [BookingAnalyticsSupplier](docs/BookingAnalyticsSupplier.md)
224
222
  - [BookingAncillaryAgent](docs/BookingAncillaryAgent.md)
225
223
  - [BookingConfirmationsAgent](docs/BookingConfirmationsAgent.md)
226
224
  - [BookingContractAgent](docs/BookingContractAgent.md)
@@ -229,6 +227,7 @@ Class | Method | HTTP request | Description
229
227
  - [BookingItineraryAgent](docs/BookingItineraryAgent.md)
230
228
  - [BookingItineraryRoomConfigurationAgent](docs/BookingItineraryRoomConfigurationAgent.md)
231
229
  - [BookingItineraryRoomConfigurationChildAgent](docs/BookingItineraryRoomConfigurationChildAgent.md)
230
+ - [BookingOverviewRequestSupplier](docs/BookingOverviewRequestSupplier.md)
232
231
  - [BookingUserAgent](docs/BookingUserAgent.md)
233
232
  - [BookingUserRequestAgent](docs/BookingUserRequestAgent.md)
234
233
  - [BookingUserSessionAgent](docs/BookingUserSessionAgent.md)
@@ -237,6 +236,10 @@ Class | Method | HTTP request | Description
237
236
  - [CancellationPolicyExceptionAgent](docs/CancellationPolicyExceptionAgent.md)
238
237
  - [CancellationPolicyExceptionsAgent](docs/CancellationPolicyExceptionsAgent.md)
239
238
  - [CancellationPolicyLightweightAgent](docs/CancellationPolicyLightweightAgent.md)
239
+ - [ChartCategoryAxisSupplier](docs/ChartCategoryAxisSupplier.md)
240
+ - [ChartLegendSupplier](docs/ChartLegendSupplier.md)
241
+ - [ChartSeriesSupplier](docs/ChartSeriesSupplier.md)
242
+ - [ChartTitleSupplier](docs/ChartTitleSupplier.md)
240
243
  - [ChildAgent](docs/ChildAgent.md)
241
244
  - [CommissionableEntryAgent](docs/CommissionableEntryAgent.md)
242
245
  - [CompositeFilterDescriptorAgent](docs/CompositeFilterDescriptorAgent.md)
@@ -255,12 +258,12 @@ Class | Method | HTTP request | Description
255
258
  - [GeoJsonPointAgent](docs/GeoJsonPointAgent.md)
256
259
  - [GeoNameLightweightAgent](docs/GeoNameLightweightAgent.md)
257
260
  - [GroupDescriptorAgent](docs/GroupDescriptorAgent.md)
261
+ - [GroupedBookingSalesMetricsSupplierDetails](docs/GroupedBookingSalesMetricsSupplierDetails.md)
258
262
  - [GuestRoomLightweightAgent](docs/GuestRoomLightweightAgent.md)
259
263
  - [GuestUserAgent](docs/GuestUserAgent.md)
264
+ - [LineChartSupplier](docs/LineChartSupplier.md)
260
265
  - [LocalizedDescriptionAgent](docs/LocalizedDescriptionAgent.md)
261
266
  - [LocalizedPriceAgent](docs/LocalizedPriceAgent.md)
262
- - [ManagedByEntityAgent](docs/ManagedByEntityAgent.md)
263
- - [ManagedByEntityRulesAgent](docs/ManagedByEntityRulesAgent.md)
264
267
  - [MediaAuthorAttributionAgent](docs/MediaAuthorAttributionAgent.md)
265
268
  - [PageBookingAgent](docs/PageBookingAgent.md)
266
269
  - [PageableObjectAgent](docs/PageableObjectAgent.md)
@@ -294,9 +297,7 @@ Class | Method | HTTP request | Description
294
297
  - [SubCountryLightweightAgent](docs/SubCountryLightweightAgent.md)
295
298
  - [SubSubCountryLightweightAgent](docs/SubSubCountryLightweightAgent.md)
296
299
  - [SupplierContractItemPolicyAgent](docs/SupplierContractItemPolicyAgent.md)
297
- - [TravelAgentAgent](docs/TravelAgentAgent.md)
298
300
  - [TravelInventoryRecognitionAgent](docs/TravelInventoryRecognitionAgent.md)
299
- - [UpsertTravelAgentRequestAgent](docs/UpsertTravelAgentRequestAgent.md)
300
301
 
301
302
 
302
303
  <a id="documentation-for-authorization"></a>
@@ -320,4 +321,3 @@ Authentication schemes defined for the API:
320
321
 
321
322
  bjorn@wink.travel
322
323
 
323
-
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name= "wink_sdk_travel_agent"
3
- version= "0.0.41"
3
+ version= "0.0.42"
4
4
  description= "Wink API"
5
5
  authors = [{ name = "Bjorn Harvold", email = "bjorn@wink.travel" }]
6
6
  license = { file = "LICENSE" }
@@ -9,7 +9,7 @@ keywords = ["OpenAPI", "OpenAPI-Generator", "Wink API"]
9
9
 
10
10
  [tool.poetry]
11
11
  name = "wink_sdk_travel_agent"
12
- version = "0.0.41"
12
+ version = "0.0.42"
13
13
  description = "Wink API"
14
14
  authors = ["Bjorn Harvold <bjorn@wink.travel>"]
15
15
  license = "Apache License Version 2.0"
@@ -5,7 +5,7 @@
5
5
 
6
6
  # Introduction Welcome to the Wink API - A programmer-friendly way to manage, sell and book travel inventory on the Wink platform. The API gives you all the tools you need to ready your properties and inventory for sale across 1000s of our native sales channels. Integrators, affiliates, travel agents and content creators have the ability search for your travel inventory and promote / sell it in a wide variety of ways. # Integrations We have already integrated with the most well-known channel managers so you don't have to. To see our current integrations, please go to https://extranet.wink.travel and scroll to Connectivity section. Once your properties are set up, you can finish the setup by mapping your property to Wink using your channel manager partner portal. If your properties don't have a channel manager, you can easily manage rates and availability with this API. # Intended Audience Programmers are [most likely] a requirement to start integrating with Wink. Companies and organizations that would most benefit from integrating with us are new and existing travel companies that have relationships with suppliers and that need an advanced system from which to manage their travel inventory and get that same inventory out to as many eyeballs as possible at the lowest price possible. - Hotel chains - Hotel brands - Travel tech companies - Destination sites - Integrators - Aggregators - Destination management companies - Travel agencies - OTAs ## APIs Not every integrator needs every API. For that reason, we have separated APIs into context. ### Test API - [Ping](/ping): The Ping API is a quick test endpoint to verify that your credentials work Wink. ### Common APIs - [Notifications](/notifications): The Notifications API is a way for us to stay in touch with your user, property or affiliate account. - [User Settings](/user-settings): The User Settings API exposes endpoints to allow 3rd party integrators to communicate with Wink. ### Consume APIs Consume endpoints are for developers who want to find existing travel inventory and either book it or use it to advertise through one of their Wink affiliate accounts. - [Configuration](/customization-client): A single endpoint to retrieve whitelabel + customization information for the booking customization. - [Lookup](/lookup): All APIs related to locating inventory by region, locale and property flags. - [Inventory](/inventory): All APIs related to retrieve known travel inventory as it was found using the Lookup API.. - [Booking](/booking): All APIs related to creating bookings on the platform. - [Travel Agent](/travel-agent): The Travel Agent API exposes endpoints to manage agent-facilitated bookings. ### Produce APIs Produce endpoints are for developers who want to create and manage travel inventory. #### Property - [Property registration](/extranet/property/register): As a producer, this is, oftentimes, where you start your journey. These endpoints let you create properties on Wink. - [Property](/extranet/property): This collection of property endpoints are mostly management endpoints that let you display, change status and similar for your existing properties. - [Facilities](/extranet/facilities): This collection of endpoints let you manage facilities; such as room types. - [Experiences](/extranet/experiences): This collection of endpoints let you manage experiences, such as activities. - [Monetize](/extranet/monetize): The Monetize API exposes endpoints for managing cancellation polies, rate plans, promotions and more on Wink. - [Distribution](/extranet/distribution): The Distribution API exposes endpoints for sales channels, connecting with affiliates, managing rates and inventory calendars and more on Wink. - [Property Booking](/extranet/booking): The Property Booking API exposes endpoints for managing bookings and reviews at the property-level. #### Affiliate - [Affiliate](/affiliate): This collection of affiliate endpoints are mostly management endpoints that let you display, change status and similar for your existing accounts. - [Browse](/affiliate/browse): The Browse API exposes endpoints for affiliates to find suppliers and inventory to sell. - [Inventory](/affiliate/inventory): The Inventory API exposes endpoints for affiliates to manage the inventory they want to sell and how they want to sell it. - [Sales Channel](/affiliate/sales-channel): The Sales Channel API exposes endpoints for affiliates to manage existing sales channels as well as find new ones. - [WinkLinks](/affiliate/winklinks): The WinkLinks API exposes endpoints for affiliates to manage their WinkLinks page. #### Rate provider - [Channel manager](/channel-manager): The Channel Manager API enables external channel manager partners to map, exchange rate / availability information with us as well as be informed of bookings that occur on the Wink platform for one of their properties. ### Taxonomy APIs Taxonomy endpoints are for developers who want to consume and produce travel inventory and need taxonomies of standard and non-standard codes for inventory types, classes, statuses etc. - [Reference](/reference): All APIs related to retrieving platform-supported taxonomies. ### Insight APIs Insight endpoints do exactly what the name implies - They offer platform-level insight into the activities of producers and consumers. - [Analytics](/analytics): All APIs related to tracking metrics across a wide variety of data source segments including, more entertaining, leaderboard metrics. ### Payment APIs Payment endpoints are for developers who want to purchase travel inventory. This can be done via the API as a registered Travel Agent or using our API in conjunction with our PCI compliant payment widget for all other entities. - [TripPay](/payment): All APIs related to TripPay account management, booking, mapping and integration features. ## SDKs We are actively working on supporting the most used languages out there. If you don't see your language here, reach out to us with a request to officially add your language. In the meantime, if you want to roll your own SDK, you can do so by downloading the OpenAPI spec and using one of the many available OpenAPI generators available: [https://openapi-generator.tech/docs/generators](https://openapi-generator.tech/docs/generators). - Java SDK [https://github.com/wink-travel/wink-sdk-java](https://github.com/wink-travel/wink-sdk-java) ## Usage These features are made available to you via a [REST API](https://en.wikipedia.org/wiki/Representational_state_transfer). This API is language agnostic. ## Versioning We chose to version our endpoints in a way that we hope affects your integration minimally. You request the version of our API you wish to work with via the `Wink-Version` header. When it's time for you to upgrade, you only have to change the version number to get access to our updated endpoints. ## Release history - Follow updates on Github: https://github.com/wink-travel/wink-sdk-java/blob/master/CHANGELOG.md # Travel Agent API The Travel Agent API exposes endpoints to manage agent-facilitated bookings. This API lets you: 1. Travel Agent: Manage agent entity. 2. Booking: Create / Manage bookings Browse the endpoints in the left navigation bar to get started.
7
7
 
8
- The version of the OpenAPI document: 30.18.6
8
+ The version of the OpenAPI document: 30.20.0
9
9
  Contact: bjorn@wink.travel
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -22,13 +22,14 @@ from setuptools import setup, find_packages # noqa: H301
22
22
  # prerequisite: setuptools
23
23
  # http://pypi.python.org/pypi/setuptools
24
24
  NAME = "wink-sdk-travel-agent"
25
- VERSION = "0.0.41"
26
- PYTHON_REQUIRES = ">= 3.8"
25
+ VERSION = "0.0.42"
26
+ PYTHON_REQUIRES = ">= 3.9"
27
27
  REQUIRES = [
28
- "urllib3 >= 1.25.3, < 3.0.0",
28
+ "urllib3 >= 2.1.0, < 3.0.0",
29
29
  "python-dateutil >= 2.8.2",
30
30
  "pydantic >= 2",
31
31
  "typing-extensions >= 4.7.1",
32
+ "lazy-imports >= 1, < 2",
32
33
  ]
33
34
 
34
35
  setup(
@@ -0,0 +1,46 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wink API
5
+
6
+ # Introduction Welcome to the Wink API - A programmer-friendly way to manage, sell and book travel inventory on the Wink platform. The API gives you all the tools you need to ready your properties and inventory for sale across 1000s of our native sales channels. Integrators, affiliates, travel agents and content creators have the ability search for your travel inventory and promote / sell it in a wide variety of ways. # Integrations We have already integrated with the most well-known channel managers so you don't have to. To see our current integrations, please go to https://extranet.wink.travel and scroll to Connectivity section. Once your properties are set up, you can finish the setup by mapping your property to Wink using your channel manager partner portal. If your properties don't have a channel manager, you can easily manage rates and availability with this API. # Intended Audience Programmers are [most likely] a requirement to start integrating with Wink. Companies and organizations that would most benefit from integrating with us are new and existing travel companies that have relationships with suppliers and that need an advanced system from which to manage their travel inventory and get that same inventory out to as many eyeballs as possible at the lowest price possible. - Hotel chains - Hotel brands - Travel tech companies - Destination sites - Integrators - Aggregators - Destination management companies - Travel agencies - OTAs ## APIs Not every integrator needs every API. For that reason, we have separated APIs into context. ### Test API - [Ping](/ping): The Ping API is a quick test endpoint to verify that your credentials work Wink. ### Common APIs - [Notifications](/notifications): The Notifications API is a way for us to stay in touch with your user, property or affiliate account. - [User Settings](/user-settings): The User Settings API exposes endpoints to allow 3rd party integrators to communicate with Wink. ### Consume APIs Consume endpoints are for developers who want to find existing travel inventory and either book it or use it to advertise through one of their Wink affiliate accounts. - [Configuration](/customization-client): A single endpoint to retrieve whitelabel + customization information for the booking customization. - [Lookup](/lookup): All APIs related to locating inventory by region, locale and property flags. - [Inventory](/inventory): All APIs related to retrieve known travel inventory as it was found using the Lookup API.. - [Booking](/booking): All APIs related to creating bookings on the platform. - [Travel Agent](/travel-agent): The Travel Agent API exposes endpoints to manage agent-facilitated bookings. ### Produce APIs Produce endpoints are for developers who want to create and manage travel inventory. #### Property - [Property registration](/extranet/property/register): As a producer, this is, oftentimes, where you start your journey. These endpoints let you create properties on Wink. - [Property](/extranet/property): This collection of property endpoints are mostly management endpoints that let you display, change status and similar for your existing properties. - [Facilities](/extranet/facilities): This collection of endpoints let you manage facilities; such as room types. - [Experiences](/extranet/experiences): This collection of endpoints let you manage experiences, such as activities. - [Monetize](/extranet/monetize): The Monetize API exposes endpoints for managing cancellation polies, rate plans, promotions and more on Wink. - [Distribution](/extranet/distribution): The Distribution API exposes endpoints for sales channels, connecting with affiliates, managing rates and inventory calendars and more on Wink. - [Property Booking](/extranet/booking): The Property Booking API exposes endpoints for managing bookings and reviews at the property-level. #### Affiliate - [Affiliate](/affiliate): This collection of affiliate endpoints are mostly management endpoints that let you display, change status and similar for your existing accounts. - [Browse](/affiliate/browse): The Browse API exposes endpoints for affiliates to find suppliers and inventory to sell. - [Inventory](/affiliate/inventory): The Inventory API exposes endpoints for affiliates to manage the inventory they want to sell and how they want to sell it. - [Sales Channel](/affiliate/sales-channel): The Sales Channel API exposes endpoints for affiliates to manage existing sales channels as well as find new ones. - [WinkLinks](/affiliate/winklinks): The WinkLinks API exposes endpoints for affiliates to manage their WinkLinks page. #### Rate provider - [Channel manager](/channel-manager): The Channel Manager API enables external channel manager partners to map, exchange rate / availability information with us as well as be informed of bookings that occur on the Wink platform for one of their properties. ### Taxonomy APIs Taxonomy endpoints are for developers who want to consume and produce travel inventory and need taxonomies of standard and non-standard codes for inventory types, classes, statuses etc. - [Reference](/reference): All APIs related to retrieving platform-supported taxonomies. ### Insight APIs Insight endpoints do exactly what the name implies - They offer platform-level insight into the activities of producers and consumers. - [Analytics](/analytics): All APIs related to tracking metrics across a wide variety of data source segments including, more entertaining, leaderboard metrics. ### Payment APIs Payment endpoints are for developers who want to purchase travel inventory. This can be done via the API as a registered Travel Agent or using our API in conjunction with our PCI compliant payment widget for all other entities. - [TripPay](/payment): All APIs related to TripPay account management, booking, mapping and integration features. ## SDKs We are actively working on supporting the most used languages out there. If you don't see your language here, reach out to us with a request to officially add your language. In the meantime, if you want to roll your own SDK, you can do so by downloading the OpenAPI spec and using one of the many available OpenAPI generators available: [https://openapi-generator.tech/docs/generators](https://openapi-generator.tech/docs/generators). - Java SDK [https://github.com/wink-travel/wink-sdk-java](https://github.com/wink-travel/wink-sdk-java) ## Usage These features are made available to you via a [REST API](https://en.wikipedia.org/wiki/Representational_state_transfer). This API is language agnostic. ## Versioning We chose to version our endpoints in a way that we hope affects your integration minimally. You request the version of our API you wish to work with via the `Wink-Version` header. When it's time for you to upgrade, you only have to change the version number to get access to our updated endpoints. ## Release history - Follow updates on Github: https://github.com/wink-travel/wink-sdk-java/blob/master/CHANGELOG.md # Travel Agent API The Travel Agent API exposes endpoints to manage agent-facilitated bookings. This API lets you: 1. Travel Agent: Manage agent entity. 2. Booking: Create / Manage bookings Browse the endpoints in the left navigation bar to get started.
7
+
8
+ The version of the OpenAPI document: 30.20.0
9
+ Contact: bjorn@wink.travel
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ import unittest
17
+
18
+ from wink_sdk_travel_agent.api.analytics_api import AnalyticsApi
19
+
20
+
21
+ class TestAnalyticsApi(unittest.TestCase):
22
+ """AnalyticsApi unit test stubs"""
23
+
24
+ def setUp(self) -> None:
25
+ self.api = AnalyticsApi()
26
+
27
+ def tearDown(self) -> None:
28
+ pass
29
+
30
+ def test_show_affiliate_booking_analytics(self) -> None:
31
+ """Test case for show_affiliate_booking_analytics
32
+
33
+ Affiliate Booking Analytics
34
+ """
35
+ pass
36
+
37
+ def test_show_booking_overview(self) -> None:
38
+ """Test case for show_booking_overview
39
+
40
+ Affiliate Booking Overview
41
+ """
42
+ pass
43
+
44
+
45
+ if __name__ == '__main__':
46
+ unittest.main()
@@ -0,0 +1,83 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wink API
5
+
6
+ # Introduction Welcome to the Wink API - A programmer-friendly way to manage, sell and book travel inventory on the Wink platform. The API gives you all the tools you need to ready your properties and inventory for sale across 1000s of our native sales channels. Integrators, affiliates, travel agents and content creators have the ability search for your travel inventory and promote / sell it in a wide variety of ways. # Integrations We have already integrated with the most well-known channel managers so you don't have to. To see our current integrations, please go to https://extranet.wink.travel and scroll to Connectivity section. Once your properties are set up, you can finish the setup by mapping your property to Wink using your channel manager partner portal. If your properties don't have a channel manager, you can easily manage rates and availability with this API. # Intended Audience Programmers are [most likely] a requirement to start integrating with Wink. Companies and organizations that would most benefit from integrating with us are new and existing travel companies that have relationships with suppliers and that need an advanced system from which to manage their travel inventory and get that same inventory out to as many eyeballs as possible at the lowest price possible. - Hotel chains - Hotel brands - Travel tech companies - Destination sites - Integrators - Aggregators - Destination management companies - Travel agencies - OTAs ## APIs Not every integrator needs every API. For that reason, we have separated APIs into context. ### Test API - [Ping](/ping): The Ping API is a quick test endpoint to verify that your credentials work Wink. ### Common APIs - [Notifications](/notifications): The Notifications API is a way for us to stay in touch with your user, property or affiliate account. - [User Settings](/user-settings): The User Settings API exposes endpoints to allow 3rd party integrators to communicate with Wink. ### Consume APIs Consume endpoints are for developers who want to find existing travel inventory and either book it or use it to advertise through one of their Wink affiliate accounts. - [Configuration](/customization-client): A single endpoint to retrieve whitelabel + customization information for the booking customization. - [Lookup](/lookup): All APIs related to locating inventory by region, locale and property flags. - [Inventory](/inventory): All APIs related to retrieve known travel inventory as it was found using the Lookup API.. - [Booking](/booking): All APIs related to creating bookings on the platform. - [Travel Agent](/travel-agent): The Travel Agent API exposes endpoints to manage agent-facilitated bookings. ### Produce APIs Produce endpoints are for developers who want to create and manage travel inventory. #### Property - [Property registration](/extranet/property/register): As a producer, this is, oftentimes, where you start your journey. These endpoints let you create properties on Wink. - [Property](/extranet/property): This collection of property endpoints are mostly management endpoints that let you display, change status and similar for your existing properties. - [Facilities](/extranet/facilities): This collection of endpoints let you manage facilities; such as room types. - [Experiences](/extranet/experiences): This collection of endpoints let you manage experiences, such as activities. - [Monetize](/extranet/monetize): The Monetize API exposes endpoints for managing cancellation polies, rate plans, promotions and more on Wink. - [Distribution](/extranet/distribution): The Distribution API exposes endpoints for sales channels, connecting with affiliates, managing rates and inventory calendars and more on Wink. - [Property Booking](/extranet/booking): The Property Booking API exposes endpoints for managing bookings and reviews at the property-level. #### Affiliate - [Affiliate](/affiliate): This collection of affiliate endpoints are mostly management endpoints that let you display, change status and similar for your existing accounts. - [Browse](/affiliate/browse): The Browse API exposes endpoints for affiliates to find suppliers and inventory to sell. - [Inventory](/affiliate/inventory): The Inventory API exposes endpoints for affiliates to manage the inventory they want to sell and how they want to sell it. - [Sales Channel](/affiliate/sales-channel): The Sales Channel API exposes endpoints for affiliates to manage existing sales channels as well as find new ones. - [WinkLinks](/affiliate/winklinks): The WinkLinks API exposes endpoints for affiliates to manage their WinkLinks page. #### Rate provider - [Channel manager](/channel-manager): The Channel Manager API enables external channel manager partners to map, exchange rate / availability information with us as well as be informed of bookings that occur on the Wink platform for one of their properties. ### Taxonomy APIs Taxonomy endpoints are for developers who want to consume and produce travel inventory and need taxonomies of standard and non-standard codes for inventory types, classes, statuses etc. - [Reference](/reference): All APIs related to retrieving platform-supported taxonomies. ### Insight APIs Insight endpoints do exactly what the name implies - They offer platform-level insight into the activities of producers and consumers. - [Analytics](/analytics): All APIs related to tracking metrics across a wide variety of data source segments including, more entertaining, leaderboard metrics. ### Payment APIs Payment endpoints are for developers who want to purchase travel inventory. This can be done via the API as a registered Travel Agent or using our API in conjunction with our PCI compliant payment widget for all other entities. - [TripPay](/payment): All APIs related to TripPay account management, booking, mapping and integration features. ## SDKs We are actively working on supporting the most used languages out there. If you don't see your language here, reach out to us with a request to officially add your language. In the meantime, if you want to roll your own SDK, you can do so by downloading the OpenAPI spec and using one of the many available OpenAPI generators available: [https://openapi-generator.tech/docs/generators](https://openapi-generator.tech/docs/generators). - Java SDK [https://github.com/wink-travel/wink-sdk-java](https://github.com/wink-travel/wink-sdk-java) ## Usage These features are made available to you via a [REST API](https://en.wikipedia.org/wiki/Representational_state_transfer). This API is language agnostic. ## Versioning We chose to version our endpoints in a way that we hope affects your integration minimally. You request the version of our API you wish to work with via the `Wink-Version` header. When it's time for you to upgrade, you only have to change the version number to get access to our updated endpoints. ## Release history - Follow updates on Github: https://github.com/wink-travel/wink-sdk-java/blob/master/CHANGELOG.md # Travel Agent API The Travel Agent API exposes endpoints to manage agent-facilitated bookings. This API lets you: 1. Travel Agent: Manage agent entity. 2. Booking: Create / Manage bookings Browse the endpoints in the left navigation bar to get started.
7
+
8
+ The version of the OpenAPI document: 30.20.0
9
+ Contact: bjorn@wink.travel
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ import unittest
17
+
18
+ from wink_sdk_travel_agent.models.booking_analytics_supplier import BookingAnalyticsSupplier
19
+
20
+ class TestBookingAnalyticsSupplier(unittest.TestCase):
21
+ """BookingAnalyticsSupplier unit test stubs"""
22
+
23
+ def setUp(self):
24
+ pass
25
+
26
+ def tearDown(self):
27
+ pass
28
+
29
+ def make_instance(self, include_optional) -> BookingAnalyticsSupplier:
30
+ """Test BookingAnalyticsSupplier
31
+ include_optional is a boolean, when False only required
32
+ params are included, when True both required and
33
+ optional params are included """
34
+ # uncomment below to create an instance of `BookingAnalyticsSupplier`
35
+ """
36
+ model = BookingAnalyticsSupplier()
37
+ if include_optional:
38
+ return BookingAnalyticsSupplier(
39
+ charts = [
40
+ wink_sdk_travel_agent.models.line_chart_supplier.LineChart_Supplier(
41
+ identifier = 'line-chart-1',
42
+ title = wink_sdk_travel_agent.models.chart_title_supplier.ChartTitle_Supplier(
43
+ text = '', ),
44
+ legend = wink_sdk_travel_agent.models.chart_legend_supplier.ChartLegend_Supplier(
45
+ data = [
46
+ null
47
+ ], ),
48
+ series = [
49
+ wink_sdk_travel_agent.models.chart_series_supplier.ChartSeries_Supplier(
50
+ name = '', )
51
+ ],
52
+ x_axis = wink_sdk_travel_agent.models.chart_category_axis_supplier.ChartCategoryAxis_Supplier(),
53
+ xaxis = wink_sdk_travel_agent.models.chart_category_axis_supplier.ChartCategoryAxis_Supplier(), )
54
+ ]
55
+ )
56
+ else:
57
+ return BookingAnalyticsSupplier(
58
+ charts = [
59
+ wink_sdk_travel_agent.models.line_chart_supplier.LineChart_Supplier(
60
+ identifier = 'line-chart-1',
61
+ title = wink_sdk_travel_agent.models.chart_title_supplier.ChartTitle_Supplier(
62
+ text = '', ),
63
+ legend = wink_sdk_travel_agent.models.chart_legend_supplier.ChartLegend_Supplier(
64
+ data = [
65
+ null
66
+ ], ),
67
+ series = [
68
+ wink_sdk_travel_agent.models.chart_series_supplier.ChartSeries_Supplier(
69
+ name = '', )
70
+ ],
71
+ x_axis = wink_sdk_travel_agent.models.chart_category_axis_supplier.ChartCategoryAxis_Supplier(),
72
+ xaxis = wink_sdk_travel_agent.models.chart_category_axis_supplier.ChartCategoryAxis_Supplier(), )
73
+ ],
74
+ )
75
+ """
76
+
77
+ def testBookingAnalyticsSupplier(self):
78
+ """Test BookingAnalyticsSupplier"""
79
+ # inst_req_only = self.make_instance(include_optional=False)
80
+ # inst_req_and_optional = self.make_instance(include_optional=True)
81
+
82
+ if __name__ == '__main__':
83
+ unittest.main()
@@ -0,0 +1,54 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wink API
5
+
6
+ # Introduction Welcome to the Wink API - A programmer-friendly way to manage, sell and book travel inventory on the Wink platform. The API gives you all the tools you need to ready your properties and inventory for sale across 1000s of our native sales channels. Integrators, affiliates, travel agents and content creators have the ability search for your travel inventory and promote / sell it in a wide variety of ways. # Integrations We have already integrated with the most well-known channel managers so you don't have to. To see our current integrations, please go to https://extranet.wink.travel and scroll to Connectivity section. Once your properties are set up, you can finish the setup by mapping your property to Wink using your channel manager partner portal. If your properties don't have a channel manager, you can easily manage rates and availability with this API. # Intended Audience Programmers are [most likely] a requirement to start integrating with Wink. Companies and organizations that would most benefit from integrating with us are new and existing travel companies that have relationships with suppliers and that need an advanced system from which to manage their travel inventory and get that same inventory out to as many eyeballs as possible at the lowest price possible. - Hotel chains - Hotel brands - Travel tech companies - Destination sites - Integrators - Aggregators - Destination management companies - Travel agencies - OTAs ## APIs Not every integrator needs every API. For that reason, we have separated APIs into context. ### Test API - [Ping](/ping): The Ping API is a quick test endpoint to verify that your credentials work Wink. ### Common APIs - [Notifications](/notifications): The Notifications API is a way for us to stay in touch with your user, property or affiliate account. - [User Settings](/user-settings): The User Settings API exposes endpoints to allow 3rd party integrators to communicate with Wink. ### Consume APIs Consume endpoints are for developers who want to find existing travel inventory and either book it or use it to advertise through one of their Wink affiliate accounts. - [Configuration](/customization-client): A single endpoint to retrieve whitelabel + customization information for the booking customization. - [Lookup](/lookup): All APIs related to locating inventory by region, locale and property flags. - [Inventory](/inventory): All APIs related to retrieve known travel inventory as it was found using the Lookup API.. - [Booking](/booking): All APIs related to creating bookings on the platform. - [Travel Agent](/travel-agent): The Travel Agent API exposes endpoints to manage agent-facilitated bookings. ### Produce APIs Produce endpoints are for developers who want to create and manage travel inventory. #### Property - [Property registration](/extranet/property/register): As a producer, this is, oftentimes, where you start your journey. These endpoints let you create properties on Wink. - [Property](/extranet/property): This collection of property endpoints are mostly management endpoints that let you display, change status and similar for your existing properties. - [Facilities](/extranet/facilities): This collection of endpoints let you manage facilities; such as room types. - [Experiences](/extranet/experiences): This collection of endpoints let you manage experiences, such as activities. - [Monetize](/extranet/monetize): The Monetize API exposes endpoints for managing cancellation polies, rate plans, promotions and more on Wink. - [Distribution](/extranet/distribution): The Distribution API exposes endpoints for sales channels, connecting with affiliates, managing rates and inventory calendars and more on Wink. - [Property Booking](/extranet/booking): The Property Booking API exposes endpoints for managing bookings and reviews at the property-level. #### Affiliate - [Affiliate](/affiliate): This collection of affiliate endpoints are mostly management endpoints that let you display, change status and similar for your existing accounts. - [Browse](/affiliate/browse): The Browse API exposes endpoints for affiliates to find suppliers and inventory to sell. - [Inventory](/affiliate/inventory): The Inventory API exposes endpoints for affiliates to manage the inventory they want to sell and how they want to sell it. - [Sales Channel](/affiliate/sales-channel): The Sales Channel API exposes endpoints for affiliates to manage existing sales channels as well as find new ones. - [WinkLinks](/affiliate/winklinks): The WinkLinks API exposes endpoints for affiliates to manage their WinkLinks page. #### Rate provider - [Channel manager](/channel-manager): The Channel Manager API enables external channel manager partners to map, exchange rate / availability information with us as well as be informed of bookings that occur on the Wink platform for one of their properties. ### Taxonomy APIs Taxonomy endpoints are for developers who want to consume and produce travel inventory and need taxonomies of standard and non-standard codes for inventory types, classes, statuses etc. - [Reference](/reference): All APIs related to retrieving platform-supported taxonomies. ### Insight APIs Insight endpoints do exactly what the name implies - They offer platform-level insight into the activities of producers and consumers. - [Analytics](/analytics): All APIs related to tracking metrics across a wide variety of data source segments including, more entertaining, leaderboard metrics. ### Payment APIs Payment endpoints are for developers who want to purchase travel inventory. This can be done via the API as a registered Travel Agent or using our API in conjunction with our PCI compliant payment widget for all other entities. - [TripPay](/payment): All APIs related to TripPay account management, booking, mapping and integration features. ## SDKs We are actively working on supporting the most used languages out there. If you don't see your language here, reach out to us with a request to officially add your language. In the meantime, if you want to roll your own SDK, you can do so by downloading the OpenAPI spec and using one of the many available OpenAPI generators available: [https://openapi-generator.tech/docs/generators](https://openapi-generator.tech/docs/generators). - Java SDK [https://github.com/wink-travel/wink-sdk-java](https://github.com/wink-travel/wink-sdk-java) ## Usage These features are made available to you via a [REST API](https://en.wikipedia.org/wiki/Representational_state_transfer). This API is language agnostic. ## Versioning We chose to version our endpoints in a way that we hope affects your integration minimally. You request the version of our API you wish to work with via the `Wink-Version` header. When it's time for you to upgrade, you only have to change the version number to get access to our updated endpoints. ## Release history - Follow updates on Github: https://github.com/wink-travel/wink-sdk-java/blob/master/CHANGELOG.md # Travel Agent API The Travel Agent API exposes endpoints to manage agent-facilitated bookings. This API lets you: 1. Travel Agent: Manage agent entity. 2. Booking: Create / Manage bookings Browse the endpoints in the left navigation bar to get started.
7
+
8
+ The version of the OpenAPI document: 30.20.0
9
+ Contact: bjorn@wink.travel
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ import unittest
17
+
18
+ from wink_sdk_travel_agent.models.booking_overview_request_supplier import BookingOverviewRequestSupplier
19
+
20
+ class TestBookingOverviewRequestSupplier(unittest.TestCase):
21
+ """BookingOverviewRequestSupplier unit test stubs"""
22
+
23
+ def setUp(self):
24
+ pass
25
+
26
+ def tearDown(self):
27
+ pass
28
+
29
+ def make_instance(self, include_optional) -> BookingOverviewRequestSupplier:
30
+ """Test BookingOverviewRequestSupplier
31
+ include_optional is a boolean, when False only required
32
+ params are included, when True both required and
33
+ optional params are included """
34
+ # uncomment below to create an instance of `BookingOverviewRequestSupplier`
35
+ """
36
+ model = BookingOverviewRequestSupplier()
37
+ if include_optional:
38
+ return BookingOverviewRequestSupplier(
39
+ type = 'MONTH',
40
+ units = 12
41
+ )
42
+ else:
43
+ return BookingOverviewRequestSupplier(
44
+ type = 'MONTH',
45
+ )
46
+ """
47
+
48
+ def testBookingOverviewRequestSupplier(self):
49
+ """Test BookingOverviewRequestSupplier"""
50
+ # inst_req_only = self.make_instance(include_optional=False)
51
+ # inst_req_and_optional = self.make_instance(include_optional=True)
52
+
53
+ if __name__ == '__main__':
54
+ unittest.main()
@@ -0,0 +1,54 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wink API
5
+
6
+ # Introduction Welcome to the Wink API - A programmer-friendly way to manage, sell and book travel inventory on the Wink platform. The API gives you all the tools you need to ready your properties and inventory for sale across 1000s of our native sales channels. Integrators, affiliates, travel agents and content creators have the ability search for your travel inventory and promote / sell it in a wide variety of ways. # Integrations We have already integrated with the most well-known channel managers so you don't have to. To see our current integrations, please go to https://extranet.wink.travel and scroll to Connectivity section. Once your properties are set up, you can finish the setup by mapping your property to Wink using your channel manager partner portal. If your properties don't have a channel manager, you can easily manage rates and availability with this API. # Intended Audience Programmers are [most likely] a requirement to start integrating with Wink. Companies and organizations that would most benefit from integrating with us are new and existing travel companies that have relationships with suppliers and that need an advanced system from which to manage their travel inventory and get that same inventory out to as many eyeballs as possible at the lowest price possible. - Hotel chains - Hotel brands - Travel tech companies - Destination sites - Integrators - Aggregators - Destination management companies - Travel agencies - OTAs ## APIs Not every integrator needs every API. For that reason, we have separated APIs into context. ### Test API - [Ping](/ping): The Ping API is a quick test endpoint to verify that your credentials work Wink. ### Common APIs - [Notifications](/notifications): The Notifications API is a way for us to stay in touch with your user, property or affiliate account. - [User Settings](/user-settings): The User Settings API exposes endpoints to allow 3rd party integrators to communicate with Wink. ### Consume APIs Consume endpoints are for developers who want to find existing travel inventory and either book it or use it to advertise through one of their Wink affiliate accounts. - [Configuration](/customization-client): A single endpoint to retrieve whitelabel + customization information for the booking customization. - [Lookup](/lookup): All APIs related to locating inventory by region, locale and property flags. - [Inventory](/inventory): All APIs related to retrieve known travel inventory as it was found using the Lookup API.. - [Booking](/booking): All APIs related to creating bookings on the platform. - [Travel Agent](/travel-agent): The Travel Agent API exposes endpoints to manage agent-facilitated bookings. ### Produce APIs Produce endpoints are for developers who want to create and manage travel inventory. #### Property - [Property registration](/extranet/property/register): As a producer, this is, oftentimes, where you start your journey. These endpoints let you create properties on Wink. - [Property](/extranet/property): This collection of property endpoints are mostly management endpoints that let you display, change status and similar for your existing properties. - [Facilities](/extranet/facilities): This collection of endpoints let you manage facilities; such as room types. - [Experiences](/extranet/experiences): This collection of endpoints let you manage experiences, such as activities. - [Monetize](/extranet/monetize): The Monetize API exposes endpoints for managing cancellation polies, rate plans, promotions and more on Wink. - [Distribution](/extranet/distribution): The Distribution API exposes endpoints for sales channels, connecting with affiliates, managing rates and inventory calendars and more on Wink. - [Property Booking](/extranet/booking): The Property Booking API exposes endpoints for managing bookings and reviews at the property-level. #### Affiliate - [Affiliate](/affiliate): This collection of affiliate endpoints are mostly management endpoints that let you display, change status and similar for your existing accounts. - [Browse](/affiliate/browse): The Browse API exposes endpoints for affiliates to find suppliers and inventory to sell. - [Inventory](/affiliate/inventory): The Inventory API exposes endpoints for affiliates to manage the inventory they want to sell and how they want to sell it. - [Sales Channel](/affiliate/sales-channel): The Sales Channel API exposes endpoints for affiliates to manage existing sales channels as well as find new ones. - [WinkLinks](/affiliate/winklinks): The WinkLinks API exposes endpoints for affiliates to manage their WinkLinks page. #### Rate provider - [Channel manager](/channel-manager): The Channel Manager API enables external channel manager partners to map, exchange rate / availability information with us as well as be informed of bookings that occur on the Wink platform for one of their properties. ### Taxonomy APIs Taxonomy endpoints are for developers who want to consume and produce travel inventory and need taxonomies of standard and non-standard codes for inventory types, classes, statuses etc. - [Reference](/reference): All APIs related to retrieving platform-supported taxonomies. ### Insight APIs Insight endpoints do exactly what the name implies - They offer platform-level insight into the activities of producers and consumers. - [Analytics](/analytics): All APIs related to tracking metrics across a wide variety of data source segments including, more entertaining, leaderboard metrics. ### Payment APIs Payment endpoints are for developers who want to purchase travel inventory. This can be done via the API as a registered Travel Agent or using our API in conjunction with our PCI compliant payment widget for all other entities. - [TripPay](/payment): All APIs related to TripPay account management, booking, mapping and integration features. ## SDKs We are actively working on supporting the most used languages out there. If you don't see your language here, reach out to us with a request to officially add your language. In the meantime, if you want to roll your own SDK, you can do so by downloading the OpenAPI spec and using one of the many available OpenAPI generators available: [https://openapi-generator.tech/docs/generators](https://openapi-generator.tech/docs/generators). - Java SDK [https://github.com/wink-travel/wink-sdk-java](https://github.com/wink-travel/wink-sdk-java) ## Usage These features are made available to you via a [REST API](https://en.wikipedia.org/wiki/Representational_state_transfer). This API is language agnostic. ## Versioning We chose to version our endpoints in a way that we hope affects your integration minimally. You request the version of our API you wish to work with via the `Wink-Version` header. When it's time for you to upgrade, you only have to change the version number to get access to our updated endpoints. ## Release history - Follow updates on Github: https://github.com/wink-travel/wink-sdk-java/blob/master/CHANGELOG.md # Travel Agent API The Travel Agent API exposes endpoints to manage agent-facilitated bookings. This API lets you: 1. Travel Agent: Manage agent entity. 2. Booking: Create / Manage bookings Browse the endpoints in the left navigation bar to get started.
7
+
8
+ The version of the OpenAPI document: 30.20.0
9
+ Contact: bjorn@wink.travel
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ import unittest
17
+
18
+ from wink_sdk_travel_agent.models.chart_category_axis_supplier import ChartCategoryAxisSupplier
19
+
20
+ class TestChartCategoryAxisSupplier(unittest.TestCase):
21
+ """ChartCategoryAxisSupplier unit test stubs"""
22
+
23
+ def setUp(self):
24
+ pass
25
+
26
+ def tearDown(self):
27
+ pass
28
+
29
+ def make_instance(self, include_optional) -> ChartCategoryAxisSupplier:
30
+ """Test ChartCategoryAxisSupplier
31
+ include_optional is a boolean, when False only required
32
+ params are included, when True both required and
33
+ optional params are included """
34
+ # uncomment below to create an instance of `ChartCategoryAxisSupplier`
35
+ """
36
+ model = ChartCategoryAxisSupplier()
37
+ if include_optional:
38
+ return ChartCategoryAxisSupplier(
39
+ data = [
40
+ ''
41
+ ]
42
+ )
43
+ else:
44
+ return ChartCategoryAxisSupplier(
45
+ )
46
+ """
47
+
48
+ def testChartCategoryAxisSupplier(self):
49
+ """Test ChartCategoryAxisSupplier"""
50
+ # inst_req_only = self.make_instance(include_optional=False)
51
+ # inst_req_and_optional = self.make_instance(include_optional=True)
52
+
53
+ if __name__ == '__main__':
54
+ unittest.main()