@planetaexo/design-system 0.59.1 → 0.59.2
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/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1050,6 +1050,10 @@ interface ConfirmationAdventure {
|
|
|
1050
1050
|
lineItems?: ConfirmationLineItem[];
|
|
1051
1051
|
subtotal?: string;
|
|
1052
1052
|
travellers?: ConfirmationTraveller[];
|
|
1053
|
+
/** Quartos selecionados para esta aventura (catalogo Accommodation->Room).
|
|
1054
|
+
* Quando presente e nao-vazio, BookingAdventureCard renderiza o bloco
|
|
1055
|
+
* "ACCOMMODATIONS" entre details e prices. */
|
|
1056
|
+
rooms?: AccommodationRoomItem[];
|
|
1053
1057
|
}
|
|
1054
1058
|
interface ConfirmationDepositInfo {
|
|
1055
1059
|
depositPercent: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1050,6 +1050,10 @@ interface ConfirmationAdventure {
|
|
|
1050
1050
|
lineItems?: ConfirmationLineItem[];
|
|
1051
1051
|
subtotal?: string;
|
|
1052
1052
|
travellers?: ConfirmationTraveller[];
|
|
1053
|
+
/** Quartos selecionados para esta aventura (catalogo Accommodation->Room).
|
|
1054
|
+
* Quando presente e nao-vazio, BookingAdventureCard renderiza o bloco
|
|
1055
|
+
* "ACCOMMODATIONS" entre details e prices. */
|
|
1056
|
+
rooms?: AccommodationRoomItem[];
|
|
1053
1057
|
}
|
|
1054
1058
|
interface ConfirmationDepositInfo {
|
|
1055
1059
|
depositPercent: number;
|
package/dist/index.js
CHANGED
|
@@ -5284,6 +5284,7 @@ function BookingPaymentConfirmationEmail({
|
|
|
5284
5284
|
notIncluded: adventure.notIncluded,
|
|
5285
5285
|
lineItems: lineItemsToPass,
|
|
5286
5286
|
subtotal: adventure.subtotal,
|
|
5287
|
+
rooms: adventure.rooms,
|
|
5287
5288
|
labels: {
|
|
5288
5289
|
travellersHeading: l.travellersLabel,
|
|
5289
5290
|
detailsHeading: l.itineraryLabel,
|