@mohasinac/appkit 3.2.20 → 3.3.1

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 (857) hide show
  1. package/dist/_internal/client/features/classified/ClassifiedDetailView.d.ts +2 -1
  2. package/dist/_internal/client/features/digital-code/CodeRevealPanel.d.ts +2 -1
  3. package/dist/_internal/client/features/digital-code/DigitalCodeDetailView.d.ts +2 -1
  4. package/dist/_internal/client/features/layout/DashboardLayoutClient.d.ts +1 -1
  5. package/dist/_internal/client/features/layout/RoleGuard.d.ts +1 -1
  6. package/dist/_internal/client/features/live/LiveItemDetailView.d.ts +1 -1
  7. package/dist/_internal/client/features/lottery/LotteryAdminEditView.d.ts +2 -1
  8. package/dist/_internal/client/features/lottery/LotteryAdminSlotView.d.ts +2 -1
  9. package/dist/_internal/client/features/lottery/LotteryDetailView.d.ts +2 -1
  10. package/dist/_internal/client/features/lottery/LotteryEntriesView.d.ts +2 -1
  11. package/dist/_internal/client/features/lottery/LotteryListView.d.ts +2 -1
  12. package/dist/_internal/client/features/lottery/LotteryPullForm.d.ts +2 -1
  13. package/dist/_internal/client/features/lottery/LotterySlotGrid.d.ts +2 -1
  14. package/dist/_internal/client/features/lottery/PrizeDrawLotteryDetailView.d.ts +2 -1
  15. package/dist/_internal/client/features/tour/TourProvider.d.ts +1 -1
  16. package/dist/_internal/client/i18n/LabelsProvider.d.ts +1 -1
  17. package/dist/_internal/client/scaffolds/AppShell.d.ts +1 -1
  18. package/dist/_internal/client/scaffolds/DashboardScaffold.d.ts +1 -1
  19. package/dist/_internal/client/theme/ThemeProvider.d.ts +1 -1
  20. package/dist/_internal/server/features/checkout/actions.d.ts +2 -0
  21. package/dist/_internal/server/features/checkout/actions.js +239 -190
  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/autoPayoutEligibility.js +8 -11
  25. package/dist/_internal/server/jobs/core/emiInstallmentReminder.d.ts +8 -0
  26. package/dist/_internal/server/jobs/core/emiInstallmentReminder.js +78 -0
  27. package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.d.ts +2 -2
  28. package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.js +15 -10
  29. package/dist/_internal/server/jobs/handlers/emiInstallmentReminder.d.ts +2 -0
  30. package/dist/_internal/server/jobs/handlers/emiInstallmentReminder.js +2 -0
  31. package/dist/_internal/server/jobs/handlers/index.d.ts +1 -0
  32. package/dist/_internal/server/jobs/handlers/index.js +2 -0
  33. package/dist/_internal/server/providers/index.d.ts +4 -4
  34. package/dist/_internal/server/providers/index.js +4 -4
  35. package/dist/_internal/server/providers/payment/razorpay-mock.d.ts +3 -2
  36. package/dist/_internal/server/providers/payment/razorpay-mock.js +3 -1
  37. package/dist/_internal/server/providers/resolve.d.ts +10 -13
  38. package/dist/_internal/server/providers/resolve.js +9 -15
  39. package/dist/_internal/shared/actions/action-registry.js +28 -0
  40. package/dist/_internal/shared/checkout/rules/_defaults.js +1 -0
  41. package/dist/_internal/shared/checkout/rules/_registry.js +4 -0
  42. package/dist/_internal/shared/checkout/rules/art.rule.d.ts +9 -0
  43. package/dist/_internal/shared/checkout/rules/art.rule.js +5 -0
  44. package/dist/_internal/shared/checkout/rules/auction.rule.js +1 -0
  45. package/dist/_internal/shared/checkout/rules/classified.rule.js +1 -0
  46. package/dist/_internal/shared/checkout/rules/index.d.ts +2 -0
  47. package/dist/_internal/shared/checkout/rules/index.js +2 -0
  48. package/dist/_internal/shared/checkout/rules/stickers.rule.d.ts +9 -0
  49. package/dist/_internal/shared/checkout/rules/stickers.rule.js +5 -0
  50. package/dist/_internal/shared/checkout/rules/types.d.ts +6 -0
  51. package/dist/_internal/shared/features/checkout/config.d.ts +16 -1
  52. package/dist/_internal/shared/features/checkout/config.js +16 -1
  53. package/dist/_internal/shared/features/emi/schedule.d.ts +63 -0
  54. package/dist/_internal/shared/features/emi/schedule.js +62 -0
  55. package/dist/_internal/shared/fees/calculator.d.ts +53 -0
  56. package/dist/_internal/shared/fees/calculator.js +40 -0
  57. package/dist/_internal/shared/listing-types/_registry.d.ts +22 -66
  58. package/dist/_internal/shared/listing-types/_registry.js +19 -2
  59. package/dist/_internal/shared/listing-types/art/config.d.ts +15 -0
  60. package/dist/_internal/shared/listing-types/art/config.js +14 -0
  61. package/dist/_internal/shared/listing-types/art/ctas.d.ts +1 -0
  62. package/dist/_internal/shared/listing-types/art/ctas.js +3 -0
  63. package/dist/_internal/shared/listing-types/art/og.d.ts +1 -0
  64. package/dist/_internal/shared/listing-types/art/og.js +1 -0
  65. package/dist/_internal/shared/listing-types/art/schema.d.ts +2 -0
  66. package/dist/_internal/shared/listing-types/art/schema.js +3 -0
  67. package/dist/_internal/shared/listing-types/art/seed-factory.d.ts +1 -0
  68. package/dist/_internal/shared/listing-types/art/seed-factory.js +1 -0
  69. package/dist/_internal/shared/listing-types/auction/config.d.ts +8 -0
  70. package/dist/_internal/shared/listing-types/auction/config.js +6 -0
  71. package/dist/_internal/shared/listing-types/capabilities.js +17 -0
  72. package/dist/_internal/shared/listing-types/classified/config.d.ts +8 -0
  73. package/dist/_internal/shared/listing-types/classified/config.js +6 -0
  74. package/dist/_internal/shared/listing-types/digital-code/config.d.ts +8 -0
  75. package/dist/_internal/shared/listing-types/digital-code/config.js +6 -0
  76. package/dist/_internal/shared/listing-types/live/config.d.ts +8 -0
  77. package/dist/_internal/shared/listing-types/live/config.js +6 -0
  78. package/dist/_internal/shared/listing-types/pre-order/config.d.ts +8 -0
  79. package/dist/_internal/shared/listing-types/pre-order/config.js +6 -0
  80. package/dist/_internal/shared/listing-types/prize-draw/config.d.ts +8 -0
  81. package/dist/_internal/shared/listing-types/prize-draw/config.js +6 -0
  82. package/dist/_internal/shared/listing-types/standard/config.d.ts +8 -0
  83. package/dist/_internal/shared/listing-types/standard/config.js +6 -0
  84. package/dist/_internal/shared/listing-types/stickers/config.d.ts +15 -0
  85. package/dist/_internal/shared/listing-types/stickers/config.js +14 -0
  86. package/dist/_internal/shared/listing-types/stickers/ctas.d.ts +1 -0
  87. package/dist/_internal/shared/listing-types/stickers/ctas.js +3 -0
  88. package/dist/_internal/shared/listing-types/stickers/og.d.ts +1 -0
  89. package/dist/_internal/shared/listing-types/stickers/og.js +1 -0
  90. package/dist/_internal/shared/listing-types/stickers/schema.d.ts +2 -0
  91. package/dist/_internal/shared/listing-types/stickers/schema.js +3 -0
  92. package/dist/_internal/shared/listing-types/stickers/seed-factory.d.ts +1 -0
  93. package/dist/_internal/shared/listing-types/stickers/seed-factory.js +1 -0
  94. package/dist/client.d.ts +7 -2
  95. package/dist/client.js +4 -2
  96. package/dist/constants/field-names.d.ts +2 -6
  97. package/dist/constants/field-names.js +2 -6
  98. package/dist/contracts/index.d.ts +4 -2
  99. package/dist/contracts/index.js +6 -0
  100. package/dist/contracts/payment.d.ts +14 -9
  101. package/dist/contracts/payment.js +11 -1
  102. package/dist/contracts/shipping.d.ts +14 -9
  103. package/dist/contracts/shipping.js +11 -1
  104. package/dist/features/about/components/AboutView.d.ts +1 -1
  105. package/dist/features/about/components/FAQPageView.d.ts +1 -1
  106. package/dist/features/about/components/FeesView.d.ts +1 -1
  107. package/dist/features/about/components/HelpPageView.d.ts +1 -1
  108. package/dist/features/about/components/HowAuctionsWorkView.d.ts +1 -1
  109. package/dist/features/about/components/HowCheckoutWorksView.d.ts +1 -1
  110. package/dist/features/about/components/HowOffersWorkView.d.ts +1 -1
  111. package/dist/features/about/components/HowOrdersWorkView.d.ts +1 -1
  112. package/dist/features/about/components/HowPayoutsWorkView.d.ts +1 -1
  113. package/dist/features/about/components/HowPreOrdersWorkView.d.ts +1 -1
  114. package/dist/features/about/components/HowReviewsWorkView.d.ts +1 -1
  115. package/dist/features/about/components/PolicyPageView.d.ts +1 -1
  116. package/dist/features/about/components/PublicProfileView.d.ts +1 -1
  117. package/dist/features/about/components/PublicProfileView.js +3 -6
  118. package/dist/features/about/components/SecurityPrivacyView.d.ts +1 -1
  119. package/dist/features/about/components/ShippingPolicyView.d.ts +1 -1
  120. package/dist/features/about/components/TrackOrderView.d.ts +1 -1
  121. package/dist/features/about/components/UnauthorizedView.d.ts +1 -1
  122. package/dist/features/account/components/AddressBook.d.ts +2 -2
  123. package/dist/features/account/components/AddressFilters.d.ts +1 -1
  124. package/dist/features/account/components/AddressForm.d.ts +1 -1
  125. package/dist/features/account/components/AddressInlineSelect.d.ts +2 -1
  126. package/dist/features/account/components/AddressSelectorCreate.d.ts +1 -1
  127. package/dist/features/account/components/AddressesIndexListing.d.ts +2 -1
  128. package/dist/features/account/components/BecomeSellerView.d.ts +1 -1
  129. package/dist/features/account/components/BuyerAccountGuideView.d.ts +2 -1
  130. package/dist/features/account/components/BuyerAuctionsGuideView.d.ts +2 -1
  131. package/dist/features/account/components/BuyerOrdersGuideView.d.ts +2 -1
  132. package/dist/features/account/components/BuyerShoppingGuideView.d.ts +2 -1
  133. package/dist/features/account/components/ChatList.d.ts +1 -1
  134. package/dist/features/account/components/ChatWindow.d.ts +1 -1
  135. package/dist/features/account/components/MessagesView.d.ts +1 -1
  136. package/dist/features/account/components/NotificationBell.d.ts +1 -1
  137. package/dist/features/account/components/NotificationPreferencesPanel.d.ts +1 -1
  138. package/dist/features/account/components/OrderDetailView.d.ts +1 -1
  139. package/dist/features/account/components/ProfileView.d.ts +1 -1
  140. package/dist/features/account/components/UserAccountHubView.d.ts +1 -1
  141. package/dist/features/account/components/UserAddressesView.d.ts +1 -1
  142. package/dist/features/account/components/UserNotificationsView.d.ts +1 -1
  143. package/dist/features/account/components/UserOffersPanel.d.ts +1 -1
  144. package/dist/features/account/components/UserOffersView.d.ts +1 -1
  145. package/dist/features/account/components/UserOrderTrackView.d.ts +1 -1
  146. package/dist/features/account/components/UserOrdersView.d.ts +1 -1
  147. package/dist/features/account/components/UserReturnsView.d.ts +1 -1
  148. package/dist/features/account/components/UserSettingsView.d.ts +1 -1
  149. package/dist/features/account/components/UserSidebar.d.ts +1 -1
  150. package/dist/features/account/components/UserSupportView.d.ts +2 -1
  151. package/dist/features/admin/components/AdminAdEditorView.d.ts +2 -1
  152. package/dist/features/admin/components/AdminAddressBookView.d.ts +11 -0
  153. package/dist/features/admin/components/AdminAddressBookView.js +30 -0
  154. package/dist/features/admin/components/AdminAddressClustersView.d.ts +1 -1
  155. package/dist/features/admin/components/AdminAddressEditorView.d.ts +2 -1
  156. package/dist/features/admin/components/AdminAddressesView.d.ts +1 -1
  157. package/dist/features/admin/components/AdminAdsView.d.ts +1 -1
  158. package/dist/features/admin/components/AdminAllEventEntriesView.d.ts +2 -1
  159. package/dist/features/admin/components/AdminAnalyticsGuideView.d.ts +2 -1
  160. package/dist/features/admin/components/AdminAnalyticsView.d.ts +1 -1
  161. package/dist/features/admin/components/AdminArtView.d.ts +4 -0
  162. package/dist/features/admin/components/AdminArtView.js +45 -0
  163. package/dist/features/admin/components/AdminBidsView.d.ts +2 -1
  164. package/dist/features/admin/components/AdminBlogEditorView.d.ts +2 -1
  165. package/dist/features/admin/components/AdminBlogView.d.ts +2 -1
  166. package/dist/features/admin/components/AdminBrandEditorView.d.ts +2 -1
  167. package/dist/features/admin/components/AdminBrandsView.d.ts +2 -1
  168. package/dist/features/admin/components/AdminBundleEditorView.d.ts +14 -1
  169. package/dist/features/admin/components/AdminBundlesView.d.ts +2 -1
  170. package/dist/features/admin/components/AdminCarouselEditorView.d.ts +2 -1
  171. package/dist/features/admin/components/AdminCarouselView.d.ts +2 -1
  172. package/dist/features/admin/components/AdminCartsView.d.ts +2 -1
  173. package/dist/features/admin/components/AdminCatalogGuideView.d.ts +2 -1
  174. package/dist/features/admin/components/AdminCategoriesView.d.ts +2 -1
  175. package/dist/features/admin/components/AdminCategoryEditorView.d.ts +2 -1
  176. package/dist/features/admin/components/AdminClassifiedView.d.ts +2 -1
  177. package/dist/features/admin/components/AdminContactEditorView.d.ts +2 -1
  178. package/dist/features/admin/components/AdminContactView.d.ts +2 -1
  179. package/dist/features/admin/components/AdminContentGuideView.d.ts +2 -1
  180. package/dist/features/admin/components/AdminCouponEditorView.d.ts +2 -1
  181. package/dist/features/admin/components/AdminCouponsView.d.ts +2 -1
  182. package/dist/features/admin/components/AdminDashboardView.d.ts +1 -1
  183. package/dist/features/admin/components/AdminDigitalCodesView.d.ts +2 -1
  184. package/dist/features/admin/components/AdminEmployeeEditorView.d.ts +2 -1
  185. package/dist/features/admin/components/AdminFaqEditorView.d.ts +2 -1
  186. package/dist/features/admin/components/AdminFaqsView.d.ts +2 -1
  187. package/dist/features/admin/components/AdminFeatureEditorView.d.ts +2 -1
  188. package/dist/features/admin/components/AdminFeatureFlagsView.d.ts +1 -1
  189. package/dist/features/admin/components/AdminFeaturesView.d.ts +2 -1
  190. package/dist/features/admin/components/AdminFilterBar.d.ts +1 -1
  191. package/dist/features/admin/components/AdminFulfillmentView.d.ts +2 -1
  192. package/dist/features/admin/components/AdminGroupedListingsView.d.ts +2 -1
  193. package/dist/features/admin/components/AdminGuideHubView.d.ts +2 -1
  194. package/dist/features/admin/components/AdminHistoryView.d.ts +2 -1
  195. package/dist/features/admin/components/AdminLiveView.d.ts +2 -1
  196. package/dist/features/admin/components/AdminMediaView.d.ts +1 -1
  197. package/dist/features/admin/components/AdminNavEditorView.d.ts +2 -1
  198. package/dist/features/admin/components/AdminNavigationView.d.ts +2 -1
  199. package/dist/features/admin/components/AdminNewsletterView.d.ts +2 -1
  200. package/dist/features/admin/components/AdminNotificationsView.d.ts +2 -1
  201. package/dist/features/admin/components/AdminOrderEditorView.d.ts +2 -1
  202. package/dist/features/admin/components/AdminOrdersGuideView.d.ts +2 -1
  203. package/dist/features/admin/components/AdminOrdersView.d.ts +2 -1
  204. package/dist/features/admin/components/AdminPageHeader.d.ts +1 -1
  205. package/dist/features/admin/components/AdminPaymentClustersView.d.ts +1 -1
  206. package/dist/features/admin/components/AdminPaymentMethodsView.d.ts +1 -1
  207. package/dist/features/admin/components/AdminPayoutsView.d.ts +2 -1
  208. package/dist/features/admin/components/AdminPrizeDrawsView.d.ts +2 -1
  209. package/dist/features/admin/components/AdminProductEditorView.d.ts +2 -1
  210. package/dist/features/admin/components/AdminProductsView.d.ts +2 -1
  211. package/dist/features/admin/components/AdminReturnRequestsView.d.ts +1 -1
  212. package/dist/features/admin/components/AdminReviewsView.d.ts +2 -1
  213. package/dist/features/admin/components/AdminScammerEditorView.d.ts +2 -1
  214. package/dist/features/admin/components/AdminScammersView.d.ts +2 -1
  215. package/dist/features/admin/components/AdminSectionsView.d.ts +1 -1
  216. package/dist/features/admin/components/AdminSessionsManager.d.ts +1 -1
  217. package/dist/features/admin/components/AdminSessionsView.d.ts +2 -1
  218. package/dist/features/admin/components/AdminSidebar.d.ts +1 -1
  219. package/dist/features/admin/components/AdminSiteConfigGuideView.d.ts +2 -1
  220. package/dist/features/admin/components/AdminSiteConfigGuideView.js +1 -1
  221. package/dist/features/admin/components/AdminSiteSettingsView.d.ts +2 -1
  222. package/dist/features/admin/components/AdminSiteSettingsView.js +14 -9
  223. package/dist/features/admin/components/AdminSiteView.d.ts +1 -1
  224. package/dist/features/admin/components/AdminStickersView.d.ts +4 -0
  225. package/dist/features/admin/components/AdminStickersView.js +45 -0
  226. package/dist/features/admin/components/AdminStoreAddressesView.d.ts +1 -1
  227. package/dist/features/admin/components/AdminStoreEditorView.d.ts +2 -1
  228. package/dist/features/admin/components/AdminStoresGuideView.d.ts +2 -1
  229. package/dist/features/admin/components/AdminStoresView.d.ts +2 -1
  230. package/dist/features/admin/components/AdminSublistingCategoriesView.d.ts +2 -1
  231. package/dist/features/admin/components/AdminSublistingCategoryEditorView.d.ts +2 -1
  232. package/dist/features/admin/components/AdminSupportTicketDetailView.d.ts +2 -1
  233. package/dist/features/admin/components/AdminSupportTicketsView.d.ts +2 -1
  234. package/dist/features/admin/components/AdminTeamGuideView.d.ts +2 -1
  235. package/dist/features/admin/components/AdminTeamView.d.ts +2 -1
  236. package/dist/features/admin/components/AdminTopBar.d.ts +1 -1
  237. package/dist/features/admin/components/AdminTrustGuideView.d.ts +2 -1
  238. package/dist/features/admin/components/AdminUserEditorView.d.ts +2 -1
  239. package/dist/features/admin/components/AdminUsersGuideView.d.ts +2 -1
  240. package/dist/features/admin/components/AdminUsersView.d.ts +2 -1
  241. package/dist/features/admin/components/AdminViewCards.d.ts +2 -1
  242. package/dist/features/admin/components/AdminWishlistsView.d.ts +2 -1
  243. package/dist/features/admin/components/BrandQuickCreateForm.d.ts +2 -1
  244. package/dist/features/admin/components/CategoryQuickCreateForm.d.ts +2 -1
  245. package/dist/features/admin/components/DashboardStats.d.ts +1 -1
  246. package/dist/features/admin/components/DataListingView.d.ts +1 -1
  247. package/dist/features/admin/components/DataTable.d.ts +1 -1
  248. package/dist/features/admin/components/DemoSeedView.d.ts +1 -1
  249. package/dist/features/admin/components/DrawerFormFooter.d.ts +1 -1
  250. package/dist/features/admin/components/QuickActionsPanel.d.ts +1 -1
  251. package/dist/features/admin/components/QuickEditMenu.d.ts +1 -1
  252. package/dist/features/admin/components/analytics/AdminAnalyticsCharts.d.ts +3 -2
  253. package/dist/features/admin/components/analytics/AdminStatCard.d.ts +1 -1
  254. package/dist/features/admin/components/analytics/AdminTopProductsTable.d.ts +1 -1
  255. package/dist/features/admin/components/index.d.ts +6 -0
  256. package/dist/features/admin/components/index.js +4 -0
  257. package/dist/features/admin/schemas/firestore.d.ts +19 -11
  258. package/dist/features/admin/schemas/firestore.js +12 -2
  259. package/dist/features/auctions/components/AuctionBidsTable.d.ts +1 -1
  260. package/dist/features/auctions/components/AuctionDetailPageView.d.ts +1 -1
  261. package/dist/features/auctions/components/AuctionFilters.d.ts +1 -1
  262. package/dist/features/auctions/components/AuctionsListView.d.ts +1 -1
  263. package/dist/features/auctions/components/CollapsibleBidHistory.d.ts +2 -1
  264. package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +4 -3
  265. package/dist/features/auctions/components/MarketplaceAuctionGrid.d.ts +1 -1
  266. package/dist/features/auctions/components/PlaceBidFormClient.d.ts +3 -2
  267. package/dist/features/auth/components/AuthStatusPanel.d.ts +1 -1
  268. package/dist/features/auth/components/ForgotPasswordView.d.ts +1 -1
  269. package/dist/features/auth/components/Guards.d.ts +2 -2
  270. package/dist/features/auth/components/LoginForm.d.ts +1 -1
  271. package/dist/features/auth/components/OAuthLoadingView.d.ts +1 -1
  272. package/dist/features/auth/components/RegisterForm.d.ts +1 -1
  273. package/dist/features/auth/components/ResetPasswordView.d.ts +1 -1
  274. package/dist/features/auth/components/SocialAuthButtons.d.ts +1 -1
  275. package/dist/features/auth/components/VerifyEmailView.d.ts +1 -1
  276. package/dist/features/auth/hooks/useAuth.js +35 -9
  277. package/dist/features/auth/schemas/firestore.d.ts +2 -6
  278. package/dist/features/before-after/components/BeforeAfterGallery.d.ts +1 -1
  279. package/dist/features/before-after/components/BeforeAfterSlider.d.ts +2 -1
  280. package/dist/features/blog/components/BlogFeaturedCard.d.ts +2 -1
  281. package/dist/features/blog/components/BlogFilters.d.ts +1 -1
  282. package/dist/features/blog/components/BlogIndexListing.d.ts +2 -1
  283. package/dist/features/blog/components/BlogIndexPageView.d.ts +2 -1
  284. package/dist/features/blog/components/BlogListView.d.ts +4 -3
  285. package/dist/features/blog/components/BlogPostForm.d.ts +1 -1
  286. package/dist/features/blog/components/BlogPostView.d.ts +1 -1
  287. package/dist/features/cart/components/CartDrawer.d.ts +2 -2
  288. package/dist/features/cart/components/CartSummary.d.ts +1 -1
  289. package/dist/features/cart/components/CartView.d.ts +1 -1
  290. package/dist/features/cart/components/CheckoutAddressStep.d.ts +1 -1
  291. package/dist/features/cart/components/CheckoutOtpModal.d.ts +1 -1
  292. package/dist/features/cart/components/CheckoutSuccessView.d.ts +1 -1
  293. package/dist/features/cart/components/CheckoutView.d.ts +1 -1
  294. package/dist/features/cart/components/ShippingPicker.d.ts +9 -1
  295. package/dist/features/cart/schemas/firestore.d.ts +3 -2
  296. package/dist/features/categories/components/BrandDetailPageView.d.ts +2 -1
  297. package/dist/features/categories/components/BrandDetailTabs.d.ts +2 -1
  298. package/dist/features/categories/components/BreadcrumbTrail.d.ts +2 -1
  299. package/dist/features/categories/components/BundleBuyNowCta.d.ts +9 -1
  300. package/dist/features/categories/components/BundleCollage.d.ts +10 -1
  301. package/dist/features/categories/components/BundleDetailView.d.ts +2 -1
  302. package/dist/features/categories/components/BundleDynamicRuleEditor.d.ts +15 -1
  303. package/dist/features/categories/components/BundleItemsPicker.d.ts +15 -1
  304. package/dist/features/categories/components/BundlesListView.d.ts +2 -1
  305. package/dist/features/categories/components/CategoriesIndexListing.d.ts +2 -1
  306. package/dist/features/categories/components/CategoriesIndexPageView.d.ts +2 -1
  307. package/dist/features/categories/components/CategoryBundlesListing.d.ts +2 -1
  308. package/dist/features/categories/components/CategoryDetailPageView.d.ts +2 -1
  309. package/dist/features/categories/components/CategoryDetailTabs.d.ts +2 -1
  310. package/dist/features/categories/components/CategoryFilters.d.ts +1 -1
  311. package/dist/features/categories/components/CategoryForm.d.ts +1 -1
  312. package/dist/features/categories/components/CategoryGrid.d.ts +3 -2
  313. package/dist/features/categories/components/CategoryProductsListing.d.ts +2 -1
  314. package/dist/features/categories/components/CategoryProductsView.d.ts +1 -1
  315. package/dist/features/categories/components/CategorySelectorCreate.d.ts +1 -1
  316. package/dist/features/categories/components/CategorySortSelect.d.ts +1 -1
  317. package/dist/features/categories/components/CategoryStoresListing.d.ts +2 -1
  318. package/dist/features/categories/components/CategoryTableColumns.d.ts +3 -3
  319. package/dist/features/categories/components/CategoryTree.d.ts +1 -1
  320. package/dist/features/categories/components/ConcernCard.d.ts +1 -1
  321. package/dist/features/categories/components/ConcernGrid.d.ts +1 -1
  322. package/dist/features/checkout/components/CheckoutStepper.d.ts +2 -1
  323. package/dist/features/classified/components/ClassifiedFilters.d.ts +1 -1
  324. package/dist/features/classified/components/ClassifiedIndexListing.d.ts +2 -1
  325. package/dist/features/classified/components/ClassifiedListView.d.ts +1 -1
  326. package/dist/features/collections/components/CollectionCard.d.ts +3 -2
  327. package/dist/features/consultation/components/ConsultationForm.d.ts +2 -1
  328. package/dist/features/consultation/schemas/index.d.ts +2 -2
  329. package/dist/features/contact/components/ContactForm.d.ts +2 -1
  330. package/dist/features/contact/components/ContactInfoSidebar.d.ts +1 -1
  331. package/dist/features/contact/components/ContactPageView.d.ts +2 -1
  332. package/dist/features/copilot/components/AdminCopilotView.d.ts +1 -1
  333. package/dist/features/corporate/components/CorporateInquiryForm.d.ts +2 -1
  334. package/dist/features/digital-codes/components/DigitalCodeFilters.d.ts +1 -1
  335. package/dist/features/digital-codes/components/DigitalCodesIndexListing.d.ts +2 -1
  336. package/dist/features/digital-codes/components/DigitalCodesListView.d.ts +1 -1
  337. package/dist/features/email/primitives.d.ts +11 -11
  338. package/dist/features/events/components/AdminEventEditorView.d.ts +2 -1
  339. package/dist/features/events/components/AdminEventEntriesView.d.ts +1 -1
  340. package/dist/features/events/components/AdminEventsView.d.ts +2 -1
  341. package/dist/features/events/components/EventBanner.d.ts +2 -1
  342. package/dist/features/events/components/EventCard.d.ts +1 -1
  343. package/dist/features/events/components/EventDetailView.d.ts +1 -1
  344. package/dist/features/events/components/EventFilters.d.ts +1 -1
  345. package/dist/features/events/components/EventFormDrawer.d.ts +1 -1
  346. package/dist/features/events/components/EventLeaderboard.d.ts +1 -1
  347. package/dist/features/events/components/EventOfferCard.d.ts +2 -1
  348. package/dist/features/events/components/EventParticipateView.d.ts +1 -1
  349. package/dist/features/events/components/EventPollWidget.d.ts +1 -1
  350. package/dist/features/events/components/EventRaffleEntryForm.d.ts +2 -1
  351. package/dist/features/events/components/EventRaffleWinnerView.d.ts +1 -1
  352. package/dist/features/events/components/EventRafflesSection.d.ts +1 -1
  353. package/dist/features/events/components/EventSaleBanner.d.ts +2 -1
  354. package/dist/features/events/components/EventStatusBadge.d.ts +1 -1
  355. package/dist/features/events/components/EventsIndexListing.d.ts +2 -1
  356. package/dist/features/events/components/EventsListPageView.d.ts +2 -1
  357. package/dist/features/events/components/EventsListView.d.ts +2 -1
  358. package/dist/features/events/components/SpinWheelView.d.ts +1 -1
  359. package/dist/features/faq/components/ContactCTA.d.ts +1 -1
  360. package/dist/features/faq/components/FAQAccordion.d.ts +2 -2
  361. package/dist/features/faq/components/FAQCategorySidebar.d.ts +1 -1
  362. package/dist/features/faq/components/FAQHelpfulButtons.d.ts +1 -1
  363. package/dist/features/faq/components/FAQPageContent.d.ts +1 -1
  364. package/dist/features/faq/components/FAQSortDropdown.d.ts +1 -1
  365. package/dist/features/faq/components/RelatedFAQs.d.ts +1 -1
  366. package/dist/features/filters/AsyncFacetSection.d.ts +2 -1
  367. package/dist/features/filters/FilterFacetSection.d.ts +1 -1
  368. package/dist/features/filters/FilterPanel.d.ts +1 -1
  369. package/dist/features/filters/RangeFilter.d.ts +1 -1
  370. package/dist/features/filters/SwitchFilter.d.ts +1 -1
  371. package/dist/features/forms/Checkbox.d.ts +1 -1
  372. package/dist/features/forms/Radio.d.ts +2 -1
  373. package/dist/features/forms/Select.d.ts +1 -1
  374. package/dist/features/forms/Slider.d.ts +2 -1
  375. package/dist/features/forms/Toggle.d.ts +2 -1
  376. package/dist/features/homepage/components/AdSlot.d.ts +1 -1
  377. package/dist/features/homepage/components/AdvertisementBanner.d.ts +2 -1
  378. package/dist/features/homepage/components/AnnouncementBar.d.ts +2 -1
  379. package/dist/features/homepage/components/BeforeAfterCard.d.ts +1 -1
  380. package/dist/features/homepage/components/BlogArticlesSection.d.ts +2 -1
  381. package/dist/features/homepage/components/BrandsSection.d.ts +1 -1
  382. package/dist/features/homepage/components/CTABannerSection.d.ts +2 -1
  383. package/dist/features/homepage/components/CharacterHotspot.d.ts +1 -1
  384. package/dist/features/homepage/components/CharacterHotspotForm.d.ts +2 -1
  385. package/dist/features/homepage/components/CollectionCardsSection.d.ts +1 -1
  386. package/dist/features/homepage/components/CustomCardsSection.d.ts +2 -1
  387. package/dist/features/homepage/components/CustomerReviewsSection.d.ts +1 -1
  388. package/dist/features/homepage/components/EventsSection.d.ts +2 -1
  389. package/dist/features/homepage/components/FAQSection.d.ts +2 -1
  390. package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +2 -1
  391. package/dist/features/homepage/components/FeaturedBundlesSection.d.ts +2 -1
  392. package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +2 -1
  393. package/dist/features/homepage/components/FeaturedProductsSection.d.ts +1 -1
  394. package/dist/features/homepage/components/FeaturedResultsSection.d.ts +1 -1
  395. package/dist/features/homepage/components/FeaturedStoresSection.d.ts +2 -1
  396. package/dist/features/homepage/components/GoogleReviewsSection.d.ts +2 -1
  397. package/dist/features/homepage/components/HeroBanner.d.ts +1 -1
  398. package/dist/features/homepage/components/HeroCarousel.d.ts +2 -1
  399. package/dist/features/homepage/components/HeroSection.d.ts +1 -1
  400. package/dist/features/homepage/components/HomepageCustomerReviewsSection.d.ts +2 -1
  401. package/dist/features/homepage/components/HomepageSkeleton.d.ts +1 -1
  402. package/dist/features/homepage/components/HomepageView.d.ts +1 -1
  403. package/dist/features/homepage/components/HowItWorksInfoView.d.ts +1 -1
  404. package/dist/features/homepage/components/HowItWorksSection.d.ts +1 -1
  405. package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +1 -1
  406. package/dist/features/homepage/components/NewsletterBanner.d.ts +2 -1
  407. package/dist/features/homepage/components/NewsletterSection.d.ts +1 -1
  408. package/dist/features/homepage/components/PromoGrid.d.ts +1 -1
  409. package/dist/features/homepage/components/SectionCarousel.d.ts +1 -1
  410. package/dist/features/homepage/components/SecurityHighlightsSection.d.ts +1 -1
  411. package/dist/features/homepage/components/ShopByCategorySection.d.ts +1 -1
  412. package/dist/features/homepage/components/SiteFeaturesSection.d.ts +2 -1
  413. package/dist/features/homepage/components/SocialFeedSection.d.ts +1 -1
  414. package/dist/features/homepage/components/SocialPostCard.d.ts +1 -1
  415. package/dist/features/homepage/components/StatsCounterSection.d.ts +1 -1
  416. package/dist/features/homepage/components/TestimonialsCarousel.d.ts +1 -1
  417. package/dist/features/homepage/components/TrustBadges.d.ts +2 -1
  418. package/dist/features/homepage/components/TrustFeaturesSection.d.ts +1 -1
  419. package/dist/features/homepage/components/TrustIndicatorsSection.d.ts +2 -1
  420. package/dist/features/homepage/components/WelcomeSection.d.ts +2 -1
  421. package/dist/features/homepage/components/WhatsAppCommunitySection.d.ts +2 -1
  422. package/dist/features/layout/AppLayoutShell.d.ts +1 -1
  423. package/dist/features/layout/AutoBreadcrumbs.d.ts +1 -1
  424. package/dist/features/layout/BackToTop.d.ts +2 -2
  425. package/dist/features/layout/BottomActions.d.ts +1 -1
  426. package/dist/features/layout/BottomActionsContext.d.ts +1 -1
  427. package/dist/features/layout/BottomNavItem.d.ts +1 -1
  428. package/dist/features/layout/BottomNavLayout.d.ts +1 -1
  429. package/dist/features/layout/BottomNavbar.d.ts +1 -1
  430. package/dist/features/layout/BottomSheet.d.ts +1 -1
  431. package/dist/features/layout/Breadcrumbs.d.ts +2 -2
  432. package/dist/features/layout/DashboardNavContext.d.ts +1 -1
  433. package/dist/features/layout/FooterLayout.d.ts +1 -1
  434. package/dist/features/layout/LayoutClient.d.ts +1 -1
  435. package/dist/features/layout/LocaleSwitcher.d.ts +1 -1
  436. package/dist/features/layout/MainNavbar.d.ts +1 -1
  437. package/dist/features/layout/NavItem.d.ts +1 -1
  438. package/dist/features/layout/NavbarLayout.d.ts +1 -1
  439. package/dist/features/layout/NavbarWithSettings.d.ts +1 -1
  440. package/dist/features/layout/TitleBar.d.ts +1 -1
  441. package/dist/features/layout/TitleBarLayout.d.ts +1 -1
  442. package/dist/features/live/components/LiveItemFilters.d.ts +1 -1
  443. package/dist/features/live/components/LiveItemsIndexListing.d.ts +2 -1
  444. package/dist/features/live/components/LiveItemsListView.d.ts +1 -1
  445. package/dist/features/loyalty/components/CoinsDisplay.d.ts +3 -2
  446. package/dist/features/loyalty/schemas/index.d.ts +6 -6
  447. package/dist/features/media/AvatarUpload.d.ts +2 -1
  448. package/dist/features/media/MediaAudio.d.ts +1 -1
  449. package/dist/features/media/MediaAvatar.d.ts +1 -1
  450. package/dist/features/media/MediaImage.d.ts +1 -1
  451. package/dist/features/media/MediaLightbox.d.ts +2 -1
  452. package/dist/features/media/MediaPickerModal.d.ts +2 -1
  453. package/dist/features/media/MediaVideo.d.ts +1 -1
  454. package/dist/features/media/components/MediaSlider.d.ts +2 -1
  455. package/dist/features/media/modals/ImageCropModal.d.ts +8 -1
  456. package/dist/features/media/modals/ImageEditor.d.ts +8 -1
  457. package/dist/features/media/modals/VideoThumbnailSelector.d.ts +1 -1
  458. package/dist/features/media/modals/VideoTrimModal.d.ts +1 -1
  459. package/dist/features/media/upload/CameraCapture.d.ts +1 -1
  460. package/dist/features/media/upload/ImageUpload.d.ts +1 -1
  461. package/dist/features/media/upload/MediaUploadField.d.ts +1 -1
  462. package/dist/features/media/upload/MediaUploadList.d.ts +1 -1
  463. package/dist/features/orders/components/MarketplaceOrderCard.d.ts +1 -1
  464. package/dist/features/orders/components/OrderFilters.d.ts +1 -1
  465. package/dist/features/orders/components/OrderSiblingPayments.d.ts +10 -1
  466. package/dist/features/orders/components/OrdersList.d.ts +2 -2
  467. package/dist/features/orders/components/RefundHistoryTable.d.ts +2 -1
  468. package/dist/features/orders/components/RefundRequestView.d.ts +13 -1
  469. package/dist/features/orders/repository/orders.repository.d.ts +20 -2
  470. package/dist/features/orders/repository/orders.repository.js +34 -5
  471. package/dist/features/orders/schemas/firestore.d.ts +33 -7
  472. package/dist/features/orders/schemas/firestore.js +1 -1
  473. package/dist/features/orders/schemas/index.d.ts +176 -31
  474. package/dist/features/orders/schemas/index.js +20 -6
  475. package/dist/features/orders/types/index.d.ts +3 -3
  476. package/dist/features/payments/repository/payout.repository.js +2 -2
  477. package/dist/features/payments/schemas/firestore.d.ts +3 -3
  478. package/dist/features/payments/schemas/firestore.js +2 -2
  479. package/dist/features/payments/schemas/index.d.ts +5 -5
  480. package/dist/features/payments/schemas/index.js +2 -2
  481. package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +1 -1
  482. package/dist/features/pre-orders/components/PreOrderActionsClient.d.ts +2 -1
  483. package/dist/features/pre-orders/components/PreOrderBadge.d.ts +2 -2
  484. package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +1 -1
  485. package/dist/features/pre-orders/components/PreOrderFilters.d.ts +1 -1
  486. package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +2 -1
  487. package/dist/features/pre-orders/components/PreOrdersListView.d.ts +1 -1
  488. package/dist/features/pre-orders/components/PreorderCard.d.ts +2 -1
  489. package/dist/features/products/api/[id]/route.js +4 -1
  490. package/dist/features/products/api/route.js +4 -1
  491. package/dist/features/products/columns/productTableColumns.d.ts +2 -1
  492. package/dist/features/products/components/AuctionDetailView.d.ts +1 -1
  493. package/dist/features/products/components/AuctionsIndexListing.d.ts +2 -1
  494. package/dist/features/products/components/BidHistory.d.ts +1 -1
  495. package/dist/features/products/components/CompareOverlay.d.ts +1 -1
  496. package/dist/features/products/components/CompareOverlay.js +7 -9
  497. package/dist/features/products/components/CustomFieldsEditor.d.ts +2 -1
  498. package/dist/features/products/components/CustomSectionTabContent.d.ts +2 -1
  499. package/dist/features/products/components/CustomSectionsEditor.d.ts +2 -1
  500. package/dist/features/products/components/FeatureBadge.d.ts +2 -2
  501. package/dist/features/products/components/GroupSettingsPanel.d.ts +2 -1
  502. package/dist/features/products/components/InteractiveProductCard.d.ts +2 -1
  503. package/dist/features/products/components/MakeOfferButton.d.ts +2 -1
  504. package/dist/features/products/components/MakeOfferForm.d.ts +1 -1
  505. package/dist/features/products/components/MarketplaceBundleCard.d.ts +1 -1
  506. package/dist/features/products/components/MarketplacePrizeDrawCard.d.ts +1 -1
  507. package/dist/features/products/components/NonRefundableConsentModal.d.ts +14 -1
  508. package/dist/features/products/components/PlaceBidForm.d.ts +1 -1
  509. package/dist/features/products/components/PreOrderDetailView.d.ts +1 -1
  510. package/dist/features/products/components/PrizeDrawCollage.d.ts +2 -1
  511. package/dist/features/products/components/PrizeDrawDetailPageView.d.ts +1 -1
  512. package/dist/features/products/components/PrizeDrawEntryActions.d.ts +1 -1
  513. package/dist/features/products/components/PrizeDrawItemsEditor.d.ts +1 -1
  514. package/dist/features/products/components/PrizeDrawsIndexListing.d.ts +1 -1
  515. package/dist/features/products/components/PrizeDrawsListingView.d.ts +1 -1
  516. package/dist/features/products/components/PrizeDrawsSection.d.ts +1 -1
  517. package/dist/features/products/components/PrizeRevealModal.d.ts +1 -1
  518. package/dist/features/products/components/ProductCardMetadataSection.d.ts +2 -1
  519. package/dist/features/products/components/ProductDetailActions.d.ts +1 -1
  520. package/dist/features/products/components/ProductDetailPageView.d.ts +3 -1
  521. package/dist/features/products/components/ProductDetailPageView.js +2 -2
  522. package/dist/features/products/components/ProductDetailView.d.ts +1 -1
  523. package/dist/features/products/components/ProductFeatureBadges.d.ts +1 -1
  524. package/dist/features/products/components/ProductFeaturesContext.d.ts +1 -1
  525. package/dist/features/products/components/ProductFeaturesSelector.d.ts +2 -1
  526. package/dist/features/products/components/ProductFilters.d.ts +1 -1
  527. package/dist/features/products/components/ProductForm.d.ts +1 -1
  528. package/dist/features/products/components/ProductForm.js +18 -7
  529. package/dist/features/products/components/ProductGalleryClient.d.ts +2 -1
  530. package/dist/features/products/components/ProductGradingTab.d.ts +2 -1
  531. package/dist/features/products/components/ProductGrid.d.ts +2 -2
  532. package/dist/features/products/components/ProductGrid.js +7 -12
  533. package/dist/features/products/components/ProductInfo.d.ts +1 -1
  534. package/dist/features/products/components/ProductTabs.d.ts +1 -1
  535. package/dist/features/products/components/ProductTabsShell.d.ts +1 -1
  536. package/dist/features/products/components/ProductsIndexListing.d.ts +2 -1
  537. package/dist/features/products/components/ProductsIndexPageView.d.ts +2 -1
  538. package/dist/features/products/components/ProductsView.d.ts +1 -1
  539. package/dist/features/products/components/RelatedProducts.d.ts +1 -1
  540. package/dist/features/products/components/RelatedProductsCarousel.d.ts +2 -1
  541. package/dist/features/products/components/ShareButton.d.ts +1 -1
  542. package/dist/features/products/components/ShowGroupSection.d.ts +2 -1
  543. package/dist/features/products/components/ShowGroupSection.js +3 -5
  544. package/dist/features/products/components/SublistingCarouselSection.d.ts +2 -1
  545. package/dist/features/products/components/SublistingCarouselSection.js +3 -6
  546. package/dist/features/products/components/SublistingCategorySelect.d.ts +2 -1
  547. package/dist/features/products/constants/listing-tabs.d.ts +32 -0
  548. package/dist/features/products/constants/listing-tabs.js +8 -0
  549. package/dist/features/products/index.d.ts +1 -1
  550. package/dist/features/products/index.js +3 -1
  551. package/dist/features/products/schemas/firestore.d.ts +20 -1
  552. package/dist/features/products/schemas/firestore.js +2 -0
  553. package/dist/features/products/schemas/index.d.ts +48 -0
  554. package/dist/features/products/schemas/index.js +9 -0
  555. package/dist/features/products/schemas/product-features.d.ts +1 -1
  556. package/dist/features/products/types/index.d.ts +5 -3
  557. package/dist/features/products/utils/listing-type.d.ts +6 -0
  558. package/dist/features/products/utils/listing-type.js +3 -0
  559. package/dist/features/promotions/components/CouponCard.d.ts +1 -1
  560. package/dist/features/promotions/components/CouponsIndexListing.d.ts +2 -1
  561. package/dist/features/promotions/components/PromotionsView.d.ts +3 -3
  562. package/dist/features/reviews/api/[id]/route.js +5 -4
  563. package/dist/features/reviews/components/ReviewDetailPageView.d.ts +2 -1
  564. package/dist/features/reviews/components/ReviewDetailShell.d.ts +2 -1
  565. package/dist/features/reviews/components/ReviewFilters.d.ts +1 -1
  566. package/dist/features/reviews/components/ReviewModal.d.ts +1 -1
  567. package/dist/features/reviews/components/ReviewSummary.d.ts +2 -1
  568. package/dist/features/reviews/components/ReviewsIndexListing.d.ts +2 -1
  569. package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +2 -1
  570. package/dist/features/reviews/components/ReviewsList.d.ts +3 -2
  571. package/dist/features/scams/components/ScamAwarenessModal.d.ts +2 -1
  572. package/dist/features/scams/components/ScamProfileView.d.ts +2 -1
  573. package/dist/features/scams/components/ScamRegistryView.d.ts +2 -1
  574. package/dist/features/search/components/Search.d.ts +2 -1
  575. package/dist/features/search/components/SearchFiltersRow.d.ts +1 -1
  576. package/dist/features/search/components/SearchResultsSection.d.ts +1 -1
  577. package/dist/features/search/components/SearchView.d.ts +1 -1
  578. package/dist/features/seller/actions/seller-actions.d.ts +29 -14
  579. package/dist/features/seller/actions/seller-actions.js +101 -27
  580. package/dist/features/seller/components/BarcodeField.d.ts +2 -1
  581. package/dist/features/seller/components/BrandInlineSelect.d.ts +2 -1
  582. package/dist/features/seller/components/CategoryInlineSelect.d.ts +2 -1
  583. package/dist/features/seller/components/CouponInlineSelect.d.ts +2 -1
  584. package/dist/features/seller/components/FulfillmentView.d.ts +2 -1
  585. package/dist/features/seller/components/GroupInlineSelect.d.ts +2 -1
  586. package/dist/features/seller/components/PhysicalLocationModal.d.ts +2 -1
  587. package/dist/features/seller/components/PrintCenterView.d.ts +2 -1
  588. package/dist/features/seller/components/ProductInlineSelect.d.ts +2 -1
  589. package/dist/features/seller/components/QuickProductForm.d.ts +2 -1
  590. package/dist/features/seller/components/SellerAddressesView.d.ts +2 -1
  591. package/dist/features/seller/components/SellerAnalyticsAlertsView.d.ts +2 -1
  592. package/dist/features/seller/components/SellerAnalyticsView.d.ts +1 -1
  593. package/dist/features/seller/components/SellerArtView.d.ts +8 -0
  594. package/dist/features/seller/components/SellerArtView.js +114 -0
  595. package/dist/features/seller/components/SellerAuctionsView.d.ts +1 -1
  596. package/dist/features/seller/components/SellerBidsView.d.ts +2 -1
  597. package/dist/features/seller/components/SellerBundlesView.d.ts +2 -1
  598. package/dist/features/seller/components/SellerClassifiedView.d.ts +2 -1
  599. package/dist/features/seller/components/SellerCouponEditorView.d.ts +1 -1
  600. package/dist/features/seller/components/SellerCouponsView.d.ts +2 -1
  601. package/dist/features/seller/components/SellerCreateProductView.d.ts +1 -1
  602. package/dist/features/seller/components/SellerDashboardView.d.ts +1 -1
  603. package/dist/features/seller/components/SellerDigitalCodesView.d.ts +2 -1
  604. package/dist/features/seller/components/SellerEditProductView.d.ts +1 -1
  605. package/dist/features/seller/components/SellerFeaturesView.d.ts +2 -1
  606. package/dist/features/seller/components/SellerGoogleReviewsView.d.ts +2 -1
  607. package/dist/features/seller/components/SellerGroupedListingsView.d.ts +2 -1
  608. package/dist/features/seller/components/SellerGuideView.d.ts +1 -1
  609. package/dist/features/seller/components/SellerLiveView.d.ts +2 -1
  610. package/dist/features/seller/components/SellerOffersPanel.d.ts +2 -1
  611. package/dist/features/seller/components/SellerOffersView.d.ts +2 -1
  612. package/dist/features/seller/components/SellerOrdersView.d.ts +2 -1
  613. package/dist/features/seller/components/SellerOrdersView.js +38 -1
  614. package/dist/features/seller/components/SellerPayoutHistoryTable.d.ts +1 -1
  615. package/dist/features/seller/components/SellerPayoutMethodsView.d.ts +2 -1
  616. package/dist/features/seller/components/SellerPayoutRequestView.d.ts +1 -1
  617. package/dist/features/seller/components/SellerPayoutSettingsView.d.ts +1 -1
  618. package/dist/features/seller/components/SellerPayoutSettingsView.js +4 -1
  619. package/dist/features/seller/components/SellerPayoutStats.d.ts +1 -1
  620. package/dist/features/seller/components/SellerPayoutsView.d.ts +2 -1
  621. package/dist/features/seller/components/SellerPreOrdersView.d.ts +2 -1
  622. package/dist/features/seller/components/SellerPrizeDrawsView.d.ts +2 -1
  623. package/dist/features/seller/components/SellerProductShell.d.ts +6 -2
  624. package/dist/features/seller/components/SellerProductShell.js +69 -59
  625. package/dist/features/seller/components/SellerProductsCards.d.ts +2 -1
  626. package/dist/features/seller/components/SellerProductsFilterDrawer.d.ts +2 -1
  627. package/dist/features/seller/components/SellerProductsView.d.ts +2 -1
  628. package/dist/features/seller/components/SellerReviewsView.d.ts +1 -1
  629. package/dist/features/seller/components/SellerShippingConfigsView.d.ts +2 -1
  630. package/dist/features/seller/components/SellerShippingView.d.ts +1 -1
  631. package/dist/features/seller/components/SellerShippingView.js +6 -25
  632. package/dist/features/seller/components/SellerSidebar.d.ts +1 -1
  633. package/dist/features/seller/components/SellerStickersView.d.ts +8 -0
  634. package/dist/features/seller/components/SellerStickersView.js +114 -0
  635. package/dist/features/seller/components/SellerStoreCategoriesView.d.ts +2 -1
  636. package/dist/features/seller/components/SellerStoreSetupView.d.ts +1 -1
  637. package/dist/features/seller/components/SellerStoreView.d.ts +1 -1
  638. package/dist/features/seller/components/SellerStorefrontView.d.ts +1 -1
  639. package/dist/features/seller/components/SellerTemplatesView.d.ts +2 -1
  640. package/dist/features/seller/components/SellersListView.d.ts +2 -1
  641. package/dist/features/seller/components/SublistingInlineSelect.d.ts +2 -1
  642. package/dist/features/seller/components/analytics/SellerAnalyticsStats.d.ts +2 -1
  643. package/dist/features/seller/components/analytics/SellerRevenueChart.d.ts +2 -1
  644. package/dist/features/seller/components/analytics/SellerTopProducts.d.ts +1 -1
  645. package/dist/features/seller/components/index.d.ts +4 -0
  646. package/dist/features/seller/components/index.js +2 -0
  647. package/dist/features/seller/messages/en.json +1 -1
  648. package/dist/features/seller/schemas/index.d.ts +7 -7
  649. package/dist/features/seller/schemas/index.js +1 -1
  650. package/dist/features/seller/types/index.d.ts +1 -1
  651. package/dist/features/shell/FormShell.d.ts +1 -1
  652. package/dist/features/shell/QuickFormDrawer.d.ts +1 -1
  653. package/dist/features/shell/StepForm.d.ts +3 -3
  654. package/dist/features/shell/field-groups/ImageFieldGroup.d.ts +2 -2
  655. package/dist/features/shell/field-groups/SeoFieldGroup.d.ts +2 -2
  656. package/dist/features/shell/field-groups/StatusFieldGroup.d.ts +2 -2
  657. package/dist/features/shell/field-groups/TitleDescriptionGroup.d.ts +2 -2
  658. package/dist/features/site-settings/components/ActionPermissionsManager.d.ts +2 -1
  659. package/dist/features/site-settings/components/NavPermissionsManager.d.ts +2 -1
  660. package/dist/features/site-settings/components/ThemeManagerView.d.ts +15 -1
  661. package/dist/features/stores/components/InteractiveStoreCard.d.ts +1 -1
  662. package/dist/features/stores/components/StoreAboutView.d.ts +1 -1
  663. package/dist/features/stores/components/StoreAddressSelectorCreate.d.ts +1 -1
  664. package/dist/features/stores/components/StoreAuctionsListing.d.ts +2 -1
  665. package/dist/features/stores/components/StoreAuctionsPageView.d.ts +2 -1
  666. package/dist/features/stores/components/StoreAuctionsView.d.ts +1 -1
  667. package/dist/features/stores/components/StoreBundlesPageView.d.ts +2 -1
  668. package/dist/features/stores/components/StoreCapabilitiesGuideView.d.ts +2 -1
  669. package/dist/features/stores/components/StoreClassifiedsListing.d.ts +2 -1
  670. package/dist/features/stores/components/StoreClassifiedsPageView.d.ts +2 -1
  671. package/dist/features/stores/components/StoreDetailLayoutView.d.ts +2 -1
  672. package/dist/features/stores/components/StoreDetailLayoutView.js +18 -2
  673. package/dist/features/stores/components/StoreDigitalCodesListing.d.ts +2 -1
  674. package/dist/features/stores/components/StoreDigitalCodesPageView.d.ts +2 -1
  675. package/dist/features/stores/components/StoreFilters.d.ts +1 -1
  676. package/dist/features/stores/components/StoreFinanceGuideView.d.ts +2 -1
  677. package/dist/features/stores/components/StoreGuideHubView.d.ts +2 -1
  678. package/dist/features/stores/components/StoreHeader.d.ts +1 -1
  679. package/dist/features/stores/components/StoreListingsGuideView.d.ts +2 -1
  680. package/dist/features/stores/components/StoreLiveItemsListing.d.ts +2 -1
  681. package/dist/features/stores/components/StoreLiveItemsPageView.d.ts +2 -1
  682. package/dist/features/stores/components/StoreNavTabs.d.ts +1 -1
  683. package/dist/features/stores/components/StoreOrdersGuideView.d.ts +2 -1
  684. package/dist/features/stores/components/StorePreOrdersListing.d.ts +2 -1
  685. package/dist/features/stores/components/StorePreOrdersPageView.d.ts +2 -1
  686. package/dist/features/stores/components/StorePrizeDrawsPageView.d.ts +2 -1
  687. package/dist/features/stores/components/StoreProductsListing.d.ts +2 -1
  688. package/dist/features/stores/components/StoreProductsPageView.d.ts +2 -1
  689. package/dist/features/stores/components/StoreProductsView.d.ts +1 -1
  690. package/dist/features/stores/components/StoreReviewsListing.d.ts +2 -1
  691. package/dist/features/stores/components/StoreReviewsPageView.d.ts +2 -1
  692. package/dist/features/stores/components/StoreReviewsView.d.ts +1 -1
  693. package/dist/features/stores/components/StoreScopedSearch.d.ts +2 -1
  694. package/dist/features/stores/components/StoreSettingsGuideView.d.ts +2 -1
  695. package/dist/features/stores/components/StoresIndexListing.d.ts +2 -1
  696. package/dist/features/stores/components/StoresIndexPageView.d.ts +2 -1
  697. package/dist/features/stores/schemas/firestore.d.ts +7 -1
  698. package/dist/features/stores/schemas/index.d.ts +19 -16
  699. package/dist/features/stores/schemas/index.js +1 -1
  700. package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.d.ts +2 -1
  701. package/dist/features/whatsapp-bot/components/WhatsAppChatButton.d.ts +2 -1
  702. package/dist/features/wishlist/components/WishlistPage.d.ts +2 -2
  703. package/dist/features/wishlist/components/WishlistToggleButton.d.ts +1 -1
  704. package/dist/features/wishlist/components/WishlistView.d.ts +1 -1
  705. package/dist/index.d.ts +21 -36
  706. package/dist/index.js +27 -39
  707. package/dist/next/ErrorBoundary.d.ts +1 -1
  708. package/dist/next/components/ErrorView.d.ts +1 -1
  709. package/dist/next/components/GlobalError.d.ts +1 -1
  710. package/dist/next/components/NotFoundView.d.ts +1 -1
  711. package/dist/next/components/UnauthorizedView.d.ts +1 -1
  712. package/dist/next/routing/route-map.d.ts +22 -0
  713. package/dist/next/routing/route-map.js +10 -0
  714. package/dist/providers/payment-manual/index.d.ts +40 -0
  715. package/dist/providers/payment-manual/index.js +91 -0
  716. package/dist/providers/payment-razorpay/index.d.ts +4 -2
  717. package/dist/providers/payment-razorpay/index.js +4 -1
  718. package/dist/providers/shipping-manual/index.d.ts +22 -0
  719. package/dist/providers/shipping-manual/index.js +47 -0
  720. package/dist/providers.d.ts +2 -2
  721. package/dist/providers.js +5 -3
  722. package/dist/react/ErrorBoundary.d.ts +1 -1
  723. package/dist/react/contexts/SessionContext.d.ts +1 -1
  724. package/dist/schemas/registry.d.ts +129 -70
  725. package/dist/schemas/registry.js +0 -4
  726. package/dist/security/pii-encrypt.js +0 -7
  727. package/dist/security/pii-redact.js +0 -1
  728. package/dist/seed/conversations-seed-data.js +2 -2
  729. package/dist/seed/faq-seed-data.js +7 -7
  730. package/dist/seed/grouped-listings-seed-data.d.ts +2 -0
  731. package/dist/seed/index.d.ts +2 -0
  732. package/dist/seed/index.js +2 -0
  733. package/dist/seed/manifest.js +20 -16
  734. package/dist/seed/payouts-seed-data.js +5 -5
  735. package/dist/seed/products-art-seed-data.d.ts +11 -0
  736. package/dist/seed/products-art-seed-data.js +125 -0
  737. package/dist/seed/products-preorders-seed-data.d.ts +2 -0
  738. package/dist/seed/products-stickers-seed-data.d.ts +11 -0
  739. package/dist/seed/products-stickers-seed-data.js +125 -0
  740. package/dist/seed/site-settings-seed-data.js +13 -4
  741. package/dist/seed/stores-seed-data.js +11 -11
  742. package/dist/server.d.ts +7 -15
  743. package/dist/server.js +17 -42
  744. package/dist/ui/DataTable.d.ts +1 -1
  745. package/dist/ui/components/Accordion.d.ts +2 -2
  746. package/dist/ui/components/ActiveFilterChips.d.ts +2 -1
  747. package/dist/ui/components/Alert.d.ts +1 -1
  748. package/dist/ui/components/Anchor.d.ts +1 -1
  749. package/dist/ui/components/Avatar.d.ts +2 -2
  750. package/dist/ui/components/AvatarDisplay.d.ts +2 -1
  751. package/dist/ui/components/BackgroundRenderer.d.ts +1 -1
  752. package/dist/ui/components/Badge.d.ts +1 -1
  753. package/dist/ui/components/BaseListingCard.d.ts +5 -5
  754. package/dist/ui/components/Breadcrumb.d.ts +1 -1
  755. package/dist/ui/components/BulkActionBar.d.ts +1 -1
  756. package/dist/ui/components/Button.d.ts +1 -1
  757. package/dist/ui/components/Card.d.ts +4 -4
  758. package/dist/ui/components/Checkbox.d.ts +1 -1
  759. package/dist/ui/components/ConfirmDeleteModal.d.ts +1 -1
  760. package/dist/ui/components/CountdownDisplay.d.ts +1 -1
  761. package/dist/ui/components/DateInput.d.ts +1 -1
  762. package/dist/ui/components/DescriptionField.d.ts +1 -1
  763. package/dist/ui/components/DetailPageGallery.d.ts +2 -2
  764. package/dist/ui/components/DetailPageHero.d.ts +2 -2
  765. package/dist/ui/components/DetailPageTabs.d.ts +2 -2
  766. package/dist/ui/components/DetailViewShell.d.ts +2 -2
  767. package/dist/ui/components/Details.d.ts +2 -2
  768. package/dist/ui/components/Dialog.d.ts +1 -1
  769. package/dist/ui/components/Divider.d.ts +1 -1
  770. package/dist/ui/components/Dropdown.d.ts +5 -5
  771. package/dist/ui/components/DynamicBgDiv.d.ts +1 -1
  772. package/dist/ui/components/EmptyState.d.ts +1 -1
  773. package/dist/ui/components/FallbackShell.d.ts +1 -1
  774. package/dist/ui/components/Fieldset.d.ts +2 -2
  775. package/dist/ui/components/FilterChipGroup.d.ts +2 -1
  776. package/dist/ui/components/FilterDrawer.d.ts +1 -1
  777. package/dist/ui/components/FlowDiagram.d.ts +1 -1
  778. package/dist/ui/components/Form.d.ts +4 -4
  779. package/dist/ui/components/FormActionBar.d.ts +2 -1
  780. package/dist/ui/components/FormField.d.ts +2 -1
  781. package/dist/ui/components/FormGrid.d.ts +3 -2
  782. package/dist/ui/components/HorizontalRule.d.ts +1 -1
  783. package/dist/ui/components/HorizontalScroller.d.ts +1 -1
  784. package/dist/ui/components/HotspotMarker.d.ts +1 -1
  785. package/dist/ui/components/IconBox.d.ts +1 -1
  786. package/dist/ui/components/IconButton.d.ts +1 -1
  787. package/dist/ui/components/Iframe.d.ts +1 -1
  788. package/dist/ui/components/ImageGallery.d.ts +2 -1
  789. package/dist/ui/components/ItemRow.d.ts +1 -1
  790. package/dist/ui/components/Kbd.d.ts +1 -1
  791. package/dist/ui/components/Layout.d.ts +4 -4
  792. package/dist/ui/components/ListingFilterDrawer.d.ts +1 -1
  793. package/dist/ui/components/ListingLayout.d.ts +1 -1
  794. package/dist/ui/components/ListingToolbar.d.ts +1 -1
  795. package/dist/ui/components/LoginRequiredModal.d.ts +2 -1
  796. package/dist/ui/components/Menu.d.ts +5 -5
  797. package/dist/ui/components/Modal.d.ts +1 -1
  798. package/dist/ui/components/Motion.d.ts +14 -14
  799. package/dist/ui/components/NavbarChevron.d.ts +1 -1
  800. package/dist/ui/components/NavigationLoader.d.ts +1 -1
  801. package/dist/ui/components/OtpInput.d.ts +1 -1
  802. package/dist/ui/components/PageLoader.d.ts +1 -1
  803. package/dist/ui/components/PaginatedSelect.d.ts +2 -2
  804. package/dist/ui/components/Pagination.d.ts +2 -1
  805. package/dist/ui/components/PasswordStrengthIndicator.d.ts +2 -1
  806. package/dist/ui/components/PriceDisplay.d.ts +1 -1
  807. package/dist/ui/components/Progress.d.ts +3 -2
  808. package/dist/ui/components/ProgressBarFill.d.ts +1 -1
  809. package/dist/ui/components/Quote.d.ts +1 -1
  810. package/dist/ui/components/Radio.d.ts +2 -2
  811. package/dist/ui/components/RatingDisplay.d.ts +1 -1
  812. package/dist/ui/components/Responsive.d.ts +2 -2
  813. package/dist/ui/components/ResponsiveView.d.ts +1 -1
  814. package/dist/ui/components/RichTextEditor.d.ts +2 -1
  815. package/dist/ui/components/RoleBadge.d.ts +2 -1
  816. package/dist/ui/components/RowActionMenu.d.ts +1 -1
  817. package/dist/ui/components/Scrim.d.ts +1 -1
  818. package/dist/ui/components/Select.d.ts +1 -1
  819. package/dist/ui/components/Semantic.d.ts +21 -21
  820. package/dist/ui/components/SettingsSection.d.ts +3 -2
  821. package/dist/ui/components/SideDrawer.d.ts +1 -1
  822. package/dist/ui/components/SideModal.d.ts +1 -1
  823. package/dist/ui/components/SiteLogo.d.ts +1 -1
  824. package/dist/ui/components/Skeleton.d.ts +2 -1
  825. package/dist/ui/components/SkipToMain.d.ts +2 -1
  826. package/dist/ui/components/Slider.d.ts +1 -1
  827. package/dist/ui/components/SlottedListingView.d.ts +2 -2
  828. package/dist/ui/components/SortDropdown.d.ts +1 -1
  829. package/dist/ui/components/Spinner.d.ts +1 -1
  830. package/dist/ui/components/StackedViewShell.d.ts +2 -2
  831. package/dist/ui/components/StarRating.d.ts +1 -1
  832. package/dist/ui/components/StatsGrid.d.ts +1 -1
  833. package/dist/ui/components/StatusBadge.d.ts +1 -1
  834. package/dist/ui/components/StepperNav.d.ts +1 -1
  835. package/dist/ui/components/StickyToolbar.d.ts +1 -1
  836. package/dist/ui/components/SummaryCard.d.ts +1 -1
  837. package/dist/ui/components/TabStrip.d.ts +2 -1
  838. package/dist/ui/components/TablePagination.d.ts +2 -1
  839. package/dist/ui/components/Tabs.d.ts +4 -4
  840. package/dist/ui/components/TagInput.d.ts +2 -1
  841. package/dist/ui/components/TextLink.d.ts +1 -1
  842. package/dist/ui/components/Toast.d.ts +1 -1
  843. package/dist/ui/components/Toggle.d.ts +1 -1
  844. package/dist/ui/components/Tooltip.d.ts +1 -1
  845. package/dist/ui/components/Typography.d.ts +4 -4
  846. package/dist/ui/components/UnsavedChangesModal.d.ts +1 -1
  847. package/dist/ui/components/VacationBanner.d.ts +2 -1
  848. package/dist/ui/components/ViewToggle.d.ts +1 -1
  849. package/dist/ui/forms/ColorPickerField.d.ts +1 -1
  850. package/dist/ui/forms/FieldCheckbox.d.ts +2 -1
  851. package/dist/ui/forms/FieldInput.d.ts +1 -1
  852. package/dist/ui/forms/FieldSelect.d.ts +2 -1
  853. package/dist/ui/forms/FieldTextarea.d.ts +1 -1
  854. package/dist/ui/forms/FormShell.d.ts +2 -2
  855. package/dist/ui/rich-text/RichText.d.ts +1 -1
  856. package/dist/ui/rich-text/RichTextRenderer.d.ts +2 -1
  857. package/package.json +1 -1
@@ -1,7 +1,7 @@
1
1
  export * from "./firestore";
2
2
  import { z } from "zod";
3
3
  export declare const storeStatusSchema: z.ZodEnum<["pending", "active", "suspended", "rejected"]>;
4
- export declare const payoutStatusSchema: z.ZodEnum<["pending", "processing", "completed", "failed"]>;
4
+ export declare const payoutStatusSchema: z.ZodEnum<["pending", "processing", "paid", "failed"]>;
5
5
  export declare const payoutPaymentMethodSchema: z.ZodEnum<["bank_transfer", "upi"]>;
6
6
  export declare const socialLinksSchema: z.ZodObject<{
7
7
  twitter: z.ZodOptional<z.ZodString>;
@@ -159,7 +159,7 @@ export declare const payoutRecordSchema: z.ZodObject<{
159
159
  platformFee: z.ZodNumber;
160
160
  platformFeeRate: z.ZodNumber;
161
161
  currency: z.ZodString;
162
- status: z.ZodEnum<["pending", "processing", "completed", "failed"]>;
162
+ status: z.ZodEnum<["pending", "processing", "paid", "failed"]>;
163
163
  paymentMethod: z.ZodEnum<["bank_transfer", "upi"]>;
164
164
  orderIds: z.ZodArray<z.ZodString, "many">;
165
165
  requestedAt: z.ZodString;
@@ -167,7 +167,7 @@ export declare const payoutRecordSchema: z.ZodObject<{
167
167
  createdAt: z.ZodString;
168
168
  updatedAt: z.ZodString;
169
169
  }, "strip", z.ZodTypeAny, {
170
- status: "pending" | "failed" | "processing" | "completed";
170
+ status: "pending" | "paid" | "failed" | "processing";
171
171
  currency: string;
172
172
  createdAt: string;
173
173
  id: string;
@@ -184,7 +184,7 @@ export declare const payoutRecordSchema: z.ZodObject<{
184
184
  sellerId: string;
185
185
  processedAt?: string | undefined;
186
186
  }, {
187
- status: "pending" | "failed" | "processing" | "completed";
187
+ status: "pending" | "paid" | "failed" | "processing";
188
188
  currency: string;
189
189
  createdAt: string;
190
190
  id: string;
@@ -225,18 +225,18 @@ export declare const sellerListParamsSchema: z.ZodObject<{
225
225
  }>;
226
226
  export declare const payoutListParamsSchema: z.ZodObject<{
227
227
  sellerId: z.ZodOptional<z.ZodString>;
228
- status: z.ZodOptional<z.ZodEnum<["pending", "processing", "completed", "failed"]>>;
228
+ status: z.ZodOptional<z.ZodEnum<["pending", "processing", "paid", "failed"]>>;
229
229
  page: z.ZodOptional<z.ZodNumber>;
230
230
  perPage: z.ZodOptional<z.ZodNumber>;
231
231
  sort: z.ZodOptional<z.ZodString>;
232
232
  }, "strip", z.ZodTypeAny, {
233
- status?: "pending" | "failed" | "processing" | "completed" | undefined;
233
+ status?: "pending" | "paid" | "failed" | "processing" | undefined;
234
234
  sort?: string | undefined;
235
235
  page?: number | undefined;
236
236
  perPage?: number | undefined;
237
237
  sellerId?: string | undefined;
238
238
  }, {
239
- status?: "pending" | "failed" | "processing" | "completed" | undefined;
239
+ status?: "pending" | "paid" | "failed" | "processing" | undefined;
240
240
  sort?: string | undefined;
241
241
  page?: number | undefined;
242
242
  perPage?: number | undefined;
@@ -10,7 +10,7 @@ export const storeStatusSchema = z.enum([
10
10
  export const payoutStatusSchema = z.enum([
11
11
  "pending",
12
12
  "processing",
13
- "completed",
13
+ "paid",
14
14
  "failed",
15
15
  ]);
16
16
  export const payoutPaymentMethodSchema = z.enum(["bank_transfer", "upi"]);
@@ -32,7 +32,7 @@ export interface SellerStore {
32
32
  createdAt: string;
33
33
  updatedAt: string;
34
34
  }
35
- export type PayoutStatus = "pending" | "processing" | "completed" | "failed";
35
+ export type PayoutStatus = "pending" | "processing" | "paid" | "failed";
36
36
  export type PayoutPaymentMethod = "bank_transfer" | "upi";
37
37
  export interface PayoutBankAccount {
38
38
  accountHolderName: string;
@@ -46,4 +46,4 @@ export interface UseFormShellResult {
46
46
  markClean: () => void;
47
47
  }
48
48
  export declare function useFormShell(): UseFormShellResult;
49
- export declare function FormShell({ isOpen, onClose, title, breadcrumb, schema: _schema, isDirty, isLoading, sections, onSaveDraft, onPublish, saveLabel, publishLabel, renderBottomBar, previewSlot, splitPreview: splitPreviewProp, children, }: FormShellProps): import("react/jsx-runtime").JSX.Element | null;
49
+ export declare function FormShell({ isOpen, onClose, title, breadcrumb, schema: _schema, isDirty, isLoading, sections, onSaveDraft, onPublish, saveLabel, publishLabel, renderBottomBar, previewSlot, splitPreview: splitPreviewProp, children, }: FormShellProps): import("react").JSX.Element | null;
@@ -35,4 +35,4 @@ export interface QuickFormDrawerProps {
35
35
  /** Extra content rendered below auto-generated fields. */
36
36
  renderExtra?: (values: FormValues, onChange: (name: string, value: FormFieldValue) => void) => ReactNode;
37
37
  }
38
- export declare function QuickFormDrawer({ isOpen, onClose, title, fields, defaultValues, onSubmit, submitLabel, cancelLabel, isLoading, schema, renderExtra, }: QuickFormDrawerProps): import("react/jsx-runtime").JSX.Element | null;
38
+ export declare function QuickFormDrawer({ isOpen, onClose, title, fields, defaultValues, onSubmit, submitLabel, cancelLabel, isLoading, schema, renderExtra, }: QuickFormDrawerProps): import("react").JSX.Element | null;
@@ -37,7 +37,7 @@ export interface StepFormActionsProps {
37
37
  disabled?: boolean;
38
38
  }
39
39
  /** Standalone step nav bar — use as `renderBottomBar` in FormShell. */
40
- export declare function StepFormActions({ currentStep, totalSteps, onNext, onPrev, completeLabel, isLoading, disabled, }: StepFormActionsProps): import("react/jsx-runtime").JSX.Element;
40
+ export declare function StepFormActions({ currentStep, totalSteps, onNext, onPrev, completeLabel, isLoading, disabled, }: StepFormActionsProps): import("react").JSX.Element;
41
41
  /** Step indicator bar shown above step content. */
42
42
  export declare function StepIndicator({ steps, currentStep, onStepClick, stepErrors, }: {
43
43
  steps: {
@@ -47,5 +47,5 @@ export declare function StepIndicator({ steps, currentStep, onStepClick, stepErr
47
47
  onStepClick?: (index: number) => void;
48
48
  /** True for each step that has a validation error — renders a red dot badge */
49
49
  stepErrors?: boolean[];
50
- }): import("react/jsx-runtime").JSX.Element;
51
- export declare function StepForm<T extends object = Record<string, JsonValue>>({ steps, values, onChange, onComplete, completeLabel, isLoading, formId, currentStep, onStepChange, hideActions, stepErrors, }: StepFormProps<T>): import("react/jsx-runtime").JSX.Element;
50
+ }): import("react").JSX.Element;
51
+ export declare function StepForm<T extends object = Record<string, JsonValue>>({ steps, values, onChange, onComplete, completeLabel, isLoading, formId, currentStep, onStepChange, hideActions, stepErrors, }: StepFormProps<T>): import("react").JSX.Element;
@@ -1,4 +1,4 @@
1
- import { type ReactNode } from "react";
1
+ import React, { type ReactNode } from "react";
2
2
  export interface ImageFieldGroupProps {
3
3
  /** Slot for the hero / cover image input — wire your own ImageUpload here. */
4
4
  heroSlot?: ReactNode;
@@ -15,4 +15,4 @@ export interface ImageFieldGroupProps {
15
15
  *
16
16
  * W1-15 — extracted 2026-05-23.
17
17
  */
18
- export declare function ImageFieldGroup({ heroSlot, gallerySlot, sectionTitle, sectionDescription, }: ImageFieldGroupProps): import("react/jsx-runtime").JSX.Element | null;
18
+ export declare function ImageFieldGroup({ heroSlot, gallerySlot, sectionTitle, sectionDescription, }: ImageFieldGroupProps): React.JSX.Element | null;
@@ -1,4 +1,4 @@
1
- import { type ReactNode } from "react";
1
+ import React, { type ReactNode } from "react";
2
2
  export interface SeoFieldGroupProps {
3
3
  seoTitle: string;
4
4
  seoDescription: string;
@@ -19,4 +19,4 @@ export interface SeoFieldGroupProps {
19
19
  *
20
20
  * W1-15 — extracted 2026-05-23.
21
21
  */
22
- export declare function SeoFieldGroup({ seoTitle, seoDescription, slug, onSeoTitleChange, onSeoDescriptionChange, onSlugChange, canonicalPreview, sectionTitle, sectionDescription, disabled, }: SeoFieldGroupProps): import("react/jsx-runtime").JSX.Element;
22
+ export declare function SeoFieldGroup({ seoTitle, seoDescription, slug, onSeoTitleChange, onSeoDescriptionChange, onSlugChange, canonicalPreview, sectionTitle, sectionDescription, disabled, }: SeoFieldGroupProps): React.JSX.Element;
@@ -1,4 +1,4 @@
1
- import { type ReactNode } from "react";
1
+ import React, { type ReactNode } from "react";
2
2
  export interface StatusFieldGroupOption<T extends string = string> {
3
3
  value: T;
4
4
  label: string;
@@ -32,4 +32,4 @@ export interface StatusFieldGroupProps<T extends string = string> {
32
32
  *
33
33
  * W1-15 — extracted 2026-05-23.
34
34
  */
35
- export declare function StatusFieldGroup<T extends string = string>({ status, options, onStatusChange, toggles, sectionTitle, sectionDescription, disabled, }: StatusFieldGroupProps<T>): import("react/jsx-runtime").JSX.Element;
35
+ export declare function StatusFieldGroup<T extends string = string>({ status, options, onStatusChange, toggles, sectionTitle, sectionDescription, disabled, }: StatusFieldGroupProps<T>): React.JSX.Element;
@@ -1,4 +1,4 @@
1
- import { type ReactNode } from "react";
1
+ import React, { type ReactNode } from "react";
2
2
  export interface TitleDescriptionGroupProps {
3
3
  /** Form field value: title. */
4
4
  title: string;
@@ -37,4 +37,4 @@ export interface TitleDescriptionGroupProps {
37
37
  *
38
38
  * W1-15 — extracted 2026-05-23.
39
39
  */
40
- export declare function TitleDescriptionGroup({ title, description, onTitleChange, onDescriptionChange, sectionTitle, sectionDescription, titlePlaceholder, descriptionPlaceholder, disabled, renderDescription, titleError, descriptionError, titleMaxLength, descriptionMaxLength, }: TitleDescriptionGroupProps): import("react/jsx-runtime").JSX.Element;
40
+ export declare function TitleDescriptionGroup({ title, description, onTitleChange, onDescriptionChange, sectionTitle, sectionDescription, titlePlaceholder, descriptionPlaceholder, disabled, renderDescription, titleError, descriptionError, titleMaxLength, descriptionMaxLength, }: TitleDescriptionGroupProps): React.JSX.Element;
@@ -1,7 +1,8 @@
1
+ import React from "react";
1
2
  export interface ActionPermissionsManagerProps {
2
3
  initialConfig: Record<string, {
3
4
  enabled: boolean;
4
5
  }>;
5
6
  onUpdate: (actionId: string, enabled: boolean) => Promise<void>;
6
7
  }
7
- export declare function ActionPermissionsManager({ initialConfig, onUpdate }: ActionPermissionsManagerProps): import("react/jsx-runtime").JSX.Element;
8
+ export declare function ActionPermissionsManager({ initialConfig, onUpdate }: ActionPermissionsManagerProps): React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  export interface NavItem {
2
3
  id?: string;
3
4
  label: string;
@@ -15,4 +16,4 @@ export interface NavPermissionsManagerProps {
15
16
  navGroups: NavGroup[];
16
17
  onUpdate: (navId: string, enabled: boolean) => Promise<void>;
17
18
  }
18
- export declare function NavPermissionsManager({ initialConfig, navGroups, onUpdate, }: NavPermissionsManagerProps): import("react/jsx-runtime").JSX.Element;
19
+ export declare function NavPermissionsManager({ initialConfig, navGroups, onUpdate, }: NavPermissionsManagerProps): React.JSX.Element;
@@ -1,3 +1,17 @@
1
+ /**
2
+ * ThemeManagerView — admin UI for managing site themes.
3
+ *
4
+ * Users only ever pick light/dark; this view lets the admin author additional
5
+ * theme records (mode-tagged), pick which record is the default for each mode,
6
+ * and override every CSS variable + gradient per theme. The two built-in
7
+ * records (`default-light`, `default-dark`) ship from appkit and cannot be
8
+ * deleted; they can still be cloned into a new editable record.
9
+ *
10
+ * Rendered inside the Site Settings → Themes tab. The view is fully
11
+ * controlled (`theme` + `onChange`) so the host can wire it to whatever
12
+ * persistence pipeline they use.
13
+ */
14
+ import React from "react";
1
15
  import { type ThemeRecord } from "../../../tokens/themes";
2
16
  /** Wire-shape of the theme block stored on siteSettings. */
3
17
  export interface ThemeManagerValue {
@@ -14,4 +28,4 @@ export interface ThemeManagerViewProps {
14
28
  */
15
29
  previewOrigin?: string | null;
16
30
  }
17
- export declare function ThemeManagerView({ value, onChange, previewOrigin, }: ThemeManagerViewProps): import("react/jsx-runtime").JSX.Element;
31
+ export declare function ThemeManagerView({ value, onChange, previewOrigin, }: ThemeManagerViewProps): React.JSX.Element;
@@ -13,4 +13,4 @@ export interface InteractiveStoreCardProps {
13
13
  };
14
14
  className?: string;
15
15
  }
16
- export declare function InteractiveStoreCard({ store, href, selectable, isSelected, onSelect, labels, className, }: InteractiveStoreCardProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare function InteractiveStoreCard({ store, href, selectable, isSelected, onSelect, labels, className, }: InteractiveStoreCardProps): import("react").JSX.Element;
@@ -18,4 +18,4 @@ export interface StoreAboutViewProps {
18
18
  renderStats?: (store: StoreDetail) => React.ReactNode;
19
19
  className?: string;
20
20
  }
21
- export declare function StoreAboutView({ store, labels, renderSocialLinks, renderStats, className, }: StoreAboutViewProps): import("react/jsx-runtime").JSX.Element;
21
+ export declare function StoreAboutView({ store, labels, renderSocialLinks, renderStats, className, }: StoreAboutViewProps): React.JSX.Element;
@@ -14,4 +14,4 @@ export interface StoreAddressSelectorCreateProps {
14
14
  /** Retained for backward-compat; the new inline picker surfaces errors via toast inside the form. */
15
15
  onCreateError?: () => void;
16
16
  }
17
- export declare function StoreAddressSelectorCreate({ value, onChange, disabled, label, labels, onCreated, }: StoreAddressSelectorCreateProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare function StoreAddressSelectorCreate({ value, onChange, disabled, label, labels, onCreated, }: StoreAddressSelectorCreateProps): import("react").JSX.Element;
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  export interface StoreAuctionsListingProps {
2
3
  /** Store document ID — used for filtering */
3
4
  storeId?: string;
4
5
  initialData?: any;
5
6
  }
6
- export declare function StoreAuctionsListing({ storeId, initialData }: StoreAuctionsListingProps): import("react/jsx-runtime").JSX.Element;
7
+ export declare function StoreAuctionsListing({ storeId, initialData }: StoreAuctionsListingProps): React.JSX.Element;
@@ -1,4 +1,5 @@
1
+ import React from "react";
1
2
  export interface StoreAuctionsPageViewProps {
2
3
  storeSlug: string;
3
4
  }
4
- export declare function StoreAuctionsPageView({ storeSlug }: StoreAuctionsPageViewProps): Promise<import("react/jsx-runtime").JSX.Element | null>;
5
+ export declare function StoreAuctionsPageView({ storeSlug }: StoreAuctionsPageViewProps): Promise<React.JSX.Element | null>;
@@ -14,4 +14,4 @@ export interface StoreAuctionsViewProps extends Omit<SlottedListingViewProps, "r
14
14
  total?: number;
15
15
  isLoading?: boolean;
16
16
  }
17
- export declare function StoreAuctionsView({ labels, renderAuctions, renderPagination, items, total, isLoading, ...rest }: StoreAuctionsViewProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare function StoreAuctionsView({ labels, renderAuctions, renderPagination, items, total, isLoading, ...rest }: StoreAuctionsViewProps): React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  export interface StoreBundlesPageViewProps {
2
3
  storeSlug: string;
3
4
  onBuyNow?: (input: {
@@ -12,4 +13,4 @@ export interface StoreBundlesPageViewProps {
12
13
  * the seller's active bundle categories and hands them to
13
14
  * `CategoryBundlesListing`. Mirrors the StorePrizeDrawsPageView pattern.
14
15
  */
15
- export declare function StoreBundlesPageView({ storeSlug, onBuyNow, }: StoreBundlesPageViewProps): Promise<import("react/jsx-runtime").JSX.Element | null>;
16
+ export declare function StoreBundlesPageView({ storeSlug, onBuyNow, }: StoreBundlesPageViewProps): Promise<React.JSX.Element | null>;
@@ -1,2 +1,3 @@
1
+ import React from "react";
1
2
  export type StoreCapabilitiesGuideViewProps = Record<string, never>;
2
- export declare function StoreCapabilitiesGuideView(_props: StoreCapabilitiesGuideViewProps): import("react/jsx-runtime").JSX.Element;
3
+ export declare function StoreCapabilitiesGuideView(_props: StoreCapabilitiesGuideViewProps): React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from "react";
1
2
  export interface StoreClassifiedsListingProps {
2
3
  storeId?: string;
3
4
  initialData?: any;
4
5
  }
5
- export declare function StoreClassifiedsListing({ storeId, initialData }: StoreClassifiedsListingProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function StoreClassifiedsListing({ storeId, initialData }: StoreClassifiedsListingProps): React.JSX.Element;
@@ -1,4 +1,5 @@
1
+ import React from "react";
1
2
  export interface StoreClassifiedsPageViewProps {
2
3
  storeSlug: string;
3
4
  }
4
- export declare function StoreClassifiedsPageView({ storeSlug }: StoreClassifiedsPageViewProps): Promise<import("react/jsx-runtime").JSX.Element | null>;
5
+ export declare function StoreClassifiedsPageView({ storeSlug }: StoreClassifiedsPageViewProps): Promise<React.JSX.Element | null>;
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  import type { ReactNode } from "react";
2
3
  export declare const getStoreBySlug: (slug: string) => Promise<import("@mohasinac/appkit").StoreDocument | null | undefined>;
3
4
  export interface StoreDetailLayoutViewProps {
@@ -6,4 +7,4 @@ export interface StoreDetailLayoutViewProps {
6
7
  activeTab: string;
7
8
  children: ReactNode;
8
9
  }
9
- export declare function StoreDetailLayoutView({ storeSlug, activeTab, children, }: StoreDetailLayoutViewProps): Promise<import("react/jsx-runtime").JSX.Element>;
10
+ export declare function StoreDetailLayoutView({ storeSlug, activeTab, children, }: StoreDetailLayoutViewProps): Promise<React.JSX.Element>;
@@ -17,6 +17,10 @@ const STORE_LISTING_HREF = {
17
17
  classifieds: (slug) => String(ROUTES.PUBLIC.STORE_CLASSIFIEDS(slug)),
18
18
  "digital-codes": (slug) => String(ROUTES.PUBLIC.STORE_DIGITAL_CODES(slug)),
19
19
  live: (slug) => String(ROUTES.PUBLIC.STORE_LIVE(slug)),
20
+ // Art / stickers have no dedicated storefront tab page — they're browsable
21
+ // (alongside everything else the store sells) on the "Products" tab.
22
+ art: (slug) => String(ROUTES.PUBLIC.STORE_PRODUCTS(slug)),
23
+ stickers: (slug) => String(ROUTES.PUBLIC.STORE_PRODUCTS(slug)),
20
24
  };
21
25
  export const getStoreBySlug = cache((slug) => storeRepository.findBySlug(slug).catch(() => undefined));
22
26
  function tabLabel(base, count) {
@@ -31,7 +35,7 @@ export async function StoreDetailLayoutView({ storeSlug, activeTab, children, })
31
35
  }
32
36
  const storeId = store?.id;
33
37
  const settings = await siteSettingsRepository.findById("global").catch(() => null);
34
- const [productsCount, auctionsCount, preOrdersCount, prizeDrawsCount, bundlesCount, classifiedsCount, digitalCodesCount, liveCount, couponsCount, reviewsCount] = storeId
38
+ const [productsCount, auctionsCount, preOrdersCount, prizeDrawsCount, bundlesCount, classifiedsCount, digitalCodesCount, liveCount, artCount, stickersCount, couponsCount, reviewsCount] = storeId
35
39
  ? await Promise.all([
36
40
  productRepository
37
41
  .list({ filters: sieveAnd(sieveFilter("storeId", SIEVE_OP.EQ, storeId), sieveFilter("status", SIEVE_OP.EQ, "published"), sieveFilter("listingType", SIEVE_OP.EQ, "standard")), page: 1, pageSize: 1 })
@@ -67,6 +71,14 @@ export async function StoreDetailLayoutView({ storeSlug, activeTab, children, })
67
71
  .list({ filters: sieveAnd(sieveFilter("storeId", SIEVE_OP.EQ, storeId), sieveFilter("status", SIEVE_OP.EQ, "published"), sieveFilter("listingType", SIEVE_OP.EQ, "live")), page: 1, pageSize: 1 })
68
72
  .then((r) => r.total)
69
73
  .catch(() => 0),
74
+ productRepository
75
+ .list({ filters: sieveAnd(sieveFilter("storeId", SIEVE_OP.EQ, storeId), sieveFilter("status", SIEVE_OP.EQ, "published"), sieveFilter("listingType", SIEVE_OP.EQ, "art")), page: 1, pageSize: 1 })
76
+ .then((r) => r.total)
77
+ .catch(() => 0),
78
+ productRepository
79
+ .list({ filters: sieveAnd(sieveFilter("storeId", SIEVE_OP.EQ, storeId), sieveFilter("status", SIEVE_OP.EQ, "published"), sieveFilter("listingType", SIEVE_OP.EQ, "stickers")), page: 1, pageSize: 1 })
80
+ .then((r) => r.total)
81
+ .catch(() => 0),
70
82
  couponsRepository
71
83
  .list({ filters: sieveAnd(sieveFilter("sellerId", SIEVE_OP.EQ, storeId), sieveFilter("validity.isActive", SIEVE_OP.EQ, "true")), page: 1, pageSize: 1 })
72
84
  .then((r) => r.total)
@@ -76,7 +88,7 @@ export async function StoreDetailLayoutView({ storeSlug, activeTab, children, })
76
88
  .then((r) => r.total)
77
89
  .catch(() => 0),
78
90
  ])
79
- : [0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
91
+ : [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
80
92
  const listingCounts = {
81
93
  products: productsCount,
82
94
  auctions: auctionsCount,
@@ -86,6 +98,8 @@ export async function StoreDetailLayoutView({ storeSlug, activeTab, children, })
86
98
  classifieds: classifiedsCount,
87
99
  "digital-codes": digitalCodesCount,
88
100
  live: liveCount,
101
+ art: artCount,
102
+ stickers: stickersCount,
89
103
  };
90
104
  const TAB_LISTING_TYPE = {
91
105
  products: "standard",
@@ -95,6 +109,8 @@ export async function StoreDetailLayoutView({ storeSlug, activeTab, children, })
95
109
  classifieds: "classified",
96
110
  "digital-codes": "digital-code",
97
111
  live: "live",
112
+ art: "art",
113
+ stickers: "stickers",
98
114
  };
99
115
  const visibleStoreTabs = STORE_PAGE_TABS.filter((tab) => {
100
116
  if (tab.id === "bundles")
@@ -1,5 +1,6 @@
1
+ import React from "react";
1
2
  export interface StoreDigitalCodesListingProps {
2
3
  storeId?: string;
3
4
  initialData?: any;
4
5
  }
5
- export declare function StoreDigitalCodesListing({ storeId, initialData }: StoreDigitalCodesListingProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function StoreDigitalCodesListing({ storeId, initialData }: StoreDigitalCodesListingProps): React.JSX.Element;
@@ -1,4 +1,5 @@
1
+ import React from "react";
1
2
  export interface StoreDigitalCodesPageViewProps {
2
3
  storeSlug: string;
3
4
  }
4
- export declare function StoreDigitalCodesPageView({ storeSlug }: StoreDigitalCodesPageViewProps): Promise<import("react/jsx-runtime").JSX.Element | null>;
5
+ export declare function StoreDigitalCodesPageView({ storeSlug }: StoreDigitalCodesPageViewProps): Promise<React.JSX.Element | null>;
@@ -2,4 +2,4 @@ import type { UrlTable } from "../../filters/FilterPanel";
2
2
  export interface StoreFiltersProps {
3
3
  table: UrlTable;
4
4
  }
5
- export declare function StoreFilters({ table }: StoreFiltersProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function StoreFilters({ table }: StoreFiltersProps): import("react").JSX.Element;
@@ -1,2 +1,3 @@
1
+ import React from "react";
1
2
  export type StoreFinanceGuideViewProps = Record<string, never>;
2
- export declare function StoreFinanceGuideView(_props: StoreFinanceGuideViewProps): import("react/jsx-runtime").JSX.Element;
3
+ export declare function StoreFinanceGuideView(_props: StoreFinanceGuideViewProps): React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from "react";
1
2
  import type { StoreDocument } from "../schemas";
2
3
  export interface StoreGuideHubViewProps {
3
4
  store: StoreDocument | null;
4
5
  }
5
- export declare function StoreGuideHubView({ store }: StoreGuideHubViewProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function StoreGuideHubView({ store }: StoreGuideHubViewProps): React.JSX.Element;
@@ -11,5 +11,5 @@ interface StoreHeaderProps {
11
11
  onFollow?: (storeSlug: string) => void;
12
12
  className?: string;
13
13
  }
14
- export declare function StoreHeader({ store, labels, onFollow, className, }: StoreHeaderProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare function StoreHeader({ store, labels, onFollow, className, }: StoreHeaderProps): import("react").JSX.Element;
15
15
  export {};
@@ -1,2 +1,3 @@
1
+ import React from "react";
1
2
  export type StoreListingsGuideViewProps = Record<string, never>;
2
- export declare function StoreListingsGuideView(_props: StoreListingsGuideViewProps): import("react/jsx-runtime").JSX.Element;
3
+ export declare function StoreListingsGuideView(_props: StoreListingsGuideViewProps): React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from "react";
1
2
  export interface StoreLiveItemsListingProps {
2
3
  storeId?: string;
3
4
  initialData?: any;
4
5
  }
5
- export declare function StoreLiveItemsListing({ storeId, initialData }: StoreLiveItemsListingProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function StoreLiveItemsListing({ storeId, initialData }: StoreLiveItemsListingProps): React.JSX.Element;
@@ -1,4 +1,5 @@
1
+ import React from "react";
1
2
  export interface StoreLiveItemsPageViewProps {
2
3
  storeSlug: string;
3
4
  }
4
- export declare function StoreLiveItemsPageView({ storeSlug }: StoreLiveItemsPageViewProps): Promise<import("react/jsx-runtime").JSX.Element | null>;
5
+ export declare function StoreLiveItemsPageView({ storeSlug }: StoreLiveItemsPageViewProps): Promise<React.JSX.Element | null>;
@@ -12,4 +12,4 @@ export interface StoreNavTabsProps {
12
12
  renderTabBar?: (tabs: StoreTab[], activeValue: string | undefined, onChange: (v: string) => void) => React.ReactNode;
13
13
  className?: string;
14
14
  }
15
- export declare function StoreNavTabs({ tabs, activeValue, onTabChange, renderTabBar, className, }: StoreNavTabsProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function StoreNavTabs({ tabs, activeValue, onTabChange, renderTabBar, className, }: StoreNavTabsProps): React.JSX.Element;
@@ -1,2 +1,3 @@
1
+ import React from "react";
1
2
  export type StoreOrdersGuideViewProps = Record<string, never>;
2
- export declare function StoreOrdersGuideView(_props: StoreOrdersGuideViewProps): import("react/jsx-runtime").JSX.Element;
3
+ export declare function StoreOrdersGuideView(_props: StoreOrdersGuideViewProps): React.JSX.Element;
@@ -1,5 +1,6 @@
1
+ import React from "react";
1
2
  export interface StorePreOrdersListingProps {
2
3
  storeId?: string;
3
4
  initialData?: any;
4
5
  }
5
- export declare function StorePreOrdersListing({ storeId, initialData }: StorePreOrdersListingProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function StorePreOrdersListing({ storeId, initialData }: StorePreOrdersListingProps): React.JSX.Element;
@@ -1,4 +1,5 @@
1
+ import React from "react";
1
2
  export interface StorePreOrdersPageViewProps {
2
3
  storeSlug: string;
3
4
  }
4
- export declare function StorePreOrdersPageView({ storeSlug }: StorePreOrdersPageViewProps): Promise<import("react/jsx-runtime").JSX.Element | null>;
5
+ export declare function StorePreOrdersPageView({ storeSlug }: StorePreOrdersPageViewProps): Promise<React.JSX.Element | null>;
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  export interface StorePrizeDrawsPageViewProps {
2
3
  storeSlug: string;
3
4
  }
@@ -8,4 +9,4 @@ export interface StorePrizeDrawsPageViewProps {
8
9
  * client `PrizeDrawsIndexListing` scoped to this store. Mirrors the
9
10
  * StorePreOrdersPageView pattern.
10
11
  */
11
- export declare function StorePrizeDrawsPageView({ storeSlug, }: StorePrizeDrawsPageViewProps): Promise<import("react/jsx-runtime").JSX.Element | null>;
12
+ export declare function StorePrizeDrawsPageView({ storeSlug, }: StorePrizeDrawsPageViewProps): Promise<React.JSX.Element | null>;
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  export interface StoreProductsListingProps {
2
3
  /** Store document ID — used for filtering */
3
4
  storeId?: string;
4
5
  initialData?: any;
5
6
  }
6
- export declare function StoreProductsListing({ storeId, initialData }: StoreProductsListingProps): import("react/jsx-runtime").JSX.Element;
7
+ export declare function StoreProductsListing({ storeId, initialData }: StoreProductsListingProps): React.JSX.Element;
@@ -1,7 +1,8 @@
1
+ import React from "react";
1
2
  type SearchParams = Record<string, string | string[]>;
2
3
  export interface StoreProductsPageViewProps {
3
4
  storeSlug: string;
4
5
  searchParams?: SearchParams;
5
6
  }
6
- export declare function StoreProductsPageView({ storeSlug, searchParams, }: StoreProductsPageViewProps): Promise<import("react/jsx-runtime").JSX.Element | null>;
7
+ export declare function StoreProductsPageView({ storeSlug, searchParams, }: StoreProductsPageViewProps): Promise<React.JSX.Element | null>;
7
8
  export {};
@@ -27,4 +27,4 @@ export interface StoreProductsViewProps {
27
27
  isLoading?: boolean;
28
28
  className?: string;
29
29
  }
30
- export declare function StoreProductsView({ storeSlug, labels, renderProducts, renderSearch, renderSort, renderFilters, renderActiveFilters, renderViewToggle, renderPagination, items, total, isLoading, className, }: StoreProductsViewProps): import("react/jsx-runtime").JSX.Element;
30
+ export declare function StoreProductsView({ storeSlug, labels, renderProducts, renderSearch, renderSort, renderFilters, renderActiveFilters, renderViewToggle, renderPagination, items, total, isLoading, className, }: StoreProductsViewProps): import("react").JSX.Element;
@@ -1,4 +1,5 @@
1
+ import React from "react";
1
2
  export interface StoreReviewsListingProps {
2
3
  storeSlug: string;
3
4
  }
4
- export declare function StoreReviewsListing({ storeSlug }: StoreReviewsListingProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function StoreReviewsListing({ storeSlug }: StoreReviewsListingProps): React.JSX.Element;
@@ -1,4 +1,5 @@
1
+ import React from "react";
1
2
  export interface StoreReviewsPageViewProps {
2
3
  storeSlug: string;
3
4
  }
4
- export declare function StoreReviewsPageView({ storeSlug }: StoreReviewsPageViewProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function StoreReviewsPageView({ storeSlug }: StoreReviewsPageViewProps): React.JSX.Element;
@@ -14,4 +14,4 @@ export interface StoreReviewsViewProps extends Omit<SlottedListingViewProps, "re
14
14
  total?: number;
15
15
  isLoading?: boolean;
16
16
  }
17
- export declare function StoreReviewsView({ labels, renderReviews, renderSummary, renderPagination, items, total, isLoading, ...rest }: StoreReviewsViewProps): import("react/jsx-runtime").JSX.Element;
17
+ export declare function StoreReviewsView({ labels, renderReviews, renderSummary, renderPagination, items, total, isLoading, ...rest }: StoreReviewsViewProps): React.JSX.Element;
@@ -1,3 +1,4 @@
1
+ import React from "react";
1
2
  interface StoreScopedSearchProps {
2
3
  storeId: string;
3
4
  storeName: string;
@@ -12,5 +13,5 @@ interface StoreScopedSearchProps {
12
13
  * is the store-page complement to the global `<Search>` slot rendered in
13
14
  * `LayoutShellClient`.
14
15
  */
15
- export declare function StoreScopedSearch({ storeId, storeName, placeholder, className, }: StoreScopedSearchProps): import("react/jsx-runtime").JSX.Element;
16
+ export declare function StoreScopedSearch({ storeId, storeName, placeholder, className, }: StoreScopedSearchProps): React.JSX.Element;
16
17
  export {};
@@ -1,2 +1,3 @@
1
+ import React from "react";
1
2
  export type StoreSettingsGuideViewProps = Record<string, never>;
2
- export declare function StoreSettingsGuideView(_props: StoreSettingsGuideViewProps): import("react/jsx-runtime").JSX.Element;
3
+ export declare function StoreSettingsGuideView(_props: StoreSettingsGuideViewProps): React.JSX.Element;
@@ -1,4 +1,5 @@
1
+ import React from "react";
1
2
  export interface StoresIndexListingProps {
2
3
  initialData?: any;
3
4
  }
4
- export declare function StoresIndexListing({ initialData }: StoresIndexListingProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function StoresIndexListing({ initialData }: StoresIndexListingProps): React.JSX.Element;
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  type SearchParams = Record<string, string | string[]>;
2
3
  export interface StoresIndexPageViewProps {
3
4
  searchParams?: SearchParams;
4
5
  }
5
- export declare function StoresIndexPageView({ searchParams }: StoresIndexPageViewProps): Promise<import("react/jsx-runtime").JSX.Element>;
6
+ export declare function StoresIndexPageView({ searchParams }: StoresIndexPageViewProps): Promise<React.JSX.Element>;
6
7
  export {};
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import type { StoreCapability } from "../../auth/permissions/constants";
8
8
  import type { BaseDocument } from "../../../_internal/shared/types/base-document";
9
- export type ShippingProviderType = "shiprocket" | "self-courier" | "store-pickup" | "custom";
9
+ export type ShippingProviderType = "self-courier" | "store-pickup" | "custom";
10
10
  export interface ShippingProviderConfig {
11
11
  /** Stable slug — never changes after creation. */
12
12
  providerId: string;
@@ -101,6 +101,12 @@ export interface StoreDocument extends BaseDocument {
101
101
  * ShippingPicker; the chosen provider + fee lock onto each CartItem.
102
102
  */
103
103
  shippingConfig?: StoreShippingConfig;
104
+ /**
105
+ * Seller opt-in for EMI (installment) checkout. EMI is offered on this
106
+ * store's items only when this AND `siteSettings.emi.enabled` are both
107
+ * true. Default false — sellers must explicitly opt in.
108
+ */
109
+ emiEnabled?: boolean;
104
110
  whatsappConfig?: {
105
111
  /** Seller's WhatsApp Business phone number, digits-only with country code e.g. "919876543210" */
106
112
  phoneNumber?: string;