@ticketboothapp/booking 1.2.90 → 1.2.91

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.90",
3
+ "version": "1.2.91",
4
4
  "private": false,
5
5
  "sideEffects": [
6
6
  "**/*.css",
@@ -880,10 +880,7 @@ export function AdminChangeBookingFlow({
880
880
  }
881
881
  }, [initialValues?.dateTime, companyTimezone]);
882
882
  const isProviderDashboardChange = Boolean(onChangeBooking);
883
- const useAdminFeAuthoritativeQuote =
884
- isAdmin &&
885
- isProviderDashboardChange &&
886
- Boolean(flowUi?.adminFeAuthoritativeQuoteEnabled);
883
+ const useAdminFeAuthoritativeQuote = isAdmin && isProviderDashboardChange;
887
884
  /** Any change from an existing booking (public or provider). */
888
885
  const isChangeBookingContext = Boolean(initialValues?.bookingReference?.trim());
889
886
  /**
@@ -3995,7 +3992,7 @@ export function AdminChangeBookingFlow({
3995
3992
  <pre className="mt-2 max-h-64 overflow-auto whitespace-pre-wrap break-words font-mono text-[11px] leading-relaxed text-stone-800">
3996
3993
  {[
3997
3994
  `Amount-due path: ${path}`,
3998
- `adminFeAuthoritativeQuoteEnabled: ${String(useAdminFeAuthoritativeQuote)}`,
3995
+ `adminFeAuthoritativeQuote: ${String(useAdminFeAuthoritativeQuote)}`,
3999
3996
  `displayLayerUsesExternalPricing: ${String(displayLayerUsesExternalPricing)} (server/provider totals omit FE admin lines until overlaid)`,
4000
3997
  `selfServePricingConfirmed: ${String(selfServePricingConfirmed)} · changeQuoteLoading: ${String(changeQuoteLoading)}`,
4001
3998
  `Cart subtotal (excl. admin custom lines): ${fmt(effectiveSubtotal)}`,
@@ -65,11 +65,6 @@ export interface BookingFlowUiOptions {
65
65
  itineraryStickyTopOffsetPx?: number;
66
66
  /** Provider dashboard change flow: quote/override panel shown immediately before confirm CTA. */
67
67
  providerDashboardChangePricingUi?: ProviderDashboardChangePricingUi;
68
- /**
69
- * Admin/provider-dashboard change flow: when true, use the admin FE-authoritative quote API.
70
- * This is a rollout flag; public self-serve must stay on the existing public quote endpoint.
71
- */
72
- adminFeAuthoritativeQuoteEnabled?: boolean;
73
68
  }
74
69
 
75
70
  /**