@mohasinac/appkit 3.4.7 → 3.5.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.
Files changed (606) hide show
  1. package/dist/_internal/client/features/classified/ClassifiedDetailView.js +1 -1
  2. package/dist/_internal/client/features/digital-code/CodeRevealPanel.js +1 -1
  3. package/dist/_internal/client/features/digital-code/DigitalCodeDetailView.js +1 -1
  4. package/dist/_internal/client/features/filters/filter-load-options.js +10 -9
  5. package/dist/_internal/client/features/layout/DashboardLayoutClient.d.ts +6 -1
  6. package/dist/_internal/client/features/layout/DashboardLayoutClient.js +11 -4
  7. package/dist/_internal/client/features/live/LiveItemDetailView.js +2 -2
  8. package/dist/_internal/client/features/maintenance/views/AnalysisRunnerView.js +10 -3
  9. package/dist/_internal/client/features/maintenance/views/ServerErrorsListView.js +2 -2
  10. package/dist/_internal/client/scaffolds/DashboardScaffold.js +3 -1
  11. package/dist/_internal/server/features/checkout/actions.d.ts +16 -0
  12. package/dist/_internal/server/features/checkout/actions.js +149 -35
  13. package/dist/_internal/server/features/checkout/bundle-expansion.d.ts +31 -0
  14. package/dist/_internal/server/features/checkout/bundle-expansion.js +41 -0
  15. package/dist/_internal/server/features/lottery/actions.js +14 -4
  16. package/dist/_internal/server/features/maintenance/analyze.js +4 -2
  17. package/dist/_internal/server/features/orders/actions.js +9 -0
  18. package/dist/_internal/server/features/orders/adapters.js +19 -0
  19. package/dist/_internal/server/features/seo/robots.js +1 -1
  20. package/dist/_internal/server/functions/firestore.d.ts +47 -1
  21. package/dist/_internal/server/functions/firestore.js +56 -1
  22. package/dist/_internal/server/functions/scheduled.d.ts +2 -1
  23. package/dist/_internal/server/functions/scheduled.js +9 -1
  24. package/dist/_internal/server/jobs/core/catalogueImageStalenessReminder.d.ts +10 -0
  25. package/dist/_internal/server/jobs/core/catalogueImageStalenessReminder.js +49 -0
  26. package/dist/_internal/server/jobs/core/cleanupRtdbEvents.js +32 -0
  27. package/dist/_internal/server/jobs/core/hardBanCascade.d.ts +26 -0
  28. package/dist/_internal/server/jobs/core/hardBanCascade.js +179 -0
  29. package/dist/_internal/server/jobs/core/index.d.ts +4 -1
  30. package/dist/_internal/server/jobs/core/index.js +4 -1
  31. package/dist/_internal/server/jobs/core/jobRunners.d.ts +28 -0
  32. package/dist/_internal/server/jobs/core/jobRunners.js +37 -0
  33. package/dist/_internal/server/jobs/core/onCatalogueSubmittedForApproval.d.ts +15 -0
  34. package/dist/_internal/server/jobs/core/onCatalogueSubmittedForApproval.js +38 -0
  35. package/dist/_internal/server/jobs/core/onJobCreated.d.ts +22 -0
  36. package/dist/_internal/server/jobs/core/onJobCreated.js +59 -0
  37. package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.d.ts +6 -1
  38. package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.js +5 -2
  39. package/dist/_internal/server/jobs/handlers/catalogueImageStalenessReminder.d.ts +2 -0
  40. package/dist/_internal/server/jobs/handlers/catalogueImageStalenessReminder.js +2 -0
  41. package/dist/_internal/server/jobs/handlers/index.d.ts +6 -0
  42. package/dist/_internal/server/jobs/handlers/index.js +8 -0
  43. package/dist/_internal/server/jobs/handlers/onCatalogueSubmittedForApproval.d.ts +12 -0
  44. package/dist/_internal/server/jobs/handlers/onCatalogueSubmittedForApproval.js +20 -0
  45. package/dist/_internal/server/jobs/handlers/onJobCreated.d.ts +3 -0
  46. package/dist/_internal/server/jobs/handlers/onJobCreated.js +9 -0
  47. package/dist/_internal/server/jobs/handlers/onShipmentAllocationSync.d.ts +25 -0
  48. package/dist/_internal/server/jobs/handlers/onShipmentAllocationSync.js +71 -0
  49. package/dist/_internal/server/jobs/handlers/onShipmentDeleted.d.ts +14 -0
  50. package/dist/_internal/server/jobs/handlers/onShipmentDeleted.js +23 -0
  51. package/dist/_internal/server/jobs/handlers/onShipmentItemWrite.d.ts +17 -0
  52. package/dist/_internal/server/jobs/handlers/onShipmentItemWrite.js +26 -0
  53. package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.js +3 -1
  54. package/dist/_internal/shared/actions/action-registry.d.ts +1 -1
  55. package/dist/_internal/shared/actions/action-registry.js +136 -0
  56. package/dist/_internal/shared/features/blog/schema.d.ts +8 -8
  57. package/dist/_internal/shared/features/brands/schema.d.ts +4 -4
  58. package/dist/_internal/shared/features/categories/bundle-schemas.d.ts +8 -8
  59. package/dist/_internal/shared/features/events/schema.d.ts +4 -4
  60. package/dist/_internal/shared/features/products/schema.d.ts +8 -8
  61. package/dist/_internal/shared/features/promotions/schema.d.ts +4 -4
  62. package/dist/_internal/shared/features/reviews/schema.d.ts +4 -4
  63. package/dist/client/api/useFeatureFlags.d.ts +22 -0
  64. package/dist/client/api/useFeatureFlags.js +27 -0
  65. package/dist/client/observability/reportClientError.js +3 -2
  66. package/dist/client.d.ts +4 -2
  67. package/dist/client.js +2 -1
  68. package/dist/configs/next.js +1 -0
  69. package/dist/constants/api-endpoints.d.ts +279 -3
  70. package/dist/constants/api-endpoints.js +130 -2
  71. package/dist/core/hooks/useSyncManager.js +5 -4
  72. package/dist/errors/conflict-error.d.ts +4 -0
  73. package/dist/errors/conflict-error.js +6 -0
  74. package/dist/errors/index.d.ts +1 -0
  75. package/dist/errors/index.js +1 -0
  76. package/dist/features/about/components/FeesView.js +2 -2
  77. package/dist/features/about/components/HelpPageView.js +2 -2
  78. package/dist/features/about/components/HowAuctionsWorkView.js +2 -2
  79. package/dist/features/about/components/HowCheckoutWorksView.js +2 -2
  80. package/dist/features/about/components/HowEmiWorksView.js +2 -2
  81. package/dist/features/about/components/HowOffersWorkView.js +3 -3
  82. package/dist/features/about/components/HowOrdersWorkView.js +3 -3
  83. package/dist/features/about/components/HowPayoutsWorkView.js +2 -2
  84. package/dist/features/about/components/HowPreOrdersWorkView.js +2 -2
  85. package/dist/features/about/components/HowReviewsWorkView.js +2 -2
  86. package/dist/features/about/components/PublicProfileView.d.ts +8 -1
  87. package/dist/features/about/components/PublicProfileView.js +11 -9
  88. package/dist/features/about/components/SecurityPrivacyView.js +2 -2
  89. package/dist/features/about/components/UnauthorizedView.js +2 -2
  90. package/dist/features/account/components/AddressBook.js +1 -1
  91. package/dist/features/account/components/AddressesIndexListing.js +1 -1
  92. package/dist/features/account/components/NotificationBell.js +5 -5
  93. package/dist/features/account/components/NotificationPreferencesPanel.js +5 -2
  94. package/dist/features/account/components/UserOffersPanel.js +5 -4
  95. package/dist/features/account/components/UserSidebar.js +2 -2
  96. package/dist/features/account/components/UserSupportView.js +3 -3
  97. package/dist/features/account/schemas/index.d.ts +12 -12
  98. package/dist/features/addresses/schemas/index.d.ts +6 -6
  99. package/dist/features/admin/components/AdminAdEditorView.js +3 -3
  100. package/dist/features/admin/components/AdminAddressEditorView.js +3 -3
  101. package/dist/features/admin/components/AdminAdsView.js +3 -3
  102. package/dist/features/admin/components/AdminBlogEditorView.js +1 -1
  103. package/dist/features/admin/components/AdminBlogView.js +12 -15
  104. package/dist/features/admin/components/AdminBrandEditorView.js +1 -1
  105. package/dist/features/admin/components/AdminBrandsView.js +12 -13
  106. package/dist/features/admin/components/AdminBundleEditorView.js +5 -4
  107. package/dist/features/admin/components/AdminBundlesView.js +32 -23
  108. package/dist/features/admin/components/AdminCarouselEditorView.js +5 -5
  109. package/dist/features/admin/components/AdminCarouselView.js +2 -2
  110. package/dist/features/admin/components/AdminCatalogGuideView.js +1 -1
  111. package/dist/features/admin/components/AdminCategoriesView.js +12 -13
  112. package/dist/features/admin/components/AdminCategoryEditorView.js +2 -2
  113. package/dist/features/admin/components/AdminContactEditorView.js +2 -2
  114. package/dist/features/admin/components/AdminCouponEditorView.d.ts +10 -1
  115. package/dist/features/admin/components/AdminCouponEditorView.js +7 -2
  116. package/dist/features/admin/components/AdminCouponsView.js +32 -27
  117. package/dist/features/admin/components/AdminEmployeeEditorView.js +3 -3
  118. package/dist/features/admin/components/AdminFaqEditorView.js +1 -1
  119. package/dist/features/admin/components/AdminFaqsView.js +20 -20
  120. package/dist/features/admin/components/AdminFeatureEditorView.js +5 -5
  121. package/dist/features/admin/components/AdminFeaturesView.js +9 -10
  122. package/dist/features/admin/components/AdminFilterBar.js +1 -1
  123. package/dist/features/admin/components/AdminFulfillmentView.js +4 -4
  124. package/dist/features/admin/components/AdminGuideHubView.js +2 -2
  125. package/dist/features/admin/components/AdminMediaView.js +3 -2
  126. package/dist/features/admin/components/AdminNavigationView.js +1 -1
  127. package/dist/features/admin/components/AdminOrderEditorView.js +3 -3
  128. package/dist/features/admin/components/AdminOrdersView.js +21 -30
  129. package/dist/features/admin/components/AdminPageHeader.js +3 -3
  130. package/dist/features/admin/components/AdminPayoutsView.js +8 -8
  131. package/dist/features/admin/components/AdminPrizeDrawsView.js +8 -9
  132. package/dist/features/admin/components/AdminProductEditorView.d.ts +9 -1
  133. package/dist/features/admin/components/AdminProductEditorView.js +7 -4
  134. package/dist/features/admin/components/AdminProductsView.js +30 -41
  135. package/dist/features/admin/components/AdminReviewsView.js +14 -17
  136. package/dist/features/admin/components/AdminScammerEditorView.js +5 -5
  137. package/dist/features/admin/components/AdminSectionsView.js +3 -3
  138. package/dist/features/admin/components/AdminSessionsView.js +8 -10
  139. package/dist/features/admin/components/AdminSidebar.js +2 -2
  140. package/dist/features/admin/components/AdminSiteSettingsView.js +10 -3
  141. package/dist/features/admin/components/AdminStoreEditorView.js +4 -5
  142. package/dist/features/admin/components/AdminStoresView.js +18 -13
  143. package/dist/features/admin/components/AdminSupportTicketDetailView.js +7 -7
  144. package/dist/features/admin/components/AdminTeamView.js +9 -5
  145. package/dist/features/admin/components/AdminUsersView.js +19 -15
  146. package/dist/features/admin/components/AdminViewCards.js +5 -5
  147. package/dist/features/admin/components/DashboardStats.js +1 -1
  148. package/dist/features/admin/components/DataListingView.js +2 -2
  149. package/dist/features/admin/components/DataTable.js +2 -2
  150. package/dist/features/admin/components/DrawerFormFooter.js +1 -1
  151. package/dist/features/admin/components/analytics/AdminAnalyticsCharts.js +2 -2
  152. package/dist/features/admin/components/analytics/AdminStatCard.js +1 -1
  153. package/dist/features/admin/hooks/useAdminListing.d.ts +3 -2
  154. package/dist/features/admin/hooks/useAdminListing.js +8 -2
  155. package/dist/features/admin/permission-map.js +2 -0
  156. package/dist/features/admin/schemas/firestore.d.ts +7 -0
  157. package/dist/features/admin/schemas/firestore.js +4 -0
  158. package/dist/features/auctions/components/AuctionBidsTable.js +1 -1
  159. package/dist/features/auctions/components/AuctionDetailPageView.js +7 -7
  160. package/dist/features/auctions/components/MarketplaceAuctionCard.js +3 -3
  161. package/dist/features/auctions/components/MarketplaceAuctionGrid.js +4 -4
  162. package/dist/features/auctions/components/PlaceBidFormClient.js +1 -1
  163. package/dist/features/auctions/schemas/index.d.ts +16 -16
  164. package/dist/features/auth/permissions/constants.d.ts +1 -1
  165. package/dist/features/auth/permissions/constants.js +2 -0
  166. package/dist/features/auth/schemas/index.d.ts +6 -6
  167. package/dist/features/before-after/schemas/index.d.ts +3 -3
  168. package/dist/features/blog/actions/blog-actions.d.ts +32 -32
  169. package/dist/features/blog/components/BlogFeaturedCard.js +2 -2
  170. package/dist/features/blog/components/BlogIndexListing.js +2 -2
  171. package/dist/features/blog/components/BlogListView.js +4 -4
  172. package/dist/features/blog/components/BlogPostView.js +4 -4
  173. package/dist/features/blog/schemas/index.d.ts +77 -77
  174. package/dist/features/cart/components/CartDrawer.js +2 -2
  175. package/dist/features/catalogue/actions/approve-catalogue-listing.d.ts +12 -0
  176. package/dist/features/catalogue/actions/approve-catalogue-listing.js +50 -0
  177. package/dist/features/catalogue/actions/list-from-catalogue.d.ts +17 -0
  178. package/dist/features/catalogue/actions/list-from-catalogue.js +50 -0
  179. package/dist/features/catalogue/actions/submit-for-approval.d.ts +8 -0
  180. package/dist/features/catalogue/actions/submit-for-approval.js +30 -0
  181. package/dist/features/catalogue/components/AdminCatalogueApprovalsView.d.ts +2 -0
  182. package/dist/features/catalogue/components/AdminCatalogueApprovalsView.js +53 -0
  183. package/dist/features/catalogue/components/CatalogueItemEditorView.d.ts +7 -0
  184. package/dist/features/catalogue/components/CatalogueItemEditorView.js +79 -0
  185. package/dist/features/catalogue/components/PublicCatalogueView.d.ts +5 -0
  186. package/dist/features/catalogue/components/PublicCatalogueView.js +22 -0
  187. package/dist/features/catalogue/components/UserCatalogueView.d.ts +12 -0
  188. package/dist/features/catalogue/components/UserCatalogueView.js +51 -0
  189. package/dist/features/catalogue/index.d.ts +12 -0
  190. package/dist/features/catalogue/index.js +9 -0
  191. package/dist/features/catalogue/repository/catalogue.repository.d.ts +39 -0
  192. package/dist/features/catalogue/repository/catalogue.repository.js +68 -0
  193. package/dist/features/catalogue/schemas/firestore.d.ts +47 -0
  194. package/dist/features/catalogue/schemas/firestore.js +22 -0
  195. package/dist/features/catalogue/schemas/index.d.ts +2 -0
  196. package/dist/features/catalogue/schemas/index.js +2 -0
  197. package/dist/features/catalogue/schemas/validation.d.ts +71 -0
  198. package/dist/features/catalogue/schemas/validation.js +25 -0
  199. package/dist/features/catalogue/utils/freshness.d.ts +10 -0
  200. package/dist/features/catalogue/utils/freshness.js +15 -0
  201. package/dist/features/catalogue/utils/product-from-item.d.ts +15 -0
  202. package/dist/features/catalogue/utils/product-from-item.js +34 -0
  203. package/dist/features/categories/components/BrandDetailPageView.js +1 -1
  204. package/dist/features/categories/components/BrandDetailTabs.js +2 -2
  205. package/dist/features/categories/components/BundleCollage.js +2 -2
  206. package/dist/features/categories/components/BundleItemsPicker.js +3 -2
  207. package/dist/features/categories/components/CategoriesIndexListing.js +8 -6
  208. package/dist/features/categories/components/CategoryBundlesListing.js +10 -4
  209. package/dist/features/categories/components/CategoryDetailPageView.js +1 -1
  210. package/dist/features/categories/components/CategoryDetailTabs.js +2 -2
  211. package/dist/features/categories/components/CategoryGrid.js +3 -3
  212. package/dist/features/categories/components/CategoryProductsListing.js +1 -1
  213. package/dist/features/categories/components/CategorySortSelect.js +1 -1
  214. package/dist/features/categories/components/CategoryStoresListing.js +1 -1
  215. package/dist/features/categories/components/CategoryTableColumns.js +1 -1
  216. package/dist/features/categories/components/CategoryTree.js +2 -2
  217. package/dist/features/categories/components/ConcernCard.js +1 -1
  218. package/dist/features/categories/hooks/useCategories.js +1 -1
  219. package/dist/features/categories/schemas/index.d.ts +32 -32
  220. package/dist/features/classified/components/ClassifiedFilters.js +2 -2
  221. package/dist/features/classified/components/ClassifiedIndexListing.js +9 -3
  222. package/dist/features/collections/schemas/index.d.ts +2 -2
  223. package/dist/features/consultation/components/ConsultationForm.js +1 -1
  224. package/dist/features/consultation/schemas/index.d.ts +10 -10
  225. package/dist/features/contact/components/ContactForm.js +4 -4
  226. package/dist/features/contact/components/ContactInfoSidebar.js +1 -1
  227. package/dist/features/contact/components/ContactPageView.js +2 -1
  228. package/dist/features/copilot/components/AdminCopilotView.js +5 -4
  229. package/dist/features/corporate/schemas/index.d.ts +2 -2
  230. package/dist/features/digital-codes/components/DigitalCodesIndexListing.js +3 -3
  231. package/dist/features/events/components/AdminEventEditorView.js +4 -4
  232. package/dist/features/events/components/AdminEventEntriesView.js +2 -2
  233. package/dist/features/events/components/AdminEventsView.js +8 -8
  234. package/dist/features/events/components/EventBanner.js +1 -1
  235. package/dist/features/events/components/EventCard.js +3 -3
  236. package/dist/features/events/components/EventLeaderboard.js +1 -1
  237. package/dist/features/events/components/EventOfferCard.js +1 -1
  238. package/dist/features/events/components/EventPollWidget.js +6 -5
  239. package/dist/features/events/components/EventRaffleEntryForm.js +1 -1
  240. package/dist/features/events/components/EventRaffleWinnerView.js +5 -5
  241. package/dist/features/events/components/EventRafflesSection.js +1 -1
  242. package/dist/features/events/components/EventSaleBanner.js +1 -1
  243. package/dist/features/events/components/EventsIndexListing.js +4 -2
  244. package/dist/features/events/components/EventsListView.js +2 -2
  245. package/dist/features/events/components/SpinWheelView.js +11 -5
  246. package/dist/features/events/schemas/index.d.ts +100 -100
  247. package/dist/features/faq/actions/faq-actions.d.ts +6 -6
  248. package/dist/features/faq/components/ContactCTA.js +3 -3
  249. package/dist/features/faq/components/FAQCategorySidebar.js +2 -2
  250. package/dist/features/faq/components/FAQHelpfulButtons.js +3 -3
  251. package/dist/features/faq/schemas/index.d.ts +12 -12
  252. package/dist/features/filters/AsyncFacetSection.js +4 -4
  253. package/dist/features/filters/FilterFacetSection.js +8 -8
  254. package/dist/features/filters/RangeFilter.js +2 -2
  255. package/dist/features/filters/SwitchFilter.js +1 -1
  256. package/dist/features/forms/Checkbox.js +2 -8
  257. package/dist/features/forms/Input.js +2 -1
  258. package/dist/features/forms/Radio.js +3 -3
  259. package/dist/features/forms/Select.d.ts +1 -1
  260. package/dist/features/forms/Select.js +3 -2
  261. package/dist/features/forms/Slider.js +5 -11
  262. package/dist/features/forms/Textarea.js +2 -1
  263. package/dist/features/grouped/schemas/index.d.ts +6 -6
  264. package/dist/features/homepage/actions/homepage-section-actions.d.ts +4 -4
  265. package/dist/features/homepage/components/AdvertisementBanner.js +4 -4
  266. package/dist/features/homepage/components/AnnouncementBar.js +3 -3
  267. package/dist/features/homepage/components/BeforeAfterCard.js +1 -1
  268. package/dist/features/homepage/components/BrandsSection.js +9 -9
  269. package/dist/features/homepage/components/CTABannerSection.js +1 -1
  270. package/dist/features/homepage/components/CharacterHotspot.js +4 -4
  271. package/dist/features/homepage/components/CharacterHotspotForm.js +15 -13
  272. package/dist/features/homepage/components/CollectionCardsSection.js +1 -1
  273. package/dist/features/homepage/components/CustomCardsSection.js +6 -6
  274. package/dist/features/homepage/components/CustomerReviewsSection.js +2 -2
  275. package/dist/features/homepage/components/FAQSection.js +2 -2
  276. package/dist/features/homepage/components/FeaturedBundlesSection.js +3 -3
  277. package/dist/features/homepage/components/FeaturedResultsSection.js +2 -2
  278. package/dist/features/homepage/components/GoogleReviewsSection.js +6 -6
  279. package/dist/features/homepage/components/HeroBanner.js +1 -1
  280. package/dist/features/homepage/components/HeroCarousel.js +5 -4
  281. package/dist/features/homepage/components/HeroSection.js +1 -7
  282. package/dist/features/homepage/components/HomepageSkeleton.js +1 -1
  283. package/dist/features/homepage/components/HowItWorksInfoView.js +1 -1
  284. package/dist/features/homepage/components/HowItWorksSection.js +2 -2
  285. package/dist/features/homepage/components/NewsletterBanner.js +2 -2
  286. package/dist/features/homepage/components/NewsletterSection.js +1 -1
  287. package/dist/features/homepage/components/PromoGrid.js +1 -1
  288. package/dist/features/homepage/components/SectionCarousel.js +6 -6
  289. package/dist/features/homepage/components/SecurityHighlightsSection.js +2 -2
  290. package/dist/features/homepage/components/ShopByCategorySection.js +10 -10
  291. package/dist/features/homepage/components/SiteFeaturesSection.js +2 -2
  292. package/dist/features/homepage/components/SocialFeedSection.js +5 -5
  293. package/dist/features/homepage/components/SocialPostCard.js +1 -1
  294. package/dist/features/homepage/components/StatsCounterSection.js +1 -1
  295. package/dist/features/homepage/components/TestimonialsCarousel.js +1 -1
  296. package/dist/features/homepage/components/TrustBadges.js +1 -1
  297. package/dist/features/homepage/components/TrustFeaturesSection.js +2 -2
  298. package/dist/features/homepage/components/TrustIndicatorsSection.js +2 -2
  299. package/dist/features/homepage/components/WelcomeSection.js +2 -2
  300. package/dist/features/homepage/components/WhatsAppCommunitySection.js +1 -1
  301. package/dist/features/homepage/hooks/useActiveAd.js +2 -1
  302. package/dist/features/homepage/schemas/firestore.d.ts +10 -0
  303. package/dist/features/homepage/schemas/index.d.ts +116 -116
  304. package/dist/features/jobs/actions/enqueue-job.d.ts +24 -0
  305. package/dist/features/jobs/actions/enqueue-job.js +44 -0
  306. package/dist/features/jobs/repository/jobs.repository.d.ts +21 -0
  307. package/dist/features/jobs/repository/jobs.repository.js +48 -0
  308. package/dist/features/jobs/schemas/firestore.d.ts +54 -0
  309. package/dist/features/jobs/schemas/firestore.js +24 -0
  310. package/dist/features/layout/AppLayoutShell.js +17 -11
  311. package/dist/features/layout/AutoBreadcrumbs.js +1 -1
  312. package/dist/features/layout/BackToTop.js +2 -2
  313. package/dist/features/layout/BottomActions.js +7 -7
  314. package/dist/features/layout/BottomNavItem.js +2 -2
  315. package/dist/features/layout/BottomNavLayout.js +13 -4
  316. package/dist/features/layout/BottomNavbar.d.ts +9 -1
  317. package/dist/features/layout/BottomNavbar.js +12 -5
  318. package/dist/features/layout/BottomSheet.js +1 -1
  319. package/dist/features/layout/Breadcrumbs.js +1 -1
  320. package/dist/features/layout/FooterLayout.js +2 -2
  321. package/dist/features/layout/NavItem.js +3 -3
  322. package/dist/features/layout/NavbarLayout.js +6 -6
  323. package/dist/features/layout/SidebarLayout.d.ts +3 -0
  324. package/dist/features/layout/SidebarLayout.js +3 -3
  325. package/dist/features/layout/TitleBarLayout.js +4 -4
  326. package/dist/features/live/components/LiveItemFilters.js +2 -2
  327. package/dist/features/live/components/LiveItemsIndexListing.js +3 -3
  328. package/dist/features/lottery/types/index.d.ts +3 -1
  329. package/dist/features/lottery/types/index.js +16 -3
  330. package/dist/features/loyalty/components/CoinsDisplay.js +2 -2
  331. package/dist/features/media/MediaImage.d.ts +6 -1
  332. package/dist/features/media/MediaImage.js +10 -4
  333. package/dist/features/media/MediaLightbox.js +1 -1
  334. package/dist/features/media/MediaPickerModal.js +4 -3
  335. package/dist/features/media/MediaVideo.js +1 -1
  336. package/dist/features/media/modals/ImageCropModal.js +1 -1
  337. package/dist/features/media/modals/ImageEditor.js +1 -1
  338. package/dist/features/media/repository/media-assets.repository.d.ts +9 -0
  339. package/dist/features/media/types/index.d.ts +4 -4
  340. package/dist/features/media/upload/MediaUploadField.js +3 -3
  341. package/dist/features/media/upload/MediaUploadList.js +1 -1
  342. package/dist/features/messages/hooks/useConversation.js +4 -3
  343. package/dist/features/messages/hooks/useConversations.js +2 -1
  344. package/dist/features/messages/schemas/index.d.ts +6 -6
  345. package/dist/features/orders/components/MarketplaceOrderCard.js +1 -1
  346. package/dist/features/orders/components/OrderPaymentSummary.d.ts +16 -0
  347. package/dist/features/orders/components/OrderPaymentSummary.js +32 -0
  348. package/dist/features/orders/components/OrderSiblingPayments.js +1 -1
  349. package/dist/features/orders/components/OrdersList.d.ts +7 -2
  350. package/dist/features/orders/components/OrdersList.js +5 -5
  351. package/dist/features/orders/components/RefundHistoryTable.js +1 -1
  352. package/dist/features/orders/components/RefundRequestView.js +1 -1
  353. package/dist/features/orders/components/index.d.ts +2 -0
  354. package/dist/features/orders/components/index.js +1 -0
  355. package/dist/features/orders/repository/orders.repository.d.ts +8 -0
  356. package/dist/features/orders/repository/orders.repository.js +24 -0
  357. package/dist/features/orders/schemas/firestore.d.ts +59 -0
  358. package/dist/features/orders/schemas/firestore.js +5 -0
  359. package/dist/features/orders/schemas/index.d.ts +91 -40
  360. package/dist/features/orders/schemas/index.js +10 -0
  361. package/dist/features/orders/types/index.d.ts +15 -0
  362. package/dist/features/payments/schemas/index.d.ts +12 -12
  363. package/dist/features/pre-orders/components/MarketplacePreorderCard.js +5 -5
  364. package/dist/features/pre-orders/components/PreOrderActionsClient.js +1 -1
  365. package/dist/features/pre-orders/components/PreOrderBadge.js +1 -1
  366. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +7 -7
  367. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +3 -3
  368. package/dist/features/pre-orders/schemas/index.d.ts +12 -12
  369. package/dist/features/products/columns/productTableColumns.js +2 -2
  370. package/dist/features/products/components/AuctionsIndexListing.js +3 -3
  371. package/dist/features/products/components/CompareOverlay.js +15 -10
  372. package/dist/features/products/components/CustomFieldsEditor.js +2 -2
  373. package/dist/features/products/components/CustomSectionsEditor.js +3 -3
  374. package/dist/features/products/components/FeatureBadge.js +2 -2
  375. package/dist/features/products/components/GroupSettingsPanel.js +5 -4
  376. package/dist/features/products/components/MakeOfferButton.js +4 -4
  377. package/dist/features/products/components/MarketplaceBundleCard.js +3 -2
  378. package/dist/features/products/components/MarketplacePrizeDrawCard.js +1 -1
  379. package/dist/features/products/components/PrizeDrawCollage.js +6 -6
  380. package/dist/features/products/components/PrizeDrawDetailPageView.js +5 -5
  381. package/dist/features/products/components/PrizeDrawEntryActions.js +1 -1
  382. package/dist/features/products/components/PrizeDrawItemsEditor.js +4 -4
  383. package/dist/features/products/components/PrizeDrawsIndexListing.js +11 -4
  384. package/dist/features/products/components/PrizeDrawsSection.js +1 -1
  385. package/dist/features/products/components/PrizeRevealModal.js +9 -4
  386. package/dist/features/products/components/ProductDetailActions.js +2 -1
  387. package/dist/features/products/components/ProductDetailPageView.js +16 -16
  388. package/dist/features/products/components/ProductFeaturesSelector.js +5 -5
  389. package/dist/features/products/components/ProductForm.js +1 -1
  390. package/dist/features/products/components/ProductGalleryClient.js +5 -3
  391. package/dist/features/products/components/ProductGrid.js +11 -11
  392. package/dist/features/products/components/ProductTabs.js +2 -2
  393. package/dist/features/products/components/ProductTabsShell.js +2 -1
  394. package/dist/features/products/components/ProductsIndexListing.js +6 -1
  395. package/dist/features/products/components/ShareButton.js +2 -1
  396. package/dist/features/products/components/ShowGroupSection.js +9 -5
  397. package/dist/features/products/components/SublistingCarouselSection.js +8 -4
  398. package/dist/features/products/constants/action-defs.d.ts +10 -2
  399. package/dist/features/products/constants/action-defs.js +20 -2
  400. package/dist/features/products/schemas/firestore.d.ts +5 -0
  401. package/dist/features/products/schemas/index.d.ts +40 -40
  402. package/dist/features/products/schemas/product-features.validators.d.ts +14 -14
  403. package/dist/features/promotions/components/CouponCard.js +13 -7
  404. package/dist/features/promotions/components/CouponsIndexListing.js +4 -6
  405. package/dist/features/promotions/components/PromotionsView.js +2 -2
  406. package/dist/features/promotions/schemas/index.d.ts +26 -26
  407. package/dist/features/reviews/components/ReviewDetailPageView.js +1 -1
  408. package/dist/features/reviews/components/ReviewDetailShell.js +11 -11
  409. package/dist/features/reviews/components/ReviewModal.js +1 -1
  410. package/dist/features/reviews/components/ReviewsIndexListing.js +2 -2
  411. package/dist/features/reviews/components/ReviewsList.js +2 -2
  412. package/dist/features/reviews/schemas/index.d.ts +22 -22
  413. package/dist/features/scams/components/ScamAwarenessModal.js +2 -2
  414. package/dist/features/scams/components/ScamProfileView.js +3 -3
  415. package/dist/features/scams/components/ScamRegistryView.js +2 -2
  416. package/dist/features/scams/schemas/index.d.ts +20 -20
  417. package/dist/features/search/components/Search.js +9 -9
  418. package/dist/features/search/components/SearchFiltersRow.js +1 -1
  419. package/dist/features/search/components/SearchResultsSection.js +3 -3
  420. package/dist/features/search/components/SearchView.js +1 -1
  421. package/dist/features/search/hooks/useNavSuggestions.js +2 -1
  422. package/dist/features/search/hooks/useSearch.js +2 -2
  423. package/dist/features/search/schemas/index.d.ts +3 -3
  424. package/dist/features/seller/components/BrandInlineSelect.js +2 -2
  425. package/dist/features/seller/components/CategoryInlineSelect.js +2 -2
  426. package/dist/features/seller/components/QuickProductForm.js +1 -1
  427. package/dist/features/seller/components/SellerAddressesView.js +4 -4
  428. package/dist/features/seller/components/SellerAnalyticsAlertsView.js +3 -3
  429. package/dist/features/seller/components/SellerAnalyticsView.js +2 -2
  430. package/dist/features/seller/components/SellerArtView.js +11 -11
  431. package/dist/features/seller/components/SellerAuctionsView.js +11 -11
  432. package/dist/features/seller/components/SellerBidsView.js +3 -3
  433. package/dist/features/seller/components/SellerBundlesView.js +12 -12
  434. package/dist/features/seller/components/SellerClassifiedView.js +11 -11
  435. package/dist/features/seller/components/SellerCouponEditorView.js +2 -2
  436. package/dist/features/seller/components/SellerDigitalCodesView.js +11 -11
  437. package/dist/features/seller/components/SellerFeaturesView.js +4 -4
  438. package/dist/features/seller/components/SellerLiveView.js +11 -11
  439. package/dist/features/seller/components/SellerOffersPanel.js +3 -2
  440. package/dist/features/seller/components/SellerOrdersView.js +2 -2
  441. package/dist/features/seller/components/SellerPayoutMethodsView.js +1 -1
  442. package/dist/features/seller/components/SellerPayoutRequestView.js +6 -5
  443. package/dist/features/seller/components/SellerPayoutSettingsView.js +5 -4
  444. package/dist/features/seller/components/SellerPreOrdersView.js +1 -1
  445. package/dist/features/seller/components/SellerPrizeDrawsView.js +1 -1
  446. package/dist/features/seller/components/SellerProductShell.js +20 -6
  447. package/dist/features/seller/components/SellerProductsCards.js +3 -3
  448. package/dist/features/seller/components/SellerProductsView.js +4 -4
  449. package/dist/features/seller/components/SellerReviewsView.js +7 -6
  450. package/dist/features/seller/components/SellerShippingView.js +2 -1
  451. package/dist/features/seller/components/SellerSidebar.js +5 -5
  452. package/dist/features/seller/components/SellerStickersView.js +11 -11
  453. package/dist/features/seller/components/SellerTemplatesView.js +1 -1
  454. package/dist/features/seller/schemas/index.d.ts +20 -20
  455. package/dist/features/server-errors/schemas/index.d.ts +6 -6
  456. package/dist/features/shell/CommandPalette.d.ts +27 -0
  457. package/dist/features/shell/CommandPalette.js +92 -0
  458. package/dist/features/shell/FormShell.js +4 -3
  459. package/dist/features/shell/QuickFormDrawer.js +3 -2
  460. package/dist/features/shell/StepForm.js +2 -2
  461. package/dist/features/shell/index.d.ts +2 -0
  462. package/dist/features/shell/index.js +1 -0
  463. package/dist/features/shipments/components/AdminShipmentEditorView.d.ts +7 -0
  464. package/dist/features/shipments/components/AdminShipmentEditorView.js +123 -0
  465. package/dist/features/shipments/components/AdminShipmentLotItemsView.d.ts +6 -0
  466. package/dist/features/shipments/components/AdminShipmentLotItemsView.js +96 -0
  467. package/dist/features/shipments/components/AdminShipmentProjectionsView.d.ts +9 -0
  468. package/dist/features/shipments/components/AdminShipmentProjectionsView.js +44 -0
  469. package/dist/features/shipments/components/AdminShipmentsView.d.ts +8 -0
  470. package/dist/features/shipments/components/AdminShipmentsView.js +82 -0
  471. package/dist/features/shipments/components/ShipmentItemLinkModal.d.ts +15 -0
  472. package/dist/features/shipments/components/ShipmentItemLinkModal.js +37 -0
  473. package/dist/features/shipments/hooks/useShipments.d.ts +69 -0
  474. package/dist/features/shipments/hooks/useShipments.js +96 -0
  475. package/dist/features/shipments/index.d.ts +10 -0
  476. package/dist/features/shipments/index.js +7 -0
  477. package/dist/features/shipments/manifest.d.ts +2 -0
  478. package/dist/features/shipments/manifest.js +26 -0
  479. package/dist/features/shipments/repository/shipment-items.repository.d.ts +56 -0
  480. package/dist/features/shipments/repository/shipment-items.repository.js +78 -0
  481. package/dist/features/shipments/repository/shipment-lots.repository.d.ts +48 -0
  482. package/dist/features/shipments/repository/shipment-lots.repository.js +55 -0
  483. package/dist/features/shipments/repository/shipments.repository.d.ts +50 -0
  484. package/dist/features/shipments/repository/shipments.repository.js +77 -0
  485. package/dist/features/shipments/schemas/firestore.d.ts +150 -0
  486. package/dist/features/shipments/schemas/firestore.js +76 -0
  487. package/dist/features/shipments/schemas/index.d.ts +2 -0
  488. package/dist/features/shipments/schemas/index.js +2 -0
  489. package/dist/features/shipments/schemas/validation.d.ts +350 -0
  490. package/dist/features/shipments/schemas/validation.js +96 -0
  491. package/dist/features/shipments/utils/cost-allocation.d.ts +25 -0
  492. package/dist/features/shipments/utils/cost-allocation.js +83 -0
  493. package/dist/features/site-settings/components/ActionPermissionsManager.js +2 -2
  494. package/dist/features/stores/components/InteractiveStoreCard.js +2 -2
  495. package/dist/features/stores/components/StoreAboutView.js +1 -1
  496. package/dist/features/stores/components/StoreAuctionsListing.js +3 -3
  497. package/dist/features/stores/components/StoreAuctionsView.js +1 -1
  498. package/dist/features/stores/components/StoreCapabilitiesGuideView.js +1 -1
  499. package/dist/features/stores/components/StoreClassifiedsListing.js +2 -2
  500. package/dist/features/stores/components/StoreDetailLayoutView.js +1 -1
  501. package/dist/features/stores/components/StoreDigitalCodesListing.js +2 -2
  502. package/dist/features/stores/components/StoreFinanceGuideView.js +2 -2
  503. package/dist/features/stores/components/StoreGuideHubView.js +2 -2
  504. package/dist/features/stores/components/StoreHeader.js +4 -4
  505. package/dist/features/stores/components/StoreLiveItemsListing.js +2 -2
  506. package/dist/features/stores/components/StoreNavTabs.js +2 -2
  507. package/dist/features/stores/components/StoreOrdersGuideView.js +1 -1
  508. package/dist/features/stores/components/StorePreOrdersListing.js +3 -3
  509. package/dist/features/stores/components/StoreProductsListing.js +1 -1
  510. package/dist/features/stores/components/StoreReviewsListing.js +2 -2
  511. package/dist/features/stores/components/StoreReviewsView.js +1 -1
  512. package/dist/features/stores/components/StoreSettingsGuideView.js +1 -1
  513. package/dist/features/stores/components/StoresIndexListing.js +9 -3
  514. package/dist/features/stores/schemas/index.d.ts +10 -10
  515. package/dist/features/support/schemas/index.d.ts +22 -22
  516. package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +3 -3
  517. package/dist/features/whatsapp-bot/components/WhatsAppChatButton.js +1 -1
  518. package/dist/features/wishlist/hooks/useWishlistCount.js +1 -2
  519. package/dist/index.d.ts +44 -1
  520. package/dist/index.js +37 -1
  521. package/dist/next/routing/route-map.d.ts +18 -0
  522. package/dist/next/routing/route-map.js +9 -0
  523. package/dist/react/hooks/useVisualViewportInset.d.ts +1 -0
  524. package/dist/react/hooks/useVisualViewportInset.js +59 -0
  525. package/dist/react/index.d.ts +1 -0
  526. package/dist/react/index.js +1 -0
  527. package/dist/repositories/index.d.ts +5 -0
  528. package/dist/repositories/index.js +5 -0
  529. package/dist/schemas/registry.d.ts +398 -364
  530. package/dist/schemas/sieve.d.ts +2 -2
  531. package/dist/schemas/webhooks/google-oauth.d.ts +2 -2
  532. package/dist/schemas/webhooks/razorpay.d.ts +100 -100
  533. package/dist/seed/_helpers/media.js +1 -0
  534. package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
  535. package/dist/seed/catalogue-seed-data.d.ts +2 -0
  536. package/dist/seed/catalogue-seed-data.js +112 -0
  537. package/dist/seed/grouped-listings-seed-data.d.ts +5 -0
  538. package/dist/seed/homepage-sections-seed-data.js +0 -1
  539. package/dist/seed/index.d.ts +2 -0
  540. package/dist/seed/index.js +2 -0
  541. package/dist/seed/manifest.js +6 -0
  542. package/dist/seed/products-preorders-seed-data.d.ts +5 -0
  543. package/dist/seed/shipments-seed-data.d.ts +5 -0
  544. package/dist/seed/shipments-seed-data.js +185 -0
  545. package/dist/server.d.ts +4 -0
  546. package/dist/server.js +5 -0
  547. package/dist/styles.css +75 -19
  548. package/dist/tailwind-utilities.css +1 -1
  549. package/dist/tokens/index.d.ts +0 -2
  550. package/dist/tokens/index.js +0 -2
  551. package/dist/tokens/tokens.css +12 -2
  552. package/dist/ui/DataTable.js +4 -3
  553. package/dist/ui/components/Button.d.ts +4 -1
  554. package/dist/ui/components/Button.js +11 -5
  555. package/dist/ui/components/Checkbox.d.ts +9 -1
  556. package/dist/ui/components/Checkbox.js +5 -2
  557. package/dist/ui/components/ClaimCouponButton.js +2 -1
  558. package/dist/ui/components/ConfirmDeleteModal.style.css +1 -1
  559. package/dist/ui/components/Drawer.style.css +13 -1
  560. package/dist/ui/components/Dropdown.style.css +2 -2
  561. package/dist/ui/components/FilterDrawer.d.ts +4 -1
  562. package/dist/ui/components/FilterDrawer.js +8 -2
  563. package/dist/ui/components/Form.d.ts +1 -1
  564. package/dist/ui/components/Form.js +2 -2
  565. package/dist/ui/components/FormActionBar.style.css +6 -1
  566. package/dist/ui/components/IconButton.d.ts +6 -1
  567. package/dist/ui/components/IconButton.js +5 -2
  568. package/dist/ui/components/IconButton.style.css +11 -0
  569. package/dist/ui/components/ImageGallery.style.css +2 -0
  570. package/dist/ui/components/ImageLightbox.style.css +1 -0
  571. package/dist/ui/components/ListingFilterDrawer.d.ts +4 -1
  572. package/dist/ui/components/ListingFilterDrawer.js +4 -3
  573. package/dist/ui/components/ListingLayout.style.css +2 -2
  574. package/dist/ui/components/Modal.style.css +1 -1
  575. package/dist/ui/components/Pagination.d.ts +5 -1
  576. package/dist/ui/components/Pagination.js +4 -2
  577. package/dist/ui/components/RowActionMenu.js +1 -1
  578. package/dist/ui/components/RowActionMenu.style.css +1 -1
  579. package/dist/ui/components/Select.d.ts +6 -1
  580. package/dist/ui/components/Select.js +18 -13
  581. package/dist/ui/components/Select.style.css +1 -1
  582. package/dist/ui/components/Semantic.d.ts +13 -0
  583. package/dist/ui/components/Semantic.js +16 -3
  584. package/dist/ui/components/SideDrawer.style.css +16 -4
  585. package/dist/ui/components/SideModal.style.css +1 -1
  586. package/dist/ui/components/StickyToolbar.d.ts +3 -2
  587. package/dist/ui/components/StickyToolbar.js +1 -1
  588. package/dist/ui/components/Textarea.d.ts +5 -0
  589. package/dist/ui/components/Textarea.js +8 -4
  590. package/dist/ui/components/Toast.style.css +3 -0
  591. package/dist/ui/components/Typography.js +69 -8
  592. package/dist/ui/components/UnsavedChangesModal.style.css +1 -1
  593. package/dist/ui/components/surface-tokens.d.ts +121 -113
  594. package/dist/ui/components/surface-tokens.js +110 -104
  595. package/dist/ui/forms/FormShell.d.ts +8 -27
  596. package/dist/ui/forms/FormShell.js +1 -194
  597. package/dist/ui/forms/index.d.ts +2 -2
  598. package/dist/ui/forms/index.js +1 -1
  599. package/dist/ui/index.d.ts +8 -4
  600. package/dist/ui/index.js +4 -2
  601. package/dist/utils/id-generators.d.ts +27 -0
  602. package/dist/utils/id-generators.js +45 -0
  603. package/dist/utils/number.formatter.d.ts +7 -0
  604. package/dist/utils/number.formatter.js +9 -0
  605. package/dist/validation/schemas.d.ts +5 -5
  606. package/package.json +1 -1
@@ -23,28 +23,28 @@ export declare const homepageSectionFirestoreSchema: z.ZodObject<{
23
23
  enabled: z.ZodBoolean;
24
24
  config: z.ZodRecord<z.ZodString, z.ZodType<JsonValue, z.ZodTypeDef, JsonValue>>;
25
25
  }, "strip", z.ZodTypeAny, {
26
- type: "products" | "features" | "banner" | "stats" | "faq" | "categories" | "reviews" | "events" | "auctions" | "stores" | "pre-orders" | "welcome" | "trust-indicators" | "whatsapp-community" | "blog-articles" | "newsletter" | "carousel" | "brands" | "social-feed" | "custom-cards" | "google-reviews" | "featured-bundles" | "prize-draws" | "event-raffles" | "collection-cards";
26
+ type: "banner" | "products" | "features" | "stats" | "faq" | "categories" | "reviews" | "events" | "auctions" | "stores" | "pre-orders" | "welcome" | "trust-indicators" | "whatsapp-community" | "blog-articles" | "newsletter" | "carousel" | "brands" | "social-feed" | "custom-cards" | "google-reviews" | "featured-bundles" | "prize-draws" | "event-raffles" | "collection-cards";
27
+ id: string;
27
28
  createdAt: string | Date | z.objectOutputType<{
28
29
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
29
30
  }, z.ZodTypeAny, "passthrough">;
30
- id: string;
31
31
  updatedAt: string | Date | z.objectOutputType<{
32
32
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
33
33
  }, z.ZodTypeAny, "passthrough">;
34
- order: number;
35
34
  enabled: boolean;
35
+ order: number;
36
36
  config: Record<string, JsonValue>;
37
37
  }, {
38
- type: "products" | "features" | "banner" | "stats" | "faq" | "categories" | "reviews" | "events" | "auctions" | "stores" | "pre-orders" | "welcome" | "trust-indicators" | "whatsapp-community" | "blog-articles" | "newsletter" | "carousel" | "brands" | "social-feed" | "custom-cards" | "google-reviews" | "featured-bundles" | "prize-draws" | "event-raffles" | "collection-cards";
38
+ type: "banner" | "products" | "features" | "stats" | "faq" | "categories" | "reviews" | "events" | "auctions" | "stores" | "pre-orders" | "welcome" | "trust-indicators" | "whatsapp-community" | "blog-articles" | "newsletter" | "carousel" | "brands" | "social-feed" | "custom-cards" | "google-reviews" | "featured-bundles" | "prize-draws" | "event-raffles" | "collection-cards";
39
+ id: string;
39
40
  createdAt: string | Date | z.objectInputType<{
40
41
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
41
42
  }, z.ZodTypeAny, "passthrough">;
42
- id: string;
43
43
  updatedAt: string | Date | z.objectInputType<{
44
44
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
45
45
  }, z.ZodTypeAny, "passthrough">;
46
- order: number;
47
46
  enabled: boolean;
47
+ order: number;
48
48
  config: Record<string, JsonValue>;
49
49
  }>;
50
50
  export declare const carouselBackgroundSchema: z.ZodObject<{
@@ -60,37 +60,37 @@ export declare const carouselBackgroundSchema: z.ZodObject<{
60
60
  enabled: z.ZodBoolean;
61
61
  opacity: z.ZodNumber;
62
62
  }, "strip", z.ZodTypeAny, {
63
- opacity: number;
64
63
  enabled: boolean;
65
- }, {
66
64
  opacity: number;
65
+ }, {
67
66
  enabled: boolean;
67
+ opacity: number;
68
68
  }>>;
69
69
  }, "strip", z.ZodTypeAny, {
70
- type: "image" | "video" | "color" | "gradient";
71
- url?: string | undefined;
70
+ type: "color" | "gradient" | "video" | "image";
72
71
  color?: string | undefined;
72
+ url?: string | undefined;
73
73
  thumbnail?: string | undefined;
74
74
  mobileUrl?: string | undefined;
75
75
  gradientFrom?: string | undefined;
76
76
  gradientTo?: string | undefined;
77
77
  gradientAngle?: number | undefined;
78
78
  dimOverlay?: {
79
- opacity: number;
80
79
  enabled: boolean;
80
+ opacity: number;
81
81
  } | undefined;
82
82
  }, {
83
- type: "image" | "video" | "color" | "gradient";
84
- url?: string | undefined;
83
+ type: "color" | "gradient" | "video" | "image";
85
84
  color?: string | undefined;
85
+ url?: string | undefined;
86
86
  thumbnail?: string | undefined;
87
87
  mobileUrl?: string | undefined;
88
88
  gradientFrom?: string | undefined;
89
89
  gradientTo?: string | undefined;
90
90
  gradientAngle?: number | undefined;
91
91
  dimOverlay?: {
92
- opacity: number;
93
92
  enabled: boolean;
93
+ opacity: number;
94
94
  } | undefined;
95
95
  }>;
96
96
  export declare const carouselCardSchema: z.ZodObject<{
@@ -110,37 +110,37 @@ export declare const carouselCardSchema: z.ZodObject<{
110
110
  enabled: z.ZodBoolean;
111
111
  opacity: z.ZodNumber;
112
112
  }, "strip", z.ZodTypeAny, {
113
- opacity: number;
114
113
  enabled: boolean;
115
- }, {
116
114
  opacity: number;
115
+ }, {
117
116
  enabled: boolean;
117
+ opacity: number;
118
118
  }>>;
119
119
  }, "strip", z.ZodTypeAny, {
120
- type: "image" | "video" | "color" | "gradient";
121
- url?: string | undefined;
120
+ type: "color" | "gradient" | "video" | "image";
122
121
  color?: string | undefined;
122
+ url?: string | undefined;
123
123
  thumbnail?: string | undefined;
124
124
  mobileUrl?: string | undefined;
125
125
  gradientFrom?: string | undefined;
126
126
  gradientTo?: string | undefined;
127
127
  gradientAngle?: number | undefined;
128
128
  dimOverlay?: {
129
- opacity: number;
130
129
  enabled: boolean;
130
+ opacity: number;
131
131
  } | undefined;
132
132
  }, {
133
- type: "image" | "video" | "color" | "gradient";
134
- url?: string | undefined;
133
+ type: "color" | "gradient" | "video" | "image";
135
134
  color?: string | undefined;
135
+ url?: string | undefined;
136
136
  thumbnail?: string | undefined;
137
137
  mobileUrl?: string | undefined;
138
138
  gradientFrom?: string | undefined;
139
139
  gradientTo?: string | undefined;
140
140
  gradientAngle?: number | undefined;
141
141
  dimOverlay?: {
142
- opacity: number;
143
142
  enabled: boolean;
143
+ opacity: number;
144
144
  } | undefined;
145
145
  }>;
146
146
  content: z.ZodOptional<z.ZodObject<{
@@ -172,15 +172,15 @@ export declare const carouselCardSchema: z.ZodObject<{
172
172
  variant: z.ZodEnum<["primary", "secondary", "outline", "ghost", "link"]>;
173
173
  openInNewTab: z.ZodOptional<z.ZodBoolean>;
174
174
  }, "strip", z.ZodTypeAny, {
175
- href: string;
176
175
  text: string;
177
176
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
177
+ href: string;
178
178
  id?: string | undefined;
179
179
  openInNewTab?: boolean | undefined;
180
180
  }, {
181
- href: string;
182
181
  text: string;
183
182
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
183
+ href: string;
184
184
  id?: string | undefined;
185
185
  openInNewTab?: boolean | undefined;
186
186
  }>, "many">>;
@@ -203,17 +203,17 @@ export declare const carouselCardSchema: z.ZodObject<{
203
203
  }, "strip", z.ZodTypeAny, {
204
204
  id: string;
205
205
  background: {
206
- type: "image" | "video" | "color" | "gradient";
207
- url?: string | undefined;
206
+ type: "color" | "gradient" | "video" | "image";
208
207
  color?: string | undefined;
208
+ url?: string | undefined;
209
209
  thumbnail?: string | undefined;
210
210
  mobileUrl?: string | undefined;
211
211
  gradientFrom?: string | undefined;
212
212
  gradientTo?: string | undefined;
213
213
  gradientAngle?: number | undefined;
214
214
  dimOverlay?: {
215
- opacity: number;
216
215
  enabled: boolean;
216
+ opacity: number;
217
217
  } | undefined;
218
218
  };
219
219
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -225,17 +225,17 @@ export declare const carouselCardSchema: z.ZodObject<{
225
225
  subtitle?: string | undefined;
226
226
  eyebrow?: string | undefined;
227
227
  } | undefined;
228
- gridRow?: 1 | 2 | undefined;
229
228
  hover?: {
230
229
  effect: "none" | "color" | "scale" | "glow";
231
230
  scaleValue?: number | undefined;
232
231
  colorValue?: string | undefined;
233
232
  } | undefined;
233
+ gridRow?: 1 | 2 | undefined;
234
234
  mobileZone?: 2 | 5 | undefined;
235
235
  buttons?: {
236
- href: string;
237
236
  text: string;
238
237
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
238
+ href: string;
239
239
  id?: string | undefined;
240
240
  openInNewTab?: boolean | undefined;
241
241
  }[] | undefined;
@@ -244,17 +244,17 @@ export declare const carouselCardSchema: z.ZodObject<{
244
244
  }, {
245
245
  id: string;
246
246
  background: {
247
- type: "image" | "video" | "color" | "gradient";
248
- url?: string | undefined;
247
+ type: "color" | "gradient" | "video" | "image";
249
248
  color?: string | undefined;
249
+ url?: string | undefined;
250
250
  thumbnail?: string | undefined;
251
251
  mobileUrl?: string | undefined;
252
252
  gradientFrom?: string | undefined;
253
253
  gradientTo?: string | undefined;
254
254
  gradientAngle?: number | undefined;
255
255
  dimOverlay?: {
256
- opacity: number;
257
256
  enabled: boolean;
257
+ opacity: number;
258
258
  } | undefined;
259
259
  };
260
260
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -266,17 +266,17 @@ export declare const carouselCardSchema: z.ZodObject<{
266
266
  subtitle?: string | undefined;
267
267
  eyebrow?: string | undefined;
268
268
  } | undefined;
269
- gridRow?: 1 | 2 | undefined;
270
269
  hover?: {
271
270
  effect: "none" | "color" | "scale" | "glow";
272
271
  scaleValue?: number | undefined;
273
272
  colorValue?: string | undefined;
274
273
  } | undefined;
274
+ gridRow?: 1 | 2 | undefined;
275
275
  mobileZone?: 2 | 5 | undefined;
276
276
  buttons?: {
277
- href: string;
278
277
  text: string;
279
278
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
279
+ href: string;
280
280
  id?: string | undefined;
281
281
  openInNewTab?: boolean | undefined;
282
282
  }[] | undefined;
@@ -305,26 +305,26 @@ export declare const carouselFirestoreSchema: z.ZodObject<{
305
305
  createdBy: z.ZodString;
306
306
  }, "strip", z.ZodTypeAny, {
307
307
  status: "draft" | "active";
308
+ id: string;
309
+ name: string;
308
310
  createdAt: string | Date | z.objectOutputType<{
309
311
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
310
312
  }, z.ZodTypeAny, "passthrough">;
311
- id: string;
312
313
  updatedAt: string | Date | z.objectOutputType<{
313
314
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
314
315
  }, z.ZodTypeAny, "passthrough">;
315
- name: string;
316
316
  createdBy: string;
317
317
  slideIds: string[];
318
318
  }, {
319
319
  status: "draft" | "active";
320
+ id: string;
321
+ name: string;
320
322
  createdAt: string | Date | z.objectInputType<{
321
323
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
322
324
  }, z.ZodTypeAny, "passthrough">;
323
- id: string;
324
325
  updatedAt: string | Date | z.objectInputType<{
325
326
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
326
327
  }, z.ZodTypeAny, "passthrough">;
327
- name: string;
328
328
  createdBy: string;
329
329
  slideIds: string[];
330
330
  }>;
@@ -361,37 +361,37 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
361
361
  enabled: z.ZodBoolean;
362
362
  opacity: z.ZodNumber;
363
363
  }, "strip", z.ZodTypeAny, {
364
- opacity: number;
365
364
  enabled: boolean;
366
- }, {
367
365
  opacity: number;
366
+ }, {
368
367
  enabled: boolean;
368
+ opacity: number;
369
369
  }>>;
370
370
  }, "strip", z.ZodTypeAny, {
371
- type: "image" | "video" | "color" | "gradient";
372
- url?: string | undefined;
371
+ type: "color" | "gradient" | "video" | "image";
373
372
  color?: string | undefined;
373
+ url?: string | undefined;
374
374
  thumbnail?: string | undefined;
375
375
  mobileUrl?: string | undefined;
376
376
  gradientFrom?: string | undefined;
377
377
  gradientTo?: string | undefined;
378
378
  gradientAngle?: number | undefined;
379
379
  dimOverlay?: {
380
- opacity: number;
381
380
  enabled: boolean;
381
+ opacity: number;
382
382
  } | undefined;
383
383
  }, {
384
- type: "image" | "video" | "color" | "gradient";
385
- url?: string | undefined;
384
+ type: "color" | "gradient" | "video" | "image";
386
385
  color?: string | undefined;
386
+ url?: string | undefined;
387
387
  thumbnail?: string | undefined;
388
388
  mobileUrl?: string | undefined;
389
389
  gradientFrom?: string | undefined;
390
390
  gradientTo?: string | undefined;
391
391
  gradientAngle?: number | undefined;
392
392
  dimOverlay?: {
393
- opacity: number;
394
393
  enabled: boolean;
394
+ opacity: number;
395
395
  } | undefined;
396
396
  }>>;
397
397
  media: z.ZodOptional<z.ZodObject<{
@@ -400,13 +400,13 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
400
400
  alt: z.ZodOptional<z.ZodString>;
401
401
  thumbnail: z.ZodOptional<z.ZodString>;
402
402
  }, "strip", z.ZodTypeAny, {
403
+ type: "video" | "image";
403
404
  url: string;
404
- type: "image" | "video";
405
405
  alt?: string | undefined;
406
406
  thumbnail?: string | undefined;
407
407
  }, {
408
+ type: "video" | "image";
408
409
  url: string;
409
- type: "image" | "video";
410
410
  alt?: string | undefined;
411
411
  thumbnail?: string | undefined;
412
412
  }>>;
@@ -425,12 +425,12 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
425
425
  url: z.ZodString;
426
426
  alt: z.ZodOptional<z.ZodString>;
427
427
  }, "strip", z.ZodTypeAny, {
428
+ type: "video" | "image";
428
429
  url: string;
429
- type: "image" | "video";
430
430
  alt?: string | undefined;
431
431
  }, {
432
+ type: "video" | "image";
432
433
  url: string;
433
- type: "image" | "video";
434
434
  alt?: string | undefined;
435
435
  }>>;
436
436
  cards: z.ZodArray<z.ZodObject<{
@@ -450,37 +450,37 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
450
450
  enabled: z.ZodBoolean;
451
451
  opacity: z.ZodNumber;
452
452
  }, "strip", z.ZodTypeAny, {
453
- opacity: number;
454
453
  enabled: boolean;
455
- }, {
456
454
  opacity: number;
455
+ }, {
457
456
  enabled: boolean;
457
+ opacity: number;
458
458
  }>>;
459
459
  }, "strip", z.ZodTypeAny, {
460
- type: "image" | "video" | "color" | "gradient";
461
- url?: string | undefined;
460
+ type: "color" | "gradient" | "video" | "image";
462
461
  color?: string | undefined;
462
+ url?: string | undefined;
463
463
  thumbnail?: string | undefined;
464
464
  mobileUrl?: string | undefined;
465
465
  gradientFrom?: string | undefined;
466
466
  gradientTo?: string | undefined;
467
467
  gradientAngle?: number | undefined;
468
468
  dimOverlay?: {
469
- opacity: number;
470
469
  enabled: boolean;
470
+ opacity: number;
471
471
  } | undefined;
472
472
  }, {
473
- type: "image" | "video" | "color" | "gradient";
474
- url?: string | undefined;
473
+ type: "color" | "gradient" | "video" | "image";
475
474
  color?: string | undefined;
475
+ url?: string | undefined;
476
476
  thumbnail?: string | undefined;
477
477
  mobileUrl?: string | undefined;
478
478
  gradientFrom?: string | undefined;
479
479
  gradientTo?: string | undefined;
480
480
  gradientAngle?: number | undefined;
481
481
  dimOverlay?: {
482
- opacity: number;
483
482
  enabled: boolean;
483
+ opacity: number;
484
484
  } | undefined;
485
485
  }>;
486
486
  content: z.ZodOptional<z.ZodObject<{
@@ -512,15 +512,15 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
512
512
  variant: z.ZodEnum<["primary", "secondary", "outline", "ghost", "link"]>;
513
513
  openInNewTab: z.ZodOptional<z.ZodBoolean>;
514
514
  }, "strip", z.ZodTypeAny, {
515
- href: string;
516
515
  text: string;
517
516
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
517
+ href: string;
518
518
  id?: string | undefined;
519
519
  openInNewTab?: boolean | undefined;
520
520
  }, {
521
- href: string;
522
521
  text: string;
523
522
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
523
+ href: string;
524
524
  id?: string | undefined;
525
525
  openInNewTab?: boolean | undefined;
526
526
  }>, "many">>;
@@ -543,17 +543,17 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
543
543
  }, "strip", z.ZodTypeAny, {
544
544
  id: string;
545
545
  background: {
546
- type: "image" | "video" | "color" | "gradient";
547
- url?: string | undefined;
546
+ type: "color" | "gradient" | "video" | "image";
548
547
  color?: string | undefined;
548
+ url?: string | undefined;
549
549
  thumbnail?: string | undefined;
550
550
  mobileUrl?: string | undefined;
551
551
  gradientFrom?: string | undefined;
552
552
  gradientTo?: string | undefined;
553
553
  gradientAngle?: number | undefined;
554
554
  dimOverlay?: {
555
- opacity: number;
556
555
  enabled: boolean;
556
+ opacity: number;
557
557
  } | undefined;
558
558
  };
559
559
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -565,17 +565,17 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
565
565
  subtitle?: string | undefined;
566
566
  eyebrow?: string | undefined;
567
567
  } | undefined;
568
- gridRow?: 1 | 2 | undefined;
569
568
  hover?: {
570
569
  effect: "none" | "color" | "scale" | "glow";
571
570
  scaleValue?: number | undefined;
572
571
  colorValue?: string | undefined;
573
572
  } | undefined;
573
+ gridRow?: 1 | 2 | undefined;
574
574
  mobileZone?: 2 | 5 | undefined;
575
575
  buttons?: {
576
- href: string;
577
576
  text: string;
578
577
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
578
+ href: string;
579
579
  id?: string | undefined;
580
580
  openInNewTab?: boolean | undefined;
581
581
  }[] | undefined;
@@ -584,17 +584,17 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
584
584
  }, {
585
585
  id: string;
586
586
  background: {
587
- type: "image" | "video" | "color" | "gradient";
588
- url?: string | undefined;
587
+ type: "color" | "gradient" | "video" | "image";
589
588
  color?: string | undefined;
589
+ url?: string | undefined;
590
590
  thumbnail?: string | undefined;
591
591
  mobileUrl?: string | undefined;
592
592
  gradientFrom?: string | undefined;
593
593
  gradientTo?: string | undefined;
594
594
  gradientAngle?: number | undefined;
595
595
  dimOverlay?: {
596
- opacity: number;
597
596
  enabled: boolean;
597
+ opacity: number;
598
598
  } | undefined;
599
599
  };
600
600
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -606,17 +606,17 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
606
606
  subtitle?: string | undefined;
607
607
  eyebrow?: string | undefined;
608
608
  } | undefined;
609
- gridRow?: 1 | 2 | undefined;
610
609
  hover?: {
611
610
  effect: "none" | "color" | "scale" | "glow";
612
611
  scaleValue?: number | undefined;
613
612
  colorValue?: string | undefined;
614
613
  } | undefined;
614
+ gridRow?: 1 | 2 | undefined;
615
615
  mobileZone?: 2 | 5 | undefined;
616
616
  buttons?: {
617
- href: string;
618
617
  text: string;
619
618
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
619
+ href: string;
620
620
  id?: string | undefined;
621
621
  openInNewTab?: boolean | undefined;
622
622
  }[] | undefined;
@@ -650,9 +650,8 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
650
650
  id?: string | undefined;
651
651
  }>>;
652
652
  }, "strip", z.ZodTypeAny, {
653
- title?: string | undefined;
654
- description?: string | undefined;
655
653
  color?: string | undefined;
654
+ title?: string | undefined;
656
655
  button?: {
657
656
  link: string;
658
657
  text: string;
@@ -660,13 +659,13 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
660
659
  openInNewTab: boolean;
661
660
  id?: string | undefined;
662
661
  } | undefined;
663
- opacity?: number | undefined;
664
662
  enabled?: boolean | undefined;
663
+ opacity?: number | undefined;
664
+ description?: string | undefined;
665
665
  subtitle?: string | undefined;
666
666
  }, {
667
- title?: string | undefined;
668
- description?: string | undefined;
669
667
  color?: string | undefined;
668
+ title?: string | undefined;
670
669
  button?: {
671
670
  link: string;
672
671
  text: string;
@@ -674,8 +673,9 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
674
673
  openInNewTab: boolean;
675
674
  id?: string | undefined;
676
675
  } | undefined;
677
- opacity?: number | undefined;
678
676
  enabled?: boolean | undefined;
677
+ opacity?: number | undefined;
678
+ description?: string | undefined;
679
679
  subtitle?: string | undefined;
680
680
  }>>;
681
681
  settings: z.ZodOptional<z.ZodObject<{
@@ -710,11 +710,11 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
710
710
  }>>;
711
711
  createdBy: z.ZodString;
712
712
  }, "strip", z.ZodTypeAny, {
713
+ id: string;
714
+ title: string;
713
715
  createdAt: string | Date | z.objectOutputType<{
714
716
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
715
717
  }, z.ZodTypeAny, "passthrough">;
716
- title: string;
717
- id: string;
718
718
  updatedAt: string | Date | z.objectOutputType<{
719
719
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
720
720
  }, z.ZodTypeAny, "passthrough">;
@@ -722,17 +722,17 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
722
722
  cards: {
723
723
  id: string;
724
724
  background: {
725
- type: "image" | "video" | "color" | "gradient";
726
- url?: string | undefined;
725
+ type: "color" | "gradient" | "video" | "image";
727
726
  color?: string | undefined;
727
+ url?: string | undefined;
728
728
  thumbnail?: string | undefined;
729
729
  mobileUrl?: string | undefined;
730
730
  gradientFrom?: string | undefined;
731
731
  gradientTo?: string | undefined;
732
732
  gradientAngle?: number | undefined;
733
733
  dimOverlay?: {
734
- opacity: number;
735
734
  enabled: boolean;
735
+ opacity: number;
736
736
  } | undefined;
737
737
  };
738
738
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -744,17 +744,17 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
744
744
  subtitle?: string | undefined;
745
745
  eyebrow?: string | undefined;
746
746
  } | undefined;
747
- gridRow?: 1 | 2 | undefined;
748
747
  hover?: {
749
748
  effect: "none" | "color" | "scale" | "glow";
750
749
  scaleValue?: number | undefined;
751
750
  colorValue?: string | undefined;
752
751
  } | undefined;
752
+ gridRow?: 1 | 2 | undefined;
753
753
  mobileZone?: 2 | 5 | undefined;
754
754
  buttons?: {
755
- href: string;
756
755
  text: string;
757
756
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
757
+ href: string;
758
758
  id?: string | undefined;
759
759
  openInNewTab?: boolean | undefined;
760
760
  }[] | undefined;
@@ -768,29 +768,22 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
768
768
  openInNewTab: boolean;
769
769
  } | undefined;
770
770
  background?: {
771
- type: "image" | "video" | "color" | "gradient";
772
- url?: string | undefined;
771
+ type: "color" | "gradient" | "video" | "image";
773
772
  color?: string | undefined;
773
+ url?: string | undefined;
774
774
  thumbnail?: string | undefined;
775
775
  mobileUrl?: string | undefined;
776
776
  gradientFrom?: string | undefined;
777
777
  gradientTo?: string | undefined;
778
778
  gradientAngle?: number | undefined;
779
779
  dimOverlay?: {
780
- opacity: number;
781
780
  enabled: boolean;
781
+ opacity: number;
782
782
  } | undefined;
783
783
  } | undefined;
784
- media?: {
785
- url: string;
786
- type: "image" | "video";
787
- alt?: string | undefined;
788
- thumbnail?: string | undefined;
789
- } | undefined;
790
784
  overlay?: {
791
- title?: string | undefined;
792
- description?: string | undefined;
793
785
  color?: string | undefined;
786
+ title?: string | undefined;
794
787
  button?: {
795
788
  link: string;
796
789
  text: string;
@@ -798,17 +791,24 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
798
791
  openInNewTab: boolean;
799
792
  id?: string | undefined;
800
793
  } | undefined;
801
- opacity?: number | undefined;
802
794
  enabled?: boolean | undefined;
795
+ opacity?: number | undefined;
796
+ description?: string | undefined;
803
797
  subtitle?: string | undefined;
804
798
  } | undefined;
799
+ media?: {
800
+ type: "video" | "image";
801
+ url: string;
802
+ alt?: string | undefined;
803
+ thumbnail?: string | undefined;
804
+ } | undefined;
805
805
  settings?: {
806
806
  height?: "medium" | "viewport" | "tall" | undefined;
807
807
  autoplayDelayMs?: number | undefined;
808
808
  } | undefined;
809
809
  mobileMedia?: {
810
+ type: "video" | "image";
810
811
  url: string;
811
- type: "image" | "video";
812
812
  alt?: string | undefined;
813
813
  } | undefined;
814
814
  carouselId?: string | null | undefined;
@@ -819,11 +819,11 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
819
819
  }, z.ZodTypeAny, "passthrough"> | undefined;
820
820
  } | undefined;
821
821
  }, {
822
+ id: string;
823
+ title: string;
822
824
  createdAt: string | Date | z.objectInputType<{
823
825
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
824
826
  }, z.ZodTypeAny, "passthrough">;
825
- title: string;
826
- id: string;
827
827
  updatedAt: string | Date | z.objectInputType<{
828
828
  toDate: z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodDate>;
829
829
  }, z.ZodTypeAny, "passthrough">;
@@ -831,17 +831,17 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
831
831
  cards: {
832
832
  id: string;
833
833
  background: {
834
- type: "image" | "video" | "color" | "gradient";
835
- url?: string | undefined;
834
+ type: "color" | "gradient" | "video" | "image";
836
835
  color?: string | undefined;
836
+ url?: string | undefined;
837
837
  thumbnail?: string | undefined;
838
838
  mobileUrl?: string | undefined;
839
839
  gradientFrom?: string | undefined;
840
840
  gradientTo?: string | undefined;
841
841
  gradientAngle?: number | undefined;
842
842
  dimOverlay?: {
843
- opacity: number;
844
843
  enabled: boolean;
844
+ opacity: number;
845
845
  } | undefined;
846
846
  };
847
847
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -853,17 +853,17 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
853
853
  subtitle?: string | undefined;
854
854
  eyebrow?: string | undefined;
855
855
  } | undefined;
856
- gridRow?: 1 | 2 | undefined;
857
856
  hover?: {
858
857
  effect: "none" | "color" | "scale" | "glow";
859
858
  scaleValue?: number | undefined;
860
859
  colorValue?: string | undefined;
861
860
  } | undefined;
861
+ gridRow?: 1 | 2 | undefined;
862
862
  mobileZone?: 2 | 5 | undefined;
863
863
  buttons?: {
864
- href: string;
865
864
  text: string;
866
865
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
866
+ href: string;
867
867
  id?: string | undefined;
868
868
  openInNewTab?: boolean | undefined;
869
869
  }[] | undefined;
@@ -877,29 +877,22 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
877
877
  openInNewTab: boolean;
878
878
  } | undefined;
879
879
  background?: {
880
- type: "image" | "video" | "color" | "gradient";
881
- url?: string | undefined;
880
+ type: "color" | "gradient" | "video" | "image";
882
881
  color?: string | undefined;
882
+ url?: string | undefined;
883
883
  thumbnail?: string | undefined;
884
884
  mobileUrl?: string | undefined;
885
885
  gradientFrom?: string | undefined;
886
886
  gradientTo?: string | undefined;
887
887
  gradientAngle?: number | undefined;
888
888
  dimOverlay?: {
889
- opacity: number;
890
889
  enabled: boolean;
890
+ opacity: number;
891
891
  } | undefined;
892
892
  } | undefined;
893
- media?: {
894
- url: string;
895
- type: "image" | "video";
896
- alt?: string | undefined;
897
- thumbnail?: string | undefined;
898
- } | undefined;
899
893
  overlay?: {
900
- title?: string | undefined;
901
- description?: string | undefined;
902
894
  color?: string | undefined;
895
+ title?: string | undefined;
903
896
  button?: {
904
897
  link: string;
905
898
  text: string;
@@ -907,17 +900,24 @@ export declare const carouselSlideFirestoreSchema: z.ZodObject<{
907
900
  openInNewTab: boolean;
908
901
  id?: string | undefined;
909
902
  } | undefined;
910
- opacity?: number | undefined;
911
903
  enabled?: boolean | undefined;
904
+ opacity?: number | undefined;
905
+ description?: string | undefined;
912
906
  subtitle?: string | undefined;
913
907
  } | undefined;
908
+ media?: {
909
+ type: "video" | "image";
910
+ url: string;
911
+ alt?: string | undefined;
912
+ thumbnail?: string | undefined;
913
+ } | undefined;
914
914
  settings?: {
915
915
  height?: "medium" | "viewport" | "tall" | undefined;
916
916
  autoplayDelayMs?: number | undefined;
917
917
  } | undefined;
918
918
  mobileMedia?: {
919
+ type: "video" | "image";
919
920
  url: string;
920
- type: "image" | "video";
921
921
  alt?: string | undefined;
922
922
  } | undefined;
923
923
  carouselId?: string | null | undefined;