@igamingcareer/igaming-components 1.2.23 → 1.2.25

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.
Files changed (500) hide show
  1. package/dist/index.js +1558 -1558
  2. package/dist/index.mjs +20962 -22083
  3. package/dist/types/components/ui/alert-dialog.d.ts +20 -0
  4. package/dist/types/components/ui/alert.d.ts +8 -0
  5. package/dist/types/components/ui/avatar.d.ts +6 -0
  6. package/dist/types/components/ui/badge.d.ts +9 -0
  7. package/dist/types/components/ui/button.d.ts +11 -0
  8. package/dist/types/components/ui/card.d.ts +8 -0
  9. package/dist/types/components/ui/checkbox.d.ts +4 -0
  10. package/dist/types/components/ui/city-input.d.ts +12 -0
  11. package/dist/types/components/ui/collapsible.d.ts +5 -0
  12. package/dist/types/components/ui/command.d.ts +82 -0
  13. package/dist/types/components/ui/country-select.d.ts +14 -0
  14. package/dist/types/components/ui/dialog.d.ts +19 -0
  15. package/dist/types/components/ui/drawer.d.ts +22 -0
  16. package/dist/types/components/ui/dropdown-menu.d.ts +27 -0
  17. package/dist/types/components/ui/form.d.ts +23 -0
  18. package/dist/types/components/ui/input.d.ts +3 -0
  19. package/dist/types/components/ui/label.d.ts +5 -0
  20. package/dist/types/components/ui/phone-input.d.ts +13 -0
  21. package/dist/types/components/ui/popover.d.ts +7 -0
  22. package/dist/types/components/ui/progress.d.ts +4 -0
  23. package/dist/types/components/ui/radio-group.d.ts +5 -0
  24. package/dist/types/components/ui/scroll-area.d.ts +5 -0
  25. package/dist/types/components/ui/select.d.ts +13 -0
  26. package/dist/types/components/ui/separator.d.ts +4 -0
  27. package/dist/types/components/ui/slider.d.ts +4 -0
  28. package/dist/types/components/ui/switch.d.ts +4 -0
  29. package/dist/types/components/ui/tabs.d.ts +7 -0
  30. package/dist/types/components/ui/textarea.d.ts +5 -0
  31. package/dist/types/components/ui/toast.d.ts +15 -0
  32. package/dist/types/hooks/use-toast.d.ts +45 -0
  33. package/dist/types/lib/utils.d.ts +2 -0
  34. package/dist/types/src/components/App/App.d.ts +2 -0
  35. package/dist/types/src/components/Auth/ForgotPassword.d.ts +26 -0
  36. package/dist/types/src/components/Auth/ForgotPasswordForm.d.ts +16 -0
  37. package/dist/types/src/components/Auth/Login.d.ts +43 -0
  38. package/dist/types/src/components/Auth/Login.stories.d.ts +11 -0
  39. package/dist/types/src/components/Auth/LoginForm.d.ts +30 -0
  40. package/dist/types/src/components/Auth/Register.d.ts +33 -0
  41. package/dist/types/src/components/Auth/RegisterForm.d.ts +29 -0
  42. package/dist/types/src/components/Auth/RegisterFormV2.d.ts +27 -0
  43. package/dist/types/src/components/Auth/RegisterV2.d.ts +25 -0
  44. package/dist/types/src/components/Auth/RegisterV2.stories.d.ts +14 -0
  45. package/dist/types/src/components/Auth/SignInPromptModal.d.ts +23 -0
  46. package/dist/types/src/components/Auth/SignInPromptModal.stories.d.ts +7 -0
  47. package/dist/types/src/components/Auth/SocialButton.d.ts +11 -0
  48. package/dist/types/src/components/Auth/SocialButton.stories.d.ts +11 -0
  49. package/dist/types/src/components/Auth/SocialDivider.d.ts +6 -0
  50. package/dist/types/src/components/Auth/VerificationBanner.d.ts +11 -0
  51. package/dist/types/src/components/Auth/VerificationBanner.stories.d.ts +9 -0
  52. package/dist/types/src/components/Auth/__tests__/Login.social.test.d.ts +1 -0
  53. package/dist/types/src/components/Auth/__tests__/LoginForm.social.test.d.ts +1 -0
  54. package/dist/types/src/components/Auth/__tests__/RegisterV2.social.test.d.ts +1 -0
  55. package/dist/types/src/components/Auth/__tests__/SocialButton.test.d.ts +1 -0
  56. package/dist/types/src/components/Auth/__tests__/SocialDivider.test.d.ts +1 -0
  57. package/dist/types/src/components/Button/Button.d.ts +5 -0
  58. package/dist/types/src/components/Button/Button.stories.d.ts +7 -0
  59. package/dist/types/src/components/CandidateProfile/CandidateProfile.d.ts +49 -0
  60. package/dist/types/src/components/CareerAssistant/CareerAssistant.d.ts +11 -0
  61. package/dist/types/src/components/CareerAssistant/MessageBubble.d.ts +15 -0
  62. package/dist/types/src/components/CareerAssistant/WelcomeScreen.d.ts +7 -0
  63. package/dist/types/src/components/CareerAssistant/mockCareerAssistant.d.ts +8 -0
  64. package/dist/types/src/components/Companies/CompaniesList.d.ts +31 -0
  65. package/dist/types/src/components/Companies/CompanyAdminPage.d.ts +0 -0
  66. package/dist/types/src/components/Companies/CompanyCard.stories.d.ts +7 -0
  67. package/dist/types/src/components/Companies/CompanyDetail.d.ts +33 -0
  68. package/dist/types/src/components/Companies/CompanyDetail.similarCompanies.test.d.ts +1 -0
  69. package/dist/types/src/components/Companies/CompanyDirectory.d.ts +27 -0
  70. package/dist/types/src/components/Companies/CompanyDirectoryContainer.d.ts +23 -0
  71. package/dist/types/src/components/Companies/CompanyFilters.test.d.ts +1 -0
  72. package/dist/types/src/components/Companies/CompanyGroupDetail.d.ts +6 -0
  73. package/dist/types/src/components/Companies/CompanyGroupDetail.stories.d.ts +6 -0
  74. package/dist/types/src/components/Companies/CompanyHeader.stories.d.ts +7 -0
  75. package/dist/types/src/components/Companies/CompanyPublicPage.d.ts +0 -0
  76. package/dist/types/src/components/Companies/CompanyReviewsTab.d.ts +13 -0
  77. package/dist/types/src/components/Companies/LoadingCompanyShadowCard.stories.d.ts +7 -0
  78. package/dist/types/src/components/Companies/admin/CompanyJobsAdmin.d.ts +0 -0
  79. package/dist/types/src/components/Companies/admin/CompanyPeopleAdmin.d.ts +0 -0
  80. package/dist/types/src/components/Companies/admin/CompanyProfileEditor.d.ts +0 -0
  81. package/dist/types/src/components/Companies/companiesListFilters.d.ts +19 -0
  82. package/dist/types/src/components/Companies/companiesListFilters.test.d.ts +1 -0
  83. package/dist/types/src/components/Companies/components/ClaimProfileDialog.d.ts +10 -0
  84. package/dist/types/src/components/Companies/components/CompaniesHeader.d.ts +2 -0
  85. package/dist/types/src/components/Companies/components/CompanyAdminEditDialog.d.ts +15 -0
  86. package/dist/types/src/components/Companies/components/CompanyAdminShell.d.ts +38 -0
  87. package/dist/types/src/components/Companies/components/CompanyCard.d.ts +25 -0
  88. package/dist/types/src/components/Companies/components/CompanyClaim.d.ts +7 -0
  89. package/dist/types/src/components/Companies/components/CompanyComparison.d.ts +12 -0
  90. package/dist/types/src/components/Companies/components/CompanyFilters.d.ts +10 -0
  91. package/dist/types/src/components/Companies/components/CompanyHeader.d.ts +35 -0
  92. package/dist/types/src/components/Companies/components/CompanyMetaHighlights.d.ts +11 -0
  93. package/dist/types/src/components/Companies/components/LoadingCompanyShadowCard.d.ts +5 -0
  94. package/dist/types/src/components/Companies/components/ViewControls.d.ts +14 -0
  95. package/dist/types/src/components/Companies/components/admin/CandidateCard.d.ts +11 -0
  96. package/dist/types/src/components/Companies/components/admin/CompanyAdminCandidates.d.ts +13 -0
  97. package/dist/types/src/components/Companies/components/admin/CompanyAdminCandidates.stories.d.ts +5 -0
  98. package/dist/types/src/components/Companies/components/admin/CompanyAdminEvents.d.ts +10 -0
  99. package/dist/types/src/components/Companies/components/admin/CompanyAdminJobs.d.ts +10 -0
  100. package/dist/types/src/components/Companies/components/admin/CompanyAdminJobs.stories.d.ts +6 -0
  101. package/dist/types/src/components/Companies/components/admin/CompanyAdminNews.d.ts +10 -0
  102. package/dist/types/src/components/Companies/components/admin/CompanyAdminOverview.d.ts +10 -0
  103. package/dist/types/src/components/Companies/components/admin/CompanyAdminPeople.d.ts +11 -0
  104. package/dist/types/src/components/Companies/components/admin/CompanyAdminPeople.stories.d.ts +5 -0
  105. package/dist/types/src/components/Companies/components/admin/CompanyAdminProducts.d.ts +10 -0
  106. package/dist/types/src/components/Companies/components/admin/CompanyAdminSettings.d.ts +9 -0
  107. package/dist/types/src/components/Companies/components/admin/CompanyAdminSettings.stories.d.ts +5 -0
  108. package/dist/types/src/components/Companies/components/admin/InviteModal.d.ts +9 -0
  109. package/dist/types/src/components/Companies/components/admin/ProfileStrengthWidget.d.ts +7 -0
  110. package/dist/types/src/components/Companies/components/admin/modals/AddEventModal.d.ts +16 -0
  111. package/dist/types/src/components/Companies/components/admin/modals/AddJobModal.d.ts +17 -0
  112. package/dist/types/src/components/Companies/components/admin/modals/AddPersonModal.d.ts +15 -0
  113. package/dist/types/src/components/Companies/components/admin/modals/AddProductModal.d.ts +15 -0
  114. package/dist/types/src/components/Companies/components/tabs/CompanyEventsTab.d.ts +8 -0
  115. package/dist/types/src/components/Companies/components/tabs/CompanyInsightsTab.d.ts +2 -0
  116. package/dist/types/src/components/Companies/components/tabs/CompanyJobsTab.d.ts +9 -0
  117. package/dist/types/src/components/Companies/components/tabs/CompanyNewsTab.d.ts +8 -0
  118. package/dist/types/src/components/Companies/components/tabs/CompanyOverviewTab.d.ts +9 -0
  119. package/dist/types/src/components/Companies/components/tabs/CompanyPeopleTab.d.ts +6 -0
  120. package/dist/types/src/components/Companies/components/tabs/CompanyProductsTab.d.ts +6 -0
  121. package/dist/types/src/components/Companies/components/tabs/CompanySidebar.d.ts +7 -0
  122. package/dist/types/src/components/Companies/components/tabs/CompanyTabsList.d.ts +7 -0
  123. package/dist/types/src/components/Companies/components/tabs/CompanyTrustTab.d.ts +7 -0
  124. package/dist/types/src/components/Companies/data/companies.d.ts +18 -0
  125. package/dist/types/src/components/Companies/data/company-group-preview.d.ts +3 -0
  126. package/dist/types/src/components/Companies/data/countries.d.ts +9 -0
  127. package/dist/types/src/components/Companies/hooks/useCompaniesQuery.d.ts +10 -0
  128. package/dist/types/src/components/Companies/reviews/LeaveReviewModal.d.ts +11 -0
  129. package/dist/types/src/components/Companies/reviews/ReviewCard.d.ts +9 -0
  130. package/dist/types/src/components/Companies/reviews/ReviewStars.d.ts +9 -0
  131. package/dist/types/src/components/Companies/reviews/ReviewSummaryBar.d.ts +7 -0
  132. package/dist/types/src/components/Companies/reviews/index.d.ts +4 -0
  133. package/dist/types/src/components/Companies/types/companyAdmin.d.ts +81 -0
  134. package/dist/types/src/components/Companies/types/index.d.ts +390 -0
  135. package/dist/types/src/components/Companies/utils/companiesQuery.d.ts +6 -0
  136. package/dist/types/src/components/Companies/utils/companyFilters.d.ts +53 -0
  137. package/dist/types/src/components/Companies/utils/companyFilters.test.d.ts +1 -0
  138. package/dist/types/src/components/Companies/utils/normalizeCompanies.d.ts +15 -0
  139. package/dist/types/src/components/Companies/utils/normalizeCompaniesResponse.test.d.ts +1 -0
  140. package/dist/types/src/components/Companies/utils/permissions.d.ts +9 -0
  141. package/dist/types/src/components/Companies/utils/safeArray.d.ts +1 -0
  142. package/dist/types/src/components/Companies/utils/similarCompanies.d.ts +2 -0
  143. package/dist/types/src/components/CompanyOnboarding/CompanyOnboardingModal.d.ts +18 -0
  144. package/dist/types/src/components/CompanyOnboarding/index.d.ts +1 -0
  145. package/dist/types/src/components/Complaints/Complaints.d.ts +8 -0
  146. package/dist/types/src/components/Complaints/SubmitComplaintModal.d.ts +16 -0
  147. package/dist/types/src/components/Consent/Analytics.d.ts +9 -0
  148. package/dist/types/src/components/Consent/ConsentAnalytics.stories.d.ts +9 -0
  149. package/dist/types/src/components/Consent/ConsentBanner.d.ts +11 -0
  150. package/dist/types/src/components/Consent/ConsentContext.d.ts +20 -0
  151. package/dist/types/src/components/ContactForm/ContactFormHybrid.d.ts +8 -0
  152. package/dist/types/src/components/Courses/CoursesList.d.ts +9 -0
  153. package/dist/types/src/components/Dashboard/AddExperienceModal.d.ts +33 -0
  154. package/dist/types/src/components/Dashboard/AddJobDetailModal.d.ts +9 -0
  155. package/dist/types/src/components/Dashboard/AddLanguageModal.d.ts +10 -0
  156. package/dist/types/src/components/Dashboard/AddPreferenceTopicModal.d.ts +7 -0
  157. package/dist/types/src/components/Dashboard/AddSkillModal.d.ts +7 -0
  158. package/dist/types/src/components/Dashboard/Alerts/AlertCard.d.ts +12 -0
  159. package/dist/types/src/components/Dashboard/Alerts/AlertEmptyState.d.ts +5 -0
  160. package/dist/types/src/components/Dashboard/Alerts/AlertForm.d.ts +10 -0
  161. package/dist/types/src/components/Dashboard/Alerts/AlertInsightsWidget.d.ts +8 -0
  162. package/dist/types/src/components/Dashboard/Alerts/AlertStatusBadge.d.ts +8 -0
  163. package/dist/types/src/components/Dashboard/Alerts/DashboardAlerts.d.ts +11 -0
  164. package/dist/types/src/components/Dashboard/CVUploadDialog.d.ts +8 -0
  165. package/dist/types/src/components/Dashboard/CompanyDashboard.d.ts +16 -0
  166. package/dist/types/src/components/Dashboard/CompanyEmployeeOverview.d.ts +29 -0
  167. package/dist/types/src/components/Dashboard/CompanyOwnerOverview.d.ts +20 -0
  168. package/dist/types/src/components/Dashboard/CompanyRecruiterOverview.d.ts +31 -0
  169. package/dist/types/src/components/Dashboard/Dashboard.d.ts +56 -0
  170. package/dist/types/src/components/Dashboard/DashboardCourses.d.ts +32 -0
  171. package/dist/types/src/components/Dashboard/DashboardJobCard.d.ts +13 -0
  172. package/dist/types/src/components/Dashboard/DashboardJobs.d.ts +17 -0
  173. package/dist/types/src/components/Dashboard/DashboardLayout.d.ts +15 -0
  174. package/dist/types/src/components/Dashboard/DashboardNews.d.ts +15 -0
  175. package/dist/types/src/components/Dashboard/DashboardNewsCard.d.ts +12 -0
  176. package/dist/types/src/components/Dashboard/DashboardOverview.d.ts +46 -0
  177. package/dist/types/src/components/Dashboard/DashboardProfile.d.ts +64 -0
  178. package/dist/types/src/components/Dashboard/DashboardSettings.d.ts +84 -0
  179. package/dist/types/src/components/Dashboard/DashboardStats.d.ts +17 -0
  180. package/dist/types/src/components/Dashboard/FreelancerActivationCard.d.ts +6 -0
  181. package/dist/types/src/components/Dashboard/FreelancerDashboardSection.d.ts +10 -0
  182. package/dist/types/src/components/Dashboard/FreelancerOnboardingModal.d.ts +10 -0
  183. package/dist/types/src/components/Dashboard/OnboardingChecklist.d.ts +16 -0
  184. package/dist/types/src/components/Dashboard/OnboardingChecklist.stories.d.ts +8 -0
  185. package/dist/types/src/components/Dashboard/OnboardingDashboard.d.ts +19 -0
  186. package/dist/types/src/components/Dashboard/OnboardingDashboard.stories.d.ts +9 -0
  187. package/dist/types/src/components/Events/EventCalendarCard.d.ts +7 -0
  188. package/dist/types/src/components/Events/EventsList.d.ts +11 -0
  189. package/dist/types/src/components/Events/SubmitEventModal.d.ts +22 -0
  190. package/dist/types/src/components/Events/mockEvents.d.ts +2 -0
  191. package/dist/types/src/components/Events/types.d.ts +22 -0
  192. package/dist/types/src/components/Footer/Footer.d.ts +32 -0
  193. package/dist/types/src/components/Footer/Footer.stories.d.ts +7 -0
  194. package/dist/types/src/components/Freelancer/FreelancerProfile.d.ts +19 -0
  195. package/dist/types/src/components/Freelancer/FreelancerProfileContainer.d.ts +2 -0
  196. package/dist/types/src/components/Freelancer/Freelancers.d.ts +30 -0
  197. package/dist/types/src/components/Freelancer/FreelancersContainer.d.ts +2 -0
  198. package/dist/types/src/components/Freelancer/FreelancersList.d.ts +10 -0
  199. package/dist/types/src/components/Freelancer/mockFreelancers.d.ts +6 -0
  200. package/dist/types/src/components/GenericListing/Banner.d.ts +9 -0
  201. package/dist/types/src/components/GenericListing/DateFilter.d.ts +13 -0
  202. package/dist/types/src/components/GenericListing/LastVisitedJobs.d.ts +8 -0
  203. package/dist/types/src/components/GenericListing/Listing.d.ts +32 -0
  204. package/dist/types/src/components/GenericListing/ListingGrid.d.ts +16 -0
  205. package/dist/types/src/components/GenericListing/ListingHeader.d.ts +6 -0
  206. package/dist/types/src/components/GenericListing/ListingSort.d.ts +14 -0
  207. package/dist/types/src/components/GenericListing/MobileFilterDrawer.d.ts +21 -0
  208. package/dist/types/src/components/GenericListing/MobileNav.d.ts +3 -0
  209. package/dist/types/src/components/GenericListing/Pagination.d.ts +8 -0
  210. package/dist/types/src/components/GenericListing/PaginationControls.d.ts +8 -0
  211. package/dist/types/src/components/GenericListing/SearchBar.d.ts +10 -0
  212. package/dist/types/src/components/GenericListing/SearchableSelect.d.ts +10 -0
  213. package/dist/types/src/components/GenericListing/Sidebar.d.ts +11 -0
  214. package/dist/types/src/components/GenericListing/SidebarFilter.d.ts +31 -0
  215. package/dist/types/src/components/GenericListing/SidebarFilters.d.ts +12 -0
  216. package/dist/types/src/components/GenericListing/accessControl.d.ts +22 -0
  217. package/dist/types/src/components/GenericListing/generateMockJobs.d.ts +3 -0
  218. package/dist/types/src/components/GenericListing/useJobDataHook.d.ts +6 -0
  219. package/dist/types/src/components/GenericListing/useLocalStorageState.d.ts +1 -0
  220. package/dist/types/src/components/Header/Header.d.ts +2 -0
  221. package/dist/types/src/components/Header/Header.stories.d.ts +6 -0
  222. package/dist/types/src/components/Header/HeaderAlternative.d.ts +13 -0
  223. package/dist/types/src/components/HomePage/Advantages.d.ts +15 -0
  224. package/dist/types/src/components/HomePage/Cart.d.ts +12 -0
  225. package/dist/types/src/components/HomePage/Chatbot.d.ts +6 -0
  226. package/dist/types/src/components/HomePage/Contact.d.ts +22 -0
  227. package/dist/types/src/components/HomePage/CourseTypes.d.ts +26 -0
  228. package/dist/types/src/components/HomePage/Courses.d.ts +16 -0
  229. package/dist/types/src/components/HomePage/Destinations.d.ts +12 -0
  230. package/dist/types/src/components/HomePage/FAQ.d.ts +11 -0
  231. package/dist/types/src/components/HomePage/FeatureJobs.d.ts +19 -0
  232. package/dist/types/src/components/HomePage/Features.d.ts +13 -0
  233. package/dist/types/src/components/HomePage/ForEmployers.d.ts +10 -0
  234. package/dist/types/src/components/HomePage/Gallery.d.ts +13 -0
  235. package/dist/types/src/components/HomePage/Hero.d.ts +11 -0
  236. package/dist/types/src/components/HomePage/HeroAlternative.d.ts +14 -0
  237. package/dist/types/src/components/HomePage/HeroSection.d.ts +2 -0
  238. package/dist/types/src/components/HomePage/HomePage.d.ts +3 -0
  239. package/dist/types/src/components/HomePage/IgamingCareerHome.d.ts +33 -0
  240. package/dist/types/src/components/HomePage/ImageSlider.d.ts +11 -0
  241. package/dist/types/src/components/HomePage/JobSearch.d.ts +2 -0
  242. package/dist/types/src/components/HomePage/JobsSearchWidget.d.ts +22 -0
  243. package/dist/types/src/components/HomePage/Navbar.d.ts +19 -0
  244. package/dist/types/src/components/HomePage/Newsletter.d.ts +11 -0
  245. package/dist/types/src/components/HomePage/NewsletterV2.d.ts +21 -0
  246. package/dist/types/src/components/HomePage/NotificationModal.d.ts +7 -0
  247. package/dist/types/src/components/HomePage/Partners.d.ts +2 -0
  248. package/dist/types/src/components/HomePage/Services.d.ts +13 -0
  249. package/dist/types/src/components/HomePage/ServicesNoIcons.d.ts +16 -0
  250. package/dist/types/src/components/HomePage/SidebarNewsletter.d.ts +9 -0
  251. package/dist/types/src/components/HomePage/SidebarNewsletterV2.d.ts +18 -0
  252. package/dist/types/src/components/HomePage/Testimonials.d.ts +14 -0
  253. package/dist/types/src/components/HomePage/TestimonialsVariant.d.ts +2 -0
  254. package/dist/types/src/components/HomePage/TrustSignals.d.ts +21 -0
  255. package/dist/types/src/components/HomePage/ValueProposition.d.ts +12 -0
  256. package/dist/types/src/components/HomePage/Videos.d.ts +13 -0
  257. package/dist/types/src/components/HomePage/context/CartContext.d.ts +22 -0
  258. package/dist/types/src/components/IgamingCoursesPage/CourseCard.d.ts +12 -0
  259. package/dist/types/src/components/IgamingCoursesPage/CourseFilters.d.ts +19 -0
  260. package/dist/types/src/components/IgamingCoursesPage/CourseNavigation.d.ts +11 -0
  261. package/dist/types/src/components/IgamingCoursesPage/CourseSearch.d.ts +10 -0
  262. package/dist/types/src/components/IgamingCoursesPage/CourseSidebarFilters.d.ts +23 -0
  263. package/dist/types/src/components/IgamingCoursesPage/CoursesListingCards.d.ts +17 -0
  264. package/dist/types/src/components/IgamingCoursesPage/FeaturedCourses.d.ts +12 -0
  265. package/dist/types/src/components/IgamingCoursesPage/HeroSection.d.ts +9 -0
  266. package/dist/types/src/components/IgamingCoursesPage/IgamingCoursesPage.d.ts +12 -0
  267. package/dist/types/src/components/IgamingCoursesPage/MobileCourseSearch.d.ts +10 -0
  268. package/dist/types/src/components/IgamingCoursesPage/Statistics.d.ts +8 -0
  269. package/dist/types/src/components/IgamingCoursesPage/data/courses.d.ts +3 -0
  270. package/dist/types/src/components/IgamingCoursesPage/types/course.d.ts +63 -0
  271. package/dist/types/src/components/JobListing/JobListing.d.ts +24 -0
  272. package/dist/types/src/components/JobListing/components/Filters.d.ts +17 -0
  273. package/dist/types/src/components/JobListing/components/Footer.d.ts +12 -0
  274. package/dist/types/src/components/JobListing/components/JobCard.d.ts +14 -0
  275. package/dist/types/src/components/JobListing/components/JobList.d.ts +12 -0
  276. package/dist/types/src/components/JobListing/components/MobileFilterDrawer.d.ts +21 -0
  277. package/dist/types/src/components/JobListing/components/Navbar.d.ts +13 -0
  278. package/dist/types/src/components/JobListing/components/PromoCard.d.ts +11 -0
  279. package/dist/types/src/components/JobListing/components/SearchBar.d.ts +10 -0
  280. package/dist/types/src/components/JobListing/types/Job.d.ts +1 -0
  281. package/dist/types/src/components/Jobs/JobsList.d.ts +39 -0
  282. package/dist/types/src/components/Jobs/jobsListFilters.d.ts +13 -0
  283. package/dist/types/src/components/Jobs/jobsListFilters.test.d.ts +1 -0
  284. package/dist/types/src/components/JobsDetails/JobDetail.d.ts +9 -0
  285. package/dist/types/src/components/JobsDetails/utils/navigation.d.ts +2 -0
  286. package/dist/types/src/components/JobsDetails/utils/types.d.ts +37 -0
  287. package/dist/types/src/components/JobsDetails/utils/useJobSlug.d.ts +1 -0
  288. package/dist/types/src/components/LanguageSchools/LanguageSchoolDetail.d.ts +16 -0
  289. package/dist/types/src/components/LanguageSchools/LanguageSchoolsList.d.ts +17 -0
  290. package/dist/types/src/components/LanguageSchools/components/SchoolCard.d.ts +10 -0
  291. package/dist/types/src/components/LanguageSchools/schoolsListFilters.d.ts +6 -0
  292. package/dist/types/src/components/LeadForm.d.ts +45 -0
  293. package/dist/types/src/components/LeadForm.stories.d.ts +51 -0
  294. package/dist/types/src/components/LeadForm.test.d.ts +4 -0
  295. package/dist/types/src/components/MaltaEvents/MaltaEventDetail.d.ts +8 -0
  296. package/dist/types/src/components/MaltaEvents/MaltaEventsList.d.ts +17 -0
  297. package/dist/types/src/components/MaltaEvents/components/MaltaEventCard.d.ts +10 -0
  298. package/dist/types/src/components/MaltaEvents/eventsListFilters.d.ts +22 -0
  299. package/dist/types/src/components/MaltaEvents/index.d.ts +5 -0
  300. package/dist/types/src/components/MaltaEvents/mockMaltaEvents.d.ts +2 -0
  301. package/dist/types/src/components/MaltaPlaces/MaltaPlaceDetail.d.ts +8 -0
  302. package/dist/types/src/components/MaltaPlaces/MaltaPlacesList.d.ts +17 -0
  303. package/dist/types/src/components/MaltaPlaces/components/MaltaPlaceCard.d.ts +10 -0
  304. package/dist/types/src/components/MaltaPlaces/index.d.ts +5 -0
  305. package/dist/types/src/components/MaltaPlaces/mockMaltaPlaces.d.ts +2 -0
  306. package/dist/types/src/components/MaltaPlaces/placesListFilters.d.ts +14 -0
  307. package/dist/types/src/components/MarketDetail/MarketDetail.d.ts +6 -0
  308. package/dist/types/src/components/Markets/MarketsList.d.ts +17 -0
  309. package/dist/types/src/components/Markets/SuggestMarketModal.d.ts +8 -0
  310. package/dist/types/src/components/Markets/mockMarkets.d.ts +3 -0
  311. package/dist/types/src/components/Modal/Modal.d.ts +10 -0
  312. package/dist/types/src/components/News/NewsList.d.ts +7 -0
  313. package/dist/types/src/components/NewsPage/BreakingNews.d.ts +7 -0
  314. package/dist/types/src/components/NewsPage/NewsCard.d.ts +15 -0
  315. package/dist/types/src/components/NewsPage/NewsFilters.d.ts +14 -0
  316. package/dist/types/src/components/NewsPage/NewsPage.d.ts +19 -0
  317. package/dist/types/src/components/NewsPage/NewsSearch.d.ts +9 -0
  318. package/dist/types/src/components/NewsPage/NewsSidebarFilters.d.ts +19 -0
  319. package/dist/types/src/components/NewsPage/TrendingNews.d.ts +8 -0
  320. package/dist/types/src/components/NewsPage/data/news.d.ts +3 -0
  321. package/dist/types/src/components/NewsPage/types/news.d.ts +35 -0
  322. package/dist/types/src/components/Notification/Notification.stories.d.ts +6 -0
  323. package/dist/types/src/components/Notification/NotificationItem.d.ts +15 -0
  324. package/dist/types/src/components/Notification/NotificationProvider.d.ts +20 -0
  325. package/dist/types/src/components/Notification/NotificationTester.d.ts +21 -0
  326. package/dist/types/src/components/Notification/NotificationTester.stories.d.ts +6 -0
  327. package/dist/types/src/components/Notification/NotificationViewport.d.ts +20 -0
  328. package/dist/types/src/components/Notification/index.d.ts +4 -0
  329. package/dist/types/src/components/Notification/notificationStore.d.ts +51 -0
  330. package/dist/types/src/components/Onboarding/DashboardOnboardingSection.d.ts +12 -0
  331. package/dist/types/src/components/Onboarding/OnboardingChecklist.d.ts +8 -0
  332. package/dist/types/src/components/Onboarding/OnboardingContext.d.ts +6 -0
  333. package/dist/types/src/components/Onboarding/OnboardingDashboard.d.ts +11 -0
  334. package/dist/types/src/components/Onboarding/OnboardingModal.d.ts +19 -0
  335. package/dist/types/src/components/Onboarding/OnboardingPopup.d.ts +6 -0
  336. package/dist/types/src/components/Onboarding/ShieldedActionButton.d.ts +15 -0
  337. package/dist/types/src/components/Onboarding/VerificationBanner.d.ts +12 -0
  338. package/dist/types/src/components/Onboarding/index.d.ts +13 -0
  339. package/dist/types/src/components/Places/PlacesList.d.ts +7 -0
  340. package/dist/types/src/components/Places/mockPlaces.d.ts +2 -0
  341. package/dist/types/src/components/Places/types.d.ts +16 -0
  342. package/dist/types/src/components/Prices/Group/GroupPrices.d.ts +10 -0
  343. package/dist/types/src/components/Prices/PricingComponents.stories.d.ts +6 -0
  344. package/dist/types/src/components/Prices/Summary/SlidingSummary.d.ts +7 -0
  345. package/dist/types/src/components/ProductCategories/ProductCategoriesList.d.ts +9 -0
  346. package/dist/types/src/components/ProductCategories/ProductCategoryDetail.d.ts +7 -0
  347. package/dist/types/src/components/ProductCategories/mockProductCategories.d.ts +3 -0
  348. package/dist/types/src/components/ProductCategories/types.d.ts +47 -0
  349. package/dist/types/src/components/QualityCompounderFramework/QualityCompounderFramework.d.ts +11 -0
  350. package/dist/types/src/components/QualityCompounderFramework/ResearchPage.d.ts +1 -0
  351. package/dist/types/src/components/QualityCompounderFramework/Savedevaluations.d.ts +6 -0
  352. package/dist/types/src/components/QualityCompounderFramework/WatchlistDashboard.d.ts +6 -0
  353. package/dist/types/src/components/RegulatorDetail/RegulatorDetail.d.ts +6 -0
  354. package/dist/types/src/components/Regulators/JurisdictionsList.d.ts +6 -0
  355. package/dist/types/src/components/Regulators/RegulatorsList.d.ts +9 -0
  356. package/dist/types/src/components/Regulators/mockJurisdictions.d.ts +3 -0
  357. package/dist/types/src/components/Regulators/mockRegulators.d.ts +3 -0
  358. package/dist/types/src/components/Regulators/types.d.ts +55 -0
  359. package/dist/types/src/components/Research/ResearchPage.d.ts +5 -0
  360. package/dist/types/src/components/Research/index.d.ts +1 -0
  361. package/dist/types/src/components/Reviews/LeaveReviewStandaloneModal.d.ts +23 -0
  362. package/dist/types/src/components/Reviews/Reviews.d.ts +8 -0
  363. package/dist/types/src/components/Shared/ActiveFiltersDisplay.d.ts +15 -0
  364. package/dist/types/src/components/Shared/Cards/CareerPathCard.d.ts +20 -0
  365. package/dist/types/src/components/Shared/Cards/ChannelCard.d.ts +9 -0
  366. package/dist/types/src/components/Shared/Cards/CompanyCardMobile.d.ts +30 -0
  367. package/dist/types/src/components/Shared/Cards/CompanyTypeCard.d.ts +9 -0
  368. package/dist/types/src/components/Shared/Cards/CourseCard.d.ts +37 -0
  369. package/dist/types/src/components/Shared/Cards/DepartmentCard.d.ts +15 -0
  370. package/dist/types/src/components/Shared/Cards/DepartmentEntityCard.d.ts +9 -0
  371. package/dist/types/src/components/Shared/Cards/DirectoryDetailCard.d.ts +13 -0
  372. package/dist/types/src/components/Shared/Cards/DirectoryInfoPanel.d.ts +25 -0
  373. package/dist/types/src/components/Shared/Cards/DirectoryKeyRolesList.d.ts +11 -0
  374. package/dist/types/src/components/Shared/Cards/EventsCard.d.ts +19 -0
  375. package/dist/types/src/components/Shared/Cards/FreelancerCard.d.ts +23 -0
  376. package/dist/types/src/components/Shared/Cards/GamblingVerticalCard.d.ts +9 -0
  377. package/dist/types/src/components/Shared/Cards/JobCard.d.ts +31 -0
  378. package/dist/types/src/components/Shared/Cards/JurisdictionCard.d.ts +8 -0
  379. package/dist/types/src/components/Shared/Cards/MarketsCard.d.ts +8 -0
  380. package/dist/types/src/components/Shared/Cards/NewsCard.d.ts +32 -0
  381. package/dist/types/src/components/Shared/Cards/PlacesCard.d.ts +18 -0
  382. package/dist/types/src/components/Shared/Cards/PlaybookCard.d.ts +17 -0
  383. package/dist/types/src/components/Shared/Cards/ProductCategoriesCard.d.ts +26 -0
  384. package/dist/types/src/components/Shared/Cards/RegulatorsCard.d.ts +21 -0
  385. package/dist/types/src/components/Shared/Cards/RoleGuideCard.d.ts +17 -0
  386. package/dist/types/src/components/Shared/Cards/TermCard.d.ts +14 -0
  387. package/dist/types/src/components/Shared/Cards/VideoCard.d.ts +21 -0
  388. package/dist/types/src/components/Shared/Cards/index.d.ts +10 -0
  389. package/dist/types/src/components/Shared/CompanyCardMobile.stories.d.ts +7 -0
  390. package/dist/types/src/components/Shared/Directory/DirectoryBanner.d.ts +8 -0
  391. package/dist/types/src/components/Shared/Directory/DirectoryShell.d.ts +30 -0
  392. package/dist/types/src/components/Shared/Directory/DirectoryShowcase.d.ts +3 -0
  393. package/dist/types/src/components/Shared/Directory/DirectoryToolbar.d.ts +20 -0
  394. package/dist/types/src/components/Shared/Directory/ViewModeToggle.d.ts +1 -0
  395. package/dist/types/src/components/Shared/Directory/index.d.ts +5 -0
  396. package/dist/types/src/components/Shared/Directory/types.d.ts +73 -0
  397. package/dist/types/src/components/Shared/GenericFilter.d.ts +17 -0
  398. package/dist/types/src/components/Shared/GenericPagination.d.ts +8 -0
  399. package/dist/types/src/components/Shared/GenericPagination.stories.d.ts +7 -0
  400. package/dist/types/src/components/Shared/ItemsPerPageSelector.d.ts +10 -0
  401. package/dist/types/src/components/Shared/ItemsPerPageSelector.stories.d.ts +7 -0
  402. package/dist/types/src/components/Shared/Listing/ListingActiveFilters.d.ts +16 -0
  403. package/dist/types/src/components/Shared/Listing/ListingEmptyState.d.ts +16 -0
  404. package/dist/types/src/components/Shared/Listing/ListingHeader.d.ts +17 -0
  405. package/dist/types/src/components/Shared/Listing/ListingMobileFilters.d.ts +24 -0
  406. package/dist/types/src/components/Shared/Listing/ListingPagination.d.ts +15 -0
  407. package/dist/types/src/components/Shared/Listing/ListingSearchBar.d.ts +20 -0
  408. package/dist/types/src/components/Shared/Listing/ListingSidebar.d.ts +25 -0
  409. package/dist/types/src/components/Shared/Listing/ListingToolbar.d.ts +24 -0
  410. package/dist/types/src/components/Shared/Listing/index.d.ts +9 -0
  411. package/dist/types/src/components/Shared/Listing/types.d.ts +50 -0
  412. package/dist/types/src/components/Shared/LoadingShadowCard.d.ts +5 -0
  413. package/dist/types/src/components/Shared/LoadingShadowCard.stories.d.ts +7 -0
  414. package/dist/types/src/components/Shared/Mobile/BottomSheetFilter.d.ts +23 -0
  415. package/dist/types/src/components/Shared/Mobile/FloatingActionButton.d.ts +22 -0
  416. package/dist/types/src/components/Shared/Mobile/HorizontalTagSlider.d.ts +22 -0
  417. package/dist/types/src/components/Shared/Mobile/StickyFilterChips.d.ts +20 -0
  418. package/dist/types/src/components/Shared/Mobile/UserIdentityMenu.d.ts +36 -0
  419. package/dist/types/src/components/Shared/Mobile/index.d.ts +5 -0
  420. package/dist/types/src/components/Shared/MobileDrawer.d.ts +9 -0
  421. package/dist/types/src/components/Shared/PageTitleHeader.d.ts +16 -0
  422. package/dist/types/src/components/Shared/SearchBox.d.ts +11 -0
  423. package/dist/types/src/components/Shared/ShieldedActionButton.d.ts +14 -0
  424. package/dist/types/src/components/Shared/ShieldedActionButton.stories.d.ts +8 -0
  425. package/dist/types/src/components/Shared/SubscriptionModal.d.ts +10 -0
  426. package/dist/types/src/components/Shared/Taxonomy/ExamplesPanel.d.ts +7 -0
  427. package/dist/types/src/components/Shared/Taxonomy/TaxonomyApproveForm.d.ts +15 -0
  428. package/dist/types/src/components/Shared/Taxonomy/TaxonomySuggestionDetail.d.ts +11 -0
  429. package/dist/types/src/components/Shared/Taxonomy/TaxonomySuggestionTable.d.ts +12 -0
  430. package/dist/types/src/components/Shared/Taxonomy/types.d.ts +18 -0
  431. package/dist/types/src/components/Shared/ViewControls.d.ts +13 -0
  432. package/dist/types/src/components/Shared/ViewModeToggle.d.ts +9 -0
  433. package/dist/types/src/components/Shared/extractTagsFromTitle.d.ts +3 -0
  434. package/dist/types/src/components/Shared/helpers/api.d.ts +21 -0
  435. package/dist/types/src/components/Shared/helpers/filters.d.ts +10 -0
  436. package/dist/types/src/components/Shared/helpers/jobsHelpers.d.ts +6 -0
  437. package/dist/types/src/components/Shared/types/shared-types.d.ts +125 -0
  438. package/dist/types/src/components/Shared/useSavedJobs.d.ts +5 -0
  439. package/dist/types/src/components/TagBadge/TagBadge.d.ts +12 -0
  440. package/dist/types/src/components/TagPicker/TagPicker.d.ts +20 -0
  441. package/dist/types/src/components/hooks/use-lead-form.d.ts +30 -0
  442. package/dist/types/src/components/hooks/useFilters.d.ts +5 -0
  443. package/dist/types/src/components/hooks/useOnboarding.d.ts +19 -0
  444. package/dist/types/src/components/hooks/usePagination.d.ts +6 -0
  445. package/dist/types/src/components/hooks/useSubscription.d.ts +4 -0
  446. package/dist/types/src/components/services/lead-validation.d.ts +30 -0
  447. package/dist/types/src/components/types/lead.d.ts +43 -0
  448. package/dist/types/src/components/ui/button.d.ts +57 -0
  449. package/dist/types/src/components/ui/button.stories.d.ts +105 -0
  450. package/dist/types/src/components/ui/button.test.d.ts +1 -0
  451. package/dist/types/src/components/ui/index.d.ts +17 -0
  452. package/dist/types/src/data/mockCandidates.d.ts +2 -0
  453. package/dist/types/src/data/mockCareerAssistant.d.ts +6 -0
  454. package/dist/types/src/data/mockComplaints.d.ts +2 -0
  455. package/dist/types/src/data/mockReviews.d.ts +6 -0
  456. package/dist/types/src/hooks/use-lead-form.d.ts +21 -0
  457. package/dist/types/src/hooks/useCareerAssistant.d.ts +7 -0
  458. package/dist/types/src/hooks/useLocalStorage.d.ts +36 -0
  459. package/dist/types/src/index.d.ts +170 -0
  460. package/dist/types/src/lib/utils.d.ts +15 -0
  461. package/dist/types/src/services/alphaVantageResearch.d.ts +32 -0
  462. package/dist/types/src/services/careerAssistant.mock.d.ts +53 -0
  463. package/dist/types/src/services/fmpService.d.ts +74 -0
  464. package/dist/types/src/services/lead-validation.d.ts +105 -0
  465. package/dist/types/src/services/research.d.ts +71 -0
  466. package/dist/types/src/services/scoringEngine.d.ts +35 -0
  467. package/dist/types/src/services/watchlistStore.d.ts +18 -0
  468. package/dist/types/src/stories/PageComponents.stories.d.ts +7 -0
  469. package/dist/types/src/types/candidate.d.ts +27 -0
  470. package/dist/types/src/types/chat-messages.d.ts +6 -0
  471. package/dist/types/src/types/company-user.d.ts +33 -0
  472. package/dist/types/src/types/company-user.test.d.ts +1 -0
  473. package/dist/types/src/types/company.d.ts +252 -0
  474. package/dist/types/src/types/complaint.d.ts +21 -0
  475. package/dist/types/src/types/conference.d.ts +21 -0
  476. package/dist/types/src/types/dashboard.d.ts +252 -0
  477. package/dist/types/src/types/events.courses.d.ts +49 -0
  478. package/dist/types/src/types/events.d.ts +23 -0
  479. package/dist/types/src/types/events.freelancers.d.ts +11 -0
  480. package/dist/types/src/types/events.jobs.d.ts +70 -0
  481. package/dist/types/src/types/events.news.d.ts +57 -0
  482. package/dist/types/src/types/events.newsletter.d.ts +6 -0
  483. package/dist/types/src/types/freelancer.d.ts +128 -0
  484. package/dist/types/src/types/general.d.ts +20 -0
  485. package/dist/types/src/types/icon-utils.d.ts +3 -0
  486. package/dist/types/src/types/item.d.ts +10 -0
  487. package/dist/types/src/types/job-alert.d.ts +64 -0
  488. package/dist/types/src/types/job.d.ts +70 -0
  489. package/dist/types/src/types/lead.d.ts +128 -0
  490. package/dist/types/src/types/maltaevent.d.ts +50 -0
  491. package/dist/types/src/types/maltaplace.d.ts +52 -0
  492. package/dist/types/src/types/market.d.ts +86 -0
  493. package/dist/types/src/types/news.d.ts +15 -0
  494. package/dist/types/src/types/onboarding.d.ts +42 -0
  495. package/dist/types/src/types/review.d.ts +61 -0
  496. package/dist/types/src/types/school.d.ts +89 -0
  497. package/dist/types/src/types/user.d.ts +34 -0
  498. package/dist/types/src/utils/safeArray.d.ts +1 -0
  499. package/dist/types/src/utils/safeArray.test.d.ts +1 -0
  500. package/package.json +4 -4
@@ -0,0 +1,21 @@
1
+ /**
2
+ * useLeadForm Hook
3
+ * Manages form state and API submission for lead capture
4
+ */
5
+ import { UseFormSetError } from 'react-hook-form';
6
+ import { LeadFormData, LeadFormResponse, LeadFormConfig } from '../types/lead';
7
+ /**
8
+ * Hook for managing lead form submission
9
+ */
10
+ export declare const useLeadForm: (config?: LeadFormConfig) => {
11
+ submitLead: (formData: LeadFormData, setError?: UseFormSetError<LeadFormData>) => Promise<LeadFormResponse | null>;
12
+ resetState: () => void;
13
+ isLoading: boolean;
14
+ isSuccess: boolean;
15
+ isError: boolean;
16
+ error?: string;
17
+ };
18
+ /**
19
+ * Hook for getting auto-populated metadata without submitting
20
+ */
21
+ export declare const useLeadMetadata: (sourcePage?: string, campaign?: string, language?: "es" | "en") => Partial<LeadFormData> | null;
@@ -0,0 +1,7 @@
1
+ import { ChatMessage } from "@/types/chat-messages";
2
+ export declare function useCareerAssistant(): {
3
+ messages: ChatMessage[];
4
+ isLoading: boolean;
5
+ sendMessage: (text: string) => Promise<void>;
6
+ setMessages: import("react").Dispatch<import("react").SetStateAction<ChatMessage[]>>;
7
+ };
@@ -0,0 +1,36 @@
1
+ export declare function useLocalStorage<T>(key: string, initialValue: T): [T, (value: T | ((prev: T) => T)) => void, () => void];
2
+ export interface SavedEvaluation {
3
+ ticker: string;
4
+ companyName: string;
5
+ scores: Record<string, number>;
6
+ gates: Record<string, boolean>;
7
+ thesis: string;
8
+ savedAt: number;
9
+ verdict: string;
10
+ total: number | null;
11
+ }
12
+ export declare function useSavedEvaluations(): {
13
+ evals: SavedEvaluation[];
14
+ saveEvaluation: (evaluation: SavedEvaluation) => void;
15
+ deleteEvaluation: (ticker: string) => void;
16
+ getEvaluation: (ticker: string) => SavedEvaluation | null;
17
+ clearEvals: () => void;
18
+ };
19
+ export declare function useWatchlistTickers(): {
20
+ tickers: string[];
21
+ add: (ticker: string) => void;
22
+ remove: (ticker: string) => void;
23
+ has: (ticker: string) => boolean;
24
+ clearTickers: () => void;
25
+ };
26
+ export interface MonthlySnapshot {
27
+ savedAt: number;
28
+ scores: Record<string, number | null>;
29
+ }
30
+ export declare function useMonthlySnapshot(): {
31
+ snapshot: MonthlySnapshot | null;
32
+ saveSnapshot: (scores: Record<string, number | null>) => void;
33
+ getDelta: (ticker: string, currentScore: number | null) => number | null;
34
+ clearSnapshot: () => void;
35
+ daysSinceSnapshot: number | null;
36
+ };
@@ -0,0 +1,170 @@
1
+ export { Button } from '../components/ui/button';
2
+ export { Input } from '../components/ui/input';
3
+ export { Textarea } from '../components/ui/textarea';
4
+ export { TagPicker } from './components/TagPicker/TagPicker';
5
+ export { TagBadge } from './components/TagBadge/TagBadge';
6
+ export { Badge } from '../components/ui/badge';
7
+ export { default as GroupPrices } from './components/Prices/Group/GroupPrices';
8
+ export { default as SlidingSummary } from './components/Prices/Summary/SlidingSummary';
9
+ export { default as HomePage } from './components/HomePage/HomePage';
10
+ export { default as Hero } from './components/HomePage/Hero';
11
+ export { default as ServicesNoIcons } from './components/HomePage/ServicesNoIcons';
12
+ export { default as Advantages } from './components/HomePage/Advantages';
13
+ export { default as Features } from './components/HomePage/Features';
14
+ export { default as Gallery } from './components/HomePage/Gallery';
15
+ export { default as Destinations } from './components/HomePage/Destinations';
16
+ export { default as Courses } from './components/HomePage/Courses';
17
+ export { default as Cart } from './components/HomePage/Cart';
18
+ export { default as Videos } from './components/HomePage/Videos';
19
+ export { default as Testimonials } from './components/HomePage/Testimonials';
20
+ export { default as FAQ } from './components/HomePage/FAQ';
21
+ export { default as Chatbot } from './components/HomePage/Chatbot';
22
+ export { default as Services } from './components/HomePage/Services';
23
+ export { default as CourseTypes } from './components/HomePage/CourseTypes';
24
+ export { default as FeatureJobs } from './components/HomePage/FeatureJobs';
25
+ export { default as ForEmployers } from './components/HomePage/ForEmployers';
26
+ export { default as HeroAlternative } from './components/HomePage/HeroAlternative';
27
+ export { default as IgamingCareerHome } from './components/HomePage/IgamingCareerHome';
28
+ export { default as FooterLib } from './components/Footer/Footer';
29
+ export { default as JobSearchWidget } from './components/HomePage/JobsSearchWidget';
30
+ export { default as Partners } from './components/HomePage/Partners';
31
+ export { default as Newsletter } from './components/HomePage/Newsletter';
32
+ export { default as NewsletterV2 } from './components/HomePage/NewsletterV2';
33
+ export { default as TrustSignals } from './components/HomePage/TrustSignals';
34
+ export { default as ValueProposition } from './components/HomePage/ValueProposition';
35
+ export { default as SidebarNewsletter } from './components/HomePage/SidebarNewsletter';
36
+ export { default as SidebarNewsletterV2 } from './components/HomePage/SidebarNewsletterV2';
37
+ export { default as NotificationModal } from './components/HomePage/NotificationModal';
38
+ export { default as JobListings } from './components/JobListing/JobListing';
39
+ export { default as Footer } from './components/JobListing/components/Footer';
40
+ export { default as Navbar } from './components/JobListing/components/Navbar';
41
+ export { default as Banner } from './components/GenericListing/Banner';
42
+ export { default as MobileNav } from './components/GenericListing/MobileNav';
43
+ export { default as SearchableSelect } from './components/GenericListing/SearchableSelect';
44
+ export { default as Listing } from './components/GenericListing/Listing';
45
+ export { default as JobsList } from './components/Jobs/JobsList';
46
+ export { default as EventsList } from './components/Events/EventsList';
47
+ export { default as PlacesList } from './components/Places/PlacesList';
48
+ export { default as ProductCategoriesList } from './components/ProductCategories/ProductCategoriesList';
49
+ export { default as ProductCategoryDetail } from './components/ProductCategories/ProductCategoryDetail';
50
+ export { default as MarketsList } from './components/Markets/MarketsList';
51
+ export { default as RegulatorsList } from './components/Regulators/RegulatorsList';
52
+ export { default as JurisdictionsList } from './components/Regulators/JurisdictionsList';
53
+ export { default as Complaints } from './components/Complaints/Complaints';
54
+ export { default as Reviews } from './components/Reviews/Reviews';
55
+ export { default as MarketDetail } from './components/MarketDetail/MarketDetail';
56
+ export { default as RegulatorDetail } from './components/RegulatorDetail/RegulatorDetail';
57
+ export { default as JobDetailPage } from './components/JobsDetails/JobDetail';
58
+ export { default as HeaderAlternative } from './components/Header/HeaderAlternative';
59
+ export { default as Header } from './components/Header/Header';
60
+ export { default as NewsPage } from './components/NewsPage/NewsPage';
61
+ export { default as NewsList } from './components/News/NewsList';
62
+ export { default as CoursesPage } from './components/IgamingCoursesPage/IgamingCoursesPage';
63
+ export { default as CoursesList } from './components/Courses/CoursesList';
64
+ export { default as CandidateProfile } from './components/CandidateProfile/CandidateProfile';
65
+ export { default as CompanyDirectory } from './components/Companies/CompanyDirectory';
66
+ export { default as CompaniesList } from './components/Companies/CompaniesList';
67
+ export { default as CompanyDetail } from './components/Companies/CompanyDetail';
68
+ export { default as CompanyGroupDetail } from './components/Companies/CompanyGroupDetail';
69
+ export { default as CompanyDirectoryContainer } from './components/Companies/CompanyDirectoryContainer';
70
+ export { default as CompanyClaim } from './components/Companies/components/CompanyClaim';
71
+ export { default as CompanyAdminShell } from './components/Companies/components/CompanyAdminShell';
72
+ export { default as CompanyAdminEditDialog } from './components/Companies/components/CompanyAdminEditDialog';
73
+ export { default as CompanyAdminOverview } from './components/Companies/components/admin/CompanyAdminOverview';
74
+ export { default as CompanyAdminProducts } from './components/Companies/components/admin/CompanyAdminProducts';
75
+ export { default as CompanyAdminPeople } from './components/Companies/components/admin/CompanyAdminPeople';
76
+ export { default as CompanyAdminJobs } from './components/Companies/components/admin/CompanyAdminJobs';
77
+ export { default as CompanyAdminCandidates } from './components/Companies/components/admin/CompanyAdminCandidates';
78
+ export { default as CompanyAdminEvents } from './components/Companies/components/admin/CompanyAdminEvents';
79
+ export { default as CompanyAdminNews } from './components/Companies/components/admin/CompanyAdminNews';
80
+ export { default as CompanyAdminSettings } from './components/Companies/components/admin/CompanyAdminSettings';
81
+ export type { Company, CompanyClaimRequestPayload, CompanyDetailTab, CompanyDetailTabChangeEvent, CompanyFollowActionPayload, SaveCompanyPayload, SimilarCompanyItem, } from './components/Companies/types';
82
+ export type { ToastActionElement, ToastProps, } from '../components/ui/toast';
83
+ export type { AdminTab, CompanyAdminCompanyMeta, CompanyAdminPermissions, CompanyAdminRole, CompanyAdminShellProps, CompanyAdminSummaryStat, } from './components/Companies/components/CompanyAdminShell';
84
+ export type { CompanyAdminUpdateEvent, CandidatesUpdatePayload } from './components/Companies/types/companyAdmin';
85
+ export type { CompanyAdminEditPayload } from './components/Companies/components/CompanyAdminEditDialog';
86
+ export { canEditSection, getEnabledPermissions } from './components/Companies/utils/permissions';
87
+ export { safeArray } from './utils/safeArray';
88
+ export { default as CandidateCard } from './components/Companies/components/admin/CandidateCard';
89
+ export { default as LoadingShadowCard } from "./components/Shared/LoadingShadowCard";
90
+ export type { Candidate, CandidateStatus, CandidateRating, CandidateNote } from './types/candidate';
91
+ export { default as CareerPathCard } from './components/Shared/Cards/CareerPathCard';
92
+ export { default as DepartmentCard } from './components/Shared/Cards/DepartmentCard';
93
+ export { default as PlaybookCard } from './components/Shared/Cards/PlaybookCard';
94
+ export { default as RoleGuideCard } from './components/Shared/Cards/RoleGuideCard';
95
+ export { default as TermCard } from './components/Shared/Cards/TermCard';
96
+ export { default as VideoCard } from './components/Shared/Cards/VideoCard';
97
+ export { default as ChannelCard } from './components/Shared/Cards/ChannelCard';
98
+ export { default as GamblingVerticalCard } from './components/Shared/Cards/GamblingVerticalCard';
99
+ export { default as DepartmentEntityCard } from './components/Shared/Cards/DepartmentEntityCard';
100
+ export { default as CompanyTypeCard } from './components/Shared/Cards/CompanyTypeCard';
101
+ export { default as DirectoryDetailCard } from './components/Shared/Cards/DirectoryDetailCard';
102
+ export { default as DirectoryKeyRolesList } from './components/Shared/Cards/DirectoryKeyRolesList';
103
+ export { default as DirectoryInfoPanel } from './components/Shared/Cards/DirectoryInfoPanel';
104
+ export { default as ConsentBanner } from './components/Consent/ConsentBanner';
105
+ export { ConsentProvider, useConsent } from './components/Consent/ConsentContext';
106
+ export { default as Analytics } from './components/Consent/Analytics';
107
+ export { default as Login } from './components/Auth/Login';
108
+ export type { LoginProps } from './components/Auth/Login';
109
+ export { default as Register } from './components/Auth/Register';
110
+ export { default as RegisterV2 } from './components/Auth/RegisterV2';
111
+ export type { RegisterV2Props } from './components/Auth/RegisterV2';
112
+ export { default as ForgotPassword } from './components/Auth/ForgotPassword';
113
+ export { default as SignInPromptModal } from './components/Auth/SignInPromptModal';
114
+ export { SocialDivider } from './components/Auth/SocialDivider';
115
+ export type { SocialDividerProps } from './components/Auth/SocialDivider';
116
+ export { default as VerificationBanner } from './components/Auth/VerificationBanner';
117
+ export type { VerificationBannerProps } from './components/Auth/VerificationBanner';
118
+ export { SocialButton } from './components/Auth/SocialButton';
119
+ export type { SocialButtonProps, SocialProvider } from './components/Auth/SocialButton';
120
+ export { default as Dashboard } from './components/Dashboard/Dashboard';
121
+ export { default as CompanyDashboard } from './components/Dashboard/CompanyDashboard';
122
+ export { default as OnboardingDashboard } from './components/Onboarding/OnboardingDashboard';
123
+ export type { OnboardingDashboardProps } from './components/Onboarding/OnboardingDashboard';
124
+ export { default as OnboardingChecklist } from './components/Onboarding/OnboardingChecklist';
125
+ export type { OnboardingChecklistProps } from './components/Onboarding/OnboardingChecklist';
126
+ export { default as OnboardingModal } from "./components/Onboarding/OnboardingModal";
127
+ export { OnboardingProvider, useOnboardingContext } from "./components/Onboarding/OnboardingContext";
128
+ export { default as DashboardOnboardingSection } from "./components/Onboarding/DashboardOnboardingSection";
129
+ export type { OnboardingBackendFlags, OnboardingStep, OnboardingStepAction, OnboardingStepId, OnboardingStepStatus, ChecklistStep, } from "./types/onboarding";
130
+ export { mapBackendFlagsToSteps, calculateOnboardingProgress } from "./types/onboarding";
131
+ export { default as ShieldedActionButton } from './components/Shared/ShieldedActionButton';
132
+ export type { ShieldedActionButtonProps } from './components/Shared/ShieldedActionButton';
133
+ export { DirectoryShell, DirectoryToolbar, ViewModeToggle as DirectoryViewModeToggle } from "./components/Shared/Directory";
134
+ export type { DirectoryActiveFilter, DirectoryFilterOption, DirectoryFilterSection, DirectoryFilterValues, DirectoryPagination, DirectorySearchProps, DirectorySortOption, DirectorySortProps, DirectoryViewMode, } from "./components/Shared/Directory";
135
+ export type { CompanyDashboardData, CompanyEmployeeDashboardData, CompanyOwnerDashboardData, CompanyRecruiterDashboardData, DashboardRole, DashboardTab, DashboardTabChangeEvent, } from './types/dashboard';
136
+ export type { EmittedEvent, EmittedEventHandler, ListingEventContext } from './types/events';
137
+ export type { JobsListingEvent } from './types/events.jobs';
138
+ export type { CoursesListingEvent } from './types/events.courses';
139
+ export type { NewsListingEvent } from './types/events.news';
140
+ export type { FreelancersListingEvent } from './types/events.freelancers';
141
+ export type { NewsletterEvent } from './types/events.newsletter';
142
+ export type { NewsletterV2Props, NewsletterSubscribePayload } from './components/HomePage/NewsletterV2';
143
+ export type { SidebarNewsletterV2Props } from './components/HomePage/SidebarNewsletterV2';
144
+ export { default as FreelancerProfile } from './components/Freelancer/FreelancerProfile';
145
+ export { default as Freelancers } from './components/Freelancer/Freelancers';
146
+ export { default as FreelancersList } from './components/Freelancer/FreelancersList';
147
+ export { default as FreelancersContainer } from './components/Freelancer/FreelancersContainer';
148
+ export { default as FreelancerProfileContainer } from './components/Freelancer/FreelancerProfileContainer';
149
+ export { default as UserIdentityMenu } from "./components/Shared/Mobile/UserIdentityMenu";
150
+ export { default as TaxonomySuggestionTable } from "./components/Shared/Taxonomy/TaxonomySuggestionTable";
151
+ export { default as TaxonomySuggestionDetail } from "./components/Shared/Taxonomy/TaxonomySuggestionDetail";
152
+ export { default as TaxonomyApproveForm } from "./components/Shared/Taxonomy/TaxonomyApproveForm";
153
+ export { default as ExamplesPanel } from "./components/Shared/Taxonomy/ExamplesPanel";
154
+ export { default as OnboardingPopup } from "./components/Onboarding/OnboardingPopup";
155
+ export { CompanyOnboardingModal } from "./components/CompanyOnboarding";
156
+ export type { TaxonomySuggestion, TaxonomyApprovalPayload } from "./components/Shared/Taxonomy/types";
157
+ export { NotificationProvider, useNotification, NotificationViewport, NotificationTester, notify, dismiss, updateNotification, clearNotifications, } from "./components/Notification";
158
+ export { default as LanguageSchoolsList } from './components/LanguageSchools/LanguageSchoolsList';
159
+ export { default as LanguageSchoolDetail } from './components/LanguageSchools/LanguageSchoolDetail';
160
+ export { default as SchoolCard } from './components/LanguageSchools/components/SchoolCard';
161
+ export type { School, SchoolCourse, SchoolAccommodation, SchoolAddress, SchoolTaxonomyTerm, SchoolListingTier, SchoolsApiResponse, SchoolApiResponse, } from './types/school';
162
+ export type { NotificationAction, NotificationContextValue, NotificationPayload, NotificationPlacement, NotificationState, NotificationType, } from "./components/Notification";
163
+ export { LeadForm } from "./components/LeadForm";
164
+ export type { LeadFormProps } from "./components/LeadForm";
165
+ export { useLeadForm, useLeadMetadata } from "./hooks/use-lead-form";
166
+ export type { LeadFormData, LeadFormState, LeadFormResponse, LeadFormConfig, } from "./types/lead";
167
+ export { BUDGET_OPTIONS, TIMEFRAME_OPTIONS, LANGUAGE_OPTIONS, } from "./types/lead";
168
+ export { leadFormSchema, sanitizeLead, extractUtmParams, getCurrentLanguage, getAutoPopulatedMetadata, validateLeadData, } from "./services/lead-validation";
169
+ export { default as ProfileStrengthWidget } from "./components/Companies/components/admin/ProfileStrengthWidget";
170
+ export { default as InviteModal } from "./components/Companies/components/admin/InviteModal";
@@ -0,0 +1,15 @@
1
+ import { type ClassValue } from "clsx";
2
+ /**
3
+ * Merges Tailwind CSS classes with intelligent conflict resolution
4
+ * Combines clsx and tailwind-merge to handle Tailwind class conflicts
5
+ *
6
+ * @param inputs - Class values to merge
7
+ * @returns Merged class string
8
+ *
9
+ * @example
10
+ * ```tsx
11
+ * cn("px-4 py-2", isActive && "bg-primary")
12
+ * cn("text-sm", "text-lg") // "text-lg" wins due to merge
13
+ * ```
14
+ */
15
+ export declare function cn(...inputs: ClassValue[]): string;
@@ -0,0 +1,32 @@
1
+ /**
2
+ * Alpha Vantage Research Service — Quality Compounder Framework
3
+ *
4
+ * Provider: Alpha Vantage (https://www.alphavantage.co)
5
+ * Free tier: 25 requests/day · All global symbols · No symbol restrictions
6
+ * API key: Free at https://www.alphavantage.co/support/#api-key
7
+ *
8
+ * CORS note: AV does not allow direct browser calls (no CORS headers).
9
+ * In development (Vite), requests go through the /proxy/av proxy defined in
10
+ * vite.config.js which forwards to alphavantage.co server-side.
11
+ * Set NEXT_PUBLIC_AV_API_KEY in .env.local, or enter the key in the UI.
12
+ *
13
+ * Endpoints used:
14
+ * OVERVIEW → ReturnOnEquityTTM (f1 proxy), QuarterlyRevenueGrowthYOY (f4),
15
+ * PEGRatio (v2), AnalystTargetPrice (v3 proxy), Name, Symbol
16
+ * GLOBAL_QUOTE → Current price (for margin of safety calc in v3)
17
+ *
18
+ * Limitations vs FMP:
19
+ * f2 FCF conversion — not in OVERVIEW (manual)
20
+ * f3 Net debt/EBITDA — not in OVERVIEW (manual)
21
+ * v1 FCF yield — not in OVERVIEW (manual)
22
+ *
23
+ * v3 uses analyst consensus target vs current price as a margin-of-safety proxy
24
+ * (not a DCF). This is less rigorous but directionally useful.
25
+ */
26
+ import type { ResearchResult } from "./research";
27
+ /**
28
+ * Research a company via Alpha Vantage.
29
+ * Accepts any global ticker (no symbol restrictions on free plan).
30
+ * Uses 2 of your 25 daily API calls.
31
+ */
32
+ export declare function autoResearchAV(ticker: string, apiKey?: string): Promise<ResearchResult>;
@@ -0,0 +1,53 @@
1
+ export declare function sendCareerAssistantMessageMock(messages: {
2
+ role: string;
3
+ content: string;
4
+ }[]): Promise<{
5
+ reply: string;
6
+ toolCalls: {
7
+ name: string;
8
+ args: {};
9
+ result: {
10
+ jobs: {
11
+ id: string;
12
+ title: string;
13
+ company: string;
14
+ location: string;
15
+ salary: string;
16
+ tags: string[];
17
+ remote: boolean;
18
+ }[];
19
+ };
20
+ }[];
21
+ } | {
22
+ reply: string;
23
+ toolCalls: {
24
+ name: string;
25
+ args: {};
26
+ result: {
27
+ companies: {
28
+ id: string;
29
+ name: string;
30
+ type: string;
31
+ location: string;
32
+ openRoles: number;
33
+ licenses: string[];
34
+ }[];
35
+ };
36
+ }[];
37
+ } | {
38
+ reply: string;
39
+ toolCalls: {
40
+ name: string;
41
+ args: {};
42
+ result: {
43
+ market: string;
44
+ avgSalary: string;
45
+ hiringTrend: string;
46
+ remoteRatio: string;
47
+ topRoles: string[];
48
+ };
49
+ }[];
50
+ } | {
51
+ reply: string;
52
+ toolCalls?: undefined;
53
+ }>;
@@ -0,0 +1,74 @@
1
+ export interface FMPProfile {
2
+ symbol: string;
3
+ companyName: string;
4
+ sector: string;
5
+ industry: string;
6
+ mktCap: number;
7
+ description: string;
8
+ country: string;
9
+ exchange: string;
10
+ image: string;
11
+ }
12
+ export interface FMPKeyMetrics {
13
+ roicTTM: number | null;
14
+ fcfYieldTTM: number | null;
15
+ netDebtToEBITDATTM: number | null;
16
+ pegRatioTTM: number | null;
17
+ pfcfRatioTTM: number | null;
18
+ peRatioTTM: number | null;
19
+ marketCapTTM: number | null;
20
+ dividendYieldTTM: number | null;
21
+ }
22
+ export interface FMPRatios {
23
+ grossProfitMarginTTM: number | null;
24
+ operatingProfitMarginTTM: number | null;
25
+ netProfitMarginTTM: number | null;
26
+ freeCashFlowPerShareTTM: number | null;
27
+ netIncomePerShareTTM: number | null;
28
+ currentRatioTTM: number | null;
29
+ debtToEquityTTM: number | null;
30
+ }
31
+ export interface FMPGrowth {
32
+ revenueGrowth: number | null;
33
+ freeCashFlowGrowth: number | null;
34
+ epsgrowth: number | null;
35
+ operatingCashFlowGrowth: number | null;
36
+ netIncomeGrowth: number | null;
37
+ }
38
+ export interface FMPScore {
39
+ piotroskiScore: number | null;
40
+ altmanZScore: number | null;
41
+ }
42
+ export interface FMPAnalystRec {
43
+ strongBuy: number;
44
+ buy: number;
45
+ hold: number;
46
+ sell: number;
47
+ strongSell: number;
48
+ }
49
+ export interface EnrichedCompanyData {
50
+ ticker: string;
51
+ profile: FMPProfile | null;
52
+ keyMetrics: FMPKeyMetrics | null;
53
+ ratios: FMPRatios | null;
54
+ growth: FMPGrowth | null;
55
+ score: FMPScore | null;
56
+ analystRec: FMPAnalystRec | null;
57
+ fetchedAt: number;
58
+ }
59
+ export declare function clearCache(ticker: string): void;
60
+ export declare function clearAllCache(): void;
61
+ export declare function fetchEnrichedCompany(ticker: string, apiKey: string, forceRefresh?: boolean): Promise<EnrichedCompanyData>;
62
+ export interface SearchResult {
63
+ symbol: string;
64
+ name: string;
65
+ exchangeShortName: string;
66
+ stockExchange: string;
67
+ }
68
+ export declare function searchTicker(query: string, apiKey: string): Promise<SearchResult[]>;
69
+ export interface BatchProgress {
70
+ done: number;
71
+ total: number;
72
+ current: string;
73
+ }
74
+ export declare function fetchWatchlistBatch(tickers: string[], apiKey: string, onProgress?: (p: BatchProgress) => void, delayMs?: number): Promise<Map<string, EnrichedCompanyData>>;
@@ -0,0 +1,105 @@
1
+ /**
2
+ * Lead Form Validation Schema and Utilities
3
+ */
4
+ import { z } from 'zod';
5
+ import { LeadFormData } from '../types/lead';
6
+ /**
7
+ * Zod validation schema for lead form
8
+ */
9
+ export declare const leadFormSchema: z.ZodObject<{
10
+ name: z.ZodString;
11
+ email: z.ZodString;
12
+ phone: z.ZodString;
13
+ country: z.ZodString;
14
+ budget: z.ZodEffects<z.ZodOptional<z.ZodEnum<["not-decided", "1k-2k", "2k-4k", "4k-6k", "6k+"]>>, "not-decided" | "1k-2k" | "2k-4k" | "4k-6k" | "6k+" | undefined, unknown>;
15
+ timeframe: z.ZodEffects<z.ZodOptional<z.ZodEnum<["immediate", "1-3-months", "3-6-months", "not-decided"]>>, "not-decided" | "immediate" | "1-3-months" | "3-6-months" | undefined, unknown>;
16
+ source_page: z.ZodOptional<z.ZodString>;
17
+ campaign: z.ZodOptional<z.ZodString>;
18
+ language: z.ZodOptional<z.ZodEnum<["es", "en"]>>;
19
+ utm_source: z.ZodOptional<z.ZodString>;
20
+ utm_medium: z.ZodOptional<z.ZodString>;
21
+ utm_campaign: z.ZodOptional<z.ZodString>;
22
+ referrer: z.ZodNullable<z.ZodOptional<z.ZodString>>;
23
+ timestamp: z.ZodOptional<z.ZodNumber>;
24
+ }, "strip", z.ZodTypeAny, {
25
+ name: string;
26
+ email: string;
27
+ country: string;
28
+ phone: string;
29
+ timestamp?: number | undefined;
30
+ referrer?: string | null | undefined;
31
+ language?: "en" | "es" | undefined;
32
+ source_page?: string | undefined;
33
+ campaign?: string | undefined;
34
+ utm_source?: string | undefined;
35
+ utm_medium?: string | undefined;
36
+ utm_campaign?: string | undefined;
37
+ budget?: "not-decided" | "1k-2k" | "2k-4k" | "4k-6k" | "6k+" | undefined;
38
+ timeframe?: "not-decided" | "immediate" | "1-3-months" | "3-6-months" | undefined;
39
+ }, {
40
+ name: string;
41
+ email: string;
42
+ country: string;
43
+ phone: string;
44
+ timestamp?: number | undefined;
45
+ referrer?: string | null | undefined;
46
+ language?: "en" | "es" | undefined;
47
+ source_page?: string | undefined;
48
+ campaign?: string | undefined;
49
+ utm_source?: string | undefined;
50
+ utm_medium?: string | undefined;
51
+ utm_campaign?: string | undefined;
52
+ budget?: unknown;
53
+ timeframe?: unknown;
54
+ }>;
55
+ export type LeadFormValidation = z.infer<typeof leadFormSchema>;
56
+ /**
57
+ * Sanitize and prepare lead data for submission
58
+ */
59
+ export declare const sanitizeLead: (data: LeadFormData) => LeadFormValidation;
60
+ /**
61
+ * Extract UTM parameters from URL query string
62
+ */
63
+ export declare const extractUtmParams: () => {
64
+ utm_source?: undefined;
65
+ utm_medium?: undefined;
66
+ utm_campaign?: undefined;
67
+ } | {
68
+ utm_source: string | undefined;
69
+ utm_medium: string | undefined;
70
+ utm_campaign: string | undefined;
71
+ };
72
+ /**
73
+ * Get current language from document or navigator
74
+ */
75
+ export declare const getCurrentLanguage: () => "es" | "en";
76
+ /**
77
+ * Auto-populate hidden metadata fields
78
+ */
79
+ export declare const getAutoPopulatedMetadata: (sourcePage?: string, campaign?: string, language?: "es" | "en") => {
80
+ source_page?: undefined;
81
+ campaign?: undefined;
82
+ language?: undefined;
83
+ utm_source?: undefined;
84
+ utm_medium?: undefined;
85
+ utm_campaign?: undefined;
86
+ referrer?: undefined;
87
+ timestamp?: undefined;
88
+ } | {
89
+ source_page: string;
90
+ campaign: string | undefined;
91
+ language: "en" | "es";
92
+ utm_source: string | undefined;
93
+ utm_medium: string | undefined;
94
+ utm_campaign: string | undefined;
95
+ referrer: string | undefined;
96
+ timestamp: number;
97
+ };
98
+ /**
99
+ * Validate lead data
100
+ */
101
+ export declare const validateLeadData: (data: unknown) => Promise<{
102
+ success: boolean;
103
+ data?: LeadFormValidation;
104
+ errors?: Record<string, string>;
105
+ }>;
@@ -0,0 +1,71 @@
1
+ /**
2
+ * FMP Research Service — Quality Compounder Framework
3
+ *
4
+ * Endpoint reference: docs/FMP_api_docs_free_tier.md
5
+ *
6
+ * ALL v3/v4 endpoints are legacy-blocked as of Aug 2025.
7
+ * Only /stable/* endpoints work on the current free tier.
8
+ *
9
+ * Verified working stable endpoints (tested April 2026):
10
+ * Search : GET /stable/search-name?query={q}&limit=1 → any symbol ✅
11
+ * Metrics : GET /stable/key-metrics?symbol={sym}&period=annual
12
+ * Ratios : GET /stable/ratios?symbol={sym}&period=annual
13
+ * Growth : GET /stable/financial-growth?symbol={sym}&period=annual&limit=1
14
+ * DCF : GET /stable/discounted-cash-flow?symbol={sym}
15
+ * Company : GET /stable/financial-statement-symbol-list → any symbol ✅
16
+ *
17
+ * FREE TIER SYMBOL RESTRICTION (key-metrics, ratios, financial-growth, DCF):
18
+ * Only the ~80 symbols in FREE_TIER_SYMBOLS below return data.
19
+ * Any other ticker will get an empty array → auto-research silently returns nulls.
20
+ * Upgrade to Starter ($) to unlock all US exchange symbols.
21
+ *
22
+ * NOT available on stable free tier (return empty arrays):
23
+ * - Piotroski / financial score
24
+ * - Earnings surprises
25
+ * - Insider trading
26
+ *
27
+ * API key: set NEXT_PUBLIC_FMP_API_KEY in .env.local (never hardcode)
28
+ */
29
+ export declare const FREE_TIER_SYMBOLS: Set<string>;
30
+ /** Returns true if the ticker is available for financial data on the free plan */
31
+ export declare function isFreeTierSupported(ticker: string): boolean;
32
+ export interface ResearchResult {
33
+ ticker: string;
34
+ company: string;
35
+ scores: Record<string, number | null>;
36
+ raw: {
37
+ roic: number | null;
38
+ fcfYield: number | null;
39
+ fcfConversion: number | null;
40
+ netDebtEbitda: number | null;
41
+ revenueGrowth: number | null;
42
+ pegRatio: number | null;
43
+ pfcf: number | null;
44
+ dcfValue: number | null;
45
+ currentPrice: number | null;
46
+ marginOfSafety: number | null;
47
+ };
48
+ }
49
+ /**
50
+ * Fetch and score a company from FMP.
51
+ * Pass apiKey to override the environment variable (e.g. from component prop).
52
+ */
53
+ export declare function autoResearch(companyName: string, apiKey?: string): Promise<ResearchResult>;
54
+ /**
55
+ * Fetch and cache the full list of companies with financial statements.
56
+ * Hits the API once per 24 hours, then returns the cached list.
57
+ */
58
+ export declare function getCompanyList(): Promise<Array<{
59
+ symbol: string;
60
+ name: string;
61
+ }>>;
62
+ /**
63
+ * Filter the cached company list locally by symbol or name.
64
+ */
65
+ export declare function searchCompanies(query: string, companies: Array<{
66
+ symbol: string;
67
+ name: string;
68
+ }>, limit?: number): Array<{
69
+ symbol: string;
70
+ name: string;
71
+ }>;
@@ -0,0 +1,35 @@
1
+ import type { EnrichedCompanyData } from "./fmpService";
2
+ export interface DerivedScores {
3
+ f1: number | null;
4
+ f2: number | null;
5
+ f3: number | null;
6
+ f4: number | null;
7
+ v1: number | null;
8
+ v2: number | null;
9
+ v3: number | null;
10
+ m1: null;
11
+ m2: null;
12
+ m3: null;
13
+ m4: null;
14
+ g1: null;
15
+ g2: null;
16
+ g3: null;
17
+ }
18
+ export interface DerivedGateSuggestions {
19
+ gate3: boolean | null;
20
+ gate1: null;
21
+ gate2: null;
22
+ gate4: null;
23
+ gate5: null;
24
+ }
25
+ export interface ReasoningMap {
26
+ [criterionId: string]: string;
27
+ }
28
+ export interface ScoringResult {
29
+ scores: DerivedScores;
30
+ gateSuggestions: DerivedGateSuggestions;
31
+ reasoning: ReasoningMap;
32
+ dataQuality: "full" | "partial" | "minimal";
33
+ }
34
+ export declare function deriveScores(data: EnrichedCompanyData): ScoringResult;
35
+ export declare function quickScore(data: EnrichedCompanyData): number | null;
@@ -0,0 +1,18 @@
1
+ import type { EnrichedCompanyData } from "./fmpService";
2
+ export interface WatchlistEntry {
3
+ ticker: string;
4
+ addedAt: number;
5
+ notes?: string;
6
+ }
7
+ export interface MonthlySnapshot {
8
+ takenAt: number;
9
+ scores: Record<string, number | null>;
10
+ }
11
+ export declare function getWatchlist(): WatchlistEntry[];
12
+ export declare function saveWatchlist(entries: WatchlistEntry[]): void;
13
+ export declare function addToWatchlist(ticker: string, notes?: string): void;
14
+ export declare function removeFromWatchlist(ticker: string): void;
15
+ export declare function isInWatchlist(ticker: string): boolean;
16
+ export declare function saveSnapshot(dataMap: Map<string, EnrichedCompanyData>): void;
17
+ export declare function getLastSnapshot(): MonthlySnapshot | null;
18
+ export declare function getScoreDelta(ticker: string, currentScore: number | null): number | null;
@@ -0,0 +1,7 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ declare const meta: Meta;
3
+ export default meta;
4
+ type Story = StoryObj;
5
+ export declare const HeaderAlternativeShowcase: Story;
6
+ export declare const NewsPageShowcase: Story;
7
+ export declare const CoursesPageShowcase: Story;