@planetaexo/design-system 0.34.0 → 0.36.0

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.d.cts CHANGED
@@ -664,6 +664,13 @@ interface BookingDetailsProps {
664
664
  /** Quando fornecida, o consumer assume clipboard + feedback visual (ex.: toast). Fallback:
665
665
  * `navigator.clipboard.writeText` sem feedback. */
666
666
  onCopyFormLink?: (url: string) => void;
667
+ /** Reenvio do convite de registro do traveller. Quando ausente, o ícone não é renderizado.
668
+ * Visível apenas quando `traveller.status === "pending"` e `traveller.email` está presente. */
669
+ onResendInvite?: (travellerId: string) => void;
670
+ /** IDs (string) dos travellers com reenvio em vôo — desabilita o botão (opacity-40). */
671
+ resendingInviteTravellerIds?: Set<string>;
672
+ /** aria-label/title do botão de reenvio. Default: "Resend registration invite". */
673
+ resendInviteAriaLabel?: string;
667
674
  /** Submit do modal de ADD interno. Usado quando `onAddTraveller` NÃO é passado. */
668
675
  onSubmitAddTraveller?: (adventureId: string, data: TravellerFormData) => Promise<void> | void;
669
676
  /** Submit do modal de EDIT interno. Usado quando `onEditTraveller` NÃO é passado. */
@@ -694,7 +701,7 @@ interface BookingDetailsProps {
694
701
  labels?: BookingDetailsLabels;
695
702
  className?: string;
696
703
  }
697
- declare function BookingDetails({ bookingId, status, statusLabel, createdAt, contact, agent, agentName, agentContactUrl, agentNameFallback, agentLabel, agentContactLabel, contactSectionLabel, payBalanceLabel, balanceDueLabel, totalPaidLabel, cannotRemoveLastTravellerLabel, adventures, summaryLineItems, subtotal, total, depositInfo, onAddContactAsTraveller, onEditTraveller, onRemoveTraveller, onAddSuggestedTraveller, onAddTraveller, onUnassignFromAdventure, onCopyFormLink, onSubmitAddTraveller, onSubmitEditTraveller, onConfirmRemoveTraveller, travellerFormConfig, addTravellerSaving, editTravellerSaving, removeTravellerSaving, travellerFormError, onPayBalance, onCancelRequest, logoSrc, logoAlt, onSignOut, signOutLabel, labels, className, }: BookingDetailsProps): react_jsx_runtime.JSX.Element;
704
+ declare function BookingDetails({ bookingId, status, statusLabel, createdAt, contact, agent, agentName, agentContactUrl, agentNameFallback, agentLabel, agentContactLabel, contactSectionLabel, payBalanceLabel, balanceDueLabel, totalPaidLabel, cannotRemoveLastTravellerLabel, adventures, summaryLineItems, subtotal, total, depositInfo, onAddContactAsTraveller, onEditTraveller, onRemoveTraveller, onAddSuggestedTraveller, onAddTraveller, onUnassignFromAdventure, onCopyFormLink, onResendInvite, resendingInviteTravellerIds, resendInviteAriaLabel, onSubmitAddTraveller, onSubmitEditTraveller, onConfirmRemoveTraveller, travellerFormConfig, addTravellerSaving, editTravellerSaving, removeTravellerSaving, travellerFormError, onPayBalance, onCancelRequest, logoSrc, logoAlt, onSignOut, signOutLabel, labels, className, }: BookingDetailsProps): react_jsx_runtime.JSX.Element;
698
705
 
699
706
  interface AgentContactCardProps {
700
707
  layout: "compact" | "wide";
@@ -1247,6 +1254,84 @@ interface RegistrationReminderEmailProps {
1247
1254
  }
1248
1255
  declare function RegistrationReminderEmail({ slug, recipientFirstName, bookingNumber, totalAdventures, totalTravellers, adventures, ctaUrl, agent, logoUrl, labels, className, }: RegistrationReminderEmailProps): react_jsx_runtime.JSX.Element;
1249
1256
 
1257
+ type RegistrationReminderIndividualSlug = "d_minus_30" | "d_minus_15" | "d_minus_7" | "d_minus_2";
1258
+ type RegistrationReminderIndividualRoute = "traveller_direct" | "underage_to_booker" | "no_email_fallback";
1259
+ interface RegistrationReminderIndividualAgentContactLinks {
1260
+ whatsappUrl?: string;
1261
+ email?: string;
1262
+ }
1263
+ interface RegistrationReminderIndividualVariantLabels {
1264
+ subject?: string;
1265
+ /** 1º parágrafo. Recebe (travellerFirstName, leadTravellerFirstName, adventureName). */
1266
+ intro?: (travellerFirstName: string, leadTravellerFirstName: string, adventureName: string) => string;
1267
+ /** 2º parágrafo (logística / regra geral). */
1268
+ contextNote?: string;
1269
+ /** Nota destacada de obrigatoriedade (todos os slugs). */
1270
+ mandatoryNote?: string;
1271
+ /** Tagline em destaque (D-2 only): "This is a final reminder." */
1272
+ finalReminderTagline?: string;
1273
+ /** Bloco vermelho com consequências (D-2 only). */
1274
+ consequencesNote?: string;
1275
+ /** "If you have already completed your registration, please disregard this email." — D-2 only. */
1276
+ disregardIfCompleted?: string;
1277
+ /** Frase de fechamento positivo. */
1278
+ closingThanks?: string;
1279
+ }
1280
+ interface RegistrationReminderIndividualEmailLabels {
1281
+ logoAlt?: string;
1282
+ greeting?: (firstName: string) => string;
1283
+ tripDetailsHeader?: string;
1284
+ bookingNumberLabel?: string;
1285
+ leadTravellerLabel?: string;
1286
+ adventureLabel?: string;
1287
+ startingDateLabel?: string;
1288
+ partnerLabel?: string;
1289
+ ctaLabel?: string;
1290
+ /** Nota de routing: traveller é menor de idade — booker recebe o e-mail. */
1291
+ routingNoteUnderage?: (travellerFirstName: string, bookerFirstName: string) => string;
1292
+ /** Nota de routing: traveller sem e-mail — booker recebe o e-mail. */
1293
+ routingNoteNoEmail?: (travellerFirstName: string) => string;
1294
+ /** Closing principal quando há agente. Recebe nome + URLs de contato e retorna JSX. */
1295
+ closingAgent?: (agentName: string, contact: RegistrationReminderIndividualAgentContactLinks) => React.ReactNode;
1296
+ /** Closing alternativo sem agente. */
1297
+ closingNoAgent?: string;
1298
+ teamSignature?: string;
1299
+ variants?: {
1300
+ d_minus_30?: RegistrationReminderIndividualVariantLabels;
1301
+ d_minus_15?: RegistrationReminderIndividualVariantLabels;
1302
+ d_minus_7?: RegistrationReminderIndividualVariantLabels;
1303
+ d_minus_2?: RegistrationReminderIndividualVariantLabels;
1304
+ };
1305
+ }
1306
+ interface RegistrationReminderIndividualEmailProps {
1307
+ slug: RegistrationReminderIndividualSlug;
1308
+ locale: "en" | "pt" | "fr" | "de";
1309
+ /** Primeiro nome do destinatário do e-mail (pode ser o traveller ou o booker). */
1310
+ recipientFirstName: string;
1311
+ /** Nome do traveller alvo do registro (mesmo quando o e-mail vai ao booker). */
1312
+ travellerFirstName: string;
1313
+ /** Nome completo do lead traveller / booker (usado no Trip details). */
1314
+ leadTravellerName: string;
1315
+ /** Primeiro nome do booker — usado em routingNoteUnderage. */
1316
+ leadTravellerFirstName: string;
1317
+ bookingNumber: string;
1318
+ adventureName: string;
1319
+ startDateFormatted: string;
1320
+ partnerName?: string | null;
1321
+ ctaUrl: string;
1322
+ /** Rota do roteamento, usada para decidir qual routingNote renderizar. */
1323
+ route: RegistrationReminderIndividualRoute;
1324
+ agent: {
1325
+ name: string;
1326
+ whatsappUrl?: string;
1327
+ email?: string;
1328
+ } | null;
1329
+ logoUrl?: string;
1330
+ labels?: RegistrationReminderIndividualEmailLabels;
1331
+ className?: string;
1332
+ }
1333
+ declare function RegistrationReminderIndividualEmail({ slug, recipientFirstName, travellerFirstName, leadTravellerName, leadTravellerFirstName, bookingNumber, adventureName, startDateFormatted, partnerName, ctaUrl, route, agent, logoUrl, labels, className, }: RegistrationReminderIndividualEmailProps): react_jsx_runtime.JSX.Element;
1334
+
1250
1335
  interface PaymentReceiptEmailLabels {
1251
1336
  logoAlt?: string;
1252
1337
  greeting?: (name: string) => string;
@@ -2862,4 +2947,4 @@ declare function LeadCapturePopup({ config: _config, }: {
2862
2947
  config: LeadCapturePopupConfig;
2863
2948
  }): react_jsx_runtime.JSX.Element | null;
2864
2949
 
2865
- export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationProgressBar, type RegistrationProgressBarProps, type RegistrationProgressTone, type RegistrationReminderAdventureBlock, type RegistrationReminderAgentContactLinks, RegistrationReminderEmail, type RegistrationReminderEmailLabels, type RegistrationReminderEmailProps, type RegistrationReminderEmailVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageProps, type TripReview, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };
2950
+ export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationProgressBar, type RegistrationProgressBarProps, type RegistrationProgressTone, type RegistrationReminderAdventureBlock, type RegistrationReminderAgentContactLinks, RegistrationReminderEmail, type RegistrationReminderEmailLabels, type RegistrationReminderEmailProps, type RegistrationReminderEmailVariantLabels, type RegistrationReminderIndividualAgentContactLinks, RegistrationReminderIndividualEmail, type RegistrationReminderIndividualEmailLabels, type RegistrationReminderIndividualEmailProps, type RegistrationReminderIndividualRoute, type RegistrationReminderIndividualSlug, type RegistrationReminderIndividualVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageProps, type TripReview, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };
package/dist/index.d.ts CHANGED
@@ -664,6 +664,13 @@ interface BookingDetailsProps {
664
664
  /** Quando fornecida, o consumer assume clipboard + feedback visual (ex.: toast). Fallback:
665
665
  * `navigator.clipboard.writeText` sem feedback. */
666
666
  onCopyFormLink?: (url: string) => void;
667
+ /** Reenvio do convite de registro do traveller. Quando ausente, o ícone não é renderizado.
668
+ * Visível apenas quando `traveller.status === "pending"` e `traveller.email` está presente. */
669
+ onResendInvite?: (travellerId: string) => void;
670
+ /** IDs (string) dos travellers com reenvio em vôo — desabilita o botão (opacity-40). */
671
+ resendingInviteTravellerIds?: Set<string>;
672
+ /** aria-label/title do botão de reenvio. Default: "Resend registration invite". */
673
+ resendInviteAriaLabel?: string;
667
674
  /** Submit do modal de ADD interno. Usado quando `onAddTraveller` NÃO é passado. */
668
675
  onSubmitAddTraveller?: (adventureId: string, data: TravellerFormData) => Promise<void> | void;
669
676
  /** Submit do modal de EDIT interno. Usado quando `onEditTraveller` NÃO é passado. */
@@ -694,7 +701,7 @@ interface BookingDetailsProps {
694
701
  labels?: BookingDetailsLabels;
695
702
  className?: string;
696
703
  }
697
- declare function BookingDetails({ bookingId, status, statusLabel, createdAt, contact, agent, agentName, agentContactUrl, agentNameFallback, agentLabel, agentContactLabel, contactSectionLabel, payBalanceLabel, balanceDueLabel, totalPaidLabel, cannotRemoveLastTravellerLabel, adventures, summaryLineItems, subtotal, total, depositInfo, onAddContactAsTraveller, onEditTraveller, onRemoveTraveller, onAddSuggestedTraveller, onAddTraveller, onUnassignFromAdventure, onCopyFormLink, onSubmitAddTraveller, onSubmitEditTraveller, onConfirmRemoveTraveller, travellerFormConfig, addTravellerSaving, editTravellerSaving, removeTravellerSaving, travellerFormError, onPayBalance, onCancelRequest, logoSrc, logoAlt, onSignOut, signOutLabel, labels, className, }: BookingDetailsProps): react_jsx_runtime.JSX.Element;
704
+ declare function BookingDetails({ bookingId, status, statusLabel, createdAt, contact, agent, agentName, agentContactUrl, agentNameFallback, agentLabel, agentContactLabel, contactSectionLabel, payBalanceLabel, balanceDueLabel, totalPaidLabel, cannotRemoveLastTravellerLabel, adventures, summaryLineItems, subtotal, total, depositInfo, onAddContactAsTraveller, onEditTraveller, onRemoveTraveller, onAddSuggestedTraveller, onAddTraveller, onUnassignFromAdventure, onCopyFormLink, onResendInvite, resendingInviteTravellerIds, resendInviteAriaLabel, onSubmitAddTraveller, onSubmitEditTraveller, onConfirmRemoveTraveller, travellerFormConfig, addTravellerSaving, editTravellerSaving, removeTravellerSaving, travellerFormError, onPayBalance, onCancelRequest, logoSrc, logoAlt, onSignOut, signOutLabel, labels, className, }: BookingDetailsProps): react_jsx_runtime.JSX.Element;
698
705
 
699
706
  interface AgentContactCardProps {
700
707
  layout: "compact" | "wide";
@@ -1247,6 +1254,84 @@ interface RegistrationReminderEmailProps {
1247
1254
  }
1248
1255
  declare function RegistrationReminderEmail({ slug, recipientFirstName, bookingNumber, totalAdventures, totalTravellers, adventures, ctaUrl, agent, logoUrl, labels, className, }: RegistrationReminderEmailProps): react_jsx_runtime.JSX.Element;
1249
1256
 
1257
+ type RegistrationReminderIndividualSlug = "d_minus_30" | "d_minus_15" | "d_minus_7" | "d_minus_2";
1258
+ type RegistrationReminderIndividualRoute = "traveller_direct" | "underage_to_booker" | "no_email_fallback";
1259
+ interface RegistrationReminderIndividualAgentContactLinks {
1260
+ whatsappUrl?: string;
1261
+ email?: string;
1262
+ }
1263
+ interface RegistrationReminderIndividualVariantLabels {
1264
+ subject?: string;
1265
+ /** 1º parágrafo. Recebe (travellerFirstName, leadTravellerFirstName, adventureName). */
1266
+ intro?: (travellerFirstName: string, leadTravellerFirstName: string, adventureName: string) => string;
1267
+ /** 2º parágrafo (logística / regra geral). */
1268
+ contextNote?: string;
1269
+ /** Nota destacada de obrigatoriedade (todos os slugs). */
1270
+ mandatoryNote?: string;
1271
+ /** Tagline em destaque (D-2 only): "This is a final reminder." */
1272
+ finalReminderTagline?: string;
1273
+ /** Bloco vermelho com consequências (D-2 only). */
1274
+ consequencesNote?: string;
1275
+ /** "If you have already completed your registration, please disregard this email." — D-2 only. */
1276
+ disregardIfCompleted?: string;
1277
+ /** Frase de fechamento positivo. */
1278
+ closingThanks?: string;
1279
+ }
1280
+ interface RegistrationReminderIndividualEmailLabels {
1281
+ logoAlt?: string;
1282
+ greeting?: (firstName: string) => string;
1283
+ tripDetailsHeader?: string;
1284
+ bookingNumberLabel?: string;
1285
+ leadTravellerLabel?: string;
1286
+ adventureLabel?: string;
1287
+ startingDateLabel?: string;
1288
+ partnerLabel?: string;
1289
+ ctaLabel?: string;
1290
+ /** Nota de routing: traveller é menor de idade — booker recebe o e-mail. */
1291
+ routingNoteUnderage?: (travellerFirstName: string, bookerFirstName: string) => string;
1292
+ /** Nota de routing: traveller sem e-mail — booker recebe o e-mail. */
1293
+ routingNoteNoEmail?: (travellerFirstName: string) => string;
1294
+ /** Closing principal quando há agente. Recebe nome + URLs de contato e retorna JSX. */
1295
+ closingAgent?: (agentName: string, contact: RegistrationReminderIndividualAgentContactLinks) => React.ReactNode;
1296
+ /** Closing alternativo sem agente. */
1297
+ closingNoAgent?: string;
1298
+ teamSignature?: string;
1299
+ variants?: {
1300
+ d_minus_30?: RegistrationReminderIndividualVariantLabels;
1301
+ d_minus_15?: RegistrationReminderIndividualVariantLabels;
1302
+ d_minus_7?: RegistrationReminderIndividualVariantLabels;
1303
+ d_minus_2?: RegistrationReminderIndividualVariantLabels;
1304
+ };
1305
+ }
1306
+ interface RegistrationReminderIndividualEmailProps {
1307
+ slug: RegistrationReminderIndividualSlug;
1308
+ locale: "en" | "pt" | "fr" | "de";
1309
+ /** Primeiro nome do destinatário do e-mail (pode ser o traveller ou o booker). */
1310
+ recipientFirstName: string;
1311
+ /** Nome do traveller alvo do registro (mesmo quando o e-mail vai ao booker). */
1312
+ travellerFirstName: string;
1313
+ /** Nome completo do lead traveller / booker (usado no Trip details). */
1314
+ leadTravellerName: string;
1315
+ /** Primeiro nome do booker — usado em routingNoteUnderage. */
1316
+ leadTravellerFirstName: string;
1317
+ bookingNumber: string;
1318
+ adventureName: string;
1319
+ startDateFormatted: string;
1320
+ partnerName?: string | null;
1321
+ ctaUrl: string;
1322
+ /** Rota do roteamento, usada para decidir qual routingNote renderizar. */
1323
+ route: RegistrationReminderIndividualRoute;
1324
+ agent: {
1325
+ name: string;
1326
+ whatsappUrl?: string;
1327
+ email?: string;
1328
+ } | null;
1329
+ logoUrl?: string;
1330
+ labels?: RegistrationReminderIndividualEmailLabels;
1331
+ className?: string;
1332
+ }
1333
+ declare function RegistrationReminderIndividualEmail({ slug, recipientFirstName, travellerFirstName, leadTravellerName, leadTravellerFirstName, bookingNumber, adventureName, startDateFormatted, partnerName, ctaUrl, route, agent, logoUrl, labels, className, }: RegistrationReminderIndividualEmailProps): react_jsx_runtime.JSX.Element;
1334
+
1250
1335
  interface PaymentReceiptEmailLabels {
1251
1336
  logoAlt?: string;
1252
1337
  greeting?: (name: string) => string;
@@ -2862,4 +2947,4 @@ declare function LeadCapturePopup({ config: _config, }: {
2862
2947
  config: LeadCapturePopupConfig;
2863
2948
  }): react_jsx_runtime.JSX.Element | null;
2864
2949
 
2865
- export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationProgressBar, type RegistrationProgressBarProps, type RegistrationProgressTone, type RegistrationReminderAdventureBlock, type RegistrationReminderAgentContactLinks, RegistrationReminderEmail, type RegistrationReminderEmailLabels, type RegistrationReminderEmailProps, type RegistrationReminderEmailVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageProps, type TripReview, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };
2950
+ export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationProgressBar, type RegistrationProgressBarProps, type RegistrationProgressTone, type RegistrationReminderAdventureBlock, type RegistrationReminderAgentContactLinks, RegistrationReminderEmail, type RegistrationReminderEmailLabels, type RegistrationReminderEmailProps, type RegistrationReminderEmailVariantLabels, type RegistrationReminderIndividualAgentContactLinks, RegistrationReminderIndividualEmail, type RegistrationReminderIndividualEmailLabels, type RegistrationReminderIndividualEmailProps, type RegistrationReminderIndividualRoute, type RegistrationReminderIndividualSlug, type RegistrationReminderIndividualVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageProps, type TripReview, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };