wink-sdk-travel-agent 0.0.4__py3-none-any.whl → 0.0.20__py3-none-any.whl

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 (113) hide show
  1. wink_sdk_travel_agent/__init__.py +10 -6
  2. wink_sdk_travel_agent/api/travel_agent_api.py +2 -2
  3. wink_sdk_travel_agent/api_client.py +3 -3
  4. wink_sdk_travel_agent/configuration.py +164 -41
  5. wink_sdk_travel_agent/exceptions.py +19 -2
  6. wink_sdk_travel_agent/models/__init__.py +9 -5
  7. wink_sdk_travel_agent/models/address_agent.py +2 -2
  8. wink_sdk_travel_agent/models/agent_booking_request_agent.py +2 -2
  9. wink_sdk_travel_agent/models/aggregate_descriptor_agent.py +2 -2
  10. wink_sdk_travel_agent/models/ancillary_request_agent.py +3 -3
  11. wink_sdk_travel_agent/models/authenticated_user_agent.py +2 -2
  12. wink_sdk_travel_agent/models/bed_agent.py +2 -2
  13. wink_sdk_travel_agent/models/bedroom_agent.py +2 -2
  14. wink_sdk_travel_agent/models/bedroom_configuration_agent.py +2 -2
  15. wink_sdk_travel_agent/models/beneficiary_agent.py +4 -4
  16. wink_sdk_travel_agent/models/beneficiary_charge_agent.py +2 -2
  17. wink_sdk_travel_agent/models/booking_agent.py +7 -7
  18. wink_sdk_travel_agent/models/booking_ancillary_agent.py +5 -5
  19. wink_sdk_travel_agent/models/booking_confirmations_agent.py +2 -2
  20. wink_sdk_travel_agent/models/booking_contract_agent.py +109 -5
  21. wink_sdk_travel_agent/models/booking_contract_item_agent.py +2 -2
  22. wink_sdk_travel_agent/models/booking_contract_payment_details_agent.py +2 -2
  23. wink_sdk_travel_agent/models/booking_itinerary_agent.py +2 -2
  24. wink_sdk_travel_agent/models/booking_itinerary_room_configuration_agent.py +2 -2
  25. wink_sdk_travel_agent/models/booking_itinerary_room_configuration_child_agent.py +2 -2
  26. wink_sdk_travel_agent/models/booking_user_agent.py +2 -2
  27. wink_sdk_travel_agent/models/booking_user_request_agent.py +2 -2
  28. wink_sdk_travel_agent/models/booking_user_session_agent.py +2 -2
  29. wink_sdk_travel_agent/models/booking_view_agent.py +2 -2
  30. wink_sdk_travel_agent/models/boolean_response_agent.py +2 -2
  31. wink_sdk_travel_agent/models/cancellation_detail_agent.py +2 -2
  32. wink_sdk_travel_agent/models/cancellation_policy_agent.py +2 -2
  33. wink_sdk_travel_agent/models/cancellation_policy_exception_agent.py +2 -2
  34. wink_sdk_travel_agent/models/cancellation_policy_exceptions_agent.py +2 -2
  35. wink_sdk_travel_agent/models/child_agent.py +2 -2
  36. wink_sdk_travel_agent/models/commissionable_entry_agent.py +2 -2
  37. wink_sdk_travel_agent/models/company_agent.py +26 -10
  38. wink_sdk_travel_agent/models/company_user_agent.py +2 -2
  39. wink_sdk_travel_agent/models/company_view_agent.py +2 -2
  40. wink_sdk_travel_agent/models/composite_filter_descriptor_agent.py +2 -2
  41. wink_sdk_travel_agent/models/contact_agent.py +2 -2
  42. wink_sdk_travel_agent/models/country_agent.py +2 -2
  43. wink_sdk_travel_agent/models/create_agent_booking400_response.py +2 -2
  44. wink_sdk_travel_agent/models/create_agent_booking_request_agent.py +2 -2
  45. wink_sdk_travel_agent/models/custom_monetary_amount.py +2 -2
  46. wink_sdk_travel_agent/models/daily_rate_agent.py +2 -2
  47. wink_sdk_travel_agent/models/engine_configuration_booking_report_agent.py +6 -4
  48. wink_sdk_travel_agent/models/engine_configuration_theme_colors_agent.py +2 -2
  49. wink_sdk_travel_agent/models/extra_charge_agent.py +2 -2
  50. wink_sdk_travel_agent/models/extra_charges_agent.py +2 -2
  51. wink_sdk_travel_agent/models/fee_agent.py +2 -2
  52. wink_sdk_travel_agent/models/filter_descriptor_agent.py +2 -2
  53. wink_sdk_travel_agent/models/general_manager_agent.py +2 -2
  54. wink_sdk_travel_agent/models/generic_error_message.py +2 -2
  55. wink_sdk_travel_agent/models/geo_json_point_agent.py +2 -2
  56. wink_sdk_travel_agent/models/geo_name_agent.py +2 -2
  57. wink_sdk_travel_agent/models/group_descriptor_agent.py +2 -2
  58. wink_sdk_travel_agent/models/guest_room_lightweight_agent.py +258 -0
  59. wink_sdk_travel_agent/models/guest_user_agent.py +2 -2
  60. wink_sdk_travel_agent/models/hotel_on_map_agent.py +2 -2
  61. wink_sdk_travel_agent/models/image_attribution_agent.py +2 -2
  62. wink_sdk_travel_agent/models/localized_description_agent.py +2 -2
  63. wink_sdk_travel_agent/models/localized_price_agent.py +11 -11
  64. wink_sdk_travel_agent/models/managed_by_entity_agent.py +102 -0
  65. wink_sdk_travel_agent/models/managed_by_entity_rules_agent.py +95 -0
  66. wink_sdk_travel_agent/models/online_presence_agent.py +112 -0
  67. wink_sdk_travel_agent/models/page_booking_view_agent.py +2 -2
  68. wink_sdk_travel_agent/models/pageable_object_agent.py +6 -6
  69. wink_sdk_travel_agent/models/payout_agent.py +2 -2
  70. wink_sdk_travel_agent/models/payout_fee_agent.py +2 -2
  71. wink_sdk_travel_agent/models/pending_refund_agent.py +2 -2
  72. wink_sdk_travel_agent/models/perk_lightweight_agent.py +104 -0
  73. wink_sdk_travel_agent/models/personal_agent.py +2 -2
  74. wink_sdk_travel_agent/models/pet_info_dto_agent.py +2 -2
  75. wink_sdk_travel_agent/models/preferences_agent.py +2 -2
  76. wink_sdk_travel_agent/models/profile_agent.py +2 -2
  77. wink_sdk_travel_agent/models/profile_user_agent.py +2 -2
  78. wink_sdk_travel_agent/models/property_policy_agent.py +2 -2
  79. wink_sdk_travel_agent/models/quote_agent.py +2 -2
  80. wink_sdk_travel_agent/models/rate_plan_level_fee_agent.py +2 -2
  81. wink_sdk_travel_agent/models/refund_agent.py +2 -2
  82. wink_sdk_travel_agent/models/reporting_ancillary_agent.py +2 -2
  83. wink_sdk_travel_agent/models/reporting_daily_rate_agent.py +2 -2
  84. wink_sdk_travel_agent/models/reporting_extra_charge_agent.py +2 -2
  85. wink_sdk_travel_agent/models/review_agent.py +2 -2
  86. wink_sdk_travel_agent/models/review_answer_agent.py +2 -2
  87. wink_sdk_travel_agent/models/review_user_agent.py +2 -2
  88. wink_sdk_travel_agent/models/room_configuration_agent.py +2 -2
  89. wink_sdk_travel_agent/models/room_configuration_price_rate_plan_agent.py +118 -0
  90. wink_sdk_travel_agent/models/room_stay_agent.py +32 -35
  91. wink_sdk_travel_agent/models/simple_address_agent.py +104 -0
  92. wink_sdk_travel_agent/models/simple_date_time_itinerary_agent.py +2 -2
  93. wink_sdk_travel_agent/models/simple_description_agent.py +3 -3
  94. wink_sdk_travel_agent/models/simple_multimedia_agent.py +2 -2
  95. wink_sdk_travel_agent/models/social_agent.py +2 -2
  96. wink_sdk_travel_agent/models/sort_descriptor_agent.py +2 -2
  97. wink_sdk_travel_agent/models/sort_object.py +2 -2
  98. wink_sdk_travel_agent/models/state_agent.py +2 -2
  99. wink_sdk_travel_agent/models/stay_rate_agent.py +2 -2
  100. wink_sdk_travel_agent/models/sub_country_agent.py +2 -2
  101. wink_sdk_travel_agent/models/sub_sub_country_agent.py +2 -2
  102. wink_sdk_travel_agent/models/supplier_contract_item_policy_agent.py +2 -2
  103. wink_sdk_travel_agent/models/travel_agent_agent.py +2 -2
  104. wink_sdk_travel_agent/models/travel_inventory_recognition_agent.py +2 -2
  105. wink_sdk_travel_agent/models/upsert_travel_agent_request_agent.py +2 -2
  106. wink_sdk_travel_agent/rest.py +3 -2
  107. wink_sdk_travel_agent-0.0.20.dist-info/METADATA +550 -0
  108. wink_sdk_travel_agent-0.0.20.dist-info/RECORD +118 -0
  109. {wink_sdk_travel_agent-0.0.4.dist-info → wink_sdk_travel_agent-0.0.20.dist-info}/WHEEL +1 -1
  110. wink_sdk_travel_agent-0.0.4.dist-info/METADATA +0 -17
  111. wink_sdk_travel_agent-0.0.4.dist-info/RECORD +0 -111
  112. {wink_sdk_travel_agent-0.0.4.dist-info → wink_sdk_travel_agent-0.0.20.dist-info/licenses}/LICENSE +0 -0
  113. {wink_sdk_travel_agent-0.0.4.dist-info → wink_sdk_travel_agent-0.0.20.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,118 @@
1
+ wink_sdk_travel_agent/__init__.py,sha256=Jw97lTYVPvXNcDEaEpjewvQhdeD4Xc1YSPEYl6d5NLM,16724
2
+ wink_sdk_travel_agent/api_client.py,sha256=_6KQhZjO4t2rQMeo6_uAuIOl3-XCAadqI7_770kDfHA,34754
3
+ wink_sdk_travel_agent/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ wink_sdk_travel_agent/configuration.py,sha256=-3VnAWNxE9etfaO7dJRCg5Dpena_wlp_ApczhZ1H8Ys,25529
5
+ wink_sdk_travel_agent/exceptions.py,sha256=rIJwxb7e1O88RJf48cSQ5-BHvcP2O7ZWFLO3JSm8p4k,13724
6
+ wink_sdk_travel_agent/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ wink_sdk_travel_agent/rest.py,sha256=9DwU0EeJqomHq16by2CU9ZugNb-tcP6O_fFHlSkyQ6w,16728
8
+ wink_sdk_travel_agent/api/__init__.py,sha256=GLKKEYGrVabqh2a0gUTFW9tC7YV5p1B3Z4V_tnEOleQ,118
9
+ wink_sdk_travel_agent/api/travel_agent_api.py,sha256=33r0Z97WnCdK_1FZozpCQLgSYzHErXe5bvM57-eVgjo,88518
10
+ wink_sdk_travel_agent/models/__init__.py,sha256=XVXqCqsHknPGnU9xsj4wCoxxGWYX7snZ0IQXnJW1M7E,16046
11
+ wink_sdk_travel_agent/models/address_agent.py,sha256=AGYQdZVMRZLUTeRSWTDcxAGkIjQ7eCHJL512C7ZFcpc,11277
12
+ wink_sdk_travel_agent/models/agent_booking_request_agent.py,sha256=CLb3GJDbNxNe9NfZ0gB-FzQ_71csFRGHkIUV_v6HUpQ,15106
13
+ wink_sdk_travel_agent/models/aggregate_descriptor_agent.py,sha256=XBXCmfmf9n4IwT1pwml-vV5x9sGXwOVQxb1ZGX6TgA0,10421
14
+ wink_sdk_travel_agent/models/ancillary_request_agent.py,sha256=6saOFVTniilnvgmE-4_vb9tQ357TD-WXlhsDFKivgOs,11821
15
+ wink_sdk_travel_agent/models/authenticated_user_agent.py,sha256=VGDm9DZ9rPYaW-w_daGrcnmZ9-ZoXgZBjbpzU7vY3ck,10529
16
+ wink_sdk_travel_agent/models/bed_agent.py,sha256=lN40MP7zzZg9gYOSd2SXU8Mhku82OGwznRzyRrdczVQ,10199
17
+ wink_sdk_travel_agent/models/bedroom_agent.py,sha256=KxHGXMHkInuQCtq_Tc2DOSJA8S7oAQ60nwhHnYiKB8o,10983
18
+ wink_sdk_travel_agent/models/bedroom_configuration_agent.py,sha256=YHbJgnh3FsP2AIeI_OA--bz2M8FPfYj5uVD-t0qVY8w,10666
19
+ wink_sdk_travel_agent/models/beneficiary_agent.py,sha256=LGL1oIICFQ9RiwCeX854Dl8jAknbYtd4Krh8gPKWJfg,18305
20
+ wink_sdk_travel_agent/models/beneficiary_charge_agent.py,sha256=jHkjv3G3lsLSsoyRqfs5bDF4a-Om2iy7qaeMj2dXGBg,10387
21
+ wink_sdk_travel_agent/models/booking_agent.py,sha256=7hIheCguHLThvRo8SPc94wthrBl90BdaauN4jZ2viKo,34619
22
+ wink_sdk_travel_agent/models/booking_ancillary_agent.py,sha256=zyapJmYTBkMIJsAhXy_vpHKGZ3QUBMDJuDTFEg_Z6a4,14908
23
+ wink_sdk_travel_agent/models/booking_confirmations_agent.py,sha256=PA84sVwjH15vxU8ubtNVzt75pKe-aD9FyY-fWP2V4vo,11540
24
+ wink_sdk_travel_agent/models/booking_contract_agent.py,sha256=o8WHCmdLwWAeaXdDeaw_ueAxvujELHhtJSi0wJt7pYg,82316
25
+ wink_sdk_travel_agent/models/booking_contract_item_agent.py,sha256=s0uWcwPOWpHQVkok_yK0Muzpkv5_f4oaDJx1OQ6dSE4,22914
26
+ wink_sdk_travel_agent/models/booking_contract_payment_details_agent.py,sha256=UCB77VDFNS_YcD4AJpxJYxTZxSSaZiZlFY8iiGWA0UA,13183
27
+ wink_sdk_travel_agent/models/booking_itinerary_agent.py,sha256=aFJ780Bbv35nrAvoUuY9Ka1NrJThuukwS4nppP2heg4,11909
28
+ wink_sdk_travel_agent/models/booking_itinerary_room_configuration_agent.py,sha256=ujRghHxeOvPfl2ag7GUdFjiYtydiI1sUCiTNJvyTgko,10706
29
+ wink_sdk_travel_agent/models/booking_itinerary_room_configuration_child_agent.py,sha256=Nm9rPLG5EOpsoOvfT440XfCuZ56KEY_7Uo5qKuRQi4I,9982
30
+ wink_sdk_travel_agent/models/booking_user_agent.py,sha256=F9c6f2zmeI4vcmJzroVm1EP4QuJYcv1NzaUnSbxlaWw,10670
31
+ wink_sdk_travel_agent/models/booking_user_request_agent.py,sha256=o3DJe2pIvDgStJfwaQeaBI4hzfPdB0-gnSLRwrGt350,10366
32
+ wink_sdk_travel_agent/models/booking_user_session_agent.py,sha256=jFujTspWsoHjtbmm1uSD1XcEtIGaTkFyr2Ad2coJu2w,12499
33
+ wink_sdk_travel_agent/models/booking_view_agent.py,sha256=hiYvNufPLAXUGqpe9JSAxFEOoPKUO-V9Uix4XMCNxVQ,10962
34
+ wink_sdk_travel_agent/models/boolean_response_agent.py,sha256=7cU4dwXxtLEcikcxCGJS_k6oI8JkML1lPSGvZSfDVxY,10093
35
+ wink_sdk_travel_agent/models/cancellation_detail_agent.py,sha256=PKZfmEMearu9JOUEWT-NYOsNU-xoTkgB8RMypu1vRQU,10442
36
+ wink_sdk_travel_agent/models/cancellation_policy_agent.py,sha256=PBV85D0qlMIxK4u8YyVdvW0wh_Y-BGZ2O7s56F3LBc8,16926
37
+ wink_sdk_travel_agent/models/cancellation_policy_exception_agent.py,sha256=d1vA33v0glKj5qy6dUWJtXMLl2KZrmLK0cThq-AtDvQ,11007
38
+ wink_sdk_travel_agent/models/cancellation_policy_exceptions_agent.py,sha256=hSBcoSwiBlW-bPOiFDydSftY0SM5YFayyL0QobabttM,10465
39
+ wink_sdk_travel_agent/models/child_agent.py,sha256=nAewxzNk0n5EK1PO1s-I1rD-7F2XsYIGeA7HxLYYbvw,10007
40
+ wink_sdk_travel_agent/models/commissionable_entry_agent.py,sha256=whThYpoLust0NpSk9F7F-VwTZU_agr8a4JOX7pgPpAs,10610
41
+ wink_sdk_travel_agent/models/company_agent.py,sha256=f8LcyMM1ShRwjoLB7Z9qLql5QH_JRzQpfQwZsZ58aoE,16563
42
+ wink_sdk_travel_agent/models/company_user_agent.py,sha256=dzBWQoLAWHUpJkkFr6bQ7i92BPzcaugWAGnjST8p_Vs,11510
43
+ wink_sdk_travel_agent/models/company_view_agent.py,sha256=J6AIN99PJmKvluum-l9jvzZxAG2hFL-nDQRQUrMGb6Q,10962
44
+ wink_sdk_travel_agent/models/composite_filter_descriptor_agent.py,sha256=Ji9MxqnNWBvoqYpdtQ3gK-x8PKxJJ-lojXntaKb0rOI,10923
45
+ wink_sdk_travel_agent/models/contact_agent.py,sha256=_zky5G-Ltk83daarY7wARuRFR5IRH5-WWgGDPuHuvUM,11010
46
+ wink_sdk_travel_agent/models/country_agent.py,sha256=e7cEC7WJtaygUu1goFp1ITmNAzYgFc1fwbs213rhoEE,10736
47
+ wink_sdk_travel_agent/models/create_agent_booking400_response.py,sha256=UcN6Y9mKwMk5Ow8kMMSYIsCbQ80BOS2L-Mzm2y2P3wM,12909
48
+ wink_sdk_travel_agent/models/create_agent_booking_request_agent.py,sha256=ruw22LBS0AeaN0EA5nX9iz_4pleGC9LBk9yQoxv4sz4,11301
49
+ wink_sdk_travel_agent/models/custom_monetary_amount.py,sha256=jquEqrRzvJKDcIVmyK_OCAUceaGxUsoRtyWN08u-TiE,9889
50
+ wink_sdk_travel_agent/models/daily_rate_agent.py,sha256=MXzEfcSkIMMFvboGsdZzgWzV_M1aDoeaaIZQJTp6cBM,11874
51
+ wink_sdk_travel_agent/models/dow_pattern_group_agent.py,sha256=HQdhJKh_qcokR1O75egeQ9M0-xxc58LOSP1zF799ekU,10904
52
+ wink_sdk_travel_agent/models/engine_configuration_booking_report_agent.py,sha256=Y96b7LiVTSWU9aTJhWgnASbS97u1NFj1vbFonf4_Mws,24749
53
+ wink_sdk_travel_agent/models/engine_configuration_theme_agent.py,sha256=UoWzv_kCcmh1_5df2vkgRvqqw0CEG8R220bvfMEkiu0,11814
54
+ wink_sdk_travel_agent/models/engine_configuration_theme_colors_agent.py,sha256=_NyUzn-XXGdw6tyYofBKbbTrvWHFUOqNle0pnjsEP6Q,11849
55
+ wink_sdk_travel_agent/models/extra_charge_agent.py,sha256=cdqHBlgySNXEcKghQG6hLlmbK5dklIR2KaLHdvsjEFo,11078
56
+ wink_sdk_travel_agent/models/extra_charges_agent.py,sha256=JnR9XYOioOS43jtJW9bnp7nKD0VZj2HGaWnWV5b31AI,11868
57
+ wink_sdk_travel_agent/models/fee_agent.py,sha256=Fr6NLWHchyIF9B3GY8zUUlDJuxD4vJ1ADpKGsJbzflk,10684
58
+ wink_sdk_travel_agent/models/filter_descriptor_agent.py,sha256=YPw3fq0uNnGMbmn6_XMWb2SdBrol33XYgjqxYGpwdX4,10917
59
+ wink_sdk_travel_agent/models/general_manager_agent.py,sha256=rMDe34ebyguYHGnTWfAcDoqyQowzaQ-A_gJdWArozKc,11015
60
+ wink_sdk_travel_agent/models/generic_error_message.py,sha256=rZUcArAMRkequlJNUqaHI-RqZOOJ1EnfpQ84tluIVvg,10157
61
+ wink_sdk_travel_agent/models/geo_json_point_agent.py,sha256=bpyM7JElpNfCD-9ctxeA7DRAZgBC0SvudzxTUigwszY,10174
62
+ wink_sdk_travel_agent/models/geo_name_agent.py,sha256=NtKmZ6_F0fr0AS4QiFvWMnIJP-VBG4HSr1Kr8s_B2Es,13164
63
+ wink_sdk_travel_agent/models/group_descriptor_agent.py,sha256=8qqZe-HYx9Cx9WJN4XequHpZXwKnkOR8fZoRy4xm36k,11052
64
+ wink_sdk_travel_agent/models/guest_room_agent.py,sha256=rNSKSfpXvl7wh9UuVTYDVNqovPwiw4tshAl_K3I-7Ho,26959
65
+ wink_sdk_travel_agent/models/guest_room_lightweight_agent.py,sha256=GLbjuYrLkuGCxwfUAH9q1ue3Jg63PN0NfJgUNOgs8fE,27036
66
+ wink_sdk_travel_agent/models/guest_user_agent.py,sha256=ZX7wZYGQKsJy48RUVPYqMjbu_h4CqJEGf5MQb06GVw0,11008
67
+ wink_sdk_travel_agent/models/hotel_on_map_agent.py,sha256=VW3aWwJSSV4v5QH_OMoouz7h_rfXtJPEs4YCAopmTQM,29766
68
+ wink_sdk_travel_agent/models/image_attribution_agent.py,sha256=dt0aoBetF-PSPEquABqA92IFNPsXYDrnPrdyR9ZiHFk,9959
69
+ wink_sdk_travel_agent/models/localized_description_agent.py,sha256=Ls5RnjBs9jNsx1A2TB9xSYLUX82-tp3aiJ8o3dTzzdI,10219
70
+ wink_sdk_travel_agent/models/localized_price_agent.py,sha256=JqncQfgEg_Fpy4zdavd0mtSPH5-xCM7BfGGVcUoleig,18399
71
+ wink_sdk_travel_agent/models/managed_by_entity_agent.py,sha256=9R_3FG3ObaqAucL7Ga_WqmTDCbp217tarqkLh7h5GVE,11026
72
+ wink_sdk_travel_agent/models/managed_by_entity_rules_agent.py,sha256=j8qvroDOy2hBFR9wLNd3Cux-U1OiGHvEtzQ2mSOwXI4,10612
73
+ wink_sdk_travel_agent/models/online_presence_agent.py,sha256=IJ6l0R2m0jFQ53kRAqohWfu4_FDkuUbOk33HfKqOSLc,13189
74
+ wink_sdk_travel_agent/models/page_booking_view_agent.py,sha256=LQybFKq9wH94z0A80n1_LNY8p_bqt9NEu4Tsr5thbnk,12189
75
+ wink_sdk_travel_agent/models/pageable_object_agent.py,sha256=aRnzbSQqD5XCM8Y-BBs-st8wpiW3BDGOpyC3EqWV1CA,10796
76
+ wink_sdk_travel_agent/models/payout_agent.py,sha256=PsSHgqw8v-onjDHYalqWcS525jyBy3Flcz71TngISVM,14575
77
+ wink_sdk_travel_agent/models/payout_fee_agent.py,sha256=gr57OtXISccEffgj-fAuNX8ZPQ_sbohZtA9xO266DeI,11112
78
+ wink_sdk_travel_agent/models/pending_refund_agent.py,sha256=BxVAExLWns3XLJ3Lo7o6NnbDgO2WTyJdPBFbe0BUqyk,11941
79
+ wink_sdk_travel_agent/models/perk_lightweight_agent.py,sha256=41haBt492FYOi0dCGuE2y1EeG6onx6YWo5MBMa_7ftg,11158
80
+ wink_sdk_travel_agent/models/personal_agent.py,sha256=KSA4NsmVu91uq65YTnIzaHHRjWYjUq0n27KMIuEU0XU,14368
81
+ wink_sdk_travel_agent/models/pet_info_dto_agent.py,sha256=CVlM6pnsN0XukFm71Hn6RU_Ir1Az63_v34MP2nBeaXU,9874
82
+ wink_sdk_travel_agent/models/preferences_agent.py,sha256=ugzJ3NtvNBZ30D2t_WqHkac6a78AgFJTH8TNhzC29Eo,14432
83
+ wink_sdk_travel_agent/models/profile_agent.py,sha256=sJMhMApQXIit1KeyxkldJb-S4u7MA-3ibV4eMIHlfHA,11400
84
+ wink_sdk_travel_agent/models/profile_user_agent.py,sha256=1PlCIU4Km-XyQnQd9h4WN1O2KrM33ruzC-cumopsFYc,10694
85
+ wink_sdk_travel_agent/models/property_policy_agent.py,sha256=axnbI_0ROZZ1DW1uoLc7F_HBIzoyBeZM03FLZ9YEAto,14629
86
+ wink_sdk_travel_agent/models/quote_agent.py,sha256=igJZKMP_9_x5niKSejRqU7W6X8UaEKJI9T5x4aHUZiI,10200
87
+ wink_sdk_travel_agent/models/rate_plan_agent.py,sha256=9zi6b7bdXwWSbph4Z2fm-uFIFEiUJmkWHhI_YBtiPWU,19126
88
+ wink_sdk_travel_agent/models/rate_plan_level_fee_agent.py,sha256=EN4TbR8fep9bWfaX69wsLaTt6Oou4KPX_6XmtYyIirk,11411
89
+ wink_sdk_travel_agent/models/refund_agent.py,sha256=EEZdwdGijX6KkmxqCWfRDOYhzU5s5rU35AYuOJ2lXB4,15782
90
+ wink_sdk_travel_agent/models/reporting_ancillary_agent.py,sha256=p44bDyNEhZvh3PBGePrjW1hAcik7LPii5BGauF84TVg,11408
91
+ wink_sdk_travel_agent/models/reporting_daily_rate_agent.py,sha256=Nu-alBt4UNrUPT77giGwNY_1HsAAACJi253r_HsSin0,11089
92
+ wink_sdk_travel_agent/models/reporting_extra_charge_agent.py,sha256=yD5DQuSQsSiIvVlR0Sj-KmQuNhYvRk-SxMFoskRCCDM,10591
93
+ wink_sdk_travel_agent/models/review_agent.py,sha256=M5vLoiPiBbVUubWJtmOaUdwq0BD413JRE8DmguO7Z5I,14201
94
+ wink_sdk_travel_agent/models/review_answer_agent.py,sha256=IBNF-e8636OSfKP5Os3KNVVSnzr_1X5PC295ZY8JqsE,10668
95
+ wink_sdk_travel_agent/models/review_user_agent.py,sha256=NOtkdGufXxfdCATMGi2k67hZoSdAV-TYTyrG0RjtEU0,10635
96
+ wink_sdk_travel_agent/models/room_configuration_agent.py,sha256=8RiN4AFoFblSUzcM5GGo0GvbpGPwEkcjQgEUYvmSRAs,10561
97
+ wink_sdk_travel_agent/models/room_configuration_price_rate_plan_agent.py,sha256=I9uN0ZH-PKr-bI9bJa2MI7kFWjTZlnJ9hfAagLM2u1M,12980
98
+ wink_sdk_travel_agent/models/room_stay_agent.py,sha256=N7CLAdjrMVhXfa94iHfUYSBgANPwwJ6_Ouc6qd2A7Qs,17695
99
+ wink_sdk_travel_agent/models/simple_address_agent.py,sha256=rP8d4i62Ss32luSoHxOO2QVvrwPz11RG3jI9kQil1vw,10902
100
+ wink_sdk_travel_agent/models/simple_date_time_itinerary_agent.py,sha256=gbvZJE_VXol3IhaH9jzH2DsaX-onj-qZvVlIdqdnCcc,11203
101
+ wink_sdk_travel_agent/models/simple_description_agent.py,sha256=jcKg1vEOfZL6eisT0CH_DdVUHdLP-u4xGUxg76jBXsU,10373
102
+ wink_sdk_travel_agent/models/simple_multimedia_agent.py,sha256=T1YTd9VNM7GK6ebWOPjGd19ay_yRDjqH7hpxkezzBGg,15544
103
+ wink_sdk_travel_agent/models/social_agent.py,sha256=esWj-kNIVIiBgYr_8rmThN27ZKM2cre0fU6thFfgIAo,10803
104
+ wink_sdk_travel_agent/models/sort_descriptor_agent.py,sha256=MSV7dTzQLnkX-dt0-U_5DWCIu5bQI2EpcbvCU1CRzc8,10339
105
+ wink_sdk_travel_agent/models/sort_object.py,sha256=YH73z113i-4q9TQ-MInYhlr-hpYbmkj2-2oTbavKijc,10308
106
+ wink_sdk_travel_agent/models/state_agent.py,sha256=Ue7VJ5CPpZfhhorB46QlkANKC9A-6KCr0OpjQOO0bkU,11898
107
+ wink_sdk_travel_agent/models/stay_rate_agent.py,sha256=tqxwoq_WmIAekT5ZmaXnRg6o_tAyKHTIOBmdI15FrVk,24468
108
+ wink_sdk_travel_agent/models/sub_country_agent.py,sha256=HPeHmjp5TUoASqk5BQ0s0eIULZa2yHQ6tvg0sgvYE_o,10202
109
+ wink_sdk_travel_agent/models/sub_sub_country_agent.py,sha256=-KqGoksv684WXqMNJP5A4fI9XnXEm2i-6Djib3xHCBU,10056
110
+ wink_sdk_travel_agent/models/supplier_contract_item_policy_agent.py,sha256=U8Cz8dBef198yAlNicxVVe7XU3oFuR-sp8Zstxtr_Mw,17051
111
+ wink_sdk_travel_agent/models/travel_agent_agent.py,sha256=o79k3HMkd4o7h5ROZ-4LIjXfuwFG8EGIMcY7Ek-dYlI,10120
112
+ wink_sdk_travel_agent/models/travel_inventory_recognition_agent.py,sha256=f7AmZgPhGAy2kY8Va1VIKIK-LaUBsXhEoRk_s7GEyjk,12403
113
+ wink_sdk_travel_agent/models/upsert_travel_agent_request_agent.py,sha256=tWsUT5F8DQyP4qDXvFD2N520JKmfDURQD8gnovyOYsM,10133
114
+ wink_sdk_travel_agent-0.0.20.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
115
+ wink_sdk_travel_agent-0.0.20.dist-info/METADATA,sha256=0HS78g5ATv6FnnknWLTyq7Neb-9QEb6oCja-1PcHL18,31051
116
+ wink_sdk_travel_agent-0.0.20.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
117
+ wink_sdk_travel_agent-0.0.20.dist-info/top_level.txt,sha256=r4wUq-aj0a5gUjGGjn0pA0NpDhSk11ci-Vrb-PonzIo,22
118
+ wink_sdk_travel_agent-0.0.20.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,17 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: wink-sdk-travel-agent
3
- Version: 0.0.4
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
-
16
- # Introduction 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. 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. # 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 blocking and get that same blocking 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 blocking 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 blocking by region, locale and property flags. - [Inventory](/blocking): All APIs related to retrieve known travel blocking 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 blocking. #### 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 blocking 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 blocking to sell. - [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. - [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 blocking and need taxonomies of standard and non-standard codes for blocking 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 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. - [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.
17
-
@@ -1,111 +0,0 @@
1
- wink_sdk_travel_agent/__init__.py,sha256=vic1z0nV9JobFAlvQjrNUX_xkPvw6xhxYhWbK2aH5wQ,16290
2
- wink_sdk_travel_agent/api_client.py,sha256=FghNCDiAz9k6fNfb1J4gdF61l6v0yMEMMJ4Mbh-Jh_A,34730
3
- wink_sdk_travel_agent/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- wink_sdk_travel_agent/configuration.py,sha256=bUlAUjQJ9WWB2Kci4bFk_1T-By1P359d-D2O_206vDk,22582
5
- wink_sdk_travel_agent/exceptions.py,sha256=998g1iRMJn0sLkRI_ohIEZ5kMu3jgF09G4bTRWeKDlo,13208
6
- wink_sdk_travel_agent/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- wink_sdk_travel_agent/rest.py,sha256=z3h327iZ1nUJu7IiO9jeoeqx7TpVYG7EXuhZZuyU_5I,16655
8
- wink_sdk_travel_agent/api/__init__.py,sha256=GLKKEYGrVabqh2a0gUTFW9tC7YV5p1B3Z4V_tnEOleQ,118
9
- wink_sdk_travel_agent/api/travel_agent_api.py,sha256=nNL49XkK7mwY2x5oRf_m4iRDop7BZ0FPirQsc314wOE,88501
10
- wink_sdk_travel_agent/models/__init__.py,sha256=tethoKbg6PRrSgOeKo4hfLYTdfjW6zXEGrUJH7SB340,15613
11
- wink_sdk_travel_agent/models/address_agent.py,sha256=rHLyTGmlKY_WSuVip5dzi0dj1EhCjASYxXATO9NgmrU,11260
12
- wink_sdk_travel_agent/models/agent_booking_request_agent.py,sha256=RN2-yKTFG3A9uNgWGvwAbUkPWBz2ZwHLdFgQREcSfzc,15089
13
- wink_sdk_travel_agent/models/aggregate_descriptor_agent.py,sha256=Ubi-byOEBdNvXIRgjrGCCtwGMi_QjW-XGKJH-i9YvxQ,10404
14
- wink_sdk_travel_agent/models/ancillary_request_agent.py,sha256=3MLpjeZW9QfpMrB23yx-IbLSwbRiYS9oBa9d891Hl30,11803
15
- wink_sdk_travel_agent/models/authenticated_user_agent.py,sha256=wNvzdM-FDy_VnNYxwS04f-dfsXlCZprHy2uqNXo13Qs,10512
16
- wink_sdk_travel_agent/models/bed_agent.py,sha256=A6CYaWM8j8wG5uc941XNiq-TO3mZD2JRyZHgMtaQNyw,10182
17
- wink_sdk_travel_agent/models/bedroom_agent.py,sha256=4x199M4eEbvNEGmIM8fbqk938hVzSooNPuGYRVzq04c,10966
18
- wink_sdk_travel_agent/models/bedroom_configuration_agent.py,sha256=iyAT5niqmOnAaJegAErVbU-gBw9rq9U9caW_NVQtoIc,10649
19
- wink_sdk_travel_agent/models/beneficiary_agent.py,sha256=IiHGsUE7FqWfVYEmE3URc5pQ0iNJlOjVLZKaip_7YW8,18194
20
- wink_sdk_travel_agent/models/beneficiary_charge_agent.py,sha256=UglXuFk3tTjOq-n1mp_lsTkKXVi__y0PJNuKGobQOGg,10370
21
- wink_sdk_travel_agent/models/booking_agent.py,sha256=m3hnLxuNcoZJdgD1jAQXwI6IFv-YDMJkWIR0QGl5u1M,34602
22
- wink_sdk_travel_agent/models/booking_ancillary_agent.py,sha256=qM45iqTmwuDCYXBDW5XKZZ9Mz1wcyH3sD9qEOky-1zM,14866
23
- wink_sdk_travel_agent/models/booking_confirmations_agent.py,sha256=4rd51k6ZmfIFcrkwslxD3zPFoSqRF70Qj00vgE3-nwY,11523
24
- wink_sdk_travel_agent/models/booking_contract_agent.py,sha256=TAUGkGfdGVfA_hk_9DzBhIba_r06nUvEd4czrEdTPpQ,67461
25
- wink_sdk_travel_agent/models/booking_contract_item_agent.py,sha256=CY3ytITsYqU-nycUg1Im1M4l1j0K03045U6sMCKGQE8,22897
26
- wink_sdk_travel_agent/models/booking_contract_payment_details_agent.py,sha256=3aEYjzsdGXU7S0NCXhfeB2Xq_CDf3R8m0wa_Fw3wlvg,13166
27
- wink_sdk_travel_agent/models/booking_itinerary_agent.py,sha256=J8_fmWoZS--EI95Q__nv5fxbRV3shx89R7TeSeO_HaQ,11892
28
- wink_sdk_travel_agent/models/booking_itinerary_room_configuration_agent.py,sha256=A6mxP9juJMTHZgYBwq1SEJ1xqjYlqVynTwhKfoASMvk,10689
29
- wink_sdk_travel_agent/models/booking_itinerary_room_configuration_child_agent.py,sha256=fHry6X6x0MzJnqETCzNYxLjPbi3uWVzHV5VGizfqJ4g,9965
30
- wink_sdk_travel_agent/models/booking_user_agent.py,sha256=_VQ56peptXFCbZhcsu6VJ7p-G6MWXt56r-2YGRe2jjY,10653
31
- wink_sdk_travel_agent/models/booking_user_request_agent.py,sha256=eq5JGvueRwk4_Fvq8WxHr-2aQSo0b6qJJ_t9D0iONPA,10349
32
- wink_sdk_travel_agent/models/booking_user_session_agent.py,sha256=ZzoH9eY963tblIAiiVBQySswa43qdPdxOmRbY956iPY,12482
33
- wink_sdk_travel_agent/models/booking_view_agent.py,sha256=4HPbuk7xw2oGnS8Lr2B2AciGOaJMlkTYUGi7s-b8O4Y,10945
34
- wink_sdk_travel_agent/models/boolean_response_agent.py,sha256=JAy9uwqRwntoOgooS2oJVN18uWwFZ3CmHLLA0h3MSq4,10076
35
- wink_sdk_travel_agent/models/cancellation_detail_agent.py,sha256=XYanLjSiqWBs2AA3lW_ly7hLnoM8c76L7OFiZL9-uIk,10425
36
- wink_sdk_travel_agent/models/cancellation_policy_agent.py,sha256=dukl4YZiiWppTcGzrxh-iY1Xd0q2BKeMgKZdwDv6eOc,16909
37
- wink_sdk_travel_agent/models/cancellation_policy_exception_agent.py,sha256=DTUsAtNOBwEOFSmXbMIjMtEVHJA6BV5EG-Ot1Q3nI44,10990
38
- wink_sdk_travel_agent/models/cancellation_policy_exceptions_agent.py,sha256=GaWI0LqI_XwPw5lKQOcfjLHsrsUUyADAkKR7R7mVfg0,10448
39
- wink_sdk_travel_agent/models/child_agent.py,sha256=6KMQrMXn5thTsaBFhktV0wYwHc4BmtHweQxblzmEzRk,9990
40
- wink_sdk_travel_agent/models/commissionable_entry_agent.py,sha256=k21d0ODlbD12mNymtzf_NQyrwZfOPCIy0_NkZZyVM_E,10593
41
- wink_sdk_travel_agent/models/company_agent.py,sha256=I0kjjh_jCBlTPm489MzfjNlVH1GDalVSa7JSDY73shs,15093
42
- wink_sdk_travel_agent/models/company_user_agent.py,sha256=4YWKuCVnaE9G6xAFRffK72aw08PYQVMbF914AdAv4fM,11493
43
- wink_sdk_travel_agent/models/company_view_agent.py,sha256=KEKmlK5R4ppAyZuil3bF_eeorjODUtrmsW_3GBrdEaI,10945
44
- wink_sdk_travel_agent/models/composite_filter_descriptor_agent.py,sha256=fTEAmODoVnM9umXmXu6AyEtKAAqadE3tHNjuRbBIcZg,10906
45
- wink_sdk_travel_agent/models/contact_agent.py,sha256=iiagleeAIM25p0zfQmH-uN8xz6L2INbNv4o5KEh0br0,10993
46
- wink_sdk_travel_agent/models/country_agent.py,sha256=CtvGRKFPfNF8VBbbxWtlOcxRwcvy3QRjrFrFRxv3CCY,10719
47
- wink_sdk_travel_agent/models/create_agent_booking400_response.py,sha256=dZyzR72oZexEoqPhZ7_Znb_P98qQn8xb3ZsiZ7up9sg,12892
48
- wink_sdk_travel_agent/models/create_agent_booking_request_agent.py,sha256=P0ccjeoGEgficDTvrZSYPfAls0skWX7614IKX-55Nn0,11284
49
- wink_sdk_travel_agent/models/custom_monetary_amount.py,sha256=7L13l_B-566DiRxc8OK4OMlcPPr9QEb-yE4q1nOPJSw,9872
50
- wink_sdk_travel_agent/models/daily_rate_agent.py,sha256=fbkqjYkmJo-H1OzqNYI8l3uh64O2SjO33fURrbCRvq4,11857
51
- wink_sdk_travel_agent/models/dow_pattern_group_agent.py,sha256=HQdhJKh_qcokR1O75egeQ9M0-xxc58LOSP1zF799ekU,10904
52
- wink_sdk_travel_agent/models/engine_configuration_booking_report_agent.py,sha256=JEalAwSfWKiz7Ozf_1mLiAiSwf3SLhQcc30UN0wecno,24473
53
- wink_sdk_travel_agent/models/engine_configuration_theme_agent.py,sha256=UoWzv_kCcmh1_5df2vkgRvqqw0CEG8R220bvfMEkiu0,11814
54
- wink_sdk_travel_agent/models/engine_configuration_theme_colors_agent.py,sha256=qUhPYiJjng_sT8hBqS2HVirteX5OumFdTmUmhkoLiug,11832
55
- wink_sdk_travel_agent/models/extra_charge_agent.py,sha256=siojXPyAQUs_K5ej9X8D0UxU4Cv4jpbtnnbmNthGqoM,11061
56
- wink_sdk_travel_agent/models/extra_charges_agent.py,sha256=xGwE38EfhKThh-NomJOqtswEqGXsnew5GGT0AZC-AhA,11851
57
- wink_sdk_travel_agent/models/fee_agent.py,sha256=C24sJJNmWsUyKT59y9GvFmWvymiCMJgJuRpqcvsZNMc,10667
58
- wink_sdk_travel_agent/models/filter_descriptor_agent.py,sha256=Ls3N-BIbVDO90kjbLexiLPqPlriTaL1F3yeHL7vL2cw,10900
59
- wink_sdk_travel_agent/models/general_manager_agent.py,sha256=x0chF5nPYeks2ri7iIAQ8cmb29y6c5gZZdCEFlhC6u4,10998
60
- wink_sdk_travel_agent/models/generic_error_message.py,sha256=yG8YD_C0rvuPPHF60KlBqR7uGEMWBsmoBBVqeT7d01Y,10140
61
- wink_sdk_travel_agent/models/geo_json_point_agent.py,sha256=HgMpvFfhHv0cYChzPH1UECMklkQYaNI0UTz-HTqlF1w,10157
62
- wink_sdk_travel_agent/models/geo_name_agent.py,sha256=YqAOaAfDq-T-eLu5bIKCqh-MbUedB_U4yN7g-ReEh4Y,13147
63
- wink_sdk_travel_agent/models/group_descriptor_agent.py,sha256=dR6F7x-Hm_OQ38VobTOQ6uqS0ENWoYKD5WWEPI0GJPE,11035
64
- wink_sdk_travel_agent/models/guest_room_agent.py,sha256=rNSKSfpXvl7wh9UuVTYDVNqovPwiw4tshAl_K3I-7Ho,26959
65
- wink_sdk_travel_agent/models/guest_user_agent.py,sha256=DHDyrPJOxjT4exrjDZG6xOAc6lWgbLc6OsGV2pX5tAE,10991
66
- wink_sdk_travel_agent/models/hotel_on_map_agent.py,sha256=wEua9REvQC4MdYjTMvGCvyWfYvnB2XaRFCS-FIFkpd0,29749
67
- wink_sdk_travel_agent/models/image_attribution_agent.py,sha256=UjT9mDvmg1M5P1PkNwoat6Ug85bj4aaijOxSZheGetA,9942
68
- wink_sdk_travel_agent/models/localized_description_agent.py,sha256=6xY0H6y5OwgXagThzglecocqRyVX1FhJe4IBqsZNLRQ,10202
69
- wink_sdk_travel_agent/models/localized_price_agent.py,sha256=mqQKb242VeGqqqmy-L8R8IQ16NFHyAIiQKymbd1y3OQ,18382
70
- wink_sdk_travel_agent/models/page_booking_view_agent.py,sha256=PIBGANe_Nc9iq7YK-7pkV2KMSGVQguDS5tsG4tFvuZg,12172
71
- wink_sdk_travel_agent/models/pageable_object_agent.py,sha256=7mVqLek1F3_FmraGn2uEGTOw7H4AJMdLas6TqWF18pI,10779
72
- wink_sdk_travel_agent/models/payout_agent.py,sha256=FA81XTxdpuHtp65F2kP1E3JOyNuKKQLfu-NC4SJO3rc,14558
73
- wink_sdk_travel_agent/models/payout_fee_agent.py,sha256=snYjkTdyKLBYDMMzv2GKYjbQXzbJCdQBiWhugtpqKsg,11095
74
- wink_sdk_travel_agent/models/pending_refund_agent.py,sha256=3b2Tm7Cse_frATk3tOJ98FWOwGOZYhSuCbxBkfhaHgA,11924
75
- wink_sdk_travel_agent/models/personal_agent.py,sha256=VfUN7Lb9CKSE6gTztIcdGmiqt2q_mWg8pzZICY9M4bc,14351
76
- wink_sdk_travel_agent/models/pet_info_dto_agent.py,sha256=1QaiVTSYuZhkBYEs_YWiAdofv7TflkFQEjXLksmrBSU,9857
77
- wink_sdk_travel_agent/models/preferences_agent.py,sha256=7Y8p-2Gj11qvY-L00zMgbM_IxHAhye61AspnfEXgOXE,14415
78
- wink_sdk_travel_agent/models/profile_agent.py,sha256=ZL-j8f9efStgPXjoRTpRfmWOO6p_jd6JZ59btznYQZ0,11383
79
- wink_sdk_travel_agent/models/profile_user_agent.py,sha256=SRQE-KdiLB_kee1A5VM-Xhgn2-7ICnU8XRJ-vgC_emc,10677
80
- wink_sdk_travel_agent/models/property_policy_agent.py,sha256=_sY2lx9VwDfRORmJAr44wUlixN1OYgvnA_NEcZKacCo,14612
81
- wink_sdk_travel_agent/models/quote_agent.py,sha256=Eo5bu6S1-rcZsC1qR3L2VJ-5BU-JFQq-0Di3eGmDbzc,10183
82
- wink_sdk_travel_agent/models/rate_plan_agent.py,sha256=9zi6b7bdXwWSbph4Z2fm-uFIFEiUJmkWHhI_YBtiPWU,19126
83
- wink_sdk_travel_agent/models/rate_plan_level_fee_agent.py,sha256=TUbouB-Irg2Zh_sLd_wHT3Kz8osDAKF9D-dNxg8XqGs,11394
84
- wink_sdk_travel_agent/models/refund_agent.py,sha256=B9R9LVaezgM5yoYzOTR-gknJA44wgVo1_A3jc53DCWM,15765
85
- wink_sdk_travel_agent/models/reporting_ancillary_agent.py,sha256=idzDKy7FzKT2blUyovD3zFpzwXsjfuDxKEw09vPBrk0,11391
86
- wink_sdk_travel_agent/models/reporting_daily_rate_agent.py,sha256=OXNxJc5Ew3DP2DMoH4wrfP7wQ6WQIcUs14jQZY7RXyU,11072
87
- wink_sdk_travel_agent/models/reporting_extra_charge_agent.py,sha256=3xv5IyMJFnIawXwXOkgEL2FEB3rDJ1NCc1REP4q5MOs,10574
88
- wink_sdk_travel_agent/models/review_agent.py,sha256=hFAg3c9ZKCFguDcaUARbZ9sxpMbkON3adzYobkH19Lg,14184
89
- wink_sdk_travel_agent/models/review_answer_agent.py,sha256=iQ2TTMXB6J5fCqos93MO5zP-sNJFXqRnh1eTd2ZzGVo,10651
90
- wink_sdk_travel_agent/models/review_user_agent.py,sha256=zP9Uj7NpTWERAqL2-Ss471dNgs0noUZqbnJyiz5Cbq8,10618
91
- wink_sdk_travel_agent/models/room_configuration_agent.py,sha256=rbkqZ13sKWPM0iIVW99DOnAyzt2fAgQk9EuGCzqAOX8,10544
92
- wink_sdk_travel_agent/models/room_stay_agent.py,sha256=8w3OufTR3GHY0zLIN3Hha3-Ie-tTB7KRFOffpxX1nJI,19349
93
- wink_sdk_travel_agent/models/simple_date_time_itinerary_agent.py,sha256=ztR4J3GYqpxQiqrm2nUb7mSwMWN8aEGxzcZQMU6N8W0,11186
94
- wink_sdk_travel_agent/models/simple_description_agent.py,sha256=_FYd2aAGW2UW9B6wUvulPDYEZEKKnmbg4NsZSxM9dKc,10343
95
- wink_sdk_travel_agent/models/simple_multimedia_agent.py,sha256=jRHAI2j-q-Xc6xrUNfK10vCdhpblyLMcqSHkoKWxxX0,15527
96
- wink_sdk_travel_agent/models/social_agent.py,sha256=wGTYu12bE1-SaGfHJyz8ulq06er1kBSb4Ogb6IpV-5I,10786
97
- wink_sdk_travel_agent/models/sort_descriptor_agent.py,sha256=ZhtsNPwoAceRSydG_GLga8YnOtgC2RiMcH-lY3Ii-VQ,10322
98
- wink_sdk_travel_agent/models/sort_object.py,sha256=3rGR7MrtKdGSa8QXn45IJ03T2FDVxLk-R3TTG_3VDOA,10291
99
- wink_sdk_travel_agent/models/state_agent.py,sha256=jWuUG3LvvpG65_zWjXIE33-anuh6Jpky22LEnEeg0CA,11881
100
- wink_sdk_travel_agent/models/stay_rate_agent.py,sha256=it4MgOQxhaCn8xlLIPbXihn7DQDC_QQUM3faNtbeyik,24451
101
- wink_sdk_travel_agent/models/sub_country_agent.py,sha256=10SwPD0PE147f4RDglmwUWpIZ36z303H2hartjMYYlM,10185
102
- wink_sdk_travel_agent/models/sub_sub_country_agent.py,sha256=xru27EY8krsBnjOSX9MRWnXfajbULQs8_nvlD485lgI,10039
103
- wink_sdk_travel_agent/models/supplier_contract_item_policy_agent.py,sha256=VbDtCwa0xz3fP99q_uznhbc9kh7vci_coPp98ytxsrM,17034
104
- wink_sdk_travel_agent/models/travel_agent_agent.py,sha256=pOrPXlOyi9gTfmNnSfrkJWBytD69kSeSpHzp4NJlIsA,10103
105
- wink_sdk_travel_agent/models/travel_inventory_recognition_agent.py,sha256=vA7SELOgjYA8jRVvL9FEgIYUvDaDmjK1aB9Xq2V1s4Y,12386
106
- wink_sdk_travel_agent/models/upsert_travel_agent_request_agent.py,sha256=VioHZjGCmdkt9QQ5BW-2ARkVVdrITXxjpfe2DuLJ3rg,10116
107
- wink_sdk_travel_agent-0.0.4.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
108
- wink_sdk_travel_agent-0.0.4.dist-info/METADATA,sha256=EviaNsA-fMq7Y9XnhXg-hpY2ugsfc4Q4wBHlulg72mM,7794
109
- wink_sdk_travel_agent-0.0.4.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
110
- wink_sdk_travel_agent-0.0.4.dist-info/top_level.txt,sha256=r4wUq-aj0a5gUjGGjn0pA0NpDhSk11ci-Vrb-PonzIo,22
111
- wink_sdk_travel_agent-0.0.4.dist-info/RECORD,,