Skip to content

Instantly share code, notes, and snippets.

@moiristo
Last active June 10, 2021 14:55
Show Gist options
  • Save moiristo/75f0daf3659d07363159826ceb2c8414 to your computer and use it in GitHub Desktop.
Save moiristo/75f0daf3659d07363159826ceb2c8414 to your computer and use it in GitHub Desktop.

BookingExperts App API - Changelog

All notable changes to this API will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Deprecated

  • Renamed tag to amenity where applicable. Expected date of removal: 2021-06-30
    • GET /v3/tags
      • Use GET /v3/amenities instead
    • GET /v3/tags/{id}
      • Use GET /v3/amenities/{id} instead
    • GET /v3/availabilities
      • Replace query param filter[tag_ids] by filter[amenity_ids]
      • Replace query param include_tag_counts by include_amenity_counts. This will yield /meta/amenity_counts instead of /meta/tag_counts
      • Replace sorter tag_ids_match_score by amenity_ids_match_score
    • Schema changes:
      • Availability#missing_tags will be replaced by Availability#missing_amenities
      • Category#custom_attributes will be replaced by Category#category_amenities
      • Category#tags will be replaced by Category#category_amenities
      • Category#optional_tags will be replaced by Category#optional_amenities
      • CustomAttribute will be removed in favor of CategoryAmenity, RentableAmenity, ReservationAmenity or RoomAmenity
      • Rentable#tags will be replaced by Rentable#rentable_amenities
      • Reservation#tags will be replaced by Reservation#reservation_amenities
      • Room#custom_attributes will be replaced by Room#room_amenities
      • TagGroup will be removed in favor of AmenityGroup
      • Tag will be removed in favor of Amenity

[0.0.3] - 2021-06-10

Added

  • POST /v3/administrations/{administration_id}/reservations/{reservation_id}/memos
  • GET /v3/administrations/{administration_id}/agenda_periods

Fixed

  • PATCH /v3/administrations/{administration_id}/channels/{id}:
    • pricing_type was incorrectly parsed
    • archivable could not be changed

[0.0.2] - 2021-01-05

Added

  • Payment provider app support

[0.0.1] - 2020-07-13

Added

  • Initial endpoints
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment