@qite/tide-booking-component 1.4.126 → 1.4.128

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.
@@ -12,6 +12,7 @@ interface SharedSidebarProps {
12
12
  returnFlightMetaData?: any;
13
13
  basePrice?: number;
14
14
  commission?: number;
15
+ showCommission?: boolean;
15
16
  totalPrice?: number;
16
17
  remainingAmountText?: string;
17
18
  includedCosts?: any[];
@@ -29,6 +30,7 @@ interface SharedSidebarProps {
29
30
  seperateExtraPricePerPaxType?: PricePerPaxType[];
30
31
  translations: any;
31
32
  agent?: number;
33
+ currencyCode?: string;
32
34
  }
33
35
  declare const SharedSidebar: React.FC<SharedSidebarProps>;
34
36
  export default SharedSidebar;
@@ -44,7 +44,7 @@ export declare function createTraveler(traveler: RoomTraveler, followNumber: {
44
44
  export declare function createInitialValuesFromRooms(formRooms: {
45
45
  adults: RoomTraveler[];
46
46
  children: RoomTraveler[];
47
- }[], startDate?: string, agentAdressId?: number, personTranslation?: string, isCompact?: boolean): TravelersFormValues;
47
+ }[], startDate?: string, endDate?: string, agentAdressId?: number, personTranslation?: string, isCompact?: boolean): TravelersFormValues;
48
48
  export declare function createInitialValuesFromEditablePackagingEntry(editablePackagingEntry: PackagingEntry, agentAdressId?: number): TravelersFormValues;
49
49
  export declare function applyTravelersFormValuesToEditablePackagingEntry(editablePackagingEntry: PackagingEntry, values: TravelersFormValues): {
50
50
  pax: PackagingEntryPax[];
@@ -1,2 +1,2 @@
1
- export declare const renderEditablePackagingEntrySummaryOptions: (editablePackagingEntry: any, priceDetails: any, translations: any) => any;
1
+ export declare const renderEditablePackagingEntrySummaryOptions: (editablePackagingEntry: any, priceDetails: any, translations: any, currencyCode?: string) => any;
2
2
  export declare const getImageSrcFromHtml: (html?: string | null) => string | undefined;