@ticketboothapp/booking 1.2.124 → 1.2.125

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ticketboothapp/booking",
3
- "version": "1.2.124",
3
+ "version": "1.2.125",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "**/*.css",
@@ -199,7 +199,7 @@ export async function reservePrivateShuttleForCheckout({
199
199
  productId,
200
200
  optionId: selectedOption,
201
201
  availabilityId: selectedAvailabilityId,
202
- dateTime: selectedAvailability?.dateTime || selectedDate,
202
+ dateTime: selectedAvailability?.canonicalDateTime || selectedAvailability?.dateTime || selectedDate,
203
203
  bookingItems,
204
204
  currency,
205
205
  promoCode: activePromoCode || null,
@@ -1675,6 +1675,7 @@ export interface ReturnOption {
1675
1675
 
1676
1676
  export interface Availability {
1677
1677
  dateTime: string;
1678
+ canonicalDateTime?: string | null;
1678
1679
  productId?: string;
1679
1680
  vacancies: number;
1680
1681
  totalCapacity?: number;