@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
@@ -31,16 +31,16 @@ export declare const SCHEMAS: {
31
31
  isDefault: import("zod").ZodBoolean;
32
32
  }, "strip", import("zod").ZodTypeAny, {
33
33
  country: string;
34
- phone: string;
34
+ id: string;
35
+ label: string;
35
36
  createdAt: string | Date | import("zod").objectOutputType<{
36
37
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
37
38
  }, import("zod").ZodTypeAny, "passthrough">;
38
- id: string;
39
39
  updatedAt: string | Date | import("zod").objectOutputType<{
40
40
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
41
41
  }, import("zod").ZodTypeAny, "passthrough">;
42
- label: string;
43
42
  isDefault: boolean;
43
+ phone: string;
44
44
  state: string;
45
45
  city: string;
46
46
  addressLine1: string;
@@ -52,16 +52,16 @@ export declare const SCHEMAS: {
52
52
  landmark?: string | undefined;
53
53
  }, {
54
54
  country: string;
55
- phone: string;
55
+ id: string;
56
+ label: string;
56
57
  createdAt: string | Date | import("zod").objectInputType<{
57
58
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
58
59
  }, import("zod").ZodTypeAny, "passthrough">;
59
- id: string;
60
60
  updatedAt: string | Date | import("zod").objectInputType<{
61
61
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
62
62
  }, import("zod").ZodTypeAny, "passthrough">;
63
- label: string;
64
63
  isDefault: boolean;
64
+ phone: string;
65
65
  state: string;
66
66
  city: string;
67
67
  addressLine1: string;
@@ -100,18 +100,18 @@ export declare const SCHEMAS: {
100
100
  source: import("zod").ZodOptional<import("zod").ZodEnum<["upload", "youtube", "external"]>>;
101
101
  youtubeId: import("zod").ZodOptional<import("zod").ZodString>;
102
102
  }, "strip", import("zod").ZodTypeAny, {
103
+ type: "video" | "image" | "file";
103
104
  url: string;
104
- type: "image" | "video" | "file";
105
+ source?: "upload" | "youtube" | "external" | undefined;
105
106
  alt?: string | undefined;
106
107
  thumbnailUrl?: string | undefined;
107
- source?: "upload" | "youtube" | "external" | undefined;
108
108
  youtubeId?: string | undefined;
109
109
  }, {
110
+ type: "video" | "image" | "file";
110
111
  url: string;
111
- type: "image" | "video" | "file";
112
+ source?: "upload" | "youtube" | "external" | undefined;
112
113
  alt?: string | undefined;
113
114
  thumbnailUrl?: string | undefined;
114
- source?: "upload" | "youtube" | "external" | undefined;
115
115
  youtubeId?: string | undefined;
116
116
  }>>;
117
117
  contentImages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -122,18 +122,18 @@ export declare const SCHEMAS: {
122
122
  source: import("zod").ZodOptional<import("zod").ZodEnum<["upload", "youtube", "external"]>>;
123
123
  youtubeId: import("zod").ZodOptional<import("zod").ZodString>;
124
124
  }, "strip", import("zod").ZodTypeAny, {
125
+ type: "video" | "image" | "file";
125
126
  url: string;
126
- type: "image" | "video" | "file";
127
+ source?: "upload" | "youtube" | "external" | undefined;
127
128
  alt?: string | undefined;
128
129
  thumbnailUrl?: string | undefined;
129
- source?: "upload" | "youtube" | "external" | undefined;
130
130
  youtubeId?: string | undefined;
131
131
  }, {
132
+ type: "video" | "image" | "file";
132
133
  url: string;
133
- type: "image" | "video" | "file";
134
+ source?: "upload" | "youtube" | "external" | undefined;
134
135
  alt?: string | undefined;
135
136
  thumbnailUrl?: string | undefined;
136
- source?: "upload" | "youtube" | "external" | undefined;
137
137
  youtubeId?: string | undefined;
138
138
  }>, "many">>;
139
139
  additionalImages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
@@ -144,18 +144,18 @@ export declare const SCHEMAS: {
144
144
  source: import("zod").ZodOptional<import("zod").ZodEnum<["upload", "youtube", "external"]>>;
145
145
  youtubeId: import("zod").ZodOptional<import("zod").ZodString>;
146
146
  }, "strip", import("zod").ZodTypeAny, {
147
+ type: "video" | "image" | "file";
147
148
  url: string;
148
- type: "image" | "video" | "file";
149
+ source?: "upload" | "youtube" | "external" | undefined;
149
150
  alt?: string | undefined;
150
151
  thumbnailUrl?: string | undefined;
151
- source?: "upload" | "youtube" | "external" | undefined;
152
152
  youtubeId?: string | undefined;
153
153
  }, {
154
+ type: "video" | "image" | "file";
154
155
  url: string;
155
- type: "image" | "video" | "file";
156
+ source?: "upload" | "youtube" | "external" | undefined;
156
157
  alt?: string | undefined;
157
158
  thumbnailUrl?: string | undefined;
158
- source?: "upload" | "youtube" | "external" | undefined;
159
159
  youtubeId?: string | undefined;
160
160
  }>, "many">>;
161
161
  category: import("zod").ZodString;
@@ -178,18 +178,18 @@ export declare const SCHEMAS: {
178
178
  metaDescription: import("zod").ZodOptional<import("zod").ZodString>;
179
179
  }, "strip", import("zod").ZodTypeAny, {
180
180
  status: "draft" | "published" | "archived";
181
- category: string;
181
+ id: string;
182
+ title: string;
183
+ content: string;
182
184
  createdAt: string | Date | import("zod").objectOutputType<{
183
185
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
184
186
  }, import("zod").ZodTypeAny, "passthrough">;
185
- title: string;
186
- slug: string;
187
- tags: string[];
188
- id: string;
189
187
  updatedAt: string | Date | import("zod").objectOutputType<{
190
188
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
191
189
  }, import("zod").ZodTypeAny, "passthrough">;
192
- content: string;
190
+ category: string;
191
+ slug: string;
192
+ tags: string[];
193
193
  isFeatured: boolean;
194
194
  excerpt: string;
195
195
  authorId: string;
@@ -200,46 +200,46 @@ export declare const SCHEMAS: {
200
200
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
201
201
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
202
202
  coverImage?: {
203
+ type: "video" | "image" | "file";
203
204
  url: string;
204
- type: "image" | "video" | "file";
205
+ source?: "upload" | "youtube" | "external" | undefined;
205
206
  alt?: string | undefined;
206
207
  thumbnailUrl?: string | undefined;
207
- source?: "upload" | "youtube" | "external" | undefined;
208
208
  youtubeId?: string | undefined;
209
209
  } | undefined;
210
210
  metaTitle?: string | undefined;
211
211
  metaDescription?: string | undefined;
212
212
  contentImages?: {
213
+ type: "video" | "image" | "file";
213
214
  url: string;
214
- type: "image" | "video" | "file";
215
+ source?: "upload" | "youtube" | "external" | undefined;
215
216
  alt?: string | undefined;
216
217
  thumbnailUrl?: string | undefined;
217
- source?: "upload" | "youtube" | "external" | undefined;
218
218
  youtubeId?: string | undefined;
219
219
  }[] | undefined;
220
220
  additionalImages?: {
221
+ type: "video" | "image" | "file";
221
222
  url: string;
222
- type: "image" | "video" | "file";
223
+ source?: "upload" | "youtube" | "external" | undefined;
223
224
  alt?: string | undefined;
224
225
  thumbnailUrl?: string | undefined;
225
- source?: "upload" | "youtube" | "external" | undefined;
226
226
  youtubeId?: string | undefined;
227
227
  }[] | undefined;
228
228
  authorAvatar?: string | undefined;
229
229
  }, {
230
230
  status: "draft" | "published" | "archived";
231
- category: string;
231
+ id: string;
232
+ title: string;
233
+ content: string;
232
234
  createdAt: string | Date | import("zod").objectInputType<{
233
235
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
234
236
  }, import("zod").ZodTypeAny, "passthrough">;
235
- title: string;
236
- slug: string;
237
- tags: string[];
238
- id: string;
239
237
  updatedAt: string | Date | import("zod").objectInputType<{
240
238
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
241
239
  }, import("zod").ZodTypeAny, "passthrough">;
242
- content: string;
240
+ category: string;
241
+ slug: string;
242
+ tags: string[];
243
243
  isFeatured: boolean;
244
244
  excerpt: string;
245
245
  authorId: string;
@@ -250,29 +250,29 @@ export declare const SCHEMAS: {
250
250
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
251
251
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
252
252
  coverImage?: {
253
+ type: "video" | "image" | "file";
253
254
  url: string;
254
- type: "image" | "video" | "file";
255
+ source?: "upload" | "youtube" | "external" | undefined;
255
256
  alt?: string | undefined;
256
257
  thumbnailUrl?: string | undefined;
257
- source?: "upload" | "youtube" | "external" | undefined;
258
258
  youtubeId?: string | undefined;
259
259
  } | undefined;
260
260
  metaTitle?: string | undefined;
261
261
  metaDescription?: string | undefined;
262
262
  contentImages?: {
263
+ type: "video" | "image" | "file";
263
264
  url: string;
264
- type: "image" | "video" | "file";
265
+ source?: "upload" | "youtube" | "external" | undefined;
265
266
  alt?: string | undefined;
266
267
  thumbnailUrl?: string | undefined;
267
- source?: "upload" | "youtube" | "external" | undefined;
268
268
  youtubeId?: string | undefined;
269
269
  }[] | undefined;
270
270
  additionalImages?: {
271
+ type: "video" | "image" | "file";
271
272
  url: string;
272
- type: "image" | "video" | "file";
273
+ source?: "upload" | "youtube" | "external" | undefined;
273
274
  alt?: string | undefined;
274
275
  thumbnailUrl?: string | undefined;
275
- source?: "upload" | "youtube" | "external" | undefined;
276
276
  youtubeId?: string | undefined;
277
277
  }[] | undefined;
278
278
  authorAvatar?: string | undefined;
@@ -299,26 +299,26 @@ export declare const SCHEMAS: {
299
299
  createdBy: import("zod").ZodString;
300
300
  }, "strip", import("zod").ZodTypeAny, {
301
301
  status: "draft" | "active";
302
+ id: string;
303
+ name: string;
302
304
  createdAt: string | Date | import("zod").objectOutputType<{
303
305
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
304
306
  }, import("zod").ZodTypeAny, "passthrough">;
305
- id: string;
306
307
  updatedAt: string | Date | import("zod").objectOutputType<{
307
308
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
308
309
  }, import("zod").ZodTypeAny, "passthrough">;
309
- name: string;
310
310
  createdBy: string;
311
311
  slideIds: string[];
312
312
  }, {
313
313
  status: "draft" | "active";
314
+ id: string;
315
+ name: string;
314
316
  createdAt: string | Date | import("zod").objectInputType<{
315
317
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
316
318
  }, import("zod").ZodTypeAny, "passthrough">;
317
- id: string;
318
319
  updatedAt: string | Date | import("zod").objectInputType<{
319
320
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
320
321
  }, import("zod").ZodTypeAny, "passthrough">;
321
- name: string;
322
322
  createdBy: string;
323
323
  slideIds: string[];
324
324
  }>;
@@ -355,37 +355,37 @@ export declare const SCHEMAS: {
355
355
  enabled: import("zod").ZodBoolean;
356
356
  opacity: import("zod").ZodNumber;
357
357
  }, "strip", import("zod").ZodTypeAny, {
358
- opacity: number;
359
358
  enabled: boolean;
360
- }, {
361
359
  opacity: number;
360
+ }, {
362
361
  enabled: boolean;
362
+ opacity: number;
363
363
  }>>;
364
364
  }, "strip", import("zod").ZodTypeAny, {
365
- type: "image" | "video" | "color" | "gradient";
366
- url?: string | undefined;
365
+ type: "color" | "gradient" | "video" | "image";
367
366
  color?: string | undefined;
367
+ url?: string | undefined;
368
368
  thumbnail?: string | undefined;
369
369
  mobileUrl?: string | undefined;
370
370
  gradientFrom?: string | undefined;
371
371
  gradientTo?: string | undefined;
372
372
  gradientAngle?: number | undefined;
373
373
  dimOverlay?: {
374
- opacity: number;
375
374
  enabled: boolean;
375
+ opacity: number;
376
376
  } | undefined;
377
377
  }, {
378
- type: "image" | "video" | "color" | "gradient";
379
- url?: string | undefined;
378
+ type: "color" | "gradient" | "video" | "image";
380
379
  color?: string | undefined;
380
+ url?: string | undefined;
381
381
  thumbnail?: string | undefined;
382
382
  mobileUrl?: string | undefined;
383
383
  gradientFrom?: string | undefined;
384
384
  gradientTo?: string | undefined;
385
385
  gradientAngle?: number | undefined;
386
386
  dimOverlay?: {
387
- opacity: number;
388
387
  enabled: boolean;
388
+ opacity: number;
389
389
  } | undefined;
390
390
  }>>;
391
391
  media: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -394,13 +394,13 @@ export declare const SCHEMAS: {
394
394
  alt: import("zod").ZodOptional<import("zod").ZodString>;
395
395
  thumbnail: import("zod").ZodOptional<import("zod").ZodString>;
396
396
  }, "strip", import("zod").ZodTypeAny, {
397
+ type: "video" | "image";
397
398
  url: string;
398
- type: "image" | "video";
399
399
  alt?: string | undefined;
400
400
  thumbnail?: string | undefined;
401
401
  }, {
402
+ type: "video" | "image";
402
403
  url: string;
403
- type: "image" | "video";
404
404
  alt?: string | undefined;
405
405
  thumbnail?: string | undefined;
406
406
  }>>;
@@ -419,12 +419,12 @@ export declare const SCHEMAS: {
419
419
  url: import("zod").ZodString;
420
420
  alt: import("zod").ZodOptional<import("zod").ZodString>;
421
421
  }, "strip", import("zod").ZodTypeAny, {
422
+ type: "video" | "image";
422
423
  url: string;
423
- type: "image" | "video";
424
424
  alt?: string | undefined;
425
425
  }, {
426
+ type: "video" | "image";
426
427
  url: string;
427
- type: "image" | "video";
428
428
  alt?: string | undefined;
429
429
  }>>;
430
430
  cards: import("zod").ZodArray<import("zod").ZodObject<{
@@ -444,37 +444,37 @@ export declare const SCHEMAS: {
444
444
  enabled: import("zod").ZodBoolean;
445
445
  opacity: import("zod").ZodNumber;
446
446
  }, "strip", import("zod").ZodTypeAny, {
447
- opacity: number;
448
447
  enabled: boolean;
449
- }, {
450
448
  opacity: number;
449
+ }, {
451
450
  enabled: boolean;
451
+ opacity: number;
452
452
  }>>;
453
453
  }, "strip", import("zod").ZodTypeAny, {
454
- type: "image" | "video" | "color" | "gradient";
455
- url?: string | undefined;
454
+ type: "color" | "gradient" | "video" | "image";
456
455
  color?: string | undefined;
456
+ url?: string | undefined;
457
457
  thumbnail?: string | undefined;
458
458
  mobileUrl?: string | undefined;
459
459
  gradientFrom?: string | undefined;
460
460
  gradientTo?: string | undefined;
461
461
  gradientAngle?: number | undefined;
462
462
  dimOverlay?: {
463
- opacity: number;
464
463
  enabled: boolean;
464
+ opacity: number;
465
465
  } | undefined;
466
466
  }, {
467
- type: "image" | "video" | "color" | "gradient";
468
- url?: string | undefined;
467
+ type: "color" | "gradient" | "video" | "image";
469
468
  color?: string | undefined;
469
+ url?: string | undefined;
470
470
  thumbnail?: string | undefined;
471
471
  mobileUrl?: string | undefined;
472
472
  gradientFrom?: string | undefined;
473
473
  gradientTo?: string | undefined;
474
474
  gradientAngle?: number | undefined;
475
475
  dimOverlay?: {
476
- opacity: number;
477
476
  enabled: boolean;
477
+ opacity: number;
478
478
  } | undefined;
479
479
  }>;
480
480
  content: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -506,15 +506,15 @@ export declare const SCHEMAS: {
506
506
  variant: import("zod").ZodEnum<["primary", "secondary", "outline", "ghost", "link"]>;
507
507
  openInNewTab: import("zod").ZodOptional<import("zod").ZodBoolean>;
508
508
  }, "strip", import("zod").ZodTypeAny, {
509
- href: string;
510
509
  text: string;
511
510
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
511
+ href: string;
512
512
  id?: string | undefined;
513
513
  openInNewTab?: boolean | undefined;
514
514
  }, {
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
  }>, "many">>;
@@ -537,17 +537,17 @@ export declare const SCHEMAS: {
537
537
  }, "strip", import("zod").ZodTypeAny, {
538
538
  id: string;
539
539
  background: {
540
- type: "image" | "video" | "color" | "gradient";
541
- url?: string | undefined;
540
+ type: "color" | "gradient" | "video" | "image";
542
541
  color?: string | undefined;
542
+ url?: string | undefined;
543
543
  thumbnail?: string | undefined;
544
544
  mobileUrl?: string | undefined;
545
545
  gradientFrom?: string | undefined;
546
546
  gradientTo?: string | undefined;
547
547
  gradientAngle?: number | undefined;
548
548
  dimOverlay?: {
549
- opacity: number;
550
549
  enabled: boolean;
550
+ opacity: number;
551
551
  } | undefined;
552
552
  };
553
553
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -559,17 +559,17 @@ export declare const SCHEMAS: {
559
559
  subtitle?: string | undefined;
560
560
  eyebrow?: string | undefined;
561
561
  } | undefined;
562
- gridRow?: 1 | 2 | undefined;
563
562
  hover?: {
564
563
  effect: "none" | "color" | "scale" | "glow";
565
564
  scaleValue?: number | undefined;
566
565
  colorValue?: string | undefined;
567
566
  } | undefined;
567
+ gridRow?: 1 | 2 | undefined;
568
568
  mobileZone?: 2 | 5 | undefined;
569
569
  buttons?: {
570
- href: string;
571
570
  text: string;
572
571
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
572
+ href: string;
573
573
  id?: string | undefined;
574
574
  openInNewTab?: boolean | undefined;
575
575
  }[] | undefined;
@@ -578,17 +578,17 @@ export declare const SCHEMAS: {
578
578
  }, {
579
579
  id: string;
580
580
  background: {
581
- type: "image" | "video" | "color" | "gradient";
582
- url?: string | undefined;
581
+ type: "color" | "gradient" | "video" | "image";
583
582
  color?: string | undefined;
583
+ url?: string | undefined;
584
584
  thumbnail?: string | undefined;
585
585
  mobileUrl?: string | undefined;
586
586
  gradientFrom?: string | undefined;
587
587
  gradientTo?: string | undefined;
588
588
  gradientAngle?: number | undefined;
589
589
  dimOverlay?: {
590
- opacity: number;
591
590
  enabled: boolean;
591
+ opacity: number;
592
592
  } | undefined;
593
593
  };
594
594
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -600,17 +600,17 @@ export declare const SCHEMAS: {
600
600
  subtitle?: string | undefined;
601
601
  eyebrow?: string | undefined;
602
602
  } | undefined;
603
- gridRow?: 1 | 2 | undefined;
604
603
  hover?: {
605
604
  effect: "none" | "color" | "scale" | "glow";
606
605
  scaleValue?: number | undefined;
607
606
  colorValue?: string | undefined;
608
607
  } | undefined;
608
+ gridRow?: 1 | 2 | undefined;
609
609
  mobileZone?: 2 | 5 | undefined;
610
610
  buttons?: {
611
- href: string;
612
611
  text: string;
613
612
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
613
+ href: string;
614
614
  id?: string | undefined;
615
615
  openInNewTab?: boolean | undefined;
616
616
  }[] | undefined;
@@ -644,9 +644,8 @@ export declare const SCHEMAS: {
644
644
  id?: string | undefined;
645
645
  }>>;
646
646
  }, "strip", import("zod").ZodTypeAny, {
647
- title?: string | undefined;
648
- description?: string | undefined;
649
647
  color?: string | undefined;
648
+ title?: string | undefined;
650
649
  button?: {
651
650
  link: string;
652
651
  text: string;
@@ -654,13 +653,13 @@ export declare const SCHEMAS: {
654
653
  openInNewTab: boolean;
655
654
  id?: string | undefined;
656
655
  } | undefined;
657
- opacity?: number | undefined;
658
656
  enabled?: boolean | undefined;
657
+ opacity?: number | undefined;
658
+ description?: string | undefined;
659
659
  subtitle?: string | undefined;
660
660
  }, {
661
- title?: string | undefined;
662
- description?: string | undefined;
663
661
  color?: string | undefined;
662
+ title?: string | undefined;
664
663
  button?: {
665
664
  link: string;
666
665
  text: string;
@@ -668,8 +667,9 @@ export declare const SCHEMAS: {
668
667
  openInNewTab: boolean;
669
668
  id?: string | undefined;
670
669
  } | undefined;
671
- opacity?: number | undefined;
672
670
  enabled?: boolean | undefined;
671
+ opacity?: number | undefined;
672
+ description?: string | undefined;
673
673
  subtitle?: string | undefined;
674
674
  }>>;
675
675
  settings: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -704,11 +704,11 @@ export declare const SCHEMAS: {
704
704
  }>>;
705
705
  createdBy: import("zod").ZodString;
706
706
  }, "strip", import("zod").ZodTypeAny, {
707
+ id: string;
708
+ title: string;
707
709
  createdAt: string | Date | import("zod").objectOutputType<{
708
710
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
709
711
  }, import("zod").ZodTypeAny, "passthrough">;
710
- title: string;
711
- id: string;
712
712
  updatedAt: string | Date | import("zod").objectOutputType<{
713
713
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
714
714
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -716,17 +716,17 @@ export declare const SCHEMAS: {
716
716
  cards: {
717
717
  id: string;
718
718
  background: {
719
- type: "image" | "video" | "color" | "gradient";
720
- url?: string | undefined;
719
+ type: "color" | "gradient" | "video" | "image";
721
720
  color?: string | undefined;
721
+ url?: string | undefined;
722
722
  thumbnail?: string | undefined;
723
723
  mobileUrl?: string | undefined;
724
724
  gradientFrom?: string | undefined;
725
725
  gradientTo?: string | undefined;
726
726
  gradientAngle?: number | undefined;
727
727
  dimOverlay?: {
728
- opacity: number;
729
728
  enabled: boolean;
729
+ opacity: number;
730
730
  } | undefined;
731
731
  };
732
732
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -738,17 +738,17 @@ export declare const SCHEMAS: {
738
738
  subtitle?: string | undefined;
739
739
  eyebrow?: string | undefined;
740
740
  } | undefined;
741
- gridRow?: 1 | 2 | undefined;
742
741
  hover?: {
743
742
  effect: "none" | "color" | "scale" | "glow";
744
743
  scaleValue?: number | undefined;
745
744
  colorValue?: string | undefined;
746
745
  } | undefined;
746
+ gridRow?: 1 | 2 | undefined;
747
747
  mobileZone?: 2 | 5 | undefined;
748
748
  buttons?: {
749
- href: string;
750
749
  text: string;
751
750
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
751
+ href: string;
752
752
  id?: string | undefined;
753
753
  openInNewTab?: boolean | undefined;
754
754
  }[] | undefined;
@@ -762,29 +762,22 @@ export declare const SCHEMAS: {
762
762
  openInNewTab: boolean;
763
763
  } | undefined;
764
764
  background?: {
765
- type: "image" | "video" | "color" | "gradient";
766
- url?: string | undefined;
765
+ type: "color" | "gradient" | "video" | "image";
767
766
  color?: string | undefined;
767
+ url?: string | undefined;
768
768
  thumbnail?: string | undefined;
769
769
  mobileUrl?: string | undefined;
770
770
  gradientFrom?: string | undefined;
771
771
  gradientTo?: string | undefined;
772
772
  gradientAngle?: number | undefined;
773
773
  dimOverlay?: {
774
- opacity: number;
775
774
  enabled: boolean;
775
+ opacity: number;
776
776
  } | undefined;
777
777
  } | undefined;
778
- media?: {
779
- url: string;
780
- type: "image" | "video";
781
- alt?: string | undefined;
782
- thumbnail?: string | undefined;
783
- } | undefined;
784
778
  overlay?: {
785
- title?: string | undefined;
786
- description?: string | undefined;
787
779
  color?: string | undefined;
780
+ title?: string | undefined;
788
781
  button?: {
789
782
  link: string;
790
783
  text: string;
@@ -792,17 +785,24 @@ export declare const SCHEMAS: {
792
785
  openInNewTab: boolean;
793
786
  id?: string | undefined;
794
787
  } | undefined;
795
- opacity?: number | undefined;
796
788
  enabled?: boolean | undefined;
789
+ opacity?: number | undefined;
790
+ description?: string | undefined;
797
791
  subtitle?: string | undefined;
798
792
  } | undefined;
793
+ media?: {
794
+ type: "video" | "image";
795
+ url: string;
796
+ alt?: string | undefined;
797
+ thumbnail?: string | undefined;
798
+ } | undefined;
799
799
  settings?: {
800
800
  height?: "medium" | "viewport" | "tall" | undefined;
801
801
  autoplayDelayMs?: number | undefined;
802
802
  } | undefined;
803
803
  mobileMedia?: {
804
+ type: "video" | "image";
804
805
  url: string;
805
- type: "image" | "video";
806
806
  alt?: string | undefined;
807
807
  } | undefined;
808
808
  carouselId?: string | null | undefined;
@@ -813,11 +813,11 @@ export declare const SCHEMAS: {
813
813
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
814
814
  } | undefined;
815
815
  }, {
816
+ id: string;
817
+ title: string;
816
818
  createdAt: string | Date | import("zod").objectInputType<{
817
819
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
818
820
  }, import("zod").ZodTypeAny, "passthrough">;
819
- title: string;
820
- id: string;
821
821
  updatedAt: string | Date | import("zod").objectInputType<{
822
822
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
823
823
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -825,17 +825,17 @@ export declare const SCHEMAS: {
825
825
  cards: {
826
826
  id: string;
827
827
  background: {
828
- type: "image" | "video" | "color" | "gradient";
829
- url?: string | undefined;
828
+ type: "color" | "gradient" | "video" | "image";
830
829
  color?: string | undefined;
830
+ url?: string | undefined;
831
831
  thumbnail?: string | undefined;
832
832
  mobileUrl?: string | undefined;
833
833
  gradientFrom?: string | undefined;
834
834
  gradientTo?: string | undefined;
835
835
  gradientAngle?: number | undefined;
836
836
  dimOverlay?: {
837
- opacity: number;
838
837
  enabled: boolean;
838
+ opacity: number;
839
839
  } | undefined;
840
840
  };
841
841
  zone: 3 | 6 | 1 | 2 | 4 | 5;
@@ -847,17 +847,17 @@ export declare const SCHEMAS: {
847
847
  subtitle?: string | undefined;
848
848
  eyebrow?: string | undefined;
849
849
  } | undefined;
850
- gridRow?: 1 | 2 | undefined;
851
850
  hover?: {
852
851
  effect: "none" | "color" | "scale" | "glow";
853
852
  scaleValue?: number | undefined;
854
853
  colorValue?: string | undefined;
855
854
  } | undefined;
855
+ gridRow?: 1 | 2 | undefined;
856
856
  mobileZone?: 2 | 5 | undefined;
857
857
  buttons?: {
858
- href: string;
859
858
  text: string;
860
859
  variant: "link" | "primary" | "secondary" | "ghost" | "outline";
860
+ href: string;
861
861
  id?: string | undefined;
862
862
  openInNewTab?: boolean | undefined;
863
863
  }[] | undefined;
@@ -871,29 +871,22 @@ export declare const SCHEMAS: {
871
871
  openInNewTab: boolean;
872
872
  } | undefined;
873
873
  background?: {
874
- type: "image" | "video" | "color" | "gradient";
875
- url?: string | undefined;
874
+ type: "color" | "gradient" | "video" | "image";
876
875
  color?: string | undefined;
876
+ url?: string | undefined;
877
877
  thumbnail?: string | undefined;
878
878
  mobileUrl?: string | undefined;
879
879
  gradientFrom?: string | undefined;
880
880
  gradientTo?: string | undefined;
881
881
  gradientAngle?: number | undefined;
882
882
  dimOverlay?: {
883
- opacity: number;
884
883
  enabled: boolean;
884
+ opacity: number;
885
885
  } | undefined;
886
886
  } | undefined;
887
- media?: {
888
- url: string;
889
- type: "image" | "video";
890
- alt?: string | undefined;
891
- thumbnail?: string | undefined;
892
- } | undefined;
893
887
  overlay?: {
894
- title?: string | undefined;
895
- description?: string | undefined;
896
888
  color?: string | undefined;
889
+ title?: string | undefined;
897
890
  button?: {
898
891
  link: string;
899
892
  text: string;
@@ -901,17 +894,24 @@ export declare const SCHEMAS: {
901
894
  openInNewTab: boolean;
902
895
  id?: string | undefined;
903
896
  } | undefined;
904
- opacity?: number | undefined;
905
897
  enabled?: boolean | undefined;
898
+ opacity?: number | undefined;
899
+ description?: string | undefined;
906
900
  subtitle?: string | undefined;
907
901
  } | undefined;
902
+ media?: {
903
+ type: "video" | "image";
904
+ url: string;
905
+ alt?: string | undefined;
906
+ thumbnail?: string | undefined;
907
+ } | undefined;
908
908
  settings?: {
909
909
  height?: "medium" | "viewport" | "tall" | undefined;
910
910
  autoplayDelayMs?: number | undefined;
911
911
  } | undefined;
912
912
  mobileMedia?: {
913
+ type: "video" | "image";
913
914
  url: string;
914
- type: "image" | "video";
915
915
  alt?: string | undefined;
916
916
  } | undefined;
917
917
  carouselId?: string | null | undefined;
@@ -1134,15 +1134,7 @@ export declare const SCHEMAS: {
1134
1134
  }>, "many">;
1135
1135
  }, "strip", import("zod").ZodTypeAny, {
1136
1136
  path: string;
1137
- createdAt: string | Date | import("zod").objectOutputType<{
1138
- toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1139
- }, import("zod").ZodTypeAny, "passthrough">;
1140
- slug: string;
1141
1137
  id: string;
1142
- updatedAt: string | Date | import("zod").objectOutputType<{
1143
- toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1144
- }, import("zod").ZodTypeAny, "passthrough">;
1145
- name: string;
1146
1138
  display: {
1147
1139
  showInFooter: boolean;
1148
1140
  showInMenu: boolean;
@@ -1150,6 +1142,14 @@ export declare const SCHEMAS: {
1150
1142
  icon?: string | undefined;
1151
1143
  coverImage?: string | undefined;
1152
1144
  };
1145
+ name: string;
1146
+ createdAt: string | Date | import("zod").objectOutputType<{
1147
+ toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1148
+ }, import("zod").ZodTypeAny, "passthrough">;
1149
+ updatedAt: string | Date | import("zod").objectOutputType<{
1150
+ toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1151
+ }, import("zod").ZodTypeAny, "passthrough">;
1152
+ slug: string;
1153
1153
  order: number;
1154
1154
  position: number;
1155
1155
  isActive: boolean;
@@ -1189,7 +1189,7 @@ export declare const SCHEMAS: {
1189
1189
  description?: string | undefined;
1190
1190
  bundleProductIds?: string[] | undefined;
1191
1191
  showOnHomepage?: boolean | undefined;
1192
- categoryType?: "category" | "brand" | "sublisting" | "bundle" | undefined;
1192
+ categoryType?: "brand" | "category" | "sublisting" | "bundle" | undefined;
1193
1193
  bundleKind?: "brand" | "special" | undefined;
1194
1194
  bundleItemDetails?: {
1195
1195
  productId: string;
@@ -1228,15 +1228,7 @@ export declare const SCHEMAS: {
1228
1228
  createdByStoreName?: string | undefined;
1229
1229
  }, {
1230
1230
  path: string;
1231
- createdAt: string | Date | import("zod").objectInputType<{
1232
- toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1233
- }, import("zod").ZodTypeAny, "passthrough">;
1234
- slug: string;
1235
1231
  id: string;
1236
- updatedAt: string | Date | import("zod").objectInputType<{
1237
- toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1238
- }, import("zod").ZodTypeAny, "passthrough">;
1239
- name: string;
1240
1232
  display: {
1241
1233
  showInFooter: boolean;
1242
1234
  showInMenu: boolean;
@@ -1244,6 +1236,14 @@ export declare const SCHEMAS: {
1244
1236
  icon?: string | undefined;
1245
1237
  coverImage?: string | undefined;
1246
1238
  };
1239
+ name: string;
1240
+ createdAt: string | Date | import("zod").objectInputType<{
1241
+ toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1242
+ }, import("zod").ZodTypeAny, "passthrough">;
1243
+ updatedAt: string | Date | import("zod").objectInputType<{
1244
+ toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1245
+ }, import("zod").ZodTypeAny, "passthrough">;
1246
+ slug: string;
1247
1247
  order: number;
1248
1248
  position: number;
1249
1249
  isActive: boolean;
@@ -1283,7 +1283,7 @@ export declare const SCHEMAS: {
1283
1283
  description?: string | undefined;
1284
1284
  bundleProductIds?: string[] | undefined;
1285
1285
  showOnHomepage?: boolean | undefined;
1286
- categoryType?: "category" | "brand" | "sublisting" | "bundle" | undefined;
1286
+ categoryType?: "brand" | "category" | "sublisting" | "bundle" | undefined;
1287
1287
  bundleKind?: "brand" | "special" | undefined;
1288
1288
  bundleItemDetails?: {
1289
1289
  productId: string;
@@ -1373,8 +1373,8 @@ export declare const SCHEMAS: {
1373
1373
  }>;
1374
1374
  }, "strip", import("zod").ZodTypeAny, {
1375
1375
  type: "fixed" | "percentage" | "free_shipping" | "buy_x_get_y";
1376
- name: string;
1377
1376
  scope: "seller" | "admin";
1377
+ name: string;
1378
1378
  discount: {
1379
1379
  value: number;
1380
1380
  maxDiscount?: number | undefined;
@@ -1393,8 +1393,8 @@ export declare const SCHEMAS: {
1393
1393
  description?: string | undefined;
1394
1394
  }, {
1395
1395
  type: "fixed" | "percentage" | "free_shipping" | "buy_x_get_y";
1396
- name: string;
1397
1396
  scope: "seller" | "admin";
1397
+ name: string;
1398
1398
  discount: {
1399
1399
  value: number;
1400
1400
  maxDiscount?: number | undefined;
@@ -1444,8 +1444,8 @@ export declare const SCHEMAS: {
1444
1444
  }, import("zod").ZodTypeAny, "passthrough">>]>;
1445
1445
  }, "strip", import("zod").ZodTypeAny, {
1446
1446
  status: "used" | "active" | "expired";
1447
- source: "prize-draw" | "manual" | "promo" | "spin" | "raffle";
1448
1447
  id: string;
1448
+ source: "manual" | "prize-draw" | "promo" | "spin" | "raffle";
1449
1449
  updatedAt: string | Date | import("zod").objectOutputType<{
1450
1450
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1451
1451
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -1454,8 +1454,8 @@ export declare const SCHEMAS: {
1454
1454
  couponId: string;
1455
1455
  couponSnapshot: {
1456
1456
  type: "fixed" | "percentage" | "free_shipping" | "buy_x_get_y";
1457
- name: string;
1458
1457
  scope: "seller" | "admin";
1458
+ name: string;
1459
1459
  discount: {
1460
1460
  value: number;
1461
1461
  maxDiscount?: number | undefined;
@@ -1485,8 +1485,8 @@ export declare const SCHEMAS: {
1485
1485
  usedOrderId?: string | undefined;
1486
1486
  }, {
1487
1487
  status: "used" | "active" | "expired";
1488
- source: "prize-draw" | "manual" | "promo" | "spin" | "raffle";
1489
1488
  id: string;
1489
+ source: "manual" | "prize-draw" | "promo" | "spin" | "raffle";
1490
1490
  updatedAt: string | Date | import("zod").objectInputType<{
1491
1491
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1492
1492
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -1495,8 +1495,8 @@ export declare const SCHEMAS: {
1495
1495
  couponId: string;
1496
1496
  couponSnapshot: {
1497
1497
  type: "fixed" | "percentage" | "free_shipping" | "buy_x_get_y";
1498
- name: string;
1499
1498
  scope: "seller" | "admin";
1499
+ name: string;
1500
1500
  discount: {
1501
1501
  value: number;
1502
1502
  maxDiscount?: number | undefined;
@@ -1596,15 +1596,15 @@ export declare const SCHEMAS: {
1596
1596
  status: import("zod").ZodEnum<["active", "archived", "blocked"]>;
1597
1597
  }, "strip", import("zod").ZodTypeAny, {
1598
1598
  status: "archived" | "active" | "blocked";
1599
- storeId: string;
1599
+ id: string;
1600
1600
  createdAt: string | Date | import("zod").objectOutputType<{
1601
1601
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1602
1602
  }, import("zod").ZodTypeAny, "passthrough">;
1603
- storeName: string;
1604
- id: string;
1605
1603
  updatedAt: string | Date | import("zod").objectOutputType<{
1606
1604
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1607
1605
  }, import("zod").ZodTypeAny, "passthrough">;
1606
+ storeId: string;
1607
+ storeName: string;
1608
1608
  messages: {
1609
1609
  id: string;
1610
1610
  body: string;
@@ -1629,15 +1629,15 @@ export declare const SCHEMAS: {
1629
1629
  productTitle?: string | undefined;
1630
1630
  }, {
1631
1631
  status: "archived" | "active" | "blocked";
1632
- storeId: string;
1632
+ id: string;
1633
1633
  createdAt: string | Date | import("zod").objectInputType<{
1634
1634
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1635
1635
  }, import("zod").ZodTypeAny, "passthrough">;
1636
- storeName: string;
1637
- id: string;
1638
1636
  updatedAt: string | Date | import("zod").objectInputType<{
1639
1637
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1640
1638
  }, import("zod").ZodTypeAny, "passthrough">;
1639
+ storeId: string;
1640
+ storeName: string;
1641
1641
  messages: {
1642
1642
  id: string;
1643
1643
  body: string;
@@ -1811,16 +1811,16 @@ export declare const SCHEMAS: {
1811
1811
  }, "strip", import("zod").ZodTypeAny, {
1812
1812
  code: string;
1813
1813
  type: "fixed" | "percentage" | "free_shipping" | "buy_x_get_y";
1814
+ id: string;
1815
+ scope: "seller" | "admin";
1816
+ name: string;
1814
1817
  createdAt: string | Date | import("zod").objectOutputType<{
1815
1818
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1816
1819
  }, import("zod").ZodTypeAny, "passthrough">;
1817
- description: string;
1818
- id: string;
1819
1820
  updatedAt: string | Date | import("zod").objectOutputType<{
1820
1821
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1821
1822
  }, import("zod").ZodTypeAny, "passthrough">;
1822
- name: string;
1823
- scope: "seller" | "admin";
1823
+ description: string;
1824
1824
  stats: {
1825
1825
  totalUses: number;
1826
1826
  totalRevenue: number;
@@ -1870,16 +1870,16 @@ export declare const SCHEMAS: {
1870
1870
  }, {
1871
1871
  code: string;
1872
1872
  type: "fixed" | "percentage" | "free_shipping" | "buy_x_get_y";
1873
+ id: string;
1874
+ scope: "seller" | "admin";
1875
+ name: string;
1873
1876
  createdAt: string | Date | import("zod").objectInputType<{
1874
1877
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1875
1878
  }, import("zod").ZodTypeAny, "passthrough">;
1876
- description: string;
1877
- id: string;
1878
1879
  updatedAt: string | Date | import("zod").objectInputType<{
1879
1880
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
1880
1881
  }, import("zod").ZodTypeAny, "passthrough">;
1881
- name: string;
1882
- scope: "seller" | "admin";
1882
+ description: string;
1883
1883
  stats: {
1884
1884
  totalUses: number;
1885
1885
  totalRevenue: number;
@@ -2039,15 +2039,15 @@ export declare const SCHEMAS: {
2039
2039
  isActive: import("zod").ZodBoolean;
2040
2040
  createdBy: import("zod").ZodString;
2041
2041
  }, "strip", import("zod").ZodTypeAny, {
2042
- category: "orders_payment" | "shipping_delivery" | "returns_refunds" | "product_information" | "account_security" | "technical_support" | "general";
2042
+ id: string;
2043
2043
  createdAt: string | Date | import("zod").objectOutputType<{
2044
2044
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2045
2045
  }, import("zod").ZodTypeAny, "passthrough">;
2046
- tags: string[];
2047
- id: string;
2048
2046
  updatedAt: string | Date | import("zod").objectOutputType<{
2049
2047
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2050
2048
  }, import("zod").ZodTypeAny, "passthrough">;
2049
+ category: "orders_payment" | "shipping_delivery" | "returns_refunds" | "product_information" | "account_security" | "technical_support" | "general";
2050
+ tags: string[];
2051
2051
  priority: number;
2052
2052
  order: number;
2053
2053
  stats: {
@@ -2078,15 +2078,15 @@ export declare const SCHEMAS: {
2078
2078
  searchTokens?: string[] | undefined;
2079
2079
  variables?: Record<string, string> | undefined;
2080
2080
  }, {
2081
- category: "orders_payment" | "shipping_delivery" | "returns_refunds" | "product_information" | "account_security" | "technical_support" | "general";
2081
+ id: string;
2082
2082
  createdAt: string | Date | import("zod").objectInputType<{
2083
2083
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2084
2084
  }, import("zod").ZodTypeAny, "passthrough">;
2085
- tags: string[];
2086
- id: string;
2087
2085
  updatedAt: string | Date | import("zod").objectInputType<{
2088
2086
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2089
2087
  }, import("zod").ZodTypeAny, "passthrough">;
2088
+ category: "orders_payment" | "shipping_delivery" | "returns_refunds" | "product_information" | "account_security" | "technical_support" | "general";
2089
+ tags: string[];
2090
2090
  priority: number;
2091
2091
  order: number;
2092
2092
  stats: {
@@ -2149,15 +2149,15 @@ export declare const SCHEMAS: {
2149
2149
  categorySlug: import("zod").ZodOptional<import("zod").ZodString>;
2150
2150
  createdBy: import("zod").ZodString;
2151
2151
  }, "strip", import("zod").ZodTypeAny, {
2152
+ id: string;
2153
+ title: string;
2152
2154
  createdAt: string | Date | import("zod").objectOutputType<{
2153
2155
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2154
2156
  }, import("zod").ZodTypeAny, "passthrough">;
2155
- title: string;
2156
- slug: string;
2157
- id: string;
2158
2157
  updatedAt: string | Date | import("zod").objectOutputType<{
2159
2158
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2160
2159
  }, import("zod").ZodTypeAny, "passthrough">;
2160
+ slug: string;
2161
2161
  isActive: boolean;
2162
2162
  isFeatured: boolean;
2163
2163
  createdBy: string;
@@ -2172,15 +2172,15 @@ export declare const SCHEMAS: {
2172
2172
  categorySlug?: string | undefined;
2173
2173
  coverImage?: string | undefined;
2174
2174
  }, {
2175
+ id: string;
2176
+ title: string;
2175
2177
  createdAt: string | Date | import("zod").objectInputType<{
2176
2178
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2177
2179
  }, import("zod").ZodTypeAny, "passthrough">;
2178
- title: string;
2179
- slug: string;
2180
- id: string;
2181
2180
  updatedAt: string | Date | import("zod").objectInputType<{
2182
2181
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2183
2182
  }, import("zod").ZodTypeAny, "passthrough">;
2183
+ slug: string;
2184
2184
  isActive: boolean;
2185
2185
  isFeatured: boolean;
2186
2186
  createdBy: string;
@@ -2216,28 +2216,28 @@ export declare const SCHEMAS: {
2216
2216
  enabled: import("zod").ZodBoolean;
2217
2217
  config: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodType<import("./types").JsonValue, import("zod").ZodTypeDef, import("./types").JsonValue>>;
2218
2218
  }, "strip", import("zod").ZodTypeAny, {
2219
- 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";
2219
+ 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";
2220
+ id: string;
2220
2221
  createdAt: string | Date | import("zod").objectOutputType<{
2221
2222
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2222
2223
  }, import("zod").ZodTypeAny, "passthrough">;
2223
- id: string;
2224
2224
  updatedAt: string | Date | import("zod").objectOutputType<{
2225
2225
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2226
2226
  }, import("zod").ZodTypeAny, "passthrough">;
2227
- order: number;
2228
2227
  enabled: boolean;
2228
+ order: number;
2229
2229
  config: Record<string, import("./types").JsonValue>;
2230
2230
  }, {
2231
- 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";
2231
+ 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";
2232
+ id: string;
2232
2233
  createdAt: string | Date | import("zod").objectInputType<{
2233
2234
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2234
2235
  }, import("zod").ZodTypeAny, "passthrough">;
2235
- id: string;
2236
2236
  updatedAt: string | Date | import("zod").objectInputType<{
2237
2237
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2238
2238
  }, import("zod").ZodTypeAny, "passthrough">;
2239
- order: number;
2240
2239
  enabled: boolean;
2240
+ order: number;
2241
2241
  config: Record<string, import("./types").JsonValue>;
2242
2242
  }>;
2243
2243
  readonly orders: import("zod").ZodObject<{
@@ -2280,7 +2280,7 @@ export declare const SCHEMAS: {
2280
2280
  unitPrice: number;
2281
2281
  totalPrice: number;
2282
2282
  listingType?: "standard" | "auction" | "pre-order" | "prize-draw" | "classified" | "digital-code" | "live" | undefined;
2283
- prizeRevealStatus?: "pending" | "open" | "closed" | "revealed" | undefined;
2283
+ prizeRevealStatus?: "closed" | "open" | "pending" | "revealed" | undefined;
2284
2284
  prizeRevealDeadline?: string | undefined;
2285
2285
  revealedItemNumber?: number | undefined;
2286
2286
  }, {
@@ -2290,7 +2290,7 @@ export declare const SCHEMAS: {
2290
2290
  unitPrice: number;
2291
2291
  totalPrice: number;
2292
2292
  listingType?: "standard" | "auction" | "pre-order" | "prize-draw" | "classified" | "digital-code" | "live" | undefined;
2293
- prizeRevealStatus?: "pending" | "open" | "closed" | "revealed" | undefined;
2293
+ prizeRevealStatus?: "closed" | "open" | "pending" | "revealed" | undefined;
2294
2294
  prizeRevealDeadline?: string | undefined;
2295
2295
  revealedItemNumber?: number | undefined;
2296
2296
  }>, "many">>;
@@ -2354,15 +2354,15 @@ export declare const SCHEMAS: {
2354
2354
  code: string;
2355
2355
  type: "auto" | "coupon" | "deal";
2356
2356
  discountAmount: number;
2357
- storeId?: string | undefined;
2358
2357
  scope?: "seller" | "admin" | undefined;
2358
+ storeId?: string | undefined;
2359
2359
  couponId?: string | undefined;
2360
2360
  }, {
2361
2361
  code: string;
2362
2362
  type: "auto" | "coupon" | "deal";
2363
2363
  discountAmount: number;
2364
- storeId?: string | undefined;
2365
2364
  scope?: "seller" | "admin" | undefined;
2365
+ storeId?: string | undefined;
2366
2366
  couponId?: string | undefined;
2367
2367
  }>, "many">>;
2368
2368
  platformFee: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -2401,7 +2401,7 @@ export declare const SCHEMAS: {
2401
2401
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2402
2402
  }, import("zod").ZodTypeAny, "passthrough">>]>>;
2403
2403
  }, "strip", import("zod").ZodTypeAny, {
2404
- status: "pending" | "paid" | "overdue";
2404
+ status: "paid" | "pending" | "overdue";
2405
2405
  amount: number;
2406
2406
  index: number;
2407
2407
  dueDate: string | Date | import("zod").objectOutputType<{
@@ -2416,7 +2416,7 @@ export declare const SCHEMAS: {
2416
2416
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2417
2417
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2418
2418
  }, {
2419
- status: "pending" | "paid" | "overdue";
2419
+ status: "paid" | "pending" | "overdue";
2420
2420
  amount: number;
2421
2421
  index: number;
2422
2422
  dueDate: string | Date | import("zod").objectInputType<{
@@ -2553,13 +2553,31 @@ export declare const SCHEMAS: {
2553
2553
  shelf: string;
2554
2554
  bin: string;
2555
2555
  }>>;
2556
+ outOfStockPolicy: import("zod").ZodOptional<import("zod").ZodEnum<["cancel_order", "skip_items"]>>;
2557
+ droppedItems: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
2558
+ productId: import("zod").ZodString;
2559
+ productTitle: import("zod").ZodString;
2560
+ requestedQty: import("zod").ZodNumber;
2561
+ availableQty: import("zod").ZodNumber;
2562
+ }, "strip", import("zod").ZodTypeAny, {
2563
+ productId: string;
2564
+ productTitle: string;
2565
+ requestedQty: number;
2566
+ availableQty: number;
2567
+ }, {
2568
+ productId: string;
2569
+ productTitle: string;
2570
+ requestedQty: number;
2571
+ availableQty: number;
2572
+ }>, "many">>;
2573
+ refundPending: import("zod").ZodOptional<import("zod").ZodBoolean>;
2556
2574
  }, "strip", import("zod").ZodTypeAny, {
2557
2575
  currency: string;
2558
- status: "cancelled" | "pending" | "processing" | "refunded" | "confirmed" | "shipped" | "delivered" | "return_requested" | "returned";
2576
+ status: "pending" | "cancelled" | "processing" | "refunded" | "confirmed" | "shipped" | "delivered" | "return_requested" | "returned";
2577
+ id: string;
2559
2578
  createdAt: string | Date | import("zod").objectOutputType<{
2560
2579
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2561
2580
  }, import("zod").ZodTypeAny, "passthrough">;
2562
- id: string;
2563
2581
  updatedAt: string | Date | import("zod").objectOutputType<{
2564
2582
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2565
2583
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -2568,7 +2586,7 @@ export declare const SCHEMAS: {
2568
2586
  quantity: number;
2569
2587
  productTitle: string;
2570
2588
  userEmail: string;
2571
- paymentStatus: "pending" | "paid" | "failed" | "processing" | "refunded" | "partial_refund";
2589
+ paymentStatus: "paid" | "failed" | "pending" | "processing" | "refunded" | "partial_refund";
2572
2590
  orderDate: string | Date | import("zod").objectOutputType<{
2573
2591
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2574
2592
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -2576,15 +2594,15 @@ export declare const SCHEMAS: {
2576
2594
  unitPrice: number;
2577
2595
  totalPrice: number;
2578
2596
  storeId?: string | undefined;
2597
+ platformFee?: number | undefined;
2598
+ paymentMethod?: string | undefined;
2599
+ notes?: string | undefined;
2579
2600
  storeName?: string | undefined;
2580
2601
  physicalLocation?: {
2581
2602
  zone: string;
2582
2603
  shelf: string;
2583
2604
  bin: string;
2584
2605
  } | undefined;
2585
- platformFee?: number | undefined;
2586
- paymentMethod?: string | undefined;
2587
- notes?: string | undefined;
2588
2606
  items?: {
2589
2607
  productId: string;
2590
2608
  quantity: number;
@@ -2592,7 +2610,7 @@ export declare const SCHEMAS: {
2592
2610
  unitPrice: number;
2593
2611
  totalPrice: number;
2594
2612
  listingType?: "standard" | "auction" | "pre-order" | "prize-draw" | "classified" | "digital-code" | "live" | undefined;
2595
- prizeRevealStatus?: "pending" | "open" | "closed" | "revealed" | undefined;
2613
+ prizeRevealStatus?: "closed" | "open" | "pending" | "revealed" | undefined;
2596
2614
  prizeRevealDeadline?: string | undefined;
2597
2615
  revealedItemNumber?: number | undefined;
2598
2616
  }[] | undefined;
@@ -2624,8 +2642,8 @@ export declare const SCHEMAS: {
2624
2642
  code: string;
2625
2643
  type: "auto" | "coupon" | "deal";
2626
2644
  discountAmount: number;
2627
- storeId?: string | undefined;
2628
2645
  scope?: "seller" | "admin" | undefined;
2646
+ storeId?: string | undefined;
2629
2647
  couponId?: string | undefined;
2630
2648
  }[] | undefined;
2631
2649
  depositAmount?: number | undefined;
@@ -2636,7 +2654,7 @@ export declare const SCHEMAS: {
2636
2654
  emiTokenAmount?: number | undefined;
2637
2655
  emiSurchargeAmount?: number | undefined;
2638
2656
  emiInstallments?: {
2639
- status: "pending" | "paid" | "overdue";
2657
+ status: "paid" | "pending" | "overdue";
2640
2658
  amount: number;
2641
2659
  index: number;
2642
2660
  dueDate: string | Date | import("zod").objectOutputType<{
@@ -2698,13 +2716,21 @@ export declare const SCHEMAS: {
2698
2716
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2699
2717
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2700
2718
  shippingProofUploadedBy?: string | undefined;
2719
+ outOfStockPolicy?: "cancel_order" | "skip_items" | undefined;
2720
+ droppedItems?: {
2721
+ productId: string;
2722
+ productTitle: string;
2723
+ requestedQty: number;
2724
+ availableQty: number;
2725
+ }[] | undefined;
2726
+ refundPending?: boolean | undefined;
2701
2727
  }, {
2702
2728
  currency: string;
2703
- status: "cancelled" | "pending" | "processing" | "refunded" | "confirmed" | "shipped" | "delivered" | "return_requested" | "returned";
2729
+ status: "pending" | "cancelled" | "processing" | "refunded" | "confirmed" | "shipped" | "delivered" | "return_requested" | "returned";
2730
+ id: string;
2704
2731
  createdAt: string | Date | import("zod").objectInputType<{
2705
2732
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2706
2733
  }, import("zod").ZodTypeAny, "passthrough">;
2707
- id: string;
2708
2734
  updatedAt: string | Date | import("zod").objectInputType<{
2709
2735
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2710
2736
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -2713,7 +2739,7 @@ export declare const SCHEMAS: {
2713
2739
  quantity: number;
2714
2740
  productTitle: string;
2715
2741
  userEmail: string;
2716
- paymentStatus: "pending" | "paid" | "failed" | "processing" | "refunded" | "partial_refund";
2742
+ paymentStatus: "paid" | "failed" | "pending" | "processing" | "refunded" | "partial_refund";
2717
2743
  orderDate: string | Date | import("zod").objectInputType<{
2718
2744
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2719
2745
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -2721,15 +2747,15 @@ export declare const SCHEMAS: {
2721
2747
  unitPrice: number;
2722
2748
  totalPrice: number;
2723
2749
  storeId?: string | undefined;
2750
+ platformFee?: number | undefined;
2751
+ paymentMethod?: string | undefined;
2752
+ notes?: string | undefined;
2724
2753
  storeName?: string | undefined;
2725
2754
  physicalLocation?: {
2726
2755
  zone: string;
2727
2756
  shelf: string;
2728
2757
  bin: string;
2729
2758
  } | undefined;
2730
- platformFee?: number | undefined;
2731
- paymentMethod?: string | undefined;
2732
- notes?: string | undefined;
2733
2759
  items?: {
2734
2760
  productId: string;
2735
2761
  quantity: number;
@@ -2737,7 +2763,7 @@ export declare const SCHEMAS: {
2737
2763
  unitPrice: number;
2738
2764
  totalPrice: number;
2739
2765
  listingType?: "standard" | "auction" | "pre-order" | "prize-draw" | "classified" | "digital-code" | "live" | undefined;
2740
- prizeRevealStatus?: "pending" | "open" | "closed" | "revealed" | undefined;
2766
+ prizeRevealStatus?: "closed" | "open" | "pending" | "revealed" | undefined;
2741
2767
  prizeRevealDeadline?: string | undefined;
2742
2768
  revealedItemNumber?: number | undefined;
2743
2769
  }[] | undefined;
@@ -2769,8 +2795,8 @@ export declare const SCHEMAS: {
2769
2795
  code: string;
2770
2796
  type: "auto" | "coupon" | "deal";
2771
2797
  discountAmount: number;
2772
- storeId?: string | undefined;
2773
2798
  scope?: "seller" | "admin" | undefined;
2799
+ storeId?: string | undefined;
2774
2800
  couponId?: string | undefined;
2775
2801
  }[] | undefined;
2776
2802
  depositAmount?: number | undefined;
@@ -2781,7 +2807,7 @@ export declare const SCHEMAS: {
2781
2807
  emiTokenAmount?: number | undefined;
2782
2808
  emiSurchargeAmount?: number | undefined;
2783
2809
  emiInstallments?: {
2784
- status: "pending" | "paid" | "overdue";
2810
+ status: "paid" | "pending" | "overdue";
2785
2811
  amount: number;
2786
2812
  index: number;
2787
2813
  dueDate: string | Date | import("zod").objectInputType<{
@@ -2843,6 +2869,14 @@ export declare const SCHEMAS: {
2843
2869
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2844
2870
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2845
2871
  shippingProofUploadedBy?: string | undefined;
2872
+ outOfStockPolicy?: "cancel_order" | "skip_items" | undefined;
2873
+ droppedItems?: {
2874
+ productId: string;
2875
+ productTitle: string;
2876
+ requestedQty: number;
2877
+ availableQty: number;
2878
+ }[] | undefined;
2879
+ refundPending?: boolean | undefined;
2846
2880
  }>;
2847
2881
  readonly payouts: import("zod").ZodObject<{
2848
2882
  createdAt: import("zod").ZodUnion<[import("zod").ZodDate, import("zod").ZodString, import("zod").ZodObject<{
@@ -2944,21 +2978,21 @@ export declare const SCHEMAS: {
2944
2978
  }, import("zod").ZodTypeAny, "passthrough">>]>>;
2945
2979
  }, "strip", import("zod").ZodTypeAny, {
2946
2980
  currency: string;
2947
- status: "pending" | "paid" | "failed" | "processing";
2948
- storeId: string;
2981
+ status: "paid" | "failed" | "pending" | "processing";
2982
+ id: string;
2949
2983
  createdAt: string | Date | import("zod").objectOutputType<{
2950
2984
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2951
2985
  }, import("zod").ZodTypeAny, "passthrough">;
2952
- id: string;
2953
2986
  updatedAt: string | Date | import("zod").objectOutputType<{
2954
2987
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2955
2988
  }, import("zod").ZodTypeAny, "passthrough">;
2956
- sellerName: string;
2957
- amount: number;
2989
+ storeId: string;
2958
2990
  requestedAt: string | Date | import("zod").objectOutputType<{
2959
2991
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
2960
2992
  }, import("zod").ZodTypeAny, "passthrough">;
2993
+ sellerName: string;
2961
2994
  sellerEmail: string;
2995
+ amount: number;
2962
2996
  grossAmount: number;
2963
2997
  platformFee: number;
2964
2998
  platformFeeRate: number;
@@ -2994,21 +3028,21 @@ export declare const SCHEMAS: {
2994
3028
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
2995
3029
  }, {
2996
3030
  currency: string;
2997
- status: "pending" | "paid" | "failed" | "processing";
2998
- storeId: string;
3031
+ status: "paid" | "failed" | "pending" | "processing";
3032
+ id: string;
2999
3033
  createdAt: string | Date | import("zod").objectInputType<{
3000
3034
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3001
3035
  }, import("zod").ZodTypeAny, "passthrough">;
3002
- id: string;
3003
3036
  updatedAt: string | Date | import("zod").objectInputType<{
3004
3037
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3005
3038
  }, import("zod").ZodTypeAny, "passthrough">;
3006
- sellerName: string;
3007
- amount: number;
3039
+ storeId: string;
3008
3040
  requestedAt: string | Date | import("zod").objectInputType<{
3009
3041
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3010
3042
  }, import("zod").ZodTypeAny, "passthrough">;
3043
+ sellerName: string;
3011
3044
  sellerEmail: string;
3045
+ amount: number;
3012
3046
  grossAmount: number;
3013
3047
  platformFee: number;
3014
3048
  platformFeeRate: number;
@@ -3124,11 +3158,11 @@ export declare const SCHEMAS: {
3124
3158
  }, import("zod").ZodTypeAny, "passthrough">>]>>;
3125
3159
  }, "strip", import("zod").ZodTypeAny, {
3126
3160
  status: "pending" | "approved" | "rejected";
3161
+ id: string;
3162
+ title: string;
3127
3163
  createdAt: string | Date | import("zod").objectOutputType<{
3128
3164
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3129
3165
  }, import("zod").ZodTypeAny, "passthrough">;
3130
- title: string;
3131
- id: string;
3132
3166
  updatedAt: string | Date | import("zod").objectOutputType<{
3133
3167
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3134
3168
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -3171,11 +3205,11 @@ export declare const SCHEMAS: {
3171
3205
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
3172
3206
  }, {
3173
3207
  status: "pending" | "approved" | "rejected";
3208
+ id: string;
3209
+ title: string;
3174
3210
  createdAt: string | Date | import("zod").objectInputType<{
3175
3211
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3176
3212
  }, import("zod").ZodTypeAny, "passthrough">;
3177
- title: string;
3178
- id: string;
3179
3213
  updatedAt: string | Date | import("zod").objectInputType<{
3180
3214
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3181
3215
  }, import("zod").ZodTypeAny, "passthrough">;
@@ -3243,11 +3277,11 @@ export declare const SCHEMAS: {
3243
3277
  handle: import("zod").ZodString;
3244
3278
  url: import("zod").ZodOptional<import("zod").ZodString>;
3245
3279
  }, "strip", import("zod").ZodTypeAny, {
3246
- platform: "youtube" | "other" | "whatsapp" | "instagram" | "facebook" | "twitter" | "linkedin" | "telegram" | "olx";
3280
+ platform: "other" | "whatsapp" | "youtube" | "instagram" | "facebook" | "twitter" | "linkedin" | "telegram" | "olx";
3247
3281
  handle: string;
3248
3282
  url?: string | undefined;
3249
3283
  }, {
3250
- platform: "youtube" | "other" | "whatsapp" | "instagram" | "facebook" | "twitter" | "linkedin" | "telegram" | "olx";
3284
+ platform: "other" | "whatsapp" | "youtube" | "instagram" | "facebook" | "twitter" | "linkedin" | "telegram" | "olx";
3251
3285
  handle: string;
3252
3286
  url?: string | undefined;
3253
3287
  }>, "many">;
@@ -3279,15 +3313,15 @@ export declare const SCHEMAS: {
3279
3313
  isContested: import("zod").ZodOptional<import("zod").ZodBoolean>;
3280
3314
  }, "strip", import("zod").ZodTypeAny, {
3281
3315
  status: "rejected" | "removed" | "verified" | "pending_review";
3316
+ id: string;
3282
3317
  createdAt: string | Date | import("zod").objectOutputType<{
3283
3318
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3284
3319
  }, import("zod").ZodTypeAny, "passthrough">;
3285
- description: string;
3286
- tags: string[];
3287
- id: string;
3288
3320
  updatedAt: string | Date | import("zod").objectOutputType<{
3289
3321
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3290
3322
  }, import("zod").ZodTypeAny, "passthrough">;
3323
+ description: string;
3324
+ tags: string[];
3291
3325
  views: number;
3292
3326
  scamType: string;
3293
3327
  reportedBy: string;
@@ -3301,7 +3335,7 @@ export declare const SCHEMAS: {
3301
3335
  incidentCount: number;
3302
3336
  seoSlug: string;
3303
3337
  socialMedia: {
3304
- platform: "youtube" | "other" | "whatsapp" | "instagram" | "facebook" | "twitter" | "linkedin" | "telegram" | "olx";
3338
+ platform: "other" | "whatsapp" | "youtube" | "instagram" | "facebook" | "twitter" | "linkedin" | "telegram" | "olx";
3305
3339
  handle: string;
3306
3340
  url?: string | undefined;
3307
3341
  }[];
@@ -3319,15 +3353,15 @@ export declare const SCHEMAS: {
3319
3353
  mergedFromIds?: string[] | undefined;
3320
3354
  }, {
3321
3355
  status: "rejected" | "removed" | "verified" | "pending_review";
3356
+ id: string;
3322
3357
  createdAt: string | Date | import("zod").objectInputType<{
3323
3358
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3324
3359
  }, import("zod").ZodTypeAny, "passthrough">;
3325
- description: string;
3326
- tags: string[];
3327
- id: string;
3328
3360
  updatedAt: string | Date | import("zod").objectInputType<{
3329
3361
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3330
3362
  }, import("zod").ZodTypeAny, "passthrough">;
3363
+ description: string;
3364
+ tags: string[];
3331
3365
  views: number;
3332
3366
  scamType: string;
3333
3367
  reportedBy: string;
@@ -3341,7 +3375,7 @@ export declare const SCHEMAS: {
3341
3375
  incidentCount: number;
3342
3376
  seoSlug: string;
3343
3377
  socialMedia: {
3344
- platform: "youtube" | "other" | "whatsapp" | "instagram" | "facebook" | "twitter" | "linkedin" | "telegram" | "olx";
3378
+ platform: "other" | "whatsapp" | "youtube" | "instagram" | "facebook" | "twitter" | "linkedin" | "telegram" | "olx";
3345
3379
  handle: string;
3346
3380
  url?: string | undefined;
3347
3381
  }[];
@@ -3391,11 +3425,11 @@ export declare const SCHEMAS: {
3391
3425
  }, import("zod").ZodTypeAny, "passthrough">>]>;
3392
3426
  }, "strip", import("zod").ZodTypeAny, {
3393
3427
  status: "rejected" | "removed" | "verified" | "pending_review";
3428
+ id: string;
3394
3429
  createdAt: string | Date | import("zod").objectOutputType<{
3395
3430
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3396
3431
  }, import("zod").ZodTypeAny, "passthrough">;
3397
3432
  description: string;
3398
- id: string;
3399
3433
  scamType: string;
3400
3434
  reportedBy: string;
3401
3435
  scammerId: string;
@@ -3414,11 +3448,11 @@ export declare const SCHEMAS: {
3414
3448
  }, import("zod").ZodTypeAny, "passthrough"> | undefined;
3415
3449
  }, {
3416
3450
  status: "rejected" | "removed" | "verified" | "pending_review";
3451
+ id: string;
3417
3452
  createdAt: string | Date | import("zod").objectInputType<{
3418
3453
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3419
3454
  }, import("zod").ZodTypeAny, "passthrough">;
3420
3455
  description: string;
3421
- id: string;
3422
3456
  scamType: string;
3423
3457
  reportedBy: string;
3424
3458
  scammerId: string;
@@ -3466,11 +3500,11 @@ export declare const SCHEMAS: {
3466
3500
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3467
3501
  }, import("zod").ZodTypeAny, "passthrough">>]>>;
3468
3502
  }, "strip", import("zod").ZodTypeAny, {
3503
+ id: string;
3504
+ body: string;
3469
3505
  createdAt: string | Date | import("zod").objectOutputType<{
3470
3506
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3471
3507
  }, import("zod").ZodTypeAny, "passthrough">;
3472
- id: string;
3473
- body: string;
3474
3508
  authorId: string;
3475
3509
  scammerId: string;
3476
3510
  authorDisplayName: string;
@@ -3487,11 +3521,11 @@ export declare const SCHEMAS: {
3487
3521
  hiddenBy?: string | undefined;
3488
3522
  hiddenReason?: string | undefined;
3489
3523
  }, {
3524
+ id: string;
3525
+ body: string;
3490
3526
  createdAt: string | Date | import("zod").objectInputType<{
3491
3527
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3492
3528
  }, import("zod").ZodTypeAny, "passthrough">;
3493
- id: string;
3494
- body: string;
3495
3529
  authorId: string;
3496
3530
  scammerId: string;
3497
3531
  authorDisplayName: string;
@@ -3535,10 +3569,10 @@ export declare const SCHEMAS: {
3535
3569
  }, import("zod").ZodTypeAny, "passthrough">>]>;
3536
3570
  }, "strip", import("zod").ZodTypeAny, {
3537
3571
  status: "pending" | "dismissed" | "upheld";
3572
+ id: string;
3538
3573
  createdAt: string | Date | import("zod").objectOutputType<{
3539
3574
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3540
3575
  }, import("zod").ZodTypeAny, "passthrough">;
3541
- id: string;
3542
3576
  scammerId: string;
3543
3577
  evidence: string[];
3544
3578
  contestType: "accused_contesting" | "false_report" | "inaccurate_details" | "identity_mistaken";
@@ -3552,10 +3586,10 @@ export declare const SCHEMAS: {
3552
3586
  reviewNote?: string | undefined;
3553
3587
  }, {
3554
3588
  status: "pending" | "dismissed" | "upheld";
3589
+ id: string;
3555
3590
  createdAt: string | Date | import("zod").objectInputType<{
3556
3591
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3557
3592
  }, import("zod").ZodTypeAny, "passthrough">;
3558
- id: string;
3559
3593
  scammerId: string;
3560
3594
  evidence: string[];
3561
3595
  contestType: "accused_contesting" | "false_report" | "inaccurate_details" | "identity_mistaken";
@@ -3583,30 +3617,30 @@ export declare const SCHEMAS: {
3583
3617
  userAgent: import("zod").ZodOptional<import("zod").ZodString>;
3584
3618
  bodyDigest: import("zod").ZodOptional<import("zod").ZodString>;
3585
3619
  }, "strip", import("zod").ZodTypeAny, {
3586
- requestId: string;
3587
3620
  code: string;
3588
3621
  message: string;
3589
- source: "function" | "vercel" | "client";
3590
3622
  id: string;
3623
+ source: "function" | "vercel" | "client";
3624
+ requestId: string;
3591
3625
  route: string;
3592
3626
  occurredAt: number;
3593
3627
  stack?: string | undefined;
3594
- method?: string | undefined;
3595
3628
  userId?: string | undefined;
3629
+ method?: string | undefined;
3596
3630
  userAgent?: string | undefined;
3597
3631
  componentStack?: string | undefined;
3598
3632
  bodyDigest?: string | undefined;
3599
3633
  }, {
3600
- requestId: string;
3601
3634
  code: string;
3602
3635
  message: string;
3603
- source: "function" | "vercel" | "client";
3604
3636
  id: string;
3637
+ source: "function" | "vercel" | "client";
3638
+ requestId: string;
3605
3639
  route: string;
3606
3640
  occurredAt: number;
3607
3641
  stack?: string | undefined;
3608
- method?: string | undefined;
3609
3642
  userId?: string | undefined;
3643
+ method?: string | undefined;
3610
3644
  userAgent?: string | undefined;
3611
3645
  componentStack?: string | undefined;
3612
3646
  bodyDigest?: string | undefined;
@@ -3858,19 +3892,19 @@ export declare const SCHEMAS: {
3858
3892
  }>>;
3859
3893
  }, "strip", import("zod").ZodTypeAny, {
3860
3894
  status: "pending" | "active" | "rejected" | "suspended";
3895
+ id: string;
3861
3896
  createdAt: string | Date | import("zod").objectOutputType<{
3862
3897
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3863
3898
  }, import("zod").ZodTypeAny, "passthrough">;
3864
- storeName: string;
3865
- id: string;
3866
3899
  updatedAt: string | Date | import("zod").objectOutputType<{
3867
3900
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3868
3901
  }, import("zod").ZodTypeAny, "passthrough">;
3902
+ storeName: string;
3869
3903
  isPublic: boolean;
3870
3904
  storeSlug: string;
3871
3905
  ownerId: string;
3872
- returnPolicy?: string | undefined;
3873
3906
  location?: string | undefined;
3907
+ returnPolicy?: string | undefined;
3874
3908
  stats?: {
3875
3909
  itemsSold: number;
3876
3910
  totalProducts: number;
@@ -3943,19 +3977,19 @@ export declare const SCHEMAS: {
3943
3977
  } | undefined;
3944
3978
  }, {
3945
3979
  status: "pending" | "active" | "rejected" | "suspended";
3980
+ id: string;
3946
3981
  createdAt: string | Date | import("zod").objectInputType<{
3947
3982
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3948
3983
  }, import("zod").ZodTypeAny, "passthrough">;
3949
- storeName: string;
3950
- id: string;
3951
3984
  updatedAt: string | Date | import("zod").objectInputType<{
3952
3985
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
3953
3986
  }, import("zod").ZodTypeAny, "passthrough">;
3987
+ storeName: string;
3954
3988
  isPublic: boolean;
3955
3989
  storeSlug: string;
3956
3990
  ownerId: string;
3957
- returnPolicy?: string | undefined;
3958
3991
  location?: string | undefined;
3992
+ returnPolicy?: string | undefined;
3959
3993
  stats?: {
3960
3994
  itemsSold: number;
3961
3995
  totalProducts: number;
@@ -4088,20 +4122,20 @@ export declare const SCHEMAS: {
4088
4122
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4089
4123
  }, import("zod").ZodTypeAny, "passthrough">>]>;
4090
4124
  }, "strip", import("zod").ZodTypeAny, {
4125
+ id: string;
4126
+ body: string;
4091
4127
  createdAt: string | Date | import("zod").objectOutputType<{
4092
4128
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4093
4129
  }, import("zod").ZodTypeAny, "passthrough">;
4094
- id: string;
4095
- body: string;
4096
4130
  authorId: string;
4097
4131
  authorRole: "user" | "admin" | "support";
4098
4132
  attachments?: string[] | undefined;
4099
4133
  }, {
4134
+ id: string;
4135
+ body: string;
4100
4136
  createdAt: string | Date | import("zod").objectInputType<{
4101
4137
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4102
4138
  }, import("zod").ZodTypeAny, "passthrough">;
4103
- id: string;
4104
- body: string;
4105
4139
  authorId: string;
4106
4140
  authorRole: "user" | "admin" | "support";
4107
4141
  attachments?: string[] | undefined;
@@ -4121,24 +4155,24 @@ export declare const SCHEMAS: {
4121
4155
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4122
4156
  }, import("zod").ZodTypeAny, "passthrough">>]>>;
4123
4157
  }, "strip", import("zod").ZodTypeAny, {
4124
- status: "open" | "closed" | "in_progress" | "resolved" | "waiting_on_user";
4125
- category: "account" | "general" | "order_issue" | "billing_payment" | "listing_dispute" | "scam_report" | "refund_request" | "auction_dispute" | "store_change_request" | "order_modification_request" | "unban_request";
4158
+ status: "closed" | "open" | "in_progress" | "resolved" | "waiting_on_user";
4159
+ id: string;
4126
4160
  createdAt: string | Date | import("zod").objectOutputType<{
4127
4161
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4128
4162
  }, import("zod").ZodTypeAny, "passthrough">;
4129
- description: string;
4130
- id: string;
4131
4163
  updatedAt: string | Date | import("zod").objectOutputType<{
4132
4164
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4133
4165
  }, import("zod").ZodTypeAny, "passthrough">;
4134
- priority: "high" | "low" | "normal" | "urgent";
4135
4166
  userId: string;
4167
+ category: "account" | "general" | "order_issue" | "billing_payment" | "listing_dispute" | "scam_report" | "refund_request" | "auction_dispute" | "store_change_request" | "order_modification_request" | "unban_request";
4168
+ description: string;
4169
+ priority: "normal" | "high" | "low" | "urgent";
4136
4170
  messages: {
4171
+ id: string;
4172
+ body: string;
4137
4173
  createdAt: string | Date | import("zod").objectOutputType<{
4138
4174
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4139
4175
  }, import("zod").ZodTypeAny, "passthrough">;
4140
- id: string;
4141
- body: string;
4142
4176
  authorId: string;
4143
4177
  authorRole: "user" | "admin" | "support";
4144
4178
  attachments?: string[] | undefined;
@@ -4164,24 +4198,24 @@ export declare const SCHEMAS: {
4164
4198
  assignedToName?: string | undefined;
4165
4199
  internalNotes?: string | undefined;
4166
4200
  }, {
4167
- status: "open" | "closed" | "in_progress" | "resolved" | "waiting_on_user";
4168
- category: "account" | "general" | "order_issue" | "billing_payment" | "listing_dispute" | "scam_report" | "refund_request" | "auction_dispute" | "store_change_request" | "order_modification_request" | "unban_request";
4201
+ status: "closed" | "open" | "in_progress" | "resolved" | "waiting_on_user";
4202
+ id: string;
4169
4203
  createdAt: string | Date | import("zod").objectInputType<{
4170
4204
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4171
4205
  }, import("zod").ZodTypeAny, "passthrough">;
4172
- description: string;
4173
- id: string;
4174
4206
  updatedAt: string | Date | import("zod").objectInputType<{
4175
4207
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4176
4208
  }, import("zod").ZodTypeAny, "passthrough">;
4177
- priority: "high" | "low" | "normal" | "urgent";
4178
4209
  userId: string;
4210
+ category: "account" | "general" | "order_issue" | "billing_payment" | "listing_dispute" | "scam_report" | "refund_request" | "auction_dispute" | "store_change_request" | "order_modification_request" | "unban_request";
4211
+ description: string;
4212
+ priority: "normal" | "high" | "low" | "urgent";
4179
4213
  messages: {
4214
+ id: string;
4215
+ body: string;
4180
4216
  createdAt: string | Date | import("zod").objectInputType<{
4181
4217
  toDate: import("zod").ZodFunction<import("zod").ZodTuple<[], import("zod").ZodUnknown>, import("zod").ZodDate>;
4182
4218
  }, import("zod").ZodTypeAny, "passthrough">;
4183
- id: string;
4184
- body: string;
4185
4219
  authorId: string;
4186
4220
  authorRole: "user" | "admin" | "support";
4187
4221
  attachments?: string[] | undefined;
@@ -4262,12 +4296,12 @@ export declare const SCHEMAS: {
4262
4296
  status: string;
4263
4297
  id: string;
4264
4298
  amount: number;
4265
- description?: string | null | undefined;
4266
- method?: string | undefined;
4267
4299
  email?: string | undefined;
4268
4300
  captured?: boolean | undefined;
4269
4301
  notes?: Record<string, string> | undefined;
4270
4302
  wallet?: string | null | undefined;
4303
+ description?: string | null | undefined;
4304
+ method?: string | undefined;
4271
4305
  tax?: number | undefined;
4272
4306
  contact?: string | undefined;
4273
4307
  fee?: number | undefined;
@@ -4292,12 +4326,12 @@ export declare const SCHEMAS: {
4292
4326
  status: string;
4293
4327
  id: string;
4294
4328
  amount: number;
4295
- description?: string | null | undefined;
4296
- method?: string | undefined;
4297
4329
  email?: string | undefined;
4298
4330
  captured?: boolean | undefined;
4299
4331
  notes?: Record<string, string> | undefined;
4300
4332
  wallet?: string | null | undefined;
4333
+ description?: string | null | undefined;
4334
+ method?: string | undefined;
4301
4335
  tax?: number | undefined;
4302
4336
  contact?: string | undefined;
4303
4337
  fee?: number | undefined;
@@ -4324,12 +4358,12 @@ export declare const SCHEMAS: {
4324
4358
  status: string;
4325
4359
  id: string;
4326
4360
  amount: number;
4327
- description?: string | null | undefined;
4328
- method?: string | undefined;
4329
4361
  email?: string | undefined;
4330
4362
  captured?: boolean | undefined;
4331
4363
  notes?: Record<string, string> | undefined;
4332
4364
  wallet?: string | null | undefined;
4365
+ description?: string | null | undefined;
4366
+ method?: string | undefined;
4333
4367
  tax?: number | undefined;
4334
4368
  contact?: string | undefined;
4335
4369
  fee?: number | undefined;
@@ -4356,12 +4390,12 @@ export declare const SCHEMAS: {
4356
4390
  status: string;
4357
4391
  id: string;
4358
4392
  amount: number;
4359
- description?: string | null | undefined;
4360
- method?: string | undefined;
4361
4393
  email?: string | undefined;
4362
4394
  captured?: boolean | undefined;
4363
4395
  notes?: Record<string, string> | undefined;
4364
4396
  wallet?: string | null | undefined;
4397
+ description?: string | null | undefined;
4398
+ method?: string | undefined;
4365
4399
  tax?: number | undefined;
4366
4400
  contact?: string | undefined;
4367
4401
  fee?: number | undefined;
@@ -4390,12 +4424,12 @@ export declare const SCHEMAS: {
4390
4424
  status: string;
4391
4425
  id: string;
4392
4426
  amount: number;
4393
- description?: string | null | undefined;
4394
- method?: string | undefined;
4395
4427
  email?: string | undefined;
4396
4428
  captured?: boolean | undefined;
4397
4429
  notes?: Record<string, string> | undefined;
4398
4430
  wallet?: string | null | undefined;
4431
+ description?: string | null | undefined;
4432
+ method?: string | undefined;
4399
4433
  tax?: number | undefined;
4400
4434
  contact?: string | undefined;
4401
4435
  fee?: number | undefined;
@@ -4424,12 +4458,12 @@ export declare const SCHEMAS: {
4424
4458
  status: string;
4425
4459
  id: string;
4426
4460
  amount: number;
4427
- description?: string | null | undefined;
4428
- method?: string | undefined;
4429
4461
  email?: string | undefined;
4430
4462
  captured?: boolean | undefined;
4431
4463
  notes?: Record<string, string> | undefined;
4432
4464
  wallet?: string | null | undefined;
4465
+ description?: string | null | undefined;
4466
+ method?: string | undefined;
4433
4467
  tax?: number | undefined;
4434
4468
  contact?: string | undefined;
4435
4469
  fee?: number | undefined;
@@ -4461,12 +4495,12 @@ export declare const SCHEMAS: {
4461
4495
  status: string;
4462
4496
  id: string;
4463
4497
  amount: number;
4464
- description?: string | null | undefined;
4465
- method?: string | undefined;
4466
4498
  email?: string | undefined;
4467
4499
  captured?: boolean | undefined;
4468
4500
  notes?: Record<string, string> | undefined;
4469
4501
  wallet?: string | null | undefined;
4502
+ description?: string | null | undefined;
4503
+ method?: string | undefined;
4470
4504
  tax?: number | undefined;
4471
4505
  contact?: string | undefined;
4472
4506
  fee?: number | undefined;
@@ -4501,12 +4535,12 @@ export declare const SCHEMAS: {
4501
4535
  status: string;
4502
4536
  id: string;
4503
4537
  amount: number;
4504
- description?: string | null | undefined;
4505
- method?: string | undefined;
4506
4538
  email?: string | undefined;
4507
4539
  captured?: boolean | undefined;
4508
4540
  notes?: Record<string, string> | undefined;
4509
4541
  wallet?: string | null | undefined;
4542
+ description?: string | null | undefined;
4543
+ method?: string | undefined;
4510
4544
  tax?: number | undefined;
4511
4545
  contact?: string | undefined;
4512
4546
  fee?: number | undefined;
@@ -4574,12 +4608,12 @@ export declare const SCHEMAS: {
4574
4608
  status: string;
4575
4609
  id: string;
4576
4610
  amount: number;
4577
- description?: string | null | undefined;
4578
- method?: string | undefined;
4579
4611
  email?: string | undefined;
4580
4612
  captured?: boolean | undefined;
4581
4613
  notes?: Record<string, string> | undefined;
4582
4614
  wallet?: string | null | undefined;
4615
+ description?: string | null | undefined;
4616
+ method?: string | undefined;
4583
4617
  tax?: number | undefined;
4584
4618
  contact?: string | undefined;
4585
4619
  fee?: number | undefined;
@@ -4604,12 +4638,12 @@ export declare const SCHEMAS: {
4604
4638
  status: string;
4605
4639
  id: string;
4606
4640
  amount: number;
4607
- description?: string | null | undefined;
4608
- method?: string | undefined;
4609
4641
  email?: string | undefined;
4610
4642
  captured?: boolean | undefined;
4611
4643
  notes?: Record<string, string> | undefined;
4612
4644
  wallet?: string | null | undefined;
4645
+ description?: string | null | undefined;
4646
+ method?: string | undefined;
4613
4647
  tax?: number | undefined;
4614
4648
  contact?: string | undefined;
4615
4649
  fee?: number | undefined;
@@ -4636,12 +4670,12 @@ export declare const SCHEMAS: {
4636
4670
  status: string;
4637
4671
  id: string;
4638
4672
  amount: number;
4639
- description?: string | null | undefined;
4640
- method?: string | undefined;
4641
4673
  email?: string | undefined;
4642
4674
  captured?: boolean | undefined;
4643
4675
  notes?: Record<string, string> | undefined;
4644
4676
  wallet?: string | null | undefined;
4677
+ description?: string | null | undefined;
4678
+ method?: string | undefined;
4645
4679
  tax?: number | undefined;
4646
4680
  contact?: string | undefined;
4647
4681
  fee?: number | undefined;
@@ -4668,12 +4702,12 @@ export declare const SCHEMAS: {
4668
4702
  status: string;
4669
4703
  id: string;
4670
4704
  amount: number;
4671
- description?: string | null | undefined;
4672
- method?: string | undefined;
4673
4705
  email?: string | undefined;
4674
4706
  captured?: boolean | undefined;
4675
4707
  notes?: Record<string, string> | undefined;
4676
4708
  wallet?: string | null | undefined;
4709
+ description?: string | null | undefined;
4710
+ method?: string | undefined;
4677
4711
  tax?: number | undefined;
4678
4712
  contact?: string | undefined;
4679
4713
  fee?: number | undefined;
@@ -4702,12 +4736,12 @@ export declare const SCHEMAS: {
4702
4736
  status: string;
4703
4737
  id: string;
4704
4738
  amount: number;
4705
- description?: string | null | undefined;
4706
- method?: string | undefined;
4707
4739
  email?: string | undefined;
4708
4740
  captured?: boolean | undefined;
4709
4741
  notes?: Record<string, string> | undefined;
4710
4742
  wallet?: string | null | undefined;
4743
+ description?: string | null | undefined;
4744
+ method?: string | undefined;
4711
4745
  tax?: number | undefined;
4712
4746
  contact?: string | undefined;
4713
4747
  fee?: number | undefined;
@@ -4736,12 +4770,12 @@ export declare const SCHEMAS: {
4736
4770
  status: string;
4737
4771
  id: string;
4738
4772
  amount: number;
4739
- description?: string | null | undefined;
4740
- method?: string | undefined;
4741
4773
  email?: string | undefined;
4742
4774
  captured?: boolean | undefined;
4743
4775
  notes?: Record<string, string> | undefined;
4744
4776
  wallet?: string | null | undefined;
4777
+ description?: string | null | undefined;
4778
+ method?: string | undefined;
4745
4779
  tax?: number | undefined;
4746
4780
  contact?: string | undefined;
4747
4781
  fee?: number | undefined;
@@ -4773,12 +4807,12 @@ export declare const SCHEMAS: {
4773
4807
  status: string;
4774
4808
  id: string;
4775
4809
  amount: number;
4776
- description?: string | null | undefined;
4777
- method?: string | undefined;
4778
4810
  email?: string | undefined;
4779
4811
  captured?: boolean | undefined;
4780
4812
  notes?: Record<string, string> | undefined;
4781
4813
  wallet?: string | null | undefined;
4814
+ description?: string | null | undefined;
4815
+ method?: string | undefined;
4782
4816
  tax?: number | undefined;
4783
4817
  contact?: string | undefined;
4784
4818
  fee?: number | undefined;
@@ -4813,12 +4847,12 @@ export declare const SCHEMAS: {
4813
4847
  status: string;
4814
4848
  id: string;
4815
4849
  amount: number;
4816
- description?: string | null | undefined;
4817
- method?: string | undefined;
4818
4850
  email?: string | undefined;
4819
4851
  captured?: boolean | undefined;
4820
4852
  notes?: Record<string, string> | undefined;
4821
4853
  wallet?: string | null | undefined;
4854
+ description?: string | null | undefined;
4855
+ method?: string | undefined;
4822
4856
  tax?: number | undefined;
4823
4857
  contact?: string | undefined;
4824
4858
  fee?: number | undefined;
@@ -4886,12 +4920,12 @@ export declare const SCHEMAS: {
4886
4920
  status: string;
4887
4921
  id: string;
4888
4922
  amount: number;
4889
- description?: string | null | undefined;
4890
- method?: string | undefined;
4891
4923
  email?: string | undefined;
4892
4924
  captured?: boolean | undefined;
4893
4925
  notes?: Record<string, string> | undefined;
4894
4926
  wallet?: string | null | undefined;
4927
+ description?: string | null | undefined;
4928
+ method?: string | undefined;
4895
4929
  tax?: number | undefined;
4896
4930
  contact?: string | undefined;
4897
4931
  fee?: number | undefined;
@@ -4916,12 +4950,12 @@ export declare const SCHEMAS: {
4916
4950
  status: string;
4917
4951
  id: string;
4918
4952
  amount: number;
4919
- description?: string | null | undefined;
4920
- method?: string | undefined;
4921
4953
  email?: string | undefined;
4922
4954
  captured?: boolean | undefined;
4923
4955
  notes?: Record<string, string> | undefined;
4924
4956
  wallet?: string | null | undefined;
4957
+ description?: string | null | undefined;
4958
+ method?: string | undefined;
4925
4959
  tax?: number | undefined;
4926
4960
  contact?: string | undefined;
4927
4961
  fee?: number | undefined;
@@ -4948,12 +4982,12 @@ export declare const SCHEMAS: {
4948
4982
  status: string;
4949
4983
  id: string;
4950
4984
  amount: number;
4951
- description?: string | null | undefined;
4952
- method?: string | undefined;
4953
4985
  email?: string | undefined;
4954
4986
  captured?: boolean | undefined;
4955
4987
  notes?: Record<string, string> | undefined;
4956
4988
  wallet?: string | null | undefined;
4989
+ description?: string | null | undefined;
4990
+ method?: string | undefined;
4957
4991
  tax?: number | undefined;
4958
4992
  contact?: string | undefined;
4959
4993
  fee?: number | undefined;
@@ -4980,12 +5014,12 @@ export declare const SCHEMAS: {
4980
5014
  status: string;
4981
5015
  id: string;
4982
5016
  amount: number;
4983
- description?: string | null | undefined;
4984
- method?: string | undefined;
4985
5017
  email?: string | undefined;
4986
5018
  captured?: boolean | undefined;
4987
5019
  notes?: Record<string, string> | undefined;
4988
5020
  wallet?: string | null | undefined;
5021
+ description?: string | null | undefined;
5022
+ method?: string | undefined;
4989
5023
  tax?: number | undefined;
4990
5024
  contact?: string | undefined;
4991
5025
  fee?: number | undefined;
@@ -5014,12 +5048,12 @@ export declare const SCHEMAS: {
5014
5048
  status: string;
5015
5049
  id: string;
5016
5050
  amount: number;
5017
- description?: string | null | undefined;
5018
- method?: string | undefined;
5019
5051
  email?: string | undefined;
5020
5052
  captured?: boolean | undefined;
5021
5053
  notes?: Record<string, string> | undefined;
5022
5054
  wallet?: string | null | undefined;
5055
+ description?: string | null | undefined;
5056
+ method?: string | undefined;
5023
5057
  tax?: number | undefined;
5024
5058
  contact?: string | undefined;
5025
5059
  fee?: number | undefined;
@@ -5048,12 +5082,12 @@ export declare const SCHEMAS: {
5048
5082
  status: string;
5049
5083
  id: string;
5050
5084
  amount: number;
5051
- description?: string | null | undefined;
5052
- method?: string | undefined;
5053
5085
  email?: string | undefined;
5054
5086
  captured?: boolean | undefined;
5055
5087
  notes?: Record<string, string> | undefined;
5056
5088
  wallet?: string | null | undefined;
5089
+ description?: string | null | undefined;
5090
+ method?: string | undefined;
5057
5091
  tax?: number | undefined;
5058
5092
  contact?: string | undefined;
5059
5093
  fee?: number | undefined;
@@ -5085,12 +5119,12 @@ export declare const SCHEMAS: {
5085
5119
  status: string;
5086
5120
  id: string;
5087
5121
  amount: number;
5088
- description?: string | null | undefined;
5089
- method?: string | undefined;
5090
5122
  email?: string | undefined;
5091
5123
  captured?: boolean | undefined;
5092
5124
  notes?: Record<string, string> | undefined;
5093
5125
  wallet?: string | null | undefined;
5126
+ description?: string | null | undefined;
5127
+ method?: string | undefined;
5094
5128
  tax?: number | undefined;
5095
5129
  contact?: string | undefined;
5096
5130
  fee?: number | undefined;
@@ -5125,12 +5159,12 @@ export declare const SCHEMAS: {
5125
5159
  status: string;
5126
5160
  id: string;
5127
5161
  amount: number;
5128
- description?: string | null | undefined;
5129
- method?: string | undefined;
5130
5162
  email?: string | undefined;
5131
5163
  captured?: boolean | undefined;
5132
5164
  notes?: Record<string, string> | undefined;
5133
5165
  wallet?: string | null | undefined;
5166
+ description?: string | null | undefined;
5167
+ method?: string | undefined;
5134
5168
  tax?: number | undefined;
5135
5169
  contact?: string | undefined;
5136
5170
  fee?: number | undefined;
@@ -5275,12 +5309,12 @@ export declare const SCHEMAS: {
5275
5309
  status: string;
5276
5310
  id: string;
5277
5311
  amount: number;
5278
- description?: string | null | undefined;
5279
- method?: string | undefined;
5280
5312
  email?: string | undefined;
5281
5313
  captured?: boolean | undefined;
5282
5314
  notes?: Record<string, string> | undefined;
5283
5315
  wallet?: string | null | undefined;
5316
+ description?: string | null | undefined;
5317
+ method?: string | undefined;
5284
5318
  tax?: number | undefined;
5285
5319
  contact?: string | undefined;
5286
5320
  fee?: number | undefined;
@@ -5305,12 +5339,12 @@ export declare const SCHEMAS: {
5305
5339
  status: string;
5306
5340
  id: string;
5307
5341
  amount: number;
5308
- description?: string | null | undefined;
5309
- method?: string | undefined;
5310
5342
  email?: string | undefined;
5311
5343
  captured?: boolean | undefined;
5312
5344
  notes?: Record<string, string> | undefined;
5313
5345
  wallet?: string | null | undefined;
5346
+ description?: string | null | undefined;
5347
+ method?: string | undefined;
5314
5348
  tax?: number | undefined;
5315
5349
  contact?: string | undefined;
5316
5350
  fee?: number | undefined;
@@ -5337,12 +5371,12 @@ export declare const SCHEMAS: {
5337
5371
  status: string;
5338
5372
  id: string;
5339
5373
  amount: number;
5340
- description?: string | null | undefined;
5341
- method?: string | undefined;
5342
5374
  email?: string | undefined;
5343
5375
  captured?: boolean | undefined;
5344
5376
  notes?: Record<string, string> | undefined;
5345
5377
  wallet?: string | null | undefined;
5378
+ description?: string | null | undefined;
5379
+ method?: string | undefined;
5346
5380
  tax?: number | undefined;
5347
5381
  contact?: string | undefined;
5348
5382
  fee?: number | undefined;
@@ -5369,12 +5403,12 @@ export declare const SCHEMAS: {
5369
5403
  status: string;
5370
5404
  id: string;
5371
5405
  amount: number;
5372
- description?: string | null | undefined;
5373
- method?: string | undefined;
5374
5406
  email?: string | undefined;
5375
5407
  captured?: boolean | undefined;
5376
5408
  notes?: Record<string, string> | undefined;
5377
5409
  wallet?: string | null | undefined;
5410
+ description?: string | null | undefined;
5411
+ method?: string | undefined;
5378
5412
  tax?: number | undefined;
5379
5413
  contact?: string | undefined;
5380
5414
  fee?: number | undefined;
@@ -5420,12 +5454,12 @@ export declare const SCHEMAS: {
5420
5454
  status: string;
5421
5455
  id: string;
5422
5456
  amount: number;
5423
- description?: string | null | undefined;
5424
- method?: string | undefined;
5425
5457
  email?: string | undefined;
5426
5458
  captured?: boolean | undefined;
5427
5459
  notes?: Record<string, string> | undefined;
5428
5460
  wallet?: string | null | undefined;
5461
+ description?: string | null | undefined;
5462
+ method?: string | undefined;
5429
5463
  tax?: number | undefined;
5430
5464
  contact?: string | undefined;
5431
5465
  fee?: number | undefined;
@@ -5471,12 +5505,12 @@ export declare const SCHEMAS: {
5471
5505
  status: string;
5472
5506
  id: string;
5473
5507
  amount: number;
5474
- description?: string | null | undefined;
5475
- method?: string | undefined;
5476
5508
  email?: string | undefined;
5477
5509
  captured?: boolean | undefined;
5478
5510
  notes?: Record<string, string> | undefined;
5479
5511
  wallet?: string | null | undefined;
5512
+ description?: string | null | undefined;
5513
+ method?: string | undefined;
5480
5514
  tax?: number | undefined;
5481
5515
  contact?: string | undefined;
5482
5516
  fee?: number | undefined;
@@ -5525,12 +5559,12 @@ export declare const SCHEMAS: {
5525
5559
  status: string;
5526
5560
  id: string;
5527
5561
  amount: number;
5528
- description?: string | null | undefined;
5529
- method?: string | undefined;
5530
5562
  email?: string | undefined;
5531
5563
  captured?: boolean | undefined;
5532
5564
  notes?: Record<string, string> | undefined;
5533
5565
  wallet?: string | null | undefined;
5566
+ description?: string | null | undefined;
5567
+ method?: string | undefined;
5534
5568
  tax?: number | undefined;
5535
5569
  contact?: string | undefined;
5536
5570
  fee?: number | undefined;
@@ -5582,12 +5616,12 @@ export declare const SCHEMAS: {
5582
5616
  status: string;
5583
5617
  id: string;
5584
5618
  amount: number;
5585
- description?: string | null | undefined;
5586
- method?: string | undefined;
5587
5619
  email?: string | undefined;
5588
5620
  captured?: boolean | undefined;
5589
5621
  notes?: Record<string, string> | undefined;
5590
5622
  wallet?: string | null | undefined;
5623
+ description?: string | null | undefined;
5624
+ method?: string | undefined;
5591
5625
  tax?: number | undefined;
5592
5626
  contact?: string | undefined;
5593
5627
  fee?: number | undefined;
@@ -5900,12 +5934,12 @@ export declare const SCHEMAS: {
5900
5934
  status: string;
5901
5935
  id: string;
5902
5936
  amount: number;
5903
- description?: string | null | undefined;
5904
- method?: string | undefined;
5905
5937
  email?: string | undefined;
5906
5938
  captured?: boolean | undefined;
5907
5939
  notes?: Record<string, string> | undefined;
5908
5940
  wallet?: string | null | undefined;
5941
+ description?: string | null | undefined;
5942
+ method?: string | undefined;
5909
5943
  tax?: number | undefined;
5910
5944
  contact?: string | undefined;
5911
5945
  fee?: number | undefined;
@@ -5930,12 +5964,12 @@ export declare const SCHEMAS: {
5930
5964
  status: string;
5931
5965
  id: string;
5932
5966
  amount: number;
5933
- description?: string | null | undefined;
5934
- method?: string | undefined;
5935
5967
  email?: string | undefined;
5936
5968
  captured?: boolean | undefined;
5937
5969
  notes?: Record<string, string> | undefined;
5938
5970
  wallet?: string | null | undefined;
5971
+ description?: string | null | undefined;
5972
+ method?: string | undefined;
5939
5973
  tax?: number | undefined;
5940
5974
  contact?: string | undefined;
5941
5975
  fee?: number | undefined;
@@ -5962,12 +5996,12 @@ export declare const SCHEMAS: {
5962
5996
  status: string;
5963
5997
  id: string;
5964
5998
  amount: number;
5965
- description?: string | null | undefined;
5966
- method?: string | undefined;
5967
5999
  email?: string | undefined;
5968
6000
  captured?: boolean | undefined;
5969
6001
  notes?: Record<string, string> | undefined;
5970
6002
  wallet?: string | null | undefined;
6003
+ description?: string | null | undefined;
6004
+ method?: string | undefined;
5971
6005
  tax?: number | undefined;
5972
6006
  contact?: string | undefined;
5973
6007
  fee?: number | undefined;
@@ -5994,12 +6028,12 @@ export declare const SCHEMAS: {
5994
6028
  status: string;
5995
6029
  id: string;
5996
6030
  amount: number;
5997
- description?: string | null | undefined;
5998
- method?: string | undefined;
5999
6031
  email?: string | undefined;
6000
6032
  captured?: boolean | undefined;
6001
6033
  notes?: Record<string, string> | undefined;
6002
6034
  wallet?: string | null | undefined;
6035
+ description?: string | null | undefined;
6036
+ method?: string | undefined;
6003
6037
  tax?: number | undefined;
6004
6038
  contact?: string | undefined;
6005
6039
  fee?: number | undefined;
@@ -6045,12 +6079,12 @@ export declare const SCHEMAS: {
6045
6079
  status: string;
6046
6080
  id: string;
6047
6081
  amount: number;
6048
- description?: string | null | undefined;
6049
- method?: string | undefined;
6050
6082
  email?: string | undefined;
6051
6083
  captured?: boolean | undefined;
6052
6084
  notes?: Record<string, string> | undefined;
6053
6085
  wallet?: string | null | undefined;
6086
+ description?: string | null | undefined;
6087
+ method?: string | undefined;
6054
6088
  tax?: number | undefined;
6055
6089
  contact?: string | undefined;
6056
6090
  fee?: number | undefined;
@@ -6096,12 +6130,12 @@ export declare const SCHEMAS: {
6096
6130
  status: string;
6097
6131
  id: string;
6098
6132
  amount: number;
6099
- description?: string | null | undefined;
6100
- method?: string | undefined;
6101
6133
  email?: string | undefined;
6102
6134
  captured?: boolean | undefined;
6103
6135
  notes?: Record<string, string> | undefined;
6104
6136
  wallet?: string | null | undefined;
6137
+ description?: string | null | undefined;
6138
+ method?: string | undefined;
6105
6139
  tax?: number | undefined;
6106
6140
  contact?: string | undefined;
6107
6141
  fee?: number | undefined;
@@ -6150,12 +6184,12 @@ export declare const SCHEMAS: {
6150
6184
  status: string;
6151
6185
  id: string;
6152
6186
  amount: number;
6153
- description?: string | null | undefined;
6154
- method?: string | undefined;
6155
6187
  email?: string | undefined;
6156
6188
  captured?: boolean | undefined;
6157
6189
  notes?: Record<string, string> | undefined;
6158
6190
  wallet?: string | null | undefined;
6191
+ description?: string | null | undefined;
6192
+ method?: string | undefined;
6159
6193
  tax?: number | undefined;
6160
6194
  contact?: string | undefined;
6161
6195
  fee?: number | undefined;
@@ -6207,12 +6241,12 @@ export declare const SCHEMAS: {
6207
6241
  status: string;
6208
6242
  id: string;
6209
6243
  amount: number;
6210
- description?: string | null | undefined;
6211
- method?: string | undefined;
6212
6244
  email?: string | undefined;
6213
6245
  captured?: boolean | undefined;
6214
6246
  notes?: Record<string, string> | undefined;
6215
6247
  wallet?: string | null | undefined;
6248
+ description?: string | null | undefined;
6249
+ method?: string | undefined;
6216
6250
  tax?: number | undefined;
6217
6251
  contact?: string | undefined;
6218
6252
  fee?: number | undefined;
@@ -6347,12 +6381,12 @@ export declare const SCHEMAS: {
6347
6381
  status: string;
6348
6382
  id: string;
6349
6383
  amount: number;
6350
- description?: string | null | undefined;
6351
- method?: string | undefined;
6352
6384
  email?: string | undefined;
6353
6385
  captured?: boolean | undefined;
6354
6386
  notes?: Record<string, string> | undefined;
6355
6387
  wallet?: string | null | undefined;
6388
+ description?: string | null | undefined;
6389
+ method?: string | undefined;
6356
6390
  tax?: number | undefined;
6357
6391
  contact?: string | undefined;
6358
6392
  fee?: number | undefined;
@@ -6377,12 +6411,12 @@ export declare const SCHEMAS: {
6377
6411
  status: string;
6378
6412
  id: string;
6379
6413
  amount: number;
6380
- description?: string | null | undefined;
6381
- method?: string | undefined;
6382
6414
  email?: string | undefined;
6383
6415
  captured?: boolean | undefined;
6384
6416
  notes?: Record<string, string> | undefined;
6385
6417
  wallet?: string | null | undefined;
6418
+ description?: string | null | undefined;
6419
+ method?: string | undefined;
6386
6420
  tax?: number | undefined;
6387
6421
  contact?: string | undefined;
6388
6422
  fee?: number | undefined;
@@ -6409,12 +6443,12 @@ export declare const SCHEMAS: {
6409
6443
  status: string;
6410
6444
  id: string;
6411
6445
  amount: number;
6412
- description?: string | null | undefined;
6413
- method?: string | undefined;
6414
6446
  email?: string | undefined;
6415
6447
  captured?: boolean | undefined;
6416
6448
  notes?: Record<string, string> | undefined;
6417
6449
  wallet?: string | null | undefined;
6450
+ description?: string | null | undefined;
6451
+ method?: string | undefined;
6418
6452
  tax?: number | undefined;
6419
6453
  contact?: string | undefined;
6420
6454
  fee?: number | undefined;
@@ -6441,12 +6475,12 @@ export declare const SCHEMAS: {
6441
6475
  status: string;
6442
6476
  id: string;
6443
6477
  amount: number;
6444
- description?: string | null | undefined;
6445
- method?: string | undefined;
6446
6478
  email?: string | undefined;
6447
6479
  captured?: boolean | undefined;
6448
6480
  notes?: Record<string, string> | undefined;
6449
6481
  wallet?: string | null | undefined;
6482
+ description?: string | null | undefined;
6483
+ method?: string | undefined;
6450
6484
  tax?: number | undefined;
6451
6485
  contact?: string | undefined;
6452
6486
  fee?: number | undefined;
@@ -6490,12 +6524,12 @@ export declare const SCHEMAS: {
6490
6524
  status: string;
6491
6525
  id: string;
6492
6526
  amount: number;
6493
- description?: string | null | undefined;
6494
- method?: string | undefined;
6495
6527
  email?: string | undefined;
6496
6528
  captured?: boolean | undefined;
6497
6529
  notes?: Record<string, string> | undefined;
6498
6530
  wallet?: string | null | undefined;
6531
+ description?: string | null | undefined;
6532
+ method?: string | undefined;
6499
6533
  tax?: number | undefined;
6500
6534
  contact?: string | undefined;
6501
6535
  fee?: number | undefined;
@@ -6539,12 +6573,12 @@ export declare const SCHEMAS: {
6539
6573
  status: string;
6540
6574
  id: string;
6541
6575
  amount: number;
6542
- description?: string | null | undefined;
6543
- method?: string | undefined;
6544
6576
  email?: string | undefined;
6545
6577
  captured?: boolean | undefined;
6546
6578
  notes?: Record<string, string> | undefined;
6547
6579
  wallet?: string | null | undefined;
6580
+ description?: string | null | undefined;
6581
+ method?: string | undefined;
6548
6582
  tax?: number | undefined;
6549
6583
  contact?: string | undefined;
6550
6584
  fee?: number | undefined;
@@ -6591,12 +6625,12 @@ export declare const SCHEMAS: {
6591
6625
  status: string;
6592
6626
  id: string;
6593
6627
  amount: number;
6594
- description?: string | null | undefined;
6595
- method?: string | undefined;
6596
6628
  email?: string | undefined;
6597
6629
  captured?: boolean | undefined;
6598
6630
  notes?: Record<string, string> | undefined;
6599
6631
  wallet?: string | null | undefined;
6632
+ description?: string | null | undefined;
6633
+ method?: string | undefined;
6600
6634
  tax?: number | undefined;
6601
6635
  contact?: string | undefined;
6602
6636
  fee?: number | undefined;
@@ -6646,12 +6680,12 @@ export declare const SCHEMAS: {
6646
6680
  status: string;
6647
6681
  id: string;
6648
6682
  amount: number;
6649
- description?: string | null | undefined;
6650
- method?: string | undefined;
6651
6683
  email?: string | undefined;
6652
6684
  captured?: boolean | undefined;
6653
6685
  notes?: Record<string, string> | undefined;
6654
6686
  wallet?: string | null | undefined;
6687
+ description?: string | null | undefined;
6688
+ method?: string | undefined;
6655
6689
  tax?: number | undefined;
6656
6690
  contact?: string | undefined;
6657
6691
  fee?: number | undefined;
@@ -6744,16 +6778,16 @@ export declare const SCHEMAS: {
6744
6778
  azp: import("zod").ZodOptional<import("zod").ZodString>;
6745
6779
  aud: import("zod").ZodOptional<import("zod").ZodString>;
6746
6780
  }, "strip", import("zod").ZodTypeAny, {
6747
- email?: string | undefined;
6748
6781
  sub?: string | undefined;
6782
+ email?: string | undefined;
6749
6783
  email_verified?: string | boolean | undefined;
6750
6784
  scopes?: string[] | undefined;
6751
6785
  expiry_date?: number | undefined;
6752
6786
  azp?: string | undefined;
6753
6787
  aud?: string | undefined;
6754
6788
  }, {
6755
- email?: string | undefined;
6756
6789
  sub?: string | undefined;
6790
+ email?: string | undefined;
6757
6791
  email_verified?: string | boolean | undefined;
6758
6792
  scopes?: string[] | undefined;
6759
6793
  expiry_date?: number | undefined;