wink-sdk-travel-agent 0.0.4__tar.gz → 0.0.19__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 (311) hide show
  1. wink_sdk_travel_agent-0.0.19/PKG-INFO +26 -0
  2. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/README.md +25 -21
  3. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/pyproject.toml +20 -3
  4. wink_sdk_travel_agent-0.0.19/setup.py +50 -0
  5. wink_sdk_travel_agent-0.0.19/test/test_guest_room_lightweight_agent.py +265 -0
  6. wink_sdk_travel_agent-0.0.19/test/test_managed_by_entity_agent.py +62 -0
  7. wink_sdk_travel_agent-0.0.19/test/test_managed_by_entity_rules_agent.py +54 -0
  8. wink_sdk_travel_agent-0.0.19/test/test_online_presence_agent.py +60 -0
  9. wink_sdk_travel_agent-0.0.19/test/test_perk_lightweight_agent.py +68 -0
  10. wink_sdk_travel_agent-0.0.19/test/test_room_configuration_price_rate_plan_agent.py +98 -0
  11. wink_sdk_travel_agent-0.0.19/test/test_simple_address_agent.py +63 -0
  12. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/__init__.py +10 -6
  13. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/api/travel_agent_api.py +2 -2
  14. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/api_client.py +3 -3
  15. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/configuration.py +164 -41
  16. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/exceptions.py +217 -0
  17. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/__init__.py +9 -5
  18. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/address_agent.py +110 -0
  19. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/agent_booking_request_agent.py +2 -2
  20. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/aggregate_descriptor_agent.py +100 -0
  21. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/ancillary_request_agent.py +111 -0
  22. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/authenticated_user_agent.py +98 -0
  23. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/bed_agent.py +91 -0
  24. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/bedroom_agent.py +105 -0
  25. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/bedroom_configuration_agent.py +100 -0
  26. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/beneficiary_agent.py +4 -4
  27. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/beneficiary_charge_agent.py +97 -0
  28. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/booking_agent.py +7 -7
  29. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_ancillary_agent.py +153 -0
  30. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_confirmations_agent.py +109 -0
  31. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/booking_contract_agent.py +109 -5
  32. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/booking_contract_item_agent.py +2 -2
  33. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_contract_payment_details_agent.py +131 -0
  34. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_itinerary_agent.py +113 -0
  35. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_itinerary_room_configuration_agent.py +98 -0
  36. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_itinerary_room_configuration_child_agent.py +90 -0
  37. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_user_agent.py +100 -0
  38. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_user_request_agent.py +96 -0
  39. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_user_session_agent.py +112 -0
  40. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/booking_view_agent.py +101 -0
  41. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/boolean_response_agent.py +90 -0
  42. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/cancellation_detail_agent.py +97 -0
  43. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/cancellation_policy_agent.py +2 -2
  44. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/cancellation_policy_exception_agent.py +99 -0
  45. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/cancellation_policy_exceptions_agent.py +96 -0
  46. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/child_agent.py +91 -0
  47. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/commissionable_entry_agent.py +101 -0
  48. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/company_agent.py +176 -0
  49. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/company_user_agent.py +114 -0
  50. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/company_view_agent.py +101 -0
  51. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/composite_filter_descriptor_agent.py +108 -0
  52. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/contact_agent.py +104 -0
  53. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/country_agent.py +100 -0
  54. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/create_agent_booking400_response.py +141 -0
  55. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/create_agent_booking_request_agent.py +104 -0
  56. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/custom_monetary_amount.py +90 -0
  57. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/daily_rate_agent.py +115 -0
  58. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/engine_configuration_booking_report_agent.py +6 -4
  59. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/engine_configuration_theme_colors_agent.py +108 -0
  60. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/extra_charge_agent.py +103 -0
  61. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/extra_charges_agent.py +112 -0
  62. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/fee_agent.py +105 -0
  63. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/filter_descriptor_agent.py +101 -0
  64. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/general_manager_agent.py +104 -0
  65. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/generic_error_message.py +96 -0
  66. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/geo_json_point_agent.py +94 -0
  67. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/geo_name_agent.py +136 -0
  68. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/group_descriptor_agent.py +110 -0
  69. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/guest_room_lightweight_agent.py +258 -0
  70. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/guest_user_agent.py +106 -0
  71. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/hotel_on_map_agent.py +2 -2
  72. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/image_attribution_agent.py +90 -0
  73. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/localized_description_agent.py +91 -0
  74. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/localized_price_agent.py +11 -11
  75. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/managed_by_entity_agent.py +102 -0
  76. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/managed_by_entity_rules_agent.py +95 -0
  77. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/online_presence_agent.py +112 -0
  78. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/page_booking_view_agent.py +128 -0
  79. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/pageable_object_agent.py +106 -0
  80. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/payout_agent.py +156 -0
  81. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/payout_fee_agent.py +114 -0
  82. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/pending_refund_agent.py +99 -0
  83. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/perk_lightweight_agent.py +104 -0
  84. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/personal_agent.py +155 -0
  85. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/pet_info_dto_agent.py +90 -0
  86. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/preferences_agent.py +128 -0
  87. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/profile_agent.py +110 -0
  88. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/profile_user_agent.py +100 -0
  89. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/property_policy_agent.py +149 -0
  90. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/quote_agent.py +94 -0
  91. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/rate_plan_level_fee_agent.py +111 -0
  92. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/refund_agent.py +2 -2
  93. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/reporting_ancillary_agent.py +108 -0
  94. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/reporting_daily_rate_agent.py +99 -0
  95. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/reporting_extra_charge_agent.py +98 -0
  96. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/review_agent.py +133 -0
  97. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/review_answer_agent.py +101 -0
  98. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/review_user_agent.py +98 -0
  99. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/room_configuration_agent.py +99 -0
  100. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/room_configuration_price_rate_plan_agent.py +118 -0
  101. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/room_stay_agent.py +181 -0
  102. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/simple_address_agent.py +104 -0
  103. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/simple_date_time_itinerary_agent.py +108 -0
  104. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/simple_description_agent.py +93 -0
  105. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/simple_multimedia_agent.py +2 -2
  106. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/social_agent.py +102 -0
  107. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/sort_descriptor_agent.py +100 -0
  108. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/sort_object.py +96 -0
  109. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/state_agent.py +117 -0
  110. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/stay_rate_agent.py +2 -2
  111. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/sub_country_agent.py +92 -0
  112. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/sub_sub_country_agent.py +92 -0
  113. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/supplier_contract_item_policy_agent.py +2 -2
  114. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/travel_agent_agent.py +90 -0
  115. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/travel_inventory_recognition_agent.py +120 -0
  116. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent/models/upsert_travel_agent_request_agent.py +90 -0
  117. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/rest.py +3 -2
  118. wink_sdk_travel_agent-0.0.19/wink_sdk_travel_agent.egg-info/PKG-INFO +26 -0
  119. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent.egg-info/SOURCES.txt +14 -0
  120. wink_sdk_travel_agent-0.0.4/PKG-INFO +0 -17
  121. wink_sdk_travel_agent-0.0.4/setup.py +0 -50
  122. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/exceptions.py +0 -200
  123. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/address_agent.py +0 -110
  124. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/aggregate_descriptor_agent.py +0 -100
  125. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/ancillary_request_agent.py +0 -111
  126. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/authenticated_user_agent.py +0 -98
  127. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/bed_agent.py +0 -91
  128. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/bedroom_agent.py +0 -105
  129. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/bedroom_configuration_agent.py +0 -100
  130. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/beneficiary_charge_agent.py +0 -97
  131. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_ancillary_agent.py +0 -153
  132. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_confirmations_agent.py +0 -109
  133. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_contract_payment_details_agent.py +0 -131
  134. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_itinerary_agent.py +0 -113
  135. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_itinerary_room_configuration_agent.py +0 -98
  136. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_itinerary_room_configuration_child_agent.py +0 -90
  137. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_user_agent.py +0 -100
  138. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_user_request_agent.py +0 -96
  139. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_user_session_agent.py +0 -112
  140. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/booking_view_agent.py +0 -101
  141. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/boolean_response_agent.py +0 -90
  142. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/cancellation_detail_agent.py +0 -97
  143. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/cancellation_policy_exception_agent.py +0 -99
  144. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/cancellation_policy_exceptions_agent.py +0 -96
  145. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/child_agent.py +0 -91
  146. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/commissionable_entry_agent.py +0 -101
  147. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/company_agent.py +0 -160
  148. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/company_user_agent.py +0 -114
  149. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/company_view_agent.py +0 -101
  150. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/composite_filter_descriptor_agent.py +0 -108
  151. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/contact_agent.py +0 -104
  152. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/country_agent.py +0 -100
  153. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/create_agent_booking400_response.py +0 -141
  154. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/create_agent_booking_request_agent.py +0 -104
  155. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/custom_monetary_amount.py +0 -90
  156. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/daily_rate_agent.py +0 -115
  157. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/engine_configuration_theme_colors_agent.py +0 -108
  158. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/extra_charge_agent.py +0 -103
  159. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/extra_charges_agent.py +0 -112
  160. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/fee_agent.py +0 -105
  161. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/filter_descriptor_agent.py +0 -101
  162. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/general_manager_agent.py +0 -104
  163. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/generic_error_message.py +0 -96
  164. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/geo_json_point_agent.py +0 -94
  165. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/geo_name_agent.py +0 -136
  166. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/group_descriptor_agent.py +0 -110
  167. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/guest_user_agent.py +0 -106
  168. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/image_attribution_agent.py +0 -90
  169. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/localized_description_agent.py +0 -91
  170. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/page_booking_view_agent.py +0 -128
  171. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/pageable_object_agent.py +0 -106
  172. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/payout_agent.py +0 -156
  173. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/payout_fee_agent.py +0 -114
  174. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/pending_refund_agent.py +0 -99
  175. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/personal_agent.py +0 -155
  176. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/pet_info_dto_agent.py +0 -90
  177. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/preferences_agent.py +0 -128
  178. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/profile_agent.py +0 -110
  179. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/profile_user_agent.py +0 -100
  180. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/property_policy_agent.py +0 -149
  181. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/quote_agent.py +0 -94
  182. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/rate_plan_level_fee_agent.py +0 -111
  183. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/reporting_ancillary_agent.py +0 -108
  184. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/reporting_daily_rate_agent.py +0 -99
  185. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/reporting_extra_charge_agent.py +0 -98
  186. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/review_agent.py +0 -133
  187. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/review_answer_agent.py +0 -101
  188. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/review_user_agent.py +0 -98
  189. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/room_configuration_agent.py +0 -99
  190. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/room_stay_agent.py +0 -184
  191. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/simple_date_time_itinerary_agent.py +0 -108
  192. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/simple_description_agent.py +0 -93
  193. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/social_agent.py +0 -102
  194. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/sort_descriptor_agent.py +0 -100
  195. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/sort_object.py +0 -96
  196. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/state_agent.py +0 -117
  197. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/sub_country_agent.py +0 -92
  198. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/sub_sub_country_agent.py +0 -92
  199. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/travel_agent_agent.py +0 -90
  200. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/travel_inventory_recognition_agent.py +0 -120
  201. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent/models/upsert_travel_agent_request_agent.py +0 -90
  202. wink_sdk_travel_agent-0.0.4/wink_sdk_travel_agent.egg-info/PKG-INFO +0 -17
  203. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/LICENSE +0 -0
  204. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/setup.cfg +0 -0
  205. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_address_agent.py +0 -0
  206. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_agent_booking_request_agent.py +0 -0
  207. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_aggregate_descriptor_agent.py +0 -0
  208. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_ancillary_request_agent.py +0 -0
  209. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_authenticated_user_agent.py +0 -0
  210. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_bed_agent.py +0 -0
  211. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_bedroom_agent.py +0 -0
  212. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_bedroom_configuration_agent.py +0 -0
  213. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_beneficiary_agent.py +0 -0
  214. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_beneficiary_charge_agent.py +0 -0
  215. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_agent.py +0 -0
  216. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_ancillary_agent.py +0 -0
  217. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_confirmations_agent.py +0 -0
  218. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_contract_agent.py +0 -0
  219. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_contract_item_agent.py +0 -0
  220. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_contract_payment_details_agent.py +0 -0
  221. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_itinerary_agent.py +0 -0
  222. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_itinerary_room_configuration_agent.py +0 -0
  223. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_itinerary_room_configuration_child_agent.py +0 -0
  224. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_user_agent.py +0 -0
  225. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_user_request_agent.py +0 -0
  226. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_user_session_agent.py +0 -0
  227. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_booking_view_agent.py +0 -0
  228. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_boolean_response_agent.py +0 -0
  229. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_cancellation_detail_agent.py +0 -0
  230. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_cancellation_policy_agent.py +0 -0
  231. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_cancellation_policy_exception_agent.py +0 -0
  232. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_cancellation_policy_exceptions_agent.py +0 -0
  233. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_child_agent.py +0 -0
  234. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_commissionable_entry_agent.py +0 -0
  235. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_company_agent.py +0 -0
  236. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_company_user_agent.py +0 -0
  237. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_company_view_agent.py +0 -0
  238. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_composite_filter_descriptor_agent.py +0 -0
  239. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_contact_agent.py +0 -0
  240. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_country_agent.py +0 -0
  241. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_create_agent_booking400_response.py +0 -0
  242. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_create_agent_booking_request_agent.py +0 -0
  243. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_custom_monetary_amount.py +0 -0
  244. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_daily_rate_agent.py +0 -0
  245. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_dow_pattern_group_agent.py +0 -0
  246. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_engine_configuration_booking_report_agent.py +0 -0
  247. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_engine_configuration_theme_agent.py +0 -0
  248. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_engine_configuration_theme_colors_agent.py +0 -0
  249. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_extra_charge_agent.py +0 -0
  250. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_extra_charges_agent.py +0 -0
  251. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_fee_agent.py +0 -0
  252. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_filter_descriptor_agent.py +0 -0
  253. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_general_manager_agent.py +0 -0
  254. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_generic_error_message.py +0 -0
  255. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_geo_json_point_agent.py +0 -0
  256. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_geo_name_agent.py +0 -0
  257. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_group_descriptor_agent.py +0 -0
  258. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_guest_room_agent.py +0 -0
  259. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_guest_user_agent.py +0 -0
  260. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_hotel_on_map_agent.py +0 -0
  261. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_image_attribution_agent.py +0 -0
  262. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_localized_description_agent.py +0 -0
  263. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_localized_price_agent.py +0 -0
  264. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_page_booking_view_agent.py +0 -0
  265. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_pageable_object_agent.py +0 -0
  266. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_payout_agent.py +0 -0
  267. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_payout_fee_agent.py +0 -0
  268. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_pending_refund_agent.py +0 -0
  269. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_personal_agent.py +0 -0
  270. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_pet_info_dto_agent.py +0 -0
  271. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_preferences_agent.py +0 -0
  272. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_profile_agent.py +0 -0
  273. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_profile_user_agent.py +0 -0
  274. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_property_policy_agent.py +0 -0
  275. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_quote_agent.py +0 -0
  276. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_rate_plan_agent.py +0 -0
  277. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_rate_plan_level_fee_agent.py +0 -0
  278. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_refund_agent.py +0 -0
  279. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_reporting_ancillary_agent.py +0 -0
  280. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_reporting_daily_rate_agent.py +0 -0
  281. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_reporting_extra_charge_agent.py +0 -0
  282. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_review_agent.py +0 -0
  283. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_review_answer_agent.py +0 -0
  284. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_review_user_agent.py +0 -0
  285. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_room_configuration_agent.py +0 -0
  286. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_room_stay_agent.py +0 -0
  287. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_simple_date_time_itinerary_agent.py +0 -0
  288. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_simple_description_agent.py +0 -0
  289. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_simple_multimedia_agent.py +0 -0
  290. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_social_agent.py +0 -0
  291. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_sort_descriptor_agent.py +0 -0
  292. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_sort_object.py +0 -0
  293. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_state_agent.py +0 -0
  294. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_stay_rate_agent.py +0 -0
  295. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_sub_country_agent.py +0 -0
  296. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_sub_sub_country_agent.py +0 -0
  297. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_supplier_contract_item_policy_agent.py +0 -0
  298. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_travel_agent_agent.py +0 -0
  299. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_travel_agent_api.py +0 -0
  300. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_travel_inventory_recognition_agent.py +0 -0
  301. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/test/test_upsert_travel_agent_request_agent.py +0 -0
  302. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/api/__init__.py +0 -0
  303. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/api_response.py +0 -0
  304. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/dow_pattern_group_agent.py +0 -0
  305. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/engine_configuration_theme_agent.py +0 -0
  306. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/guest_room_agent.py +0 -0
  307. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/models/rate_plan_agent.py +0 -0
  308. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent/py.typed +0 -0
  309. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent.egg-info/dependency_links.txt +0 -0
  310. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent.egg-info/requires.txt +0 -0
  311. {wink_sdk_travel_agent-0.0.4 → wink_sdk_travel_agent-0.0.19}/wink_sdk_travel_agent.egg-info/top_level.txt +0 -0
@@ -0,0 +1,26 @@
1
+ Metadata-Version: 2.4
2
+ Name: wink-sdk-travel-agent
3
+ Version: 0.0.19
4
+ Summary: Wink API
5
+ Home-page: https://github.com/wink-travel/wink-sdk-python.git
6
+ Author: Bjorn Harvold
7
+ Author-email: bjorn@wink.travel
8
+ Keywords: OpenAPI,OpenAPI-Generator,Wink API
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: urllib3<3.0.0,>=1.25.3
12
+ Requires-Dist: python-dateutil>=2.8.2
13
+ Requires-Dist: pydantic>=2
14
+ Requires-Dist: typing-extensions>=4.7.1
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: home-page
20
+ Dynamic: keywords
21
+ Dynamic: license-file
22
+ Dynamic: requires-dist
23
+ Dynamic: summary
24
+
25
+ # 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&#39;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&#39;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](/engine-client): A single endpoint to retrieve whitelabel + customization information for the booking engine. - [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](/reactive): 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 reactive widget for all other entities. - [TripPay](/reactive): 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&#39;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 &#x60;Wink-Version&#x60; header. When it&#39;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.
26
+
@@ -1,13 +1,13 @@
1
1
  # wink-sdk-travel-agent
2
2
  # Introduction
3
- Welcome to the Wink API - A programmer-friendly way to manage, sell and book travel blocking on the Wink platform. The API gives you all the tools you need to ready your properties and blocking for sale across 1000s of our native sales channels.
4
- Integrators, affiliates, travel agents and content creators have the ability search for your travel blocking and promote / sell it in a wide variety of ways.
3
+ 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.
4
+ 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.
5
5
 
6
6
  # Integrations
7
7
  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.
8
8
 
9
9
  # Intended Audience
10
- 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 blocking and get that same blocking out to as many eyeballs as possible at the lowest price possible.
10
+ 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.
11
11
  - Hotel chains
12
12
  - Hotel brands
13
13
  - Travel tech companies
@@ -31,16 +31,16 @@
31
31
  - [User Settings](/user-settings): The User Settings API exposes endpoints to allow 3rd party integrators to communicate with Wink.
32
32
 
33
33
  ### Consume APIs
34
- Consume endpoints are for developers who want to find existing travel blocking and either book it or use it to advertise through one of their Wink affiliate accounts.
34
+ 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.
35
35
 
36
36
  - [Configuration](/engine-client): A single endpoint to retrieve whitelabel + customization information for the booking engine.
37
- - [Lookup](/lookup): All APIs related to locating blocking by region, locale and property flags.
38
- - [Inventory](/blocking): All APIs related to retrieve known travel blocking as it was found using the Lookup API..
37
+ - [Lookup](/lookup): All APIs related to locating inventory by region, locale and property flags.
38
+ - [Inventory](/inventory): All APIs related to retrieve known travel inventory as it was found using the Lookup API..
39
39
  - [Booking](/booking): All APIs related to creating bookings on the platform.
40
40
  - [Travel Agent](/travel-agent): The Travel Agent API exposes endpoints to manage agent-facilitated bookings.
41
41
 
42
42
  ### Produce APIs
43
- Produce endpoints are for developers who want to create and manage travel blocking.
43
+ Produce endpoints are for developers who want to create and manage travel inventory.
44
44
 
45
45
  #### Property
46
46
  - [Property registration](/extranet/property/register): As a producer, this is, oftentimes, where you start your journey. These endpoints let you create properties on Wink.
@@ -48,13 +48,13 @@ Consume endpoints are for developers who want to find existing travel blocking a
48
48
  - [Facilities](/extranet/facilities): This collection of endpoints let you manage facilities; such as room types.
49
49
  - [Experiences](/extranet/experiences): This collection of endpoints let you manage experiences, such as activities.
50
50
  - [Monetize](/extranet/monetize): The Monetize API exposes endpoints for managing cancellation polies, rate plans, promotions and more on Wink.
51
- - [Distribution](/extranet/distribution): The Distribution API exposes endpoints for sales channels, connecting with affiliates, managing rates and blocking calendars and more on Wink.
51
+ - [Distribution](/extranet/distribution): The Distribution API exposes endpoints for sales channels, connecting with affiliates, managing rates and inventory calendars and more on Wink.
52
52
  - [Property Booking](/extranet/booking): The Property Booking API exposes endpoints for managing bookings and reviews at the property-level.
53
53
 
54
54
  #### Affiliate
55
55
  - [Affiliate](/affiliate): This collection of affiliate endpoints are mostly management endpoints that let you display, change status and similar for your existing accounts.
56
- - [Browse](/affiliate/browse): The Browse API exposes endpoints for affiliates to find suppliers and blocking to sell.
57
- - [Inventory](/affiliate/blocking): The Inventory API exposes endpoints for affiliates to manage the blocking they want to sell and how they want to sell it.
56
+ - [Browse](/affiliate/browse): The Browse API exposes endpoints for affiliates to find suppliers and inventory to sell.
57
+ - [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.
58
58
  - [Sales Channel](/affiliate/sales-channel): The Sales Channel API exposes endpoints for affiliates to manage existing sales channels as well as find new ones.
59
59
  - [WinkLinks](/affiliate/winklinks): The WinkLinks API exposes endpoints for affiliates to manage their WinkLinks page.
60
60
 
@@ -62,7 +62,7 @@ Consume endpoints are for developers who want to find existing travel blocking a
62
62
  - [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.
63
63
 
64
64
  ### Taxonomy APIs
65
- Taxonomy endpoints are for developers who want to consume and produce travel blocking and need taxonomies of standard and non-standard codes for blocking types, classes, statuses etc.
65
+ 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.
66
66
 
67
67
  - [Reference](/reactive): All APIs related to retrieving platform-supported taxonomies.
68
68
 
@@ -72,7 +72,7 @@ Consume endpoints are for developers who want to find existing travel blocking a
72
72
  - [Analytics](/analytics): All APIs related to tracking metrics across a wide variety of data source segments including, more entertaining, leaderboard metrics.
73
73
 
74
74
  ### Payment APIs
75
- Payment endpoints are for developers who want to purchase travel blocking. This can be done via the API as a registered Travel Agent or using our API in conjunction with our PCI compliant reactive widget for all other entities.
75
+ 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 reactive widget for all other entities.
76
76
 
77
77
  - [TripPay](/reactive): All APIs related to TripPay account management, booking, mapping and integration features.
78
78
 
@@ -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.9.11
108
- - Package version: 0.0.4
109
- - Generator version: 7.9.0
107
+ - API version: 30.15.2
108
+ - Package version: 0.0.19
109
+ - Generator version: 7.12.0
110
110
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
111
111
 
112
112
  ## Requirements.
113
113
 
114
- Python 3.7+
114
+ Python 3.8+
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.4#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.19#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.4#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.19#egg=wink_sdk_travel_agent&subdirectory=wink_sdk_travel_agent`)
129
129
 
130
130
  Then import the package:
131
131
  ```python
@@ -249,7 +249,6 @@ Class | Method | HTTP request | Description
249
249
  - [CreateAgentBookingRequestAgent](docs/CreateAgentBookingRequestAgent.md)
250
250
  - [CustomMonetaryAmount](docs/CustomMonetaryAmount.md)
251
251
  - [DailyRateAgent](docs/DailyRateAgent.md)
252
- - [DowPatternGroupAgent](docs/DowPatternGroupAgent.md)
253
252
  - [EngineConfigurationBookingReportAgent](docs/EngineConfigurationBookingReportAgent.md)
254
253
  - [EngineConfigurationThemeColorsAgent](docs/EngineConfigurationThemeColorsAgent.md)
255
254
  - [ExtraChargeAgent](docs/ExtraChargeAgent.md)
@@ -261,17 +260,21 @@ Class | Method | HTTP request | Description
261
260
  - [GeoJsonPointAgent](docs/GeoJsonPointAgent.md)
262
261
  - [GeoNameAgent](docs/GeoNameAgent.md)
263
262
  - [GroupDescriptorAgent](docs/GroupDescriptorAgent.md)
264
- - [GuestRoomAgent](docs/GuestRoomAgent.md)
263
+ - [GuestRoomLightweightAgent](docs/GuestRoomLightweightAgent.md)
265
264
  - [GuestUserAgent](docs/GuestUserAgent.md)
266
265
  - [HotelOnMapAgent](docs/HotelOnMapAgent.md)
267
266
  - [ImageAttributionAgent](docs/ImageAttributionAgent.md)
268
267
  - [LocalizedDescriptionAgent](docs/LocalizedDescriptionAgent.md)
269
268
  - [LocalizedPriceAgent](docs/LocalizedPriceAgent.md)
269
+ - [ManagedByEntityAgent](docs/ManagedByEntityAgent.md)
270
+ - [ManagedByEntityRulesAgent](docs/ManagedByEntityRulesAgent.md)
271
+ - [OnlinePresenceAgent](docs/OnlinePresenceAgent.md)
270
272
  - [PageBookingViewAgent](docs/PageBookingViewAgent.md)
271
273
  - [PageableObjectAgent](docs/PageableObjectAgent.md)
272
274
  - [PayoutAgent](docs/PayoutAgent.md)
273
275
  - [PayoutFeeAgent](docs/PayoutFeeAgent.md)
274
276
  - [PendingRefundAgent](docs/PendingRefundAgent.md)
277
+ - [PerkLightweightAgent](docs/PerkLightweightAgent.md)
275
278
  - [PersonalAgent](docs/PersonalAgent.md)
276
279
  - [PetInfoDtoAgent](docs/PetInfoDtoAgent.md)
277
280
  - [PreferencesAgent](docs/PreferencesAgent.md)
@@ -279,7 +282,6 @@ Class | Method | HTTP request | Description
279
282
  - [ProfileUserAgent](docs/ProfileUserAgent.md)
280
283
  - [PropertyPolicyAgent](docs/PropertyPolicyAgent.md)
281
284
  - [QuoteAgent](docs/QuoteAgent.md)
282
- - [RatePlanAgent](docs/RatePlanAgent.md)
283
285
  - [RatePlanLevelFeeAgent](docs/RatePlanLevelFeeAgent.md)
284
286
  - [RefundAgent](docs/RefundAgent.md)
285
287
  - [ReportingAncillaryAgent](docs/ReportingAncillaryAgent.md)
@@ -289,7 +291,9 @@ Class | Method | HTTP request | Description
289
291
  - [ReviewAnswerAgent](docs/ReviewAnswerAgent.md)
290
292
  - [ReviewUserAgent](docs/ReviewUserAgent.md)
291
293
  - [RoomConfigurationAgent](docs/RoomConfigurationAgent.md)
294
+ - [RoomConfigurationPriceRatePlanAgent](docs/RoomConfigurationPriceRatePlanAgent.md)
292
295
  - [RoomStayAgent](docs/RoomStayAgent.md)
296
+ - [SimpleAddressAgent](docs/SimpleAddressAgent.md)
293
297
  - [SimpleDateTimeItineraryAgent](docs/SimpleDateTimeItineraryAgent.md)
294
298
  - [SimpleDescriptionAgent](docs/SimpleDescriptionAgent.md)
295
299
  - [SimpleMultimediaAgent](docs/SimpleMultimediaAgent.md)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "wink_sdk_travel_agent"
3
- version = "0.0.4"
3
+ version = "0.0.19"
4
4
  description = "Wink API"
5
5
  authors = ["Bjorn Harvold <bjorn@wink.travel>"]
6
6
  license = "NoLicense"
@@ -12,7 +12,7 @@ include = ["wink_sdk_travel_agent/py.typed"]
12
12
  [tool.poetry.dependencies]
13
13
  python = "^3.8"
14
14
 
15
- urllib3 = ">= 1.25.3 < 3.0.0"
15
+ urllib3 = ">= 1.25.3, < 3.0.0"
16
16
  python-dateutil = ">= 2.8.2"
17
17
  pydantic = ">= 2"
18
18
  typing-extensions = ">= 4.7.1"
@@ -49,7 +49,7 @@ warn_unused_ignores = true
49
49
 
50
50
  ## Getting these passing should be easy
51
51
  strict_equality = true
52
- strict_concatenate = true
52
+ extra_checks = true
53
53
 
54
54
  ## Strongly recommend enabling this one as soon as you can
55
55
  check_untyped_defs = true
@@ -70,3 +70,20 @@ disallow_any_generics = true
70
70
  #
71
71
  ### This one can be tricky to get passing if you use a lot of untyped libraries
72
72
  #warn_return_any = true
73
+
74
+ [[tool.mypy.overrides]]
75
+ module = [
76
+ "wink_sdk_travel_agent.configuration",
77
+ ]
78
+ warn_unused_ignores = true
79
+ strict_equality = true
80
+ extra_checks = true
81
+ check_untyped_defs = true
82
+ disallow_subclassing_any = true
83
+ disallow_untyped_decorators = true
84
+ disallow_any_generics = true
85
+ disallow_untyped_calls = true
86
+ disallow_incomplete_defs = true
87
+ disallow_untyped_defs = true
88
+ no_implicit_reexport = true
89
+ warn_return_any = true
@@ -0,0 +1,50 @@
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](/engine-client): A single endpoint to retrieve whitelabel + customization information for the booking engine. - [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](/reactive): 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 reactive widget for all other entities. - [TripPay](/reactive): 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.15.2
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
+ from setuptools import setup, find_packages # noqa: H301
17
+
18
+ # To install the library, run the following
19
+ #
20
+ # python setup.py install
21
+ #
22
+ # prerequisite: setuptools
23
+ # http://pypi.python.org/pypi/setuptools
24
+ NAME = "wink-sdk-travel-agent"
25
+ VERSION = "0.0.19"
26
+ PYTHON_REQUIRES = ">= 3.8"
27
+ REQUIRES = [
28
+ "urllib3 >= 1.25.3, < 3.0.0",
29
+ "python-dateutil >= 2.8.2",
30
+ "pydantic >= 2",
31
+ "typing-extensions >= 4.7.1",
32
+ ]
33
+
34
+ setup(
35
+ name=NAME,
36
+ version=VERSION,
37
+ description="Wink API",
38
+ author="Bjorn Harvold",
39
+ author_email="bjorn@wink.travel",
40
+ url="https://github.com/wink-travel/wink-sdk-python.git",
41
+ keywords=["OpenAPI", "OpenAPI-Generator", "Wink API"],
42
+ install_requires=REQUIRES,
43
+ packages=find_packages(exclude=["test", "tests"]),
44
+ include_package_data=True,
45
+ long_description_content_type='text/markdown',
46
+ long_description="""\
47
+ # 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&#39;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&#39;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](/engine-client): A single endpoint to retrieve whitelabel + customization information for the booking engine. - [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](/reactive): 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 reactive widget for all other entities. - [TripPay](/reactive): 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&#39;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 &#x60;Wink-Version&#x60; header. When it&#39;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.
48
+ """, # noqa: E501
49
+ package_data={"wink_sdk_travel_agent": ["py.typed"]},
50
+ )
@@ -0,0 +1,265 @@
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](/engine-client): A single endpoint to retrieve whitelabel + customization information for the booking engine. - [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](/reactive): 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 reactive widget for all other entities. - [TripPay](/reactive): 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.15.2
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.guest_room_lightweight_agent import GuestRoomLightweightAgent
19
+
20
+ class TestGuestRoomLightweightAgent(unittest.TestCase):
21
+ """GuestRoomLightweightAgent 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) -> GuestRoomLightweightAgent:
30
+ """Test GuestRoomLightweightAgent
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 `GuestRoomLightweightAgent`
35
+ """
36
+ model = GuestRoomLightweightAgent()
37
+ if include_optional:
38
+ return GuestRoomLightweightAgent(
39
+ identifier = '',
40
+ hotel_identifier = '',
41
+ featured_ind = False,
42
+ lifestyle_type = 'LIFESTYLE_HEALTH_FITNESS',
43
+ location = {"type":"POINT","coordinates":[100.5581533,13.7370197]},
44
+ descriptions = [
45
+ wink_sdk_travel_agent.models.simple_description_agent.SimpleDescription_Agent(
46
+ name = 'An example title',
47
+ description = 'This is a longer description in the specified language.',
48
+ language = 'en', )
49
+ ],
50
+ multimedias = [
51
+ wink_sdk_travel_agent.models.simple_multimedia_agent.SimpleMultimedia_Agent(
52
+ multimedia_identifier = '',
53
+ identifier = 'cloudinary-image-1',
54
+ type = 'IMAGE',
55
+ source = 'CLOUDINARY',
56
+ sort = 10,
57
+ angle = '-90',
58
+ width = 2560,
59
+ height = 1600,
60
+ published = True,
61
+ category = '1',
62
+ descriptions = [
63
+ wink_sdk_travel_agent.models.simple_description_agent.SimpleDescription_Agent(
64
+ name = 'An example title',
65
+ description = 'This is a longer description in the specified language.',
66
+ language = 'en', )
67
+ ],
68
+ lifestyle_type = 'LIFESTYLE_HEALTH_FITNESS',
69
+ attribution = [
70
+ wink_sdk_travel_agent.models.image_attribution_agent.ImageAttribution_Agent(
71
+ url = 'https://maps.google.com/maps/contrib/111628493169070103594',
72
+ name = 'Samuel Adams', )
73
+ ],
74
+ is_landscape = True, )
75
+ ],
76
+ contact = wink_sdk_travel_agent.models.contact_agent.Contact_Agent(
77
+ first_name = 'John',
78
+ last_name = 'Smith',
79
+ email = 'johnsmith@email.com',
80
+ secondary_email = 'johnsmith2@email.com',
81
+ phone_number = '+12125551212',
82
+ full_name = 'John Smith',
83
+ summary = 'John Smith (johnsmith@gmail.com / +12125551212)', ),
84
+ address = wink_sdk_travel_agent.models.simple_address_agent.SimpleAddress_Agent(
85
+ address1 = '234 Near da beach',
86
+ address2 = 'Pebble #5001',
87
+ state = 'CA',
88
+ postal_code = '90210',
89
+ county = 'Alameda county',
90
+ city = '',
91
+ country_code = '',
92
+ full_address = '11 At home, Suite 3C, New York City, NY 10010, United States', ),
93
+ commissionable = True,
94
+ name = 'Archery lesson',
95
+ proximity_code = '1',
96
+ sort = 1,
97
+ min_age_appropriate_code = '1',
98
+ bookable = True,
99
+ active = True,
100
+ disability_features = ["1"],
101
+ security_features = ["1"],
102
+ socials = [
103
+ wink_sdk_travel_agent.models.social_agent.Social_Agent(
104
+ type = 'FACEBOOK',
105
+ location = '',
106
+ enabled = True, )
107
+ ],
108
+ price_point = 'THREE',
109
+ recognition_list = [
110
+ wink_sdk_travel_agent.models.travel_inventory_recognition_agent.TravelInventoryRecognition_Agent(
111
+ identifier = '',
112
+ category = 'AWARD',
113
+ type = 'PERCENT_RATING',
114
+ provider = 'Michelin',
115
+ rating = 8.5,
116
+ max_rating = 10,
117
+ date = 'Sat Oct 24 07:00:00 ICT 2020',
118
+ official_appointment_ind = True,
119
+ rating_symbol = '*', )
120
+ ],
121
+ max_occupancy = 2,
122
+ min_occupancy = 1,
123
+ quantity = 40,
124
+ non_smoking = True,
125
+ bedroom_configuration_list = [
126
+ wink_sdk_travel_agent.models.bedroom_configuration_agent.BedroomConfiguration_Agent(
127
+ identifier = '',
128
+ name = '',
129
+ bedroom_list = [
130
+ wink_sdk_travel_agent.models.bedroom_agent.Bedroom_Agent(
131
+ type = 'MASTER',
132
+ bed_list = [
133
+ wink_sdk_travel_agent.models.bed_agent.Bed_Agent(
134
+ bed_type_code = '1',
135
+ quantity = 10, )
136
+ ], )
137
+ ], )
138
+ ],
139
+ size = 55,
140
+ max_adult_occupancy = 1,
141
+ max_child_occupancy = 0,
142
+ bathroom_count = 0,
143
+ living_room_count = 0,
144
+ max_rollaways = 0,
145
+ room_category = '1',
146
+ floor = '',
147
+ room_location_code = '1',
148
+ room_view_code = '1',
149
+ composite = False,
150
+ composite_count = 2,
151
+ room_classification_code = '1',
152
+ room_architecture_code = '1',
153
+ room_gender = 'Unknown',
154
+ shared_room_ind = False,
155
+ max_cribs = 1,
156
+ amenities = ["1","7"],
157
+ included_adult_occupancy = 2,
158
+ included_child_occupancy = 0
159
+ )
160
+ else:
161
+ return GuestRoomLightweightAgent(
162
+ identifier = '',
163
+ hotel_identifier = '',
164
+ featured_ind = False,
165
+ location = {"type":"POINT","coordinates":[100.5581533,13.7370197]},
166
+ descriptions = [
167
+ wink_sdk_travel_agent.models.simple_description_agent.SimpleDescription_Agent(
168
+ name = 'An example title',
169
+ description = 'This is a longer description in the specified language.',
170
+ language = 'en', )
171
+ ],
172
+ multimedias = [
173
+ wink_sdk_travel_agent.models.simple_multimedia_agent.SimpleMultimedia_Agent(
174
+ multimedia_identifier = '',
175
+ identifier = 'cloudinary-image-1',
176
+ type = 'IMAGE',
177
+ source = 'CLOUDINARY',
178
+ sort = 10,
179
+ angle = '-90',
180
+ width = 2560,
181
+ height = 1600,
182
+ published = True,
183
+ category = '1',
184
+ descriptions = [
185
+ wink_sdk_travel_agent.models.simple_description_agent.SimpleDescription_Agent(
186
+ name = 'An example title',
187
+ description = 'This is a longer description in the specified language.',
188
+ language = 'en', )
189
+ ],
190
+ lifestyle_type = 'LIFESTYLE_HEALTH_FITNESS',
191
+ attribution = [
192
+ wink_sdk_travel_agent.models.image_attribution_agent.ImageAttribution_Agent(
193
+ url = 'https://maps.google.com/maps/contrib/111628493169070103594',
194
+ name = 'Samuel Adams', )
195
+ ],
196
+ is_landscape = True, )
197
+ ],
198
+ contact = wink_sdk_travel_agent.models.contact_agent.Contact_Agent(
199
+ first_name = 'John',
200
+ last_name = 'Smith',
201
+ email = 'johnsmith@email.com',
202
+ secondary_email = 'johnsmith2@email.com',
203
+ phone_number = '+12125551212',
204
+ full_name = 'John Smith',
205
+ summary = 'John Smith (johnsmith@gmail.com / +12125551212)', ),
206
+ address = wink_sdk_travel_agent.models.simple_address_agent.SimpleAddress_Agent(
207
+ address1 = '234 Near da beach',
208
+ address2 = 'Pebble #5001',
209
+ state = 'CA',
210
+ postal_code = '90210',
211
+ county = 'Alameda county',
212
+ city = '',
213
+ country_code = '',
214
+ full_address = '11 At home, Suite 3C, New York City, NY 10010, United States', ),
215
+ commissionable = True,
216
+ name = 'Archery lesson',
217
+ proximity_code = '1',
218
+ bookable = True,
219
+ active = True,
220
+ price_point = 'THREE',
221
+ max_occupancy = 2,
222
+ min_occupancy = 1,
223
+ quantity = 40,
224
+ non_smoking = True,
225
+ bedroom_configuration_list = [
226
+ wink_sdk_travel_agent.models.bedroom_configuration_agent.BedroomConfiguration_Agent(
227
+ identifier = '',
228
+ name = '',
229
+ bedroom_list = [
230
+ wink_sdk_travel_agent.models.bedroom_agent.Bedroom_Agent(
231
+ type = 'MASTER',
232
+ bed_list = [
233
+ wink_sdk_travel_agent.models.bed_agent.Bed_Agent(
234
+ bed_type_code = '1',
235
+ quantity = 10, )
236
+ ], )
237
+ ], )
238
+ ],
239
+ size = 55,
240
+ max_adult_occupancy = 1,
241
+ max_child_occupancy = 0,
242
+ bathroom_count = 0,
243
+ living_room_count = 0,
244
+ max_rollaways = 0,
245
+ room_category = '1',
246
+ room_location_code = '1',
247
+ room_view_code = '1',
248
+ composite = False,
249
+ composite_count = 2,
250
+ room_classification_code = '1',
251
+ room_architecture_code = '1',
252
+ shared_room_ind = False,
253
+ max_cribs = 1,
254
+ included_adult_occupancy = 2,
255
+ included_child_occupancy = 0,
256
+ )
257
+ """
258
+
259
+ def testGuestRoomLightweightAgent(self):
260
+ """Test GuestRoomLightweightAgent"""
261
+ # inst_req_only = self.make_instance(include_optional=False)
262
+ # inst_req_and_optional = self.make_instance(include_optional=True)
263
+
264
+ if __name__ == '__main__':
265
+ unittest.main()