bookingsync-api 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/bookingsync-api.gemspec +1 -0
  4. data/lib/bookingsync/api/client.rb +41 -24
  5. data/lib/bookingsync/api/client/payments.rb +1 -1
  6. data/lib/bookingsync/api/client/rentals.rb +2 -2
  7. data/lib/bookingsync/api/version.rb +1 -1
  8. data/spec/bookingsync/api/client/accounts_spec.rb +8 -2
  9. data/spec/bookingsync/api/client/amenities_spec.rb +8 -2
  10. data/spec/bookingsync/api/client/availabilities_spec.rb +8 -2
  11. data/spec/bookingsync/api/client/bathrooms_spec.rb +25 -12
  12. data/spec/bookingsync/api/client/bedrooms_spec.rb +24 -11
  13. data/spec/bookingsync/api/client/booking_comments_spec.rb +23 -10
  14. data/spec/bookingsync/api/client/bookings_fees_spec.rb +8 -2
  15. data/spec/bookingsync/api/client/bookings_payments_spec.rb +8 -2
  16. data/spec/bookingsync/api/client/bookings_spec.rb +36 -20
  17. data/spec/bookingsync/api/client/bookings_taxes_spec.rb +8 -2
  18. data/spec/bookingsync/api/client/change_overs_spec.rb +8 -2
  19. data/spec/bookingsync/api/client/clients_spec.rb +23 -13
  20. data/spec/bookingsync/api/client/destinations_spec.rb +8 -2
  21. data/spec/bookingsync/api/client/fees_spec.rb +8 -2
  22. data/spec/bookingsync/api/client/inquiries_spec.rb +13 -7
  23. data/spec/bookingsync/api/client/living_rooms_spec.rb +22 -9
  24. data/spec/bookingsync/api/client/nightly_rate_maps_spec.rb +15 -6
  25. data/spec/bookingsync/api/client/payment_gateways_spec.rb +8 -2
  26. data/spec/bookingsync/api/client/payments_spec.rb +34 -16
  27. data/spec/bookingsync/api/client/periods_spec.rb +29 -14
  28. data/spec/bookingsync/api/client/photos_spec.rb +23 -9
  29. data/spec/bookingsync/api/client/preferences_general_settings_spec.rb +11 -4
  30. data/spec/bookingsync/api/client/rates_rules_spec.rb +25 -12
  31. data/spec/bookingsync/api/client/rates_spec.rb +8 -2
  32. data/spec/bookingsync/api/client/rates_tables_spec.rb +23 -10
  33. data/spec/bookingsync/api/client/rental_agreements_spec.rb +18 -8
  34. data/spec/bookingsync/api/client/rental_cancelation_policies_spec.rb +8 -1
  35. data/spec/bookingsync/api/client/rental_cancelation_policy_items_spec.rb +8 -1
  36. data/spec/bookingsync/api/client/rentals_amenities_spec.rb +22 -9
  37. data/spec/bookingsync/api/client/rentals_fees_spec.rb +14 -5
  38. data/spec/bookingsync/api/client/rentals_spec.rb +53 -19
  39. data/spec/bookingsync/api/client/reviews_spec.rb +12 -6
  40. data/spec/bookingsync/api/client/seasons_spec.rb +30 -14
  41. data/spec/bookingsync/api/client/sources_spec.rb +17 -8
  42. data/spec/bookingsync/api/client/special_offers_spec.rb +30 -15
  43. data/spec/bookingsync/api/client/strict_bookings_spec.rb +10 -14
  44. data/spec/bookingsync/api/client/taxes_spec.rb +8 -2
  45. data/spec/bookingsync/api/client_spec.rb +23 -7
  46. data/spec/bookingsync/api/relation_spec.rb +1 -1
  47. data/spec/bookingsync/api/resource_spec.rb +8 -8
  48. data/spec/bookingsync/api/response_spec.rb +8 -8
  49. data/spec/fixtures/cassettes/BookingSync_API_Client_Accounts/_account/returns_a_single_account.yml +26 -18
  50. data/spec/fixtures/cassettes/BookingSync_API_Client_Accounts/_accounts/returns_accounts.yml +26 -18
  51. data/spec/fixtures/cassettes/BookingSync_API_Client_Amenities/_amenities/returns_amenities.yml +220 -26
  52. data/spec/fixtures/cassettes/BookingSync_API_Client_Amenities/_amenity/returns_amenity.yml +50 -26
  53. data/spec/fixtures/cassettes/BookingSync_API_Client_Availabilities/_availabilities/returns_availabilities.yml +37 -21
  54. data/spec/fixtures/cassettes/BookingSync_API_Client_Availabilities/_availability/returns_a_single_availability.yml +33 -25
  55. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_bathroom/returns_a_single_bathroom.yml +26 -18
  56. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_bathrooms/returns_bathrooms.yml +33 -22
  57. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_cancel_bathroom/cancels_given_bathroom.yml +21 -15
  58. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_create_bathroom/creates_a_new_bathroom.yml +30 -19
  59. data/spec/fixtures/cassettes/BookingSync_API_Client_Bathrooms/_edit_bathroom/updates_given_bathroom_by_ID.yml +26 -19
  60. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_bedroom/returns_a_single_bedroom.yml +26 -18
  61. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_bedrooms/returns_bedrooms.yml +32 -24
  62. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_cancel_bedroom/cancels_given_bedroom.yml +21 -15
  63. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_create_bedroom/creates_a_new_bedroom.yml +29 -18
  64. data/spec/fixtures/cassettes/BookingSync_API_Client_Bedrooms/_edit_bedroom/updates_given_bedroom_by_ID.yml +25 -19
  65. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_booking_comment/returns_single_booking_comment.yml +42 -26
  66. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_booking_comments/returns_booking_comments.yml +45 -33
  67. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_create_booking_comment/creates_booking_comment.yml +43 -24
  68. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_create_booking_comment/returns_newly_created_booking_comment.yml +43 -24
  69. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_delete_booking_comment/deletes_given_booking_comment.yml +29 -17
  70. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_edit_booking_comment/returns_updated_booking_comment.yml +36 -22
  71. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingComments/_edit_booking_comment/updates_booking_comment.yml +36 -22
  72. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_booking/returns_a_single_booking.yml +44 -26
  73. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_booking/returns_a_single_canceled_booking.yml +30 -23
  74. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_a_block/yields_block_with_batch_of_bookings.yml +100 -115
  75. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_auto_paginate_true/returns_all_bookings_joined_from_many_requests.yml +100 -115
  76. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_bookings/pagination/with_per_page_setting/returns_limited_number_of_bookings.yml +52 -28
  77. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_bookings/returns_bookings.yml +57 -25
  78. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_cancel_booking/cancels_given_booking.yml +36 -20
  79. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_create_booking/creates_a_booking.yml +49 -26
  80. data/spec/fixtures/cassettes/BookingSync_API_Client_Bookings/_edit_booking/updates_given_booking_by_ID.yml +44 -24
  81. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsFees/_bookings_fee/returns_a_single_bookings_fee.yml +26 -18
  82. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsFees/_bookings_fees/returns_bookings_fees.yml +27 -19
  83. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsPayments/_bookings_payment/returns_a_single_bookings_payment.yml +26 -18
  84. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsPayments/_bookings_payments/returns_bookings_payments.yml +51 -28
  85. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsTaxes/_bookings_tax/returns_a_single_bookings_tax.yml +26 -18
  86. data/spec/fixtures/cassettes/BookingSync_API_Client_BookingsTaxes/_bookings_taxes/returns_bookings_taxes.yml +28 -20
  87. data/spec/fixtures/cassettes/BookingSync_API_Client_ChangeOvers/_change_over/returns_a_single_change_over.yml +44 -38
  88. data/spec/fixtures/cassettes/BookingSync_API_Client_ChangeOvers/_change_overs/returns_change_overs.yml +43 -37
  89. data/spec/fixtures/cassettes/BookingSync_API_Client_Clients/_client/returns_a_single_client.yml +27 -19
  90. data/spec/fixtures/cassettes/BookingSync_API_Client_Clients/_clients/returns_clients.yml +32 -26
  91. data/spec/fixtures/cassettes/BookingSync_API_Client_Clients/_create_client/creates_a_new_client.yml +30 -19
  92. data/spec/fixtures/cassettes/BookingSync_API_Client_Clients/_edit_client/updates_given_client_by_ID.yml +25 -19
  93. data/spec/fixtures/cassettes/BookingSync_API_Client_Destinations/_destination/returns_a_single_destination.yml +29 -24
  94. data/spec/fixtures/cassettes/BookingSync_API_Client_Destinations/_destinations/returns_destinations.yml +59 -25
  95. data/spec/fixtures/cassettes/BookingSync_API_Client_Fees/_create_fee/creates_a_new_fee.yml +25 -18
  96. data/spec/fixtures/cassettes/BookingSync_API_Client_Fees/_fee/returns_a_single_fee.yml +26 -18
  97. data/spec/fixtures/cassettes/BookingSync_API_Client_Fees/_fees/returns_fees.yml +31 -19
  98. data/spec/fixtures/cassettes/BookingSync_API_Client_Inquiries/_create_inquiry/creates_a_new_inquiry.yml +50 -27
  99. data/spec/fixtures/cassettes/BookingSync_API_Client_Inquiries/_inquiries/returns_inquiries.yml +50 -26
  100. data/spec/fixtures/cassettes/BookingSync_API_Client_Inquiries/_inquiry/returns_a_single_inquiry.yml +29 -21
  101. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_cancel_living_room/cancels_given_living_room.yml +35 -31
  102. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_create_living_room/creates_a_new_living_room.yml +41 -37
  103. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_edit_living_room/updates_given_living_room_by_ID.yml +38 -34
  104. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_living_room/returns_a_single_living_room.yml +44 -40
  105. data/spec/fixtures/cassettes/BookingSync_API_Client_LivingRooms/_living_rooms/returns_living_rooms.yml +43 -39
  106. data/spec/fixtures/cassettes/BookingSync_API_Client_NightlyRateMaps/_edit_nightly_rate_map/updates_given_nightly_rate_map_by_ID.yml +39 -33
  107. data/spec/fixtures/cassettes/BookingSync_API_Client_NightlyRateMaps/_nightly_rate_map/returns_a_single_nightly_rate_map.yml +44 -38
  108. data/spec/fixtures/cassettes/BookingSync_API_Client_NightlyRateMaps/_nightly_rate_maps/returns_nightly_rate_maps.yml +44 -38
  109. data/spec/fixtures/cassettes/BookingSync_API_Client_PaymentGateways/_payment_gateway/returns_a_single_payment_gateway.yml +38 -24
  110. data/spec/fixtures/cassettes/BookingSync_API_Client_PaymentGateways/_payment_gateways/returns_payment_gateways.yml +37 -23
  111. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_cancel_payment/cancels_given_payment.yml +36 -20
  112. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_create_payment/creates_a_new_payment.yml +50 -26
  113. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_edit_payment/updates_given_payment_by_ID.yml +44 -25
  114. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_payment/returns_a_single_payment.yml +26 -18
  115. data/spec/fixtures/cassettes/BookingSync_API_Client_Payments/_payments/returns_payments.yml +55 -27
  116. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_create_period/creates_a_new_period.yml +49 -26
  117. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_delete_period/deletes_given_period.yml +35 -19
  118. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_edit_period/updates_given_period_by_ID.yml +43 -25
  119. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_period/returns_a_single_period.yml +28 -20
  120. data/spec/fixtures/cassettes/BookingSync_API_Client_Periods/_periods/returns_periods.yml +49 -25
  121. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_create_photo/creates_a_photo.yml +47 -24
  122. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_create_photo/creates_a_photo_with_encoded_photo_file.yml +47 -24
  123. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_create_photo/creates_a_photo_with_photo_path.yml +47 -24
  124. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_create_photo/creates_a_photo_with_remote_URL.yml +47 -24
  125. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_delete_photo/delete_given_photo.yml +37 -21
  126. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_edit_photo/updates_photo_s_description.yml +42 -23
  127. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_edit_photo/updates_photo_s_image_file.yml +42 -23
  128. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_photo/returns_a_single_photo.yml +28 -20
  129. data/spec/fixtures/cassettes/BookingSync_API_Client_Photos/_photos/returns_photos.yml +38 -22
  130. data/spec/fixtures/cassettes/BookingSync_API_Client_PreferencesGeneralSettings/_edit_preferences_general_setting/updates_given_preferences_general_setting_by_ID.yml +39 -34
  131. data/spec/fixtures/cassettes/BookingSync_API_Client_PreferencesGeneralSettings/_preferences_general_settings/returns_preferences_general_settings.yml +50 -42
  132. data/spec/fixtures/cassettes/BookingSync_API_Client_Rates/_rate/returns_a_single_rate.yml +28 -20
  133. data/spec/fixtures/cassettes/BookingSync_API_Client_Rates/_rates/returns_rates.yml +48 -24
  134. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_create_rates_rule/creates_a_new_rates_rule.yml +29 -18
  135. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_delete_rates_rule/deletes_given_rates_rule.yml +21 -15
  136. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_edit_rates_rule/updates_given_rates_rule_by_ID.yml +24 -18
  137. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_rates_rule/returns_a_single_rates_rule.yml +26 -18
  138. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesRules/_rates_rules/returns_rates_rules.yml +27 -19
  139. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_create_rates_table/creates_a_new_rates_table.yml +49 -26
  140. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_delete_rates_table/deletes_given_rates_table.yml +36 -20
  141. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_edit_rates_table/updates_given_rates_table_by_ID.yml +43 -25
  142. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_rates_table/returns_a_single_rates_table.yml +26 -18
  143. data/spec/fixtures/cassettes/BookingSync_API_Client_RatesTables/_rates_tables/returns_rates_tables.yml +54 -36
  144. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement/creates_a_new_rental_agreement.yml +50 -26
  145. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement_for_booking/creates_a_new_rental_agreement.yml +50 -26
  146. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_create_rental_agreement_for_rental/creates_a_new_rental_agreement.yml +50 -26
  147. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_rental_agreement/returns_a_single_rental_agreement.yml +30 -21
  148. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalAgreements/_rental_agreements/returns_rental_agreements.yml +52 -26
  149. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalCancelationPolicies/_rental_cancelation_policies/returns_rental_cancelation_policies.yml +48 -27
  150. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalCancelationPolicies/_rental_cancelation_policy/returns_a_single_rental_cancelation_policy.yml +42 -26
  151. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalCancelationPolicyItems/_rental_cancelation_policy_item/returns_a_single_rental_cancelation_policy_item.yml +41 -25
  152. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalCancelationPolicyItems/_rental_cancelation_policy_items/returns_rental_cancelation_policy_items.yml +43 -26
  153. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_create_rental/creates_a_new_rental.yml +49 -26
  154. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_delete_rental/deletes_given_rental.yml +36 -20
  155. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_edit_rental/updates_given_rental_by_ID.yml +44 -28
  156. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rental/returns_a_single_rental.yml +234 -31
  157. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rental/with_additional_query_params/returns_a_single_rental_with_defined_params.yml +322 -0
  158. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals/links/returns_associated_photos.yml +453 -77
  159. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals/returns_rentals.yml +405 -54
  160. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals/returns_rentals_by_ids.yml +336 -32
  161. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_meta/returns_meta_information_about_all_rentals.yml +53 -25
  162. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_meta/returns_meta_information_about_requested_rentals.yml +55 -26
  163. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_search/performs_autopagination_using_POST.yml +121 -81
  164. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_search/rentals_ids_given/makes_a_search_within_given_rentals.yml +42 -28
  165. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals_search/returns_rentals.yml +42 -28
  166. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_create_rentals_amenity/creates_a_new_rentals_amenity.yml +29 -18
  167. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_delete_rentals_amenity/deletes_given_rentals_amenity.yml +21 -15
  168. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_edit_rentals_amenity/updates_given_rentals_amenity_by_ID.yml +24 -18
  169. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_rentals_amenities/links/returns_associated_amenity.yml +104 -52
  170. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_rentals_amenities/links/returns_associated_rental.yml +283 -53
  171. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_rentals_amenities/returns_rentals_amenities.yml +51 -26
  172. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsAmenities/_rentals_amenity/returns_rentals_amenity.yml +50 -26
  173. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsFees/_create_rentals_fee/creates_a_new_rentals_fee.yml +30 -19
  174. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsFees/_rentals_fee/returns_a_single_rentals_fee.yml +30 -22
  175. data/spec/fixtures/cassettes/BookingSync_API_Client_RentalsFees/_rentals_fees/returns_rentals_fees.yml +27 -18
  176. data/spec/fixtures/cassettes/BookingSync_API_Client_Reviews/_create_review/creates_a_new_review.yml +49 -26
  177. data/spec/fixtures/cassettes/BookingSync_API_Client_Reviews/_review/returns_a_single_review.yml +26 -18
  178. data/spec/fixtures/cassettes/BookingSync_API_Client_Reviews/_reviews/returns_reviews.yml +41 -33
  179. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_create_season/creates_a_new_season.yml +50 -27
  180. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_delete_season/deletes_given_season.yml +36 -20
  181. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_edit_season/updates_given_season_by_ID.yml +44 -26
  182. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_season/returns_a_single_season.yml +29 -21
  183. data/spec/fixtures/cassettes/BookingSync_API_Client_Seasons/_seasons/returns_seasons.yml +55 -36
  184. data/spec/fixtures/cassettes/BookingSync_API_Client_Sources/_create_source/creates_a_new_source.yml +40 -25
  185. data/spec/fixtures/cassettes/BookingSync_API_Client_Sources/_edit_source/updates_given_source_by_ID.yml +36 -25
  186. data/spec/fixtures/cassettes/BookingSync_API_Client_Sources/_source/returns_a_single_source.yml +26 -18
  187. data/spec/fixtures/cassettes/BookingSync_API_Client_Sources/_sources/returns_sources.yml +42 -24
  188. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_create_special_offer/creates_a_new_special_offer.yml +50 -26
  189. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_delete_special_offer/deletes_given_special_offer.yml +36 -20
  190. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_edit_special_offer/updates_given_special_offer_by_ID.yml +44 -25
  191. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_special_offer/returns_a_single_special_offer.yml +29 -22
  192. data/spec/fixtures/cassettes/BookingSync_API_Client_SpecialOffers/_special_offers/returns_special_offers.yml +48 -24
  193. data/spec/fixtures/cassettes/BookingSync_API_Client_StrictBookings/_create_strict_booking/creates_a_booking.yml +43 -24
  194. data/spec/fixtures/cassettes/BookingSync_API_Client_Taxes/_tax/returns_a_single_tax.yml +26 -18
  195. data/spec/fixtures/cassettes/BookingSync_API_Client_Taxes/_taxes/returns_taxes.yml +28 -19
  196. data/spec/spec_helper.rb +6 -0
  197. data/spec/support/vcr_helper.rb +29 -0
  198. metadata +21 -10
  199. data/lib/bookingsync/api/client/preferences_payments.rb +0 -22
  200. data/spec/bookingsync/api/client/preferences_payments_spec.rb +0 -12
  201. data/spec/fixtures/cassettes/BookingSync_API_Client_PreferencesPayments/_preferences_payments/returns_preferences_payments.yml +0 -80
  202. data/spec/fixtures/cassettes/BookingSync_API_Client_Rentals/_rentals/links/returns_links_to_associated_resources.yml +0 -91
@@ -2,13 +2,13 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: https://www.bookingsync.com/api/v3/destinations/7301
5
+ uri: https://www.bookingsync.com/api/v3/destinations/99
6
6
  body:
7
- encoding: US-ASCII
8
- string: ''
7
+ encoding: UTF-8
8
+ string: "{}"
9
9
  headers:
10
10
  User-Agent:
11
- - BookingSync API gem v0.0.29
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,6 +17,10 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
@@ -25,7 +29,7 @@ http_interactions:
25
29
  Server:
26
30
  - nginx
27
31
  Date:
28
- - Wed, 09 Sep 2015 20:18:52 GMT
32
+ - Mon, 12 Dec 2016 11:43:49 GMT
29
33
  Content-Type:
30
34
  - application/vnd.api+json; charset=utf-8
31
35
  Transfer-Encoding:
@@ -34,29 +38,31 @@ http_interactions:
34
38
  - keep-alive
35
39
  Status:
36
40
  - 200 OK
37
- Strict-Transport-Security:
38
- - max-age=31536000
39
41
  X-Frame-Options:
40
42
  - SAMEORIGIN
41
43
  X-Xss-Protection:
42
44
  - 1; mode=block
43
45
  X-Content-Type-Options:
44
46
  - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 11:43:49 UTC
45
49
  X-Ratelimit-Limit:
46
50
  - '1000'
47
51
  X-Ratelimit-Reset:
48
- - '1441832400'
52
+ - '1481544000'
49
53
  X-Ratelimit-Remaining:
50
- - '970'
54
+ - '938'
51
55
  Link:
52
- - <https://www.bookingsync.com/api/v3/destinations/7301?page=1>; rel="first",
53
- <https://www.bookingsync.com/api/v3/destinations/7301?page=1>; rel="last"
56
+ - <https://www.bookingsync.com/api/v3/destinations/99?page=1>; rel="first",
57
+ <https://www.bookingsync.com/api/v3/destinations/99?page=1>; rel="last"
54
58
  X-Total-Pages:
55
59
  - '1'
56
60
  X-Total-Count:
57
61
  - '1'
62
+ X-Per-Page:
63
+ - '100'
58
64
  Etag:
59
- - '"47249ebadc8b5a23bf610c28b73892d9"'
65
+ - W/"aa60a9dd0e7c8c9f39d771c668ce1532"
60
66
  Cache-Control:
61
67
  - max-age=0, private, must-revalidate
62
68
  P3p:
@@ -64,20 +70,19 @@ http_interactions:
64
70
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
65
71
  Set-Cookie:
66
72
  - ahoy_track=true; path=/; secure
67
- - ahoy_visit=09a218d5-c4d0-40fb-aad7-9fecc2a44c54; path=/; expires=Wed, 16 Sep
68
- 2015 20:18:52 -0000; secure
69
- - ahoy_visitor=f972ba50-384c-4513-ba1b-685107d8790d; path=/; expires=Sat, 09
70
- Sep 2017 20:18:52 -0000; secure
73
+ - ahoy_visit=774355ed-53a0-41b2-883d-653910eebad6; path=/; expires=Mon, 19 Dec
74
+ 2016 11:43:49 -0000; secure
75
+ - ahoy_visitor=08a12d3b-0053-47e2-ae34-d14f09a3d90f; path=/; expires=Wed, 12
76
+ Dec 2018 11:43:49 -0000; secure
71
77
  X-Request-Id:
72
- - 8d1b991c-ef2d-4a36-9e25-5d126e2e6ec8
78
+ - c889fbfe-9333-401a-baec-caff45d102e3
73
79
  X-Runtime:
74
- - '0.091339'
80
+ - '0.037393'
81
+ Strict-Transport-Security:
82
+ - max-age=31536000
75
83
  body:
76
84
  encoding: UTF-8
77
- string: '{"destinations":[{"id":7301,"name":{"en":"Sivota Lefkada"},"fullname":{"en":"Sivota
78
- Lefkada, Lefkada (Lefkas), Ionian Islands, Greece, Europe, World","fr":"Sivota
79
- Lefkada, Lefkada (Lefkas), Ionian Islands, Greece, Europe, World"},"permalink":{"en":"world/europe/greece/ionian-islands/lefkada-lefkas/sivota-lefkada","fr":"world/europe/greece/ionian-islands/lefkada-lefkas/sivota-lefkada"},"aliases":{"en":"---\n-
80
- Syvota\n"},"counter":2}]}'
85
+ string: '{"destinations":[{"id":99,"name":{"en":"World"},"fullname":{"en":"World"},"permalink":{"en":"world"},"aliases":{},"counter":2,"ancestor_ids":[]}],"meta":{}}'
81
86
  http_version:
82
- recorded_at: Wed, 09 Sep 2015 20:18:54 GMT
83
- recorded_with: VCR 2.9.2
87
+ recorded_at: Mon, 12 Dec 2016 11:43:49 GMT
88
+ recorded_with: VCR 3.0.3
@@ -4,11 +4,11 @@ http_interactions:
4
4
  method: get
5
5
  uri: https://www.bookingsync.com/api/v3/destinations
6
6
  body:
7
- encoding: US-ASCII
8
- string: ''
7
+ encoding: UTF-8
8
+ string: "{}"
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.0
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,48 +17,82 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
23
27
  message: OK
24
28
  headers:
29
+ Server:
30
+ - nginx
31
+ Date:
32
+ - Mon, 12 Dec 2016 11:32:41 GMT
33
+ Content-Type:
34
+ - application/vnd.api+json; charset=utf-8
35
+ Transfer-Encoding:
36
+ - chunked
37
+ Connection:
38
+ - keep-alive
39
+ Status:
40
+ - 200 OK
41
+ X-Frame-Options:
42
+ - SAMEORIGIN
43
+ X-Xss-Protection:
44
+ - 1; mode=block
45
+ X-Content-Type-Options:
46
+ - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 11:32:41 UTC
25
49
  X-Ratelimit-Limit:
26
50
  - '1000'
27
51
  X-Ratelimit-Reset:
28
- - '1397116800'
52
+ - '1481544000'
29
53
  X-Ratelimit-Remaining:
30
- - '999'
54
+ - '982'
31
55
  Link:
32
56
  - <https://www.bookingsync.com/api/v3/destinations?page=1>; rel="first", <https://www.bookingsync.com/api/v3/destinations?page=1>;
33
57
  rel="last"
34
58
  X-Total-Pages:
35
59
  - '1'
36
- Access-Control-Allow-Origin:
37
- - ! '*'
38
- Access-Control-Request-Method:
39
- - ! '*'
40
- Content-Type:
41
- - application/vnd.api+json; charset=utf-8
42
- X-Ua-Compatible:
43
- - IE=Edge
60
+ X-Total-Count:
61
+ - '6'
62
+ X-Per-Page:
63
+ - '100'
44
64
  Etag:
45
- - ! '"6f776a7ba9a6d3d0216b837c6330f1cd"'
65
+ - W/"242a4fa9f36919cde8e255bcf07427d4"
46
66
  Cache-Control:
47
67
  - max-age=0, private, must-revalidate
48
68
  P3p:
49
69
  - CP="OTI DSP COR CUR ADMo DEVo TAI PSAi PSDi IVAi IVDi CONi HISi TELi OTPi
50
70
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
71
+ Set-Cookie:
72
+ - ahoy_track=true; path=/; secure
73
+ - ahoy_visit=2c885945-37d5-4d2c-a39f-407ecd164ce7; path=/; expires=Mon, 19 Dec
74
+ 2016 11:32:41 -0000; secure
75
+ - ahoy_visitor=b12820bc-b449-4765-b903-02178764bdc0; path=/; expires=Wed, 12
76
+ Dec 2018 11:32:41 -0000; secure
51
77
  X-Request-Id:
52
- - 1823c29f590eea8e29c0c4cf68f0c753
78
+ - 66622139-0901-4c9f-aafb-af7a5c99e2c4
53
79
  X-Runtime:
54
- - '0.471049'
55
- Date:
56
- - Thu, 10 Apr 2014 07:25:25 GMT
57
- Connection:
58
- - close
80
+ - '0.052541'
81
+ Strict-Transport-Security:
82
+ - max-age=31536000
59
83
  body:
60
- encoding: US-ASCII
61
- string: ! '{"destinations":[{"id":1,"name":{"en":"Name-1"},"fullname":{"en":"Name-1"},"permalink":{"en":"name-1"},"aliases":{"en":null}},{"id":2,"name":{"en":"Name-2"},"fullname":{"en":"Name-2"},"permalink":{"en":"name-2"},"aliases":{"en":null}},{"id":3,"name":{"en":"Name-3"},"fullname":{"en":"Name-3"},"permalink":{"en":"name-3"},"aliases":{"en":null}},{"id":4,"name":{"en":"Name-4"},"fullname":{"en":"Name-4"},"permalink":{"en":"name-4"},"aliases":{"en":null}},{"id":5,"name":{"en":"Name-5"},"fullname":{"en":"Name-5"},"permalink":{"en":"name-5"},"aliases":{"en":null}},{"id":6,"name":{"en":"Name-6"},"fullname":{"en":"Name-6"},"permalink":{"en":"name-6"},"aliases":{"en":null}},{"id":7,"name":{"en":"Name-7"},"fullname":{"en":"Name-7"},"permalink":{"en":"name-7"},"aliases":{"en":null}},{"id":8,"name":{"en":"Name-8"},"fullname":{"en":"Name-8"},"permalink":{"en":"name-8"},"aliases":{"en":null}},{"id":9,"name":{"en":"Name-9"},"fullname":{"en":"Name-9"},"permalink":{"en":"name-9"},"aliases":{"en":null}},{"id":10,"name":{"en":"Name-10"},"fullname":{"en":"Name-10"},"permalink":{"en":"name-10"},"aliases":{"en":null}}]}'
62
- http_version:
63
- recorded_at: Thu, 10 Apr 2014 07:25:25 GMT
64
- recorded_with: VCR 2.9.0
84
+ encoding: UTF-8
85
+ string: '{"destinations":[{"id":99,"name":{"en":"World"},"fullname":{"en":"World"},"permalink":{"en":"world"},"aliases":{},"counter":2,"ancestor_ids":[]},{"id":101,"name":{"en":"Europe"},"fullname":{"en":"Europe,
86
+ World"},"permalink":{"en":"world/europe"},"aliases":{},"counter":2,"ancestor_ids":[99]},{"id":2918,"name":{"en":"Greece"},"fullname":{"en":"Greece,
87
+ Europe, World"},"permalink":{"en":"world/europe/greece"},"aliases":{},"counter":2,"ancestor_ids":[99,101]},{"id":6817,"name":{"en":"Ionian
88
+ Islands"},"fullname":{"en":"Ionian Islands, Greece, Europe, World"},"permalink":{"en":"world/europe/greece/ionian-islands"},"aliases":{},"counter":2,"ancestor_ids":[99,101,2918]},{"id":7160,"name":{"en":"Lefkada
89
+ (Lefkas)"},"fullname":{"en":"Lefkada (Lefkas), Ionian Islands, Greece, Europe,
90
+ World"},"permalink":{"en":"world/europe/greece/ionian-islands/lefkada-lefkas"},"aliases":{},"counter":2,"ancestor_ids":[99,101,2918,6817]},{"id":7301,"name":{"en":"Sivota
91
+ Lefkada"},"fullname":{"en":"Sivota Lefkada, Lefkada (Lefkas), Ionian Islands,
92
+ Greece, Europe, World","fr":"Sivota Lefkada, Lefkada (Lefkas), Ionian Islands,
93
+ Greece, Europe, World","de":"Sivota Lefkada, Lefkada (Lefkas), Ionian Islands,
94
+ Greece, Europe, World"},"permalink":{"en":"world/europe/greece/ionian-islands/lefkada-lefkas/sivota-lefkada","fr":"world/europe/greece/ionian-islands/lefkada-lefkas/sivota-lefkada","de":"world/europe/greece/ionian-islands/lefkada-lefkas/sivota-lefkada"},"aliases":{"en":"---\n-
95
+ Syvota\n"},"counter":2,"ancestor_ids":[99,101,2918,6817,7160]}],"meta":{}}'
96
+ http_version:
97
+ recorded_at: Mon, 12 Dec 2016 11:32:41 GMT
98
+ recorded_with: VCR 3.0.3
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: '{"fees":[{"name_en":"New fee","rate":10,"rate_kind":"fixed","downpayment_percentage":10}]}'
9
9
  headers:
10
10
  User-Agent:
11
- - BookingSync API gem v0.0.30
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -25,7 +25,7 @@ http_interactions:
25
25
  Server:
26
26
  - nginx
27
27
  Date:
28
- - Tue, 17 Nov 2015 16:53:16 GMT
28
+ - Thu, 08 Dec 2016 16:57:16 GMT
29
29
  Content-Type:
30
30
  - application/vnd.api+json; charset=utf-8
31
31
  Transfer-Encoding:
@@ -34,24 +34,29 @@ http_interactions:
34
34
  - keep-alive
35
35
  Status:
36
36
  - 201 Created
37
- Strict-Transport-Security:
38
- - max-age=31536000
39
37
  X-Frame-Options:
40
38
  - SAMEORIGIN
41
39
  X-Xss-Protection:
42
40
  - 1; mode=block
43
41
  X-Content-Type-Options:
44
42
  - nosniff
43
+ X-Updated-Since-Request-Synced-At:
44
+ - 2016-12-08 16:57:15 UTC
45
45
  X-Ratelimit-Limit:
46
46
  - '1000'
47
47
  X-Ratelimit-Reset:
48
- - '1447779600'
48
+ - '1481216400'
49
49
  X-Ratelimit-Remaining:
50
- - '990'
50
+ - '973'
51
+ Link:
52
+ - <https://www.bookingsync.com/api/v3/fees?fees%5B%5D%5Bdownpayment_percentage%5D=10&fees%5B%5D%5Bname_en%5D=New+fee&fees%5B%5D%5Brate%5D=10&fees%5B%5D%5Brate_kind%5D=fixed&page=1>;
53
+ rel="first"
54
+ X-Per-Page:
55
+ - '100'
51
56
  Location:
52
- - https://www.bookingsync.com/api/v3/fees/659
57
+ - https://www.bookingsync.com/api/v3/fees/2174
53
58
  Etag:
54
- - '"7973edf46d882d4f7336dba2d03eb135"'
59
+ - W/"9a0139cac1631d58ea4c689f616dd5bb"
55
60
  Cache-Control:
56
61
  - max-age=0, private, must-revalidate
57
62
  P3p:
@@ -59,18 +64,20 @@ http_interactions:
59
64
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
60
65
  Set-Cookie:
61
66
  - ahoy_track=true; path=/; secure
62
- - ahoy_visit=4d235f6e-32ab-4a02-b267-0985996204e7; path=/; expires=Tue, 24 Nov
63
- 2015 16:53:15 -0000; secure
64
- - ahoy_visitor=33d62abe-186a-40aa-ab46-87b5d12e219c; path=/; expires=Fri, 17
65
- Nov 2017 16:53:15 -0000; secure
67
+ - ahoy_visit=b27c8a56-427c-427b-9862-f01445c129e7; path=/; expires=Thu, 15 Dec
68
+ 2016 16:57:15 -0000; secure
69
+ - ahoy_visitor=6224f729-6d23-4def-a70f-b9ce08f04e8d; path=/; expires=Sat, 08
70
+ Dec 2018 16:57:15 -0000; secure
66
71
  X-Request-Id:
67
- - 53e8f4b6-16dc-4a8e-9097-6ace3e12719a
72
+ - ef99862a-1c8a-403f-aa28-d85b47d45cc7
68
73
  X-Runtime:
69
- - '0.320559'
74
+ - '0.078338'
75
+ Strict-Transport-Security:
76
+ - max-age=31536000
70
77
  body:
71
78
  encoding: UTF-8
72
- string: '{"links":{"fees.account":"https://www.bookingsync.com/api/v3/accounts/{fees.account}"},"fees":[{"links":{"account":3837},"id":659,"name":{"en":"New
73
- fee"},"rate":"10.0","rate_kind":"fixed","created_at":"2015-11-17T16:53:15Z","updated_at":"2015-11-17T16:53:15Z","downpayment_percentage":"10.0","kind":"other"}]}'
79
+ string: '{"links":{"fees.account":"https://www.bookingsync.com/api/v3/accounts/{fees.account}"},"fees":[{"links":{"account":3837},"id":2174,"name":{"en":"New
80
+ fee"},"rate":"10.0","rate_kind":"fixed","created_at":"2016-12-08T16:57:16Z","updated_at":"2016-12-08T16:57:16Z","downpayment_percentage":"10.0","kind":"other"}]}'
74
81
  http_version:
75
- recorded_at: Tue, 17 Nov 2015 16:53:17 GMT
76
- recorded_with: VCR 2.9.2
82
+ recorded_at: Thu, 08 Dec 2016 16:57:16 GMT
83
+ recorded_with: VCR 3.0.3
@@ -4,11 +4,11 @@ http_interactions:
4
4
  method: get
5
5
  uri: https://www.bookingsync.com/api/v3/fees/474
6
6
  body:
7
- encoding: US-ASCII
8
- string: ''
7
+ encoding: UTF-8
8
+ string: "{}"
9
9
  headers:
10
10
  User-Agent:
11
- - BookingSync API gem v0.0.29
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,6 +17,10 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
@@ -25,7 +29,7 @@ http_interactions:
25
29
  Server:
26
30
  - nginx
27
31
  Date:
28
- - Wed, 09 Sep 2015 21:13:16 GMT
32
+ - Mon, 12 Dec 2016 11:43:49 GMT
29
33
  Content-Type:
30
34
  - application/vnd.api+json; charset=utf-8
31
35
  Transfer-Encoding:
@@ -34,20 +38,20 @@ http_interactions:
34
38
  - keep-alive
35
39
  Status:
36
40
  - 200 OK
37
- Strict-Transport-Security:
38
- - max-age=31536000
39
41
  X-Frame-Options:
40
42
  - SAMEORIGIN
41
43
  X-Xss-Protection:
42
44
  - 1; mode=block
43
45
  X-Content-Type-Options:
44
46
  - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 11:43:49 UTC
45
49
  X-Ratelimit-Limit:
46
50
  - '1000'
47
51
  X-Ratelimit-Reset:
48
- - '1441836000'
52
+ - '1481544000'
49
53
  X-Ratelimit-Remaining:
50
- - '974'
54
+ - '937'
51
55
  Link:
52
56
  - <https://www.bookingsync.com/api/v3/fees/474?page=1>; rel="first", <https://www.bookingsync.com/api/v3/fees/474?page=1>;
53
57
  rel="last"
@@ -55,8 +59,10 @@ http_interactions:
55
59
  - '1'
56
60
  X-Total-Count:
57
61
  - '1'
62
+ X-Per-Page:
63
+ - '100'
58
64
  Etag:
59
- - '"70d379460c62943346fad5ed20f730b2"'
65
+ - W/"550b3b088e3055d8b760e759dee10548"
60
66
  Cache-Control:
61
67
  - max-age=0, private, must-revalidate
62
68
  P3p:
@@ -64,18 +70,20 @@ http_interactions:
64
70
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
65
71
  Set-Cookie:
66
72
  - ahoy_track=true; path=/; secure
67
- - ahoy_visit=7dfd0b20-10ca-49da-94c6-e7af8a7c49c6; path=/; expires=Wed, 16 Sep
68
- 2015 21:13:16 -0000; secure
69
- - ahoy_visitor=4134a363-9027-493d-a702-cd33e52830f3; path=/; expires=Sat, 09
70
- Sep 2017 21:13:16 -0000; secure
73
+ - ahoy_visit=77394e4c-b767-49f7-8e35-1339a42cb07e; path=/; expires=Mon, 19 Dec
74
+ 2016 11:43:49 -0000; secure
75
+ - ahoy_visitor=29607513-1f39-4616-a315-89fa2919b9d3; path=/; expires=Wed, 12
76
+ Dec 2018 11:43:49 -0000; secure
71
77
  X-Request-Id:
72
- - 0ef203fd-5b8d-4066-a912-9d5faf8e7f7d
78
+ - 77acbf29-e6ef-4023-a9b5-3a5497ef016b
73
79
  X-Runtime:
74
- - '0.072005'
80
+ - '0.027436'
81
+ Strict-Transport-Security:
82
+ - max-age=31536000
75
83
  body:
76
84
  encoding: UTF-8
77
85
  string: '{"links":{"fees.account":"https://www.bookingsync.com/api/v3/accounts/{fees.account}"},"fees":[{"links":{"account":3837},"id":474,"name":{"en":"test
78
- fee"},"rate":"10.0","rate_kind":"fixed","created_at":"2015-09-09T20:23:53Z","updated_at":"2015-09-09T20:23:54Z","downpayment_percentage":"10.0"}]}'
86
+ fee"},"rate":"10.0","rate_kind":"fixed","created_at":"2015-09-09T20:23:53Z","updated_at":"2015-09-09T20:23:54Z","downpayment_percentage":"10.0","kind":"other"}]}'
79
87
  http_version:
80
- recorded_at: Wed, 09 Sep 2015 21:13:17 GMT
81
- recorded_with: VCR 2.9.2
88
+ recorded_at: Mon, 12 Dec 2016 11:43:49 GMT
89
+ recorded_with: VCR 3.0.3
@@ -4,11 +4,11 @@ http_interactions:
4
4
  method: get
5
5
  uri: https://www.bookingsync.com/api/v3/fees
6
6
  body:
7
- encoding: US-ASCII
8
- string: ''
7
+ encoding: UTF-8
8
+ string: "{}"
9
9
  headers:
10
10
  User-Agent:
11
- - BookingSync API gem v0.0.23
11
+ - BookingSync API gem v0.1.3
12
12
  Accept:
13
13
  - application/vnd.api+json
14
14
  Content-Type:
@@ -17,6 +17,10 @@ http_interactions:
17
17
  - Bearer <<ACCESS_TOKEN>>
18
18
  Accept-Encoding:
19
19
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
20
+ Connection:
21
+ - keep-alive
22
+ Keep-Alive:
23
+ - 30
20
24
  response:
21
25
  status:
22
26
  code: 200
@@ -25,7 +29,7 @@ http_interactions:
25
29
  Server:
26
30
  - nginx
27
31
  Date:
28
- - Tue, 24 Mar 2015 12:21:43 GMT
32
+ - Mon, 12 Dec 2016 11:32:41 GMT
29
33
  Content-Type:
30
34
  - application/vnd.api+json; charset=utf-8
31
35
  Transfer-Encoding:
@@ -34,29 +38,31 @@ http_interactions:
34
38
  - keep-alive
35
39
  Status:
36
40
  - 200 OK
37
- Strict-Transport-Security:
38
- - max-age=31536000
39
41
  X-Frame-Options:
40
42
  - SAMEORIGIN
41
43
  X-Xss-Protection:
42
44
  - 1; mode=block
43
45
  X-Content-Type-Options:
44
46
  - nosniff
47
+ X-Updated-Since-Request-Synced-At:
48
+ - 2016-12-12 11:32:41 UTC
45
49
  X-Ratelimit-Limit:
46
50
  - '1000'
47
51
  X-Ratelimit-Reset:
48
- - '1427202000'
52
+ - '1481544000'
49
53
  X-Ratelimit-Remaining:
50
- - '995'
54
+ - '981'
51
55
  Link:
52
56
  - <https://www.bookingsync.com/api/v3/fees?page=1>; rel="first", <https://www.bookingsync.com/api/v3/fees?page=1>;
53
57
  rel="last"
54
58
  X-Total-Pages:
55
59
  - '1'
56
60
  X-Total-Count:
57
- - '1'
61
+ - '4'
62
+ X-Per-Page:
63
+ - '100'
58
64
  Etag:
59
- - '"c31f9e3c8bee92680521f9259ff5a451"'
65
+ - W/"32ebcc18d73feaa05ce33c93d2b6d805"
60
66
  Cache-Control:
61
67
  - max-age=0, private, must-revalidate
62
68
  P3p:
@@ -64,17 +70,23 @@ http_interactions:
64
70
  OUR SAMi OTRo UNRo PUBi IND UNI STA"
65
71
  Set-Cookie:
66
72
  - ahoy_track=true; path=/; secure
67
- - ahoy_visit=37963e69-b4b2-415d-bdd4-2aa0c8295727; path=/; expires=Tue, 31 Mar
68
- 2015 12:21:43 -0000; secure
69
- - ahoy_visitor=7b79ddaf-05ab-413e-85b6-8b75d4934849; path=/; expires=Fri, 24
70
- Mar 2017 12:21:43 -0000; secure
73
+ - ahoy_visit=5fbec4db-8942-4cb0-95c5-33c3968d19ef; path=/; expires=Mon, 19 Dec
74
+ 2016 11:32:41 -0000; secure
75
+ - ahoy_visitor=bb24fe08-662c-4365-ae6f-af6245747818; path=/; expires=Wed, 12
76
+ Dec 2018 11:32:41 -0000; secure
71
77
  X-Request-Id:
72
- - 92cea7f1-f421-4cfd-a2b9-07cc334ea23d
78
+ - 035db6c2-9966-4b35-89b9-5745e1f7f8fb
73
79
  X-Runtime:
74
- - '0.100979'
80
+ - '0.042429'
81
+ Strict-Transport-Security:
82
+ - max-age=31536000
75
83
  body:
76
84
  encoding: UTF-8
77
- string: '{"links":{"fees.account":"https://www.bookingsync.com/api/v3/accounts/{fees.account}"},"fees":[{"links":{"account":4630},"id":38,"rate":"100.0","rate_kind":"fixed","created_at":"2015-03-24T12:13:34Z","updated_at":"2015-03-24T12:13:34Z","downpayment_percentage":"0.0"}]}'
85
+ string: '{"links":{"fees.account":"https://www.bookingsync.com/api/v3/accounts/{fees.account}"},"fees":[{"links":{"account":3837},"id":474,"name":{"en":"test
86
+ fee"},"rate":"10.0","rate_kind":"fixed","created_at":"2015-09-09T20:23:53Z","updated_at":"2015-09-09T20:23:54Z","downpayment_percentage":"10.0","kind":"other"},{"links":{"account":3837},"id":659,"name":{"en":"New
87
+ fee"},"rate":"10.0","rate_kind":"fixed","created_at":"2015-11-17T16:53:15Z","updated_at":"2015-11-17T16:53:16Z","downpayment_percentage":"10.0","kind":"other"},{"links":{"account":3837},"id":2161,"name":{"en":"New
88
+ fee"},"rate":"10.0","rate_kind":"fixed","created_at":"2016-12-06T13:13:27Z","updated_at":"2016-12-06T13:13:27Z","downpayment_percentage":"10.0","kind":"other"},{"links":{"account":3837},"id":2174,"name":{"en":"New
89
+ fee"},"rate":"10.0","rate_kind":"fixed","created_at":"2016-12-08T16:57:16Z","updated_at":"2016-12-08T16:57:16Z","downpayment_percentage":"10.0","kind":"other"}]}'
78
90
  http_version:
79
- recorded_at: Tue, 24 Mar 2015 12:21:43 GMT
80
- recorded_with: VCR 2.9.3
91
+ recorded_at: Mon, 12 Dec 2016 11:32:41 GMT
92
+ recorded_with: VCR 3.0.3