@ticketboothapp/booking 1.2.183 → 1.2.184

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.183",
3
+ "version": "1.2.184",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "**/*.css",
@@ -1,5 +1,6 @@
1
1
  export interface BookingData {
2
2
  bookingReference: string;
3
+ pricingProfileId?: string | null;
3
4
  reservationReference?: string | null;
4
5
  dateTime?: string | null;
5
6
  totalAmount?: number | null;
@@ -428,6 +428,7 @@ export default function ChangeBookingDialog({
428
428
  currency={receiptCurrency}
429
429
  contentRef={contentRef}
430
430
  bookingSourceAttribution={bookingSourceAttribution}
431
+ availabilityPricingProfileId={booking.pricingProfileId ?? null}
431
432
  onSuccess={() => {
432
433
  onChangeCompleted?.(newBookingPreview);
433
434
  onClose();