@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.
- package/dist/_internal/client/features/classified/ClassifiedDetailView.d.ts +2 -1
- package/dist/_internal/client/features/digital-code/CodeRevealPanel.d.ts +2 -1
- package/dist/_internal/client/features/digital-code/DigitalCodeDetailView.d.ts +2 -1
- package/dist/_internal/client/features/layout/DashboardLayoutClient.d.ts +1 -1
- package/dist/_internal/client/features/layout/RoleGuard.d.ts +1 -1
- package/dist/_internal/client/features/live/LiveItemDetailView.d.ts +1 -1
- package/dist/_internal/client/features/lottery/LotteryAdminEditView.d.ts +2 -1
- package/dist/_internal/client/features/lottery/LotteryAdminSlotView.d.ts +2 -1
- package/dist/_internal/client/features/lottery/LotteryDetailView.d.ts +2 -1
- package/dist/_internal/client/features/lottery/LotteryEntriesView.d.ts +2 -1
- package/dist/_internal/client/features/lottery/LotteryListView.d.ts +2 -1
- package/dist/_internal/client/features/lottery/LotteryPullForm.d.ts +2 -1
- package/dist/_internal/client/features/lottery/LotterySlotGrid.d.ts +2 -1
- package/dist/_internal/client/features/lottery/PrizeDrawLotteryDetailView.d.ts +2 -1
- package/dist/_internal/client/features/tour/TourProvider.d.ts +1 -1
- package/dist/_internal/client/i18n/LabelsProvider.d.ts +1 -1
- package/dist/_internal/client/scaffolds/AppShell.d.ts +1 -1
- package/dist/_internal/client/scaffolds/DashboardScaffold.d.ts +1 -1
- package/dist/_internal/client/theme/ThemeProvider.d.ts +1 -1
- package/dist/_internal/server/features/checkout/actions.d.ts +2 -0
- package/dist/_internal/server/features/checkout/actions.js +239 -190
- package/dist/_internal/server/functions/scheduled.d.ts +2 -1
- package/dist/_internal/server/functions/scheduled.js +9 -1
- package/dist/_internal/server/jobs/core/autoPayoutEligibility.js +8 -11
- package/dist/_internal/server/jobs/core/emiInstallmentReminder.d.ts +8 -0
- package/dist/_internal/server/jobs/core/emiInstallmentReminder.js +78 -0
- package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.d.ts +2 -2
- package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.js +15 -10
- package/dist/_internal/server/jobs/handlers/emiInstallmentReminder.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/emiInstallmentReminder.js +2 -0
- package/dist/_internal/server/jobs/handlers/index.d.ts +1 -0
- package/dist/_internal/server/jobs/handlers/index.js +2 -0
- package/dist/_internal/server/providers/index.d.ts +4 -4
- package/dist/_internal/server/providers/index.js +4 -4
- package/dist/_internal/server/providers/payment/razorpay-mock.d.ts +3 -2
- package/dist/_internal/server/providers/payment/razorpay-mock.js +3 -1
- package/dist/_internal/server/providers/resolve.d.ts +10 -13
- package/dist/_internal/server/providers/resolve.js +9 -15
- package/dist/_internal/shared/actions/action-registry.js +28 -0
- package/dist/_internal/shared/checkout/rules/_defaults.js +1 -0
- package/dist/_internal/shared/checkout/rules/_registry.js +4 -0
- package/dist/_internal/shared/checkout/rules/art.rule.d.ts +9 -0
- package/dist/_internal/shared/checkout/rules/art.rule.js +5 -0
- package/dist/_internal/shared/checkout/rules/auction.rule.js +1 -0
- package/dist/_internal/shared/checkout/rules/classified.rule.js +1 -0
- package/dist/_internal/shared/checkout/rules/index.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/index.js +2 -0
- package/dist/_internal/shared/checkout/rules/stickers.rule.d.ts +9 -0
- package/dist/_internal/shared/checkout/rules/stickers.rule.js +5 -0
- package/dist/_internal/shared/checkout/rules/types.d.ts +6 -0
- package/dist/_internal/shared/features/checkout/config.d.ts +16 -1
- package/dist/_internal/shared/features/checkout/config.js +16 -1
- package/dist/_internal/shared/features/emi/schedule.d.ts +63 -0
- package/dist/_internal/shared/features/emi/schedule.js +62 -0
- package/dist/_internal/shared/fees/calculator.d.ts +53 -0
- package/dist/_internal/shared/fees/calculator.js +40 -0
- package/dist/_internal/shared/listing-types/_registry.d.ts +22 -66
- package/dist/_internal/shared/listing-types/_registry.js +19 -2
- package/dist/_internal/shared/listing-types/art/config.d.ts +15 -0
- package/dist/_internal/shared/listing-types/art/config.js +14 -0
- package/dist/_internal/shared/listing-types/art/ctas.d.ts +1 -0
- package/dist/_internal/shared/listing-types/art/ctas.js +3 -0
- package/dist/_internal/shared/listing-types/art/og.d.ts +1 -0
- package/dist/_internal/shared/listing-types/art/og.js +1 -0
- package/dist/_internal/shared/listing-types/art/schema.d.ts +2 -0
- package/dist/_internal/shared/listing-types/art/schema.js +3 -0
- package/dist/_internal/shared/listing-types/art/seed-factory.d.ts +1 -0
- package/dist/_internal/shared/listing-types/art/seed-factory.js +1 -0
- package/dist/_internal/shared/listing-types/auction/config.d.ts +8 -0
- package/dist/_internal/shared/listing-types/auction/config.js +6 -0
- package/dist/_internal/shared/listing-types/capabilities.js +17 -0
- package/dist/_internal/shared/listing-types/classified/config.d.ts +8 -0
- package/dist/_internal/shared/listing-types/classified/config.js +6 -0
- package/dist/_internal/shared/listing-types/digital-code/config.d.ts +8 -0
- package/dist/_internal/shared/listing-types/digital-code/config.js +6 -0
- package/dist/_internal/shared/listing-types/live/config.d.ts +8 -0
- package/dist/_internal/shared/listing-types/live/config.js +6 -0
- package/dist/_internal/shared/listing-types/pre-order/config.d.ts +8 -0
- package/dist/_internal/shared/listing-types/pre-order/config.js +6 -0
- package/dist/_internal/shared/listing-types/prize-draw/config.d.ts +8 -0
- package/dist/_internal/shared/listing-types/prize-draw/config.js +6 -0
- package/dist/_internal/shared/listing-types/standard/config.d.ts +8 -0
- package/dist/_internal/shared/listing-types/standard/config.js +6 -0
- package/dist/_internal/shared/listing-types/stickers/config.d.ts +15 -0
- package/dist/_internal/shared/listing-types/stickers/config.js +14 -0
- package/dist/_internal/shared/listing-types/stickers/ctas.d.ts +1 -0
- package/dist/_internal/shared/listing-types/stickers/ctas.js +3 -0
- package/dist/_internal/shared/listing-types/stickers/og.d.ts +1 -0
- package/dist/_internal/shared/listing-types/stickers/og.js +1 -0
- package/dist/_internal/shared/listing-types/stickers/schema.d.ts +2 -0
- package/dist/_internal/shared/listing-types/stickers/schema.js +3 -0
- package/dist/_internal/shared/listing-types/stickers/seed-factory.d.ts +1 -0
- package/dist/_internal/shared/listing-types/stickers/seed-factory.js +1 -0
- package/dist/client.d.ts +7 -2
- package/dist/client.js +4 -2
- package/dist/constants/field-names.d.ts +2 -6
- package/dist/constants/field-names.js +2 -6
- package/dist/contracts/index.d.ts +4 -2
- package/dist/contracts/index.js +6 -0
- package/dist/contracts/payment.d.ts +14 -9
- package/dist/contracts/payment.js +11 -1
- package/dist/contracts/shipping.d.ts +14 -9
- package/dist/contracts/shipping.js +11 -1
- package/dist/features/about/components/AboutView.d.ts +1 -1
- package/dist/features/about/components/FAQPageView.d.ts +1 -1
- package/dist/features/about/components/FeesView.d.ts +1 -1
- package/dist/features/about/components/HelpPageView.d.ts +1 -1
- package/dist/features/about/components/HowAuctionsWorkView.d.ts +1 -1
- package/dist/features/about/components/HowCheckoutWorksView.d.ts +1 -1
- package/dist/features/about/components/HowOffersWorkView.d.ts +1 -1
- package/dist/features/about/components/HowOrdersWorkView.d.ts +1 -1
- package/dist/features/about/components/HowPayoutsWorkView.d.ts +1 -1
- package/dist/features/about/components/HowPreOrdersWorkView.d.ts +1 -1
- package/dist/features/about/components/HowReviewsWorkView.d.ts +1 -1
- package/dist/features/about/components/PolicyPageView.d.ts +1 -1
- package/dist/features/about/components/PublicProfileView.d.ts +1 -1
- package/dist/features/about/components/PublicProfileView.js +3 -6
- package/dist/features/about/components/SecurityPrivacyView.d.ts +1 -1
- package/dist/features/about/components/ShippingPolicyView.d.ts +1 -1
- package/dist/features/about/components/TrackOrderView.d.ts +1 -1
- package/dist/features/about/components/UnauthorizedView.d.ts +1 -1
- package/dist/features/account/components/AddressBook.d.ts +2 -2
- package/dist/features/account/components/AddressFilters.d.ts +1 -1
- package/dist/features/account/components/AddressForm.d.ts +1 -1
- package/dist/features/account/components/AddressInlineSelect.d.ts +2 -1
- package/dist/features/account/components/AddressSelectorCreate.d.ts +1 -1
- package/dist/features/account/components/AddressesIndexListing.d.ts +2 -1
- package/dist/features/account/components/BecomeSellerView.d.ts +1 -1
- package/dist/features/account/components/BuyerAccountGuideView.d.ts +2 -1
- package/dist/features/account/components/BuyerAuctionsGuideView.d.ts +2 -1
- package/dist/features/account/components/BuyerOrdersGuideView.d.ts +2 -1
- package/dist/features/account/components/BuyerShoppingGuideView.d.ts +2 -1
- package/dist/features/account/components/ChatList.d.ts +1 -1
- package/dist/features/account/components/ChatWindow.d.ts +1 -1
- package/dist/features/account/components/MessagesView.d.ts +1 -1
- package/dist/features/account/components/NotificationBell.d.ts +1 -1
- package/dist/features/account/components/NotificationPreferencesPanel.d.ts +1 -1
- package/dist/features/account/components/OrderDetailView.d.ts +1 -1
- package/dist/features/account/components/ProfileView.d.ts +1 -1
- package/dist/features/account/components/UserAccountHubView.d.ts +1 -1
- package/dist/features/account/components/UserAddressesView.d.ts +1 -1
- package/dist/features/account/components/UserNotificationsView.d.ts +1 -1
- package/dist/features/account/components/UserOffersPanel.d.ts +1 -1
- package/dist/features/account/components/UserOffersView.d.ts +1 -1
- package/dist/features/account/components/UserOrderTrackView.d.ts +1 -1
- package/dist/features/account/components/UserOrdersView.d.ts +1 -1
- package/dist/features/account/components/UserReturnsView.d.ts +1 -1
- package/dist/features/account/components/UserSettingsView.d.ts +1 -1
- package/dist/features/account/components/UserSidebar.d.ts +1 -1
- package/dist/features/account/components/UserSupportView.d.ts +2 -1
- package/dist/features/admin/components/AdminAdEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminAddressBookView.d.ts +11 -0
- package/dist/features/admin/components/AdminAddressBookView.js +30 -0
- package/dist/features/admin/components/AdminAddressClustersView.d.ts +1 -1
- package/dist/features/admin/components/AdminAddressEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminAddressesView.d.ts +1 -1
- package/dist/features/admin/components/AdminAdsView.d.ts +1 -1
- package/dist/features/admin/components/AdminAllEventEntriesView.d.ts +2 -1
- package/dist/features/admin/components/AdminAnalyticsGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminAnalyticsView.d.ts +1 -1
- package/dist/features/admin/components/AdminArtView.d.ts +4 -0
- package/dist/features/admin/components/AdminArtView.js +45 -0
- package/dist/features/admin/components/AdminBidsView.d.ts +2 -1
- package/dist/features/admin/components/AdminBlogEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminBlogView.d.ts +2 -1
- package/dist/features/admin/components/AdminBrandEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminBrandsView.d.ts +2 -1
- package/dist/features/admin/components/AdminBundleEditorView.d.ts +14 -1
- package/dist/features/admin/components/AdminBundlesView.d.ts +2 -1
- package/dist/features/admin/components/AdminCarouselEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminCarouselView.d.ts +2 -1
- package/dist/features/admin/components/AdminCartsView.d.ts +2 -1
- package/dist/features/admin/components/AdminCatalogGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminCategoriesView.d.ts +2 -1
- package/dist/features/admin/components/AdminCategoryEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminClassifiedView.d.ts +2 -1
- package/dist/features/admin/components/AdminContactEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminContactView.d.ts +2 -1
- package/dist/features/admin/components/AdminContentGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminCouponEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminCouponsView.d.ts +2 -1
- package/dist/features/admin/components/AdminDashboardView.d.ts +1 -1
- package/dist/features/admin/components/AdminDigitalCodesView.d.ts +2 -1
- package/dist/features/admin/components/AdminEmployeeEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminFaqEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminFaqsView.d.ts +2 -1
- package/dist/features/admin/components/AdminFeatureEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminFeatureFlagsView.d.ts +1 -1
- package/dist/features/admin/components/AdminFeaturesView.d.ts +2 -1
- package/dist/features/admin/components/AdminFilterBar.d.ts +1 -1
- package/dist/features/admin/components/AdminFulfillmentView.d.ts +2 -1
- package/dist/features/admin/components/AdminGroupedListingsView.d.ts +2 -1
- package/dist/features/admin/components/AdminGuideHubView.d.ts +2 -1
- package/dist/features/admin/components/AdminHistoryView.d.ts +2 -1
- package/dist/features/admin/components/AdminLiveView.d.ts +2 -1
- package/dist/features/admin/components/AdminMediaView.d.ts +1 -1
- package/dist/features/admin/components/AdminNavEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminNavigationView.d.ts +2 -1
- package/dist/features/admin/components/AdminNewsletterView.d.ts +2 -1
- package/dist/features/admin/components/AdminNotificationsView.d.ts +2 -1
- package/dist/features/admin/components/AdminOrderEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminOrdersGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminOrdersView.d.ts +2 -1
- package/dist/features/admin/components/AdminPageHeader.d.ts +1 -1
- package/dist/features/admin/components/AdminPaymentClustersView.d.ts +1 -1
- package/dist/features/admin/components/AdminPaymentMethodsView.d.ts +1 -1
- package/dist/features/admin/components/AdminPayoutsView.d.ts +2 -1
- package/dist/features/admin/components/AdminPrizeDrawsView.d.ts +2 -1
- package/dist/features/admin/components/AdminProductEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminProductsView.d.ts +2 -1
- package/dist/features/admin/components/AdminReturnRequestsView.d.ts +1 -1
- package/dist/features/admin/components/AdminReviewsView.d.ts +2 -1
- package/dist/features/admin/components/AdminScammerEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminScammersView.d.ts +2 -1
- package/dist/features/admin/components/AdminSectionsView.d.ts +1 -1
- package/dist/features/admin/components/AdminSessionsManager.d.ts +1 -1
- package/dist/features/admin/components/AdminSessionsView.d.ts +2 -1
- package/dist/features/admin/components/AdminSidebar.d.ts +1 -1
- package/dist/features/admin/components/AdminSiteConfigGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminSiteConfigGuideView.js +1 -1
- package/dist/features/admin/components/AdminSiteSettingsView.d.ts +2 -1
- package/dist/features/admin/components/AdminSiteSettingsView.js +14 -9
- package/dist/features/admin/components/AdminSiteView.d.ts +1 -1
- package/dist/features/admin/components/AdminStickersView.d.ts +4 -0
- package/dist/features/admin/components/AdminStickersView.js +45 -0
- package/dist/features/admin/components/AdminStoreAddressesView.d.ts +1 -1
- package/dist/features/admin/components/AdminStoreEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminStoresGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminStoresView.d.ts +2 -1
- package/dist/features/admin/components/AdminSublistingCategoriesView.d.ts +2 -1
- package/dist/features/admin/components/AdminSublistingCategoryEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminSupportTicketDetailView.d.ts +2 -1
- package/dist/features/admin/components/AdminSupportTicketsView.d.ts +2 -1
- package/dist/features/admin/components/AdminTeamGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminTeamView.d.ts +2 -1
- package/dist/features/admin/components/AdminTopBar.d.ts +1 -1
- package/dist/features/admin/components/AdminTrustGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminUserEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminUsersGuideView.d.ts +2 -1
- package/dist/features/admin/components/AdminUsersView.d.ts +2 -1
- package/dist/features/admin/components/AdminViewCards.d.ts +2 -1
- package/dist/features/admin/components/AdminWishlistsView.d.ts +2 -1
- package/dist/features/admin/components/BrandQuickCreateForm.d.ts +2 -1
- package/dist/features/admin/components/CategoryQuickCreateForm.d.ts +2 -1
- package/dist/features/admin/components/DashboardStats.d.ts +1 -1
- package/dist/features/admin/components/DataListingView.d.ts +1 -1
- package/dist/features/admin/components/DataTable.d.ts +1 -1
- package/dist/features/admin/components/DemoSeedView.d.ts +1 -1
- package/dist/features/admin/components/DrawerFormFooter.d.ts +1 -1
- package/dist/features/admin/components/QuickActionsPanel.d.ts +1 -1
- package/dist/features/admin/components/QuickEditMenu.d.ts +1 -1
- package/dist/features/admin/components/analytics/AdminAnalyticsCharts.d.ts +3 -2
- package/dist/features/admin/components/analytics/AdminStatCard.d.ts +1 -1
- package/dist/features/admin/components/analytics/AdminTopProductsTable.d.ts +1 -1
- package/dist/features/admin/components/index.d.ts +6 -0
- package/dist/features/admin/components/index.js +4 -0
- package/dist/features/admin/schemas/firestore.d.ts +19 -11
- package/dist/features/admin/schemas/firestore.js +12 -2
- package/dist/features/auctions/components/AuctionBidsTable.d.ts +1 -1
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +1 -1
- package/dist/features/auctions/components/AuctionFilters.d.ts +1 -1
- package/dist/features/auctions/components/AuctionsListView.d.ts +1 -1
- package/dist/features/auctions/components/CollapsibleBidHistory.d.ts +2 -1
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +4 -3
- package/dist/features/auctions/components/MarketplaceAuctionGrid.d.ts +1 -1
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +3 -2
- package/dist/features/auth/components/AuthStatusPanel.d.ts +1 -1
- package/dist/features/auth/components/ForgotPasswordView.d.ts +1 -1
- package/dist/features/auth/components/Guards.d.ts +2 -2
- package/dist/features/auth/components/LoginForm.d.ts +1 -1
- package/dist/features/auth/components/OAuthLoadingView.d.ts +1 -1
- package/dist/features/auth/components/RegisterForm.d.ts +1 -1
- package/dist/features/auth/components/ResetPasswordView.d.ts +1 -1
- package/dist/features/auth/components/SocialAuthButtons.d.ts +1 -1
- package/dist/features/auth/components/VerifyEmailView.d.ts +1 -1
- package/dist/features/auth/hooks/useAuth.js +35 -9
- package/dist/features/auth/schemas/firestore.d.ts +2 -6
- package/dist/features/before-after/components/BeforeAfterGallery.d.ts +1 -1
- package/dist/features/before-after/components/BeforeAfterSlider.d.ts +2 -1
- package/dist/features/blog/components/BlogFeaturedCard.d.ts +2 -1
- package/dist/features/blog/components/BlogFilters.d.ts +1 -1
- package/dist/features/blog/components/BlogIndexListing.d.ts +2 -1
- package/dist/features/blog/components/BlogIndexPageView.d.ts +2 -1
- package/dist/features/blog/components/BlogListView.d.ts +4 -3
- package/dist/features/blog/components/BlogPostForm.d.ts +1 -1
- package/dist/features/blog/components/BlogPostView.d.ts +1 -1
- package/dist/features/cart/components/CartDrawer.d.ts +2 -2
- package/dist/features/cart/components/CartSummary.d.ts +1 -1
- package/dist/features/cart/components/CartView.d.ts +1 -1
- package/dist/features/cart/components/CheckoutAddressStep.d.ts +1 -1
- package/dist/features/cart/components/CheckoutOtpModal.d.ts +1 -1
- package/dist/features/cart/components/CheckoutSuccessView.d.ts +1 -1
- package/dist/features/cart/components/CheckoutView.d.ts +1 -1
- package/dist/features/cart/components/ShippingPicker.d.ts +9 -1
- package/dist/features/cart/schemas/firestore.d.ts +3 -2
- package/dist/features/categories/components/BrandDetailPageView.d.ts +2 -1
- package/dist/features/categories/components/BrandDetailTabs.d.ts +2 -1
- package/dist/features/categories/components/BreadcrumbTrail.d.ts +2 -1
- package/dist/features/categories/components/BundleBuyNowCta.d.ts +9 -1
- package/dist/features/categories/components/BundleCollage.d.ts +10 -1
- package/dist/features/categories/components/BundleDetailView.d.ts +2 -1
- package/dist/features/categories/components/BundleDynamicRuleEditor.d.ts +15 -1
- package/dist/features/categories/components/BundleItemsPicker.d.ts +15 -1
- package/dist/features/categories/components/BundlesListView.d.ts +2 -1
- package/dist/features/categories/components/CategoriesIndexListing.d.ts +2 -1
- package/dist/features/categories/components/CategoriesIndexPageView.d.ts +2 -1
- package/dist/features/categories/components/CategoryBundlesListing.d.ts +2 -1
- package/dist/features/categories/components/CategoryDetailPageView.d.ts +2 -1
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +2 -1
- package/dist/features/categories/components/CategoryFilters.d.ts +1 -1
- package/dist/features/categories/components/CategoryForm.d.ts +1 -1
- package/dist/features/categories/components/CategoryGrid.d.ts +3 -2
- package/dist/features/categories/components/CategoryProductsListing.d.ts +2 -1
- package/dist/features/categories/components/CategoryProductsView.d.ts +1 -1
- package/dist/features/categories/components/CategorySelectorCreate.d.ts +1 -1
- package/dist/features/categories/components/CategorySortSelect.d.ts +1 -1
- package/dist/features/categories/components/CategoryStoresListing.d.ts +2 -1
- package/dist/features/categories/components/CategoryTableColumns.d.ts +3 -3
- package/dist/features/categories/components/CategoryTree.d.ts +1 -1
- package/dist/features/categories/components/ConcernCard.d.ts +1 -1
- package/dist/features/categories/components/ConcernGrid.d.ts +1 -1
- package/dist/features/checkout/components/CheckoutStepper.d.ts +2 -1
- package/dist/features/classified/components/ClassifiedFilters.d.ts +1 -1
- package/dist/features/classified/components/ClassifiedIndexListing.d.ts +2 -1
- package/dist/features/classified/components/ClassifiedListView.d.ts +1 -1
- package/dist/features/collections/components/CollectionCard.d.ts +3 -2
- package/dist/features/consultation/components/ConsultationForm.d.ts +2 -1
- package/dist/features/consultation/schemas/index.d.ts +2 -2
- package/dist/features/contact/components/ContactForm.d.ts +2 -1
- package/dist/features/contact/components/ContactInfoSidebar.d.ts +1 -1
- package/dist/features/contact/components/ContactPageView.d.ts +2 -1
- package/dist/features/copilot/components/AdminCopilotView.d.ts +1 -1
- package/dist/features/corporate/components/CorporateInquiryForm.d.ts +2 -1
- package/dist/features/digital-codes/components/DigitalCodeFilters.d.ts +1 -1
- package/dist/features/digital-codes/components/DigitalCodesIndexListing.d.ts +2 -1
- package/dist/features/digital-codes/components/DigitalCodesListView.d.ts +1 -1
- package/dist/features/email/primitives.d.ts +11 -11
- package/dist/features/events/components/AdminEventEditorView.d.ts +2 -1
- package/dist/features/events/components/AdminEventEntriesView.d.ts +1 -1
- package/dist/features/events/components/AdminEventsView.d.ts +2 -1
- package/dist/features/events/components/EventBanner.d.ts +2 -1
- package/dist/features/events/components/EventCard.d.ts +1 -1
- package/dist/features/events/components/EventDetailView.d.ts +1 -1
- package/dist/features/events/components/EventFilters.d.ts +1 -1
- package/dist/features/events/components/EventFormDrawer.d.ts +1 -1
- package/dist/features/events/components/EventLeaderboard.d.ts +1 -1
- package/dist/features/events/components/EventOfferCard.d.ts +2 -1
- package/dist/features/events/components/EventParticipateView.d.ts +1 -1
- package/dist/features/events/components/EventPollWidget.d.ts +1 -1
- package/dist/features/events/components/EventRaffleEntryForm.d.ts +2 -1
- package/dist/features/events/components/EventRaffleWinnerView.d.ts +1 -1
- package/dist/features/events/components/EventRafflesSection.d.ts +1 -1
- package/dist/features/events/components/EventSaleBanner.d.ts +2 -1
- package/dist/features/events/components/EventStatusBadge.d.ts +1 -1
- package/dist/features/events/components/EventsIndexListing.d.ts +2 -1
- package/dist/features/events/components/EventsListPageView.d.ts +2 -1
- package/dist/features/events/components/EventsListView.d.ts +2 -1
- package/dist/features/events/components/SpinWheelView.d.ts +1 -1
- package/dist/features/faq/components/ContactCTA.d.ts +1 -1
- package/dist/features/faq/components/FAQAccordion.d.ts +2 -2
- package/dist/features/faq/components/FAQCategorySidebar.d.ts +1 -1
- package/dist/features/faq/components/FAQHelpfulButtons.d.ts +1 -1
- package/dist/features/faq/components/FAQPageContent.d.ts +1 -1
- package/dist/features/faq/components/FAQSortDropdown.d.ts +1 -1
- package/dist/features/faq/components/RelatedFAQs.d.ts +1 -1
- package/dist/features/filters/AsyncFacetSection.d.ts +2 -1
- package/dist/features/filters/FilterFacetSection.d.ts +1 -1
- package/dist/features/filters/FilterPanel.d.ts +1 -1
- package/dist/features/filters/RangeFilter.d.ts +1 -1
- package/dist/features/filters/SwitchFilter.d.ts +1 -1
- package/dist/features/forms/Checkbox.d.ts +1 -1
- package/dist/features/forms/Radio.d.ts +2 -1
- package/dist/features/forms/Select.d.ts +1 -1
- package/dist/features/forms/Slider.d.ts +2 -1
- package/dist/features/forms/Toggle.d.ts +2 -1
- package/dist/features/homepage/components/AdSlot.d.ts +1 -1
- package/dist/features/homepage/components/AdvertisementBanner.d.ts +2 -1
- package/dist/features/homepage/components/AnnouncementBar.d.ts +2 -1
- package/dist/features/homepage/components/BeforeAfterCard.d.ts +1 -1
- package/dist/features/homepage/components/BlogArticlesSection.d.ts +2 -1
- package/dist/features/homepage/components/BrandsSection.d.ts +1 -1
- package/dist/features/homepage/components/CTABannerSection.d.ts +2 -1
- package/dist/features/homepage/components/CharacterHotspot.d.ts +1 -1
- package/dist/features/homepage/components/CharacterHotspotForm.d.ts +2 -1
- package/dist/features/homepage/components/CollectionCardsSection.d.ts +1 -1
- package/dist/features/homepage/components/CustomCardsSection.d.ts +2 -1
- package/dist/features/homepage/components/CustomerReviewsSection.d.ts +1 -1
- package/dist/features/homepage/components/EventsSection.d.ts +2 -1
- package/dist/features/homepage/components/FAQSection.d.ts +2 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +2 -1
- package/dist/features/homepage/components/FeaturedBundlesSection.d.ts +2 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +2 -1
- package/dist/features/homepage/components/FeaturedProductsSection.d.ts +1 -1
- package/dist/features/homepage/components/FeaturedResultsSection.d.ts +1 -1
- package/dist/features/homepage/components/FeaturedStoresSection.d.ts +2 -1
- package/dist/features/homepage/components/GoogleReviewsSection.d.ts +2 -1
- package/dist/features/homepage/components/HeroBanner.d.ts +1 -1
- package/dist/features/homepage/components/HeroCarousel.d.ts +2 -1
- package/dist/features/homepage/components/HeroSection.d.ts +1 -1
- package/dist/features/homepage/components/HomepageCustomerReviewsSection.d.ts +2 -1
- package/dist/features/homepage/components/HomepageSkeleton.d.ts +1 -1
- package/dist/features/homepage/components/HomepageView.d.ts +1 -1
- package/dist/features/homepage/components/HowItWorksInfoView.d.ts +1 -1
- package/dist/features/homepage/components/HowItWorksSection.d.ts +1 -1
- package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +1 -1
- package/dist/features/homepage/components/NewsletterBanner.d.ts +2 -1
- package/dist/features/homepage/components/NewsletterSection.d.ts +1 -1
- package/dist/features/homepage/components/PromoGrid.d.ts +1 -1
- package/dist/features/homepage/components/SectionCarousel.d.ts +1 -1
- package/dist/features/homepage/components/SecurityHighlightsSection.d.ts +1 -1
- package/dist/features/homepage/components/ShopByCategorySection.d.ts +1 -1
- package/dist/features/homepage/components/SiteFeaturesSection.d.ts +2 -1
- package/dist/features/homepage/components/SocialFeedSection.d.ts +1 -1
- package/dist/features/homepage/components/SocialPostCard.d.ts +1 -1
- package/dist/features/homepage/components/StatsCounterSection.d.ts +1 -1
- package/dist/features/homepage/components/TestimonialsCarousel.d.ts +1 -1
- package/dist/features/homepage/components/TrustBadges.d.ts +2 -1
- package/dist/features/homepage/components/TrustFeaturesSection.d.ts +1 -1
- package/dist/features/homepage/components/TrustIndicatorsSection.d.ts +2 -1
- package/dist/features/homepage/components/WelcomeSection.d.ts +2 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.d.ts +2 -1
- package/dist/features/layout/AppLayoutShell.d.ts +1 -1
- package/dist/features/layout/AutoBreadcrumbs.d.ts +1 -1
- package/dist/features/layout/BackToTop.d.ts +2 -2
- package/dist/features/layout/BottomActions.d.ts +1 -1
- package/dist/features/layout/BottomActionsContext.d.ts +1 -1
- package/dist/features/layout/BottomNavItem.d.ts +1 -1
- package/dist/features/layout/BottomNavLayout.d.ts +1 -1
- package/dist/features/layout/BottomNavbar.d.ts +1 -1
- package/dist/features/layout/BottomSheet.d.ts +1 -1
- package/dist/features/layout/Breadcrumbs.d.ts +2 -2
- package/dist/features/layout/DashboardNavContext.d.ts +1 -1
- package/dist/features/layout/FooterLayout.d.ts +1 -1
- package/dist/features/layout/LayoutClient.d.ts +1 -1
- package/dist/features/layout/LocaleSwitcher.d.ts +1 -1
- package/dist/features/layout/MainNavbar.d.ts +1 -1
- package/dist/features/layout/NavItem.d.ts +1 -1
- package/dist/features/layout/NavbarLayout.d.ts +1 -1
- package/dist/features/layout/NavbarWithSettings.d.ts +1 -1
- package/dist/features/layout/TitleBar.d.ts +1 -1
- package/dist/features/layout/TitleBarLayout.d.ts +1 -1
- package/dist/features/live/components/LiveItemFilters.d.ts +1 -1
- package/dist/features/live/components/LiveItemsIndexListing.d.ts +2 -1
- package/dist/features/live/components/LiveItemsListView.d.ts +1 -1
- package/dist/features/loyalty/components/CoinsDisplay.d.ts +3 -2
- package/dist/features/loyalty/schemas/index.d.ts +6 -6
- package/dist/features/media/AvatarUpload.d.ts +2 -1
- package/dist/features/media/MediaAudio.d.ts +1 -1
- package/dist/features/media/MediaAvatar.d.ts +1 -1
- package/dist/features/media/MediaImage.d.ts +1 -1
- package/dist/features/media/MediaLightbox.d.ts +2 -1
- package/dist/features/media/MediaPickerModal.d.ts +2 -1
- package/dist/features/media/MediaVideo.d.ts +1 -1
- package/dist/features/media/components/MediaSlider.d.ts +2 -1
- package/dist/features/media/modals/ImageCropModal.d.ts +8 -1
- package/dist/features/media/modals/ImageEditor.d.ts +8 -1
- package/dist/features/media/modals/VideoThumbnailSelector.d.ts +1 -1
- package/dist/features/media/modals/VideoTrimModal.d.ts +1 -1
- package/dist/features/media/upload/CameraCapture.d.ts +1 -1
- package/dist/features/media/upload/ImageUpload.d.ts +1 -1
- package/dist/features/media/upload/MediaUploadField.d.ts +1 -1
- package/dist/features/media/upload/MediaUploadList.d.ts +1 -1
- package/dist/features/orders/components/MarketplaceOrderCard.d.ts +1 -1
- package/dist/features/orders/components/OrderFilters.d.ts +1 -1
- package/dist/features/orders/components/OrderSiblingPayments.d.ts +10 -1
- package/dist/features/orders/components/OrdersList.d.ts +2 -2
- package/dist/features/orders/components/RefundHistoryTable.d.ts +2 -1
- package/dist/features/orders/components/RefundRequestView.d.ts +13 -1
- package/dist/features/orders/repository/orders.repository.d.ts +20 -2
- package/dist/features/orders/repository/orders.repository.js +34 -5
- package/dist/features/orders/schemas/firestore.d.ts +33 -7
- package/dist/features/orders/schemas/firestore.js +1 -1
- package/dist/features/orders/schemas/index.d.ts +176 -31
- package/dist/features/orders/schemas/index.js +20 -6
- package/dist/features/orders/types/index.d.ts +3 -3
- package/dist/features/payments/repository/payout.repository.js +2 -2
- package/dist/features/payments/schemas/firestore.d.ts +3 -3
- package/dist/features/payments/schemas/firestore.js +2 -2
- package/dist/features/payments/schemas/index.d.ts +5 -5
- package/dist/features/payments/schemas/index.js +2 -2
- package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +1 -1
- package/dist/features/pre-orders/components/PreOrderActionsClient.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrderBadge.d.ts +2 -2
- package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +1 -1
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +1 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrdersListView.d.ts +1 -1
- package/dist/features/pre-orders/components/PreorderCard.d.ts +2 -1
- package/dist/features/products/api/[id]/route.js +4 -1
- package/dist/features/products/api/route.js +4 -1
- package/dist/features/products/columns/productTableColumns.d.ts +2 -1
- package/dist/features/products/components/AuctionDetailView.d.ts +1 -1
- package/dist/features/products/components/AuctionsIndexListing.d.ts +2 -1
- package/dist/features/products/components/BidHistory.d.ts +1 -1
- package/dist/features/products/components/CompareOverlay.d.ts +1 -1
- package/dist/features/products/components/CompareOverlay.js +7 -9
- package/dist/features/products/components/CustomFieldsEditor.d.ts +2 -1
- package/dist/features/products/components/CustomSectionTabContent.d.ts +2 -1
- package/dist/features/products/components/CustomSectionsEditor.d.ts +2 -1
- package/dist/features/products/components/FeatureBadge.d.ts +2 -2
- package/dist/features/products/components/GroupSettingsPanel.d.ts +2 -1
- package/dist/features/products/components/InteractiveProductCard.d.ts +2 -1
- package/dist/features/products/components/MakeOfferButton.d.ts +2 -1
- package/dist/features/products/components/MakeOfferForm.d.ts +1 -1
- package/dist/features/products/components/MarketplaceBundleCard.d.ts +1 -1
- package/dist/features/products/components/MarketplacePrizeDrawCard.d.ts +1 -1
- package/dist/features/products/components/NonRefundableConsentModal.d.ts +14 -1
- package/dist/features/products/components/PlaceBidForm.d.ts +1 -1
- package/dist/features/products/components/PreOrderDetailView.d.ts +1 -1
- package/dist/features/products/components/PrizeDrawCollage.d.ts +2 -1
- package/dist/features/products/components/PrizeDrawDetailPageView.d.ts +1 -1
- package/dist/features/products/components/PrizeDrawEntryActions.d.ts +1 -1
- package/dist/features/products/components/PrizeDrawItemsEditor.d.ts +1 -1
- package/dist/features/products/components/PrizeDrawsIndexListing.d.ts +1 -1
- package/dist/features/products/components/PrizeDrawsListingView.d.ts +1 -1
- package/dist/features/products/components/PrizeDrawsSection.d.ts +1 -1
- package/dist/features/products/components/PrizeRevealModal.d.ts +1 -1
- package/dist/features/products/components/ProductCardMetadataSection.d.ts +2 -1
- package/dist/features/products/components/ProductDetailActions.d.ts +1 -1
- package/dist/features/products/components/ProductDetailPageView.d.ts +3 -1
- package/dist/features/products/components/ProductDetailPageView.js +2 -2
- package/dist/features/products/components/ProductDetailView.d.ts +1 -1
- package/dist/features/products/components/ProductFeatureBadges.d.ts +1 -1
- package/dist/features/products/components/ProductFeaturesContext.d.ts +1 -1
- package/dist/features/products/components/ProductFeaturesSelector.d.ts +2 -1
- package/dist/features/products/components/ProductFilters.d.ts +1 -1
- package/dist/features/products/components/ProductForm.d.ts +1 -1
- package/dist/features/products/components/ProductForm.js +18 -7
- package/dist/features/products/components/ProductGalleryClient.d.ts +2 -1
- package/dist/features/products/components/ProductGradingTab.d.ts +2 -1
- package/dist/features/products/components/ProductGrid.d.ts +2 -2
- package/dist/features/products/components/ProductGrid.js +7 -12
- package/dist/features/products/components/ProductInfo.d.ts +1 -1
- package/dist/features/products/components/ProductTabs.d.ts +1 -1
- package/dist/features/products/components/ProductTabsShell.d.ts +1 -1
- package/dist/features/products/components/ProductsIndexListing.d.ts +2 -1
- package/dist/features/products/components/ProductsIndexPageView.d.ts +2 -1
- package/dist/features/products/components/ProductsView.d.ts +1 -1
- package/dist/features/products/components/RelatedProducts.d.ts +1 -1
- package/dist/features/products/components/RelatedProductsCarousel.d.ts +2 -1
- package/dist/features/products/components/ShareButton.d.ts +1 -1
- package/dist/features/products/components/ShowGroupSection.d.ts +2 -1
- package/dist/features/products/components/ShowGroupSection.js +3 -5
- package/dist/features/products/components/SublistingCarouselSection.d.ts +2 -1
- package/dist/features/products/components/SublistingCarouselSection.js +3 -6
- package/dist/features/products/components/SublistingCategorySelect.d.ts +2 -1
- package/dist/features/products/constants/listing-tabs.d.ts +32 -0
- package/dist/features/products/constants/listing-tabs.js +8 -0
- package/dist/features/products/index.d.ts +1 -1
- package/dist/features/products/index.js +3 -1
- package/dist/features/products/schemas/firestore.d.ts +20 -1
- package/dist/features/products/schemas/firestore.js +2 -0
- package/dist/features/products/schemas/index.d.ts +48 -0
- package/dist/features/products/schemas/index.js +9 -0
- package/dist/features/products/schemas/product-features.d.ts +1 -1
- package/dist/features/products/types/index.d.ts +5 -3
- package/dist/features/products/utils/listing-type.d.ts +6 -0
- package/dist/features/products/utils/listing-type.js +3 -0
- package/dist/features/promotions/components/CouponCard.d.ts +1 -1
- package/dist/features/promotions/components/CouponsIndexListing.d.ts +2 -1
- package/dist/features/promotions/components/PromotionsView.d.ts +3 -3
- package/dist/features/reviews/api/[id]/route.js +5 -4
- package/dist/features/reviews/components/ReviewDetailPageView.d.ts +2 -1
- package/dist/features/reviews/components/ReviewDetailShell.d.ts +2 -1
- package/dist/features/reviews/components/ReviewFilters.d.ts +1 -1
- package/dist/features/reviews/components/ReviewModal.d.ts +1 -1
- package/dist/features/reviews/components/ReviewSummary.d.ts +2 -1
- package/dist/features/reviews/components/ReviewsIndexListing.d.ts +2 -1
- package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +2 -1
- package/dist/features/reviews/components/ReviewsList.d.ts +3 -2
- package/dist/features/scams/components/ScamAwarenessModal.d.ts +2 -1
- package/dist/features/scams/components/ScamProfileView.d.ts +2 -1
- package/dist/features/scams/components/ScamRegistryView.d.ts +2 -1
- package/dist/features/search/components/Search.d.ts +2 -1
- package/dist/features/search/components/SearchFiltersRow.d.ts +1 -1
- package/dist/features/search/components/SearchResultsSection.d.ts +1 -1
- package/dist/features/search/components/SearchView.d.ts +1 -1
- package/dist/features/seller/actions/seller-actions.d.ts +29 -14
- package/dist/features/seller/actions/seller-actions.js +101 -27
- package/dist/features/seller/components/BarcodeField.d.ts +2 -1
- package/dist/features/seller/components/BrandInlineSelect.d.ts +2 -1
- package/dist/features/seller/components/CategoryInlineSelect.d.ts +2 -1
- package/dist/features/seller/components/CouponInlineSelect.d.ts +2 -1
- package/dist/features/seller/components/FulfillmentView.d.ts +2 -1
- package/dist/features/seller/components/GroupInlineSelect.d.ts +2 -1
- package/dist/features/seller/components/PhysicalLocationModal.d.ts +2 -1
- package/dist/features/seller/components/PrintCenterView.d.ts +2 -1
- package/dist/features/seller/components/ProductInlineSelect.d.ts +2 -1
- package/dist/features/seller/components/QuickProductForm.d.ts +2 -1
- package/dist/features/seller/components/SellerAddressesView.d.ts +2 -1
- package/dist/features/seller/components/SellerAnalyticsAlertsView.d.ts +2 -1
- package/dist/features/seller/components/SellerAnalyticsView.d.ts +1 -1
- package/dist/features/seller/components/SellerArtView.d.ts +8 -0
- package/dist/features/seller/components/SellerArtView.js +114 -0
- package/dist/features/seller/components/SellerAuctionsView.d.ts +1 -1
- package/dist/features/seller/components/SellerBidsView.d.ts +2 -1
- package/dist/features/seller/components/SellerBundlesView.d.ts +2 -1
- package/dist/features/seller/components/SellerClassifiedView.d.ts +2 -1
- package/dist/features/seller/components/SellerCouponEditorView.d.ts +1 -1
- package/dist/features/seller/components/SellerCouponsView.d.ts +2 -1
- package/dist/features/seller/components/SellerCreateProductView.d.ts +1 -1
- package/dist/features/seller/components/SellerDashboardView.d.ts +1 -1
- package/dist/features/seller/components/SellerDigitalCodesView.d.ts +2 -1
- package/dist/features/seller/components/SellerEditProductView.d.ts +1 -1
- package/dist/features/seller/components/SellerFeaturesView.d.ts +2 -1
- package/dist/features/seller/components/SellerGoogleReviewsView.d.ts +2 -1
- package/dist/features/seller/components/SellerGroupedListingsView.d.ts +2 -1
- package/dist/features/seller/components/SellerGuideView.d.ts +1 -1
- package/dist/features/seller/components/SellerLiveView.d.ts +2 -1
- package/dist/features/seller/components/SellerOffersPanel.d.ts +2 -1
- package/dist/features/seller/components/SellerOffersView.d.ts +2 -1
- package/dist/features/seller/components/SellerOrdersView.d.ts +2 -1
- package/dist/features/seller/components/SellerOrdersView.js +38 -1
- package/dist/features/seller/components/SellerPayoutHistoryTable.d.ts +1 -1
- package/dist/features/seller/components/SellerPayoutMethodsView.d.ts +2 -1
- package/dist/features/seller/components/SellerPayoutRequestView.d.ts +1 -1
- package/dist/features/seller/components/SellerPayoutSettingsView.d.ts +1 -1
- package/dist/features/seller/components/SellerPayoutSettingsView.js +4 -1
- package/dist/features/seller/components/SellerPayoutStats.d.ts +1 -1
- package/dist/features/seller/components/SellerPayoutsView.d.ts +2 -1
- package/dist/features/seller/components/SellerPreOrdersView.d.ts +2 -1
- package/dist/features/seller/components/SellerPrizeDrawsView.d.ts +2 -1
- package/dist/features/seller/components/SellerProductShell.d.ts +6 -2
- package/dist/features/seller/components/SellerProductShell.js +69 -59
- package/dist/features/seller/components/SellerProductsCards.d.ts +2 -1
- package/dist/features/seller/components/SellerProductsFilterDrawer.d.ts +2 -1
- package/dist/features/seller/components/SellerProductsView.d.ts +2 -1
- package/dist/features/seller/components/SellerReviewsView.d.ts +1 -1
- package/dist/features/seller/components/SellerShippingConfigsView.d.ts +2 -1
- package/dist/features/seller/components/SellerShippingView.d.ts +1 -1
- package/dist/features/seller/components/SellerShippingView.js +6 -25
- package/dist/features/seller/components/SellerSidebar.d.ts +1 -1
- package/dist/features/seller/components/SellerStickersView.d.ts +8 -0
- package/dist/features/seller/components/SellerStickersView.js +114 -0
- package/dist/features/seller/components/SellerStoreCategoriesView.d.ts +2 -1
- package/dist/features/seller/components/SellerStoreSetupView.d.ts +1 -1
- package/dist/features/seller/components/SellerStoreView.d.ts +1 -1
- package/dist/features/seller/components/SellerStorefrontView.d.ts +1 -1
- package/dist/features/seller/components/SellerTemplatesView.d.ts +2 -1
- package/dist/features/seller/components/SellersListView.d.ts +2 -1
- package/dist/features/seller/components/SublistingInlineSelect.d.ts +2 -1
- package/dist/features/seller/components/analytics/SellerAnalyticsStats.d.ts +2 -1
- package/dist/features/seller/components/analytics/SellerRevenueChart.d.ts +2 -1
- package/dist/features/seller/components/analytics/SellerTopProducts.d.ts +1 -1
- package/dist/features/seller/components/index.d.ts +4 -0
- package/dist/features/seller/components/index.js +2 -0
- package/dist/features/seller/messages/en.json +1 -1
- package/dist/features/seller/schemas/index.d.ts +7 -7
- package/dist/features/seller/schemas/index.js +1 -1
- package/dist/features/seller/types/index.d.ts +1 -1
- package/dist/features/shell/FormShell.d.ts +1 -1
- package/dist/features/shell/QuickFormDrawer.d.ts +1 -1
- package/dist/features/shell/StepForm.d.ts +3 -3
- package/dist/features/shell/field-groups/ImageFieldGroup.d.ts +2 -2
- package/dist/features/shell/field-groups/SeoFieldGroup.d.ts +2 -2
- package/dist/features/shell/field-groups/StatusFieldGroup.d.ts +2 -2
- package/dist/features/shell/field-groups/TitleDescriptionGroup.d.ts +2 -2
- package/dist/features/site-settings/components/ActionPermissionsManager.d.ts +2 -1
- package/dist/features/site-settings/components/NavPermissionsManager.d.ts +2 -1
- package/dist/features/site-settings/components/ThemeManagerView.d.ts +15 -1
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +1 -1
- package/dist/features/stores/components/StoreAboutView.d.ts +1 -1
- package/dist/features/stores/components/StoreAddressSelectorCreate.d.ts +1 -1
- package/dist/features/stores/components/StoreAuctionsListing.d.ts +2 -1
- package/dist/features/stores/components/StoreAuctionsPageView.d.ts +2 -1
- package/dist/features/stores/components/StoreAuctionsView.d.ts +1 -1
- package/dist/features/stores/components/StoreBundlesPageView.d.ts +2 -1
- package/dist/features/stores/components/StoreCapabilitiesGuideView.d.ts +2 -1
- package/dist/features/stores/components/StoreClassifiedsListing.d.ts +2 -1
- package/dist/features/stores/components/StoreClassifiedsPageView.d.ts +2 -1
- package/dist/features/stores/components/StoreDetailLayoutView.d.ts +2 -1
- package/dist/features/stores/components/StoreDetailLayoutView.js +18 -2
- package/dist/features/stores/components/StoreDigitalCodesListing.d.ts +2 -1
- package/dist/features/stores/components/StoreDigitalCodesPageView.d.ts +2 -1
- package/dist/features/stores/components/StoreFilters.d.ts +1 -1
- package/dist/features/stores/components/StoreFinanceGuideView.d.ts +2 -1
- package/dist/features/stores/components/StoreGuideHubView.d.ts +2 -1
- package/dist/features/stores/components/StoreHeader.d.ts +1 -1
- package/dist/features/stores/components/StoreListingsGuideView.d.ts +2 -1
- package/dist/features/stores/components/StoreLiveItemsListing.d.ts +2 -1
- package/dist/features/stores/components/StoreLiveItemsPageView.d.ts +2 -1
- package/dist/features/stores/components/StoreNavTabs.d.ts +1 -1
- package/dist/features/stores/components/StoreOrdersGuideView.d.ts +2 -1
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +2 -1
- package/dist/features/stores/components/StorePreOrdersPageView.d.ts +2 -1
- package/dist/features/stores/components/StorePrizeDrawsPageView.d.ts +2 -1
- package/dist/features/stores/components/StoreProductsListing.d.ts +2 -1
- package/dist/features/stores/components/StoreProductsPageView.d.ts +2 -1
- package/dist/features/stores/components/StoreProductsView.d.ts +1 -1
- package/dist/features/stores/components/StoreReviewsListing.d.ts +2 -1
- package/dist/features/stores/components/StoreReviewsPageView.d.ts +2 -1
- package/dist/features/stores/components/StoreReviewsView.d.ts +1 -1
- package/dist/features/stores/components/StoreScopedSearch.d.ts +2 -1
- package/dist/features/stores/components/StoreSettingsGuideView.d.ts +2 -1
- package/dist/features/stores/components/StoresIndexListing.d.ts +2 -1
- package/dist/features/stores/components/StoresIndexPageView.d.ts +2 -1
- package/dist/features/stores/schemas/firestore.d.ts +7 -1
- package/dist/features/stores/schemas/index.d.ts +19 -16
- package/dist/features/stores/schemas/index.js +1 -1
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.d.ts +2 -1
- package/dist/features/whatsapp-bot/components/WhatsAppChatButton.d.ts +2 -1
- package/dist/features/wishlist/components/WishlistPage.d.ts +2 -2
- package/dist/features/wishlist/components/WishlistToggleButton.d.ts +1 -1
- package/dist/features/wishlist/components/WishlistView.d.ts +1 -1
- package/dist/index.d.ts +21 -36
- package/dist/index.js +27 -39
- package/dist/next/ErrorBoundary.d.ts +1 -1
- package/dist/next/components/ErrorView.d.ts +1 -1
- package/dist/next/components/GlobalError.d.ts +1 -1
- package/dist/next/components/NotFoundView.d.ts +1 -1
- package/dist/next/components/UnauthorizedView.d.ts +1 -1
- package/dist/next/routing/route-map.d.ts +22 -0
- package/dist/next/routing/route-map.js +10 -0
- package/dist/providers/payment-manual/index.d.ts +40 -0
- package/dist/providers/payment-manual/index.js +91 -0
- package/dist/providers/payment-razorpay/index.d.ts +4 -2
- package/dist/providers/payment-razorpay/index.js +4 -1
- package/dist/providers/shipping-manual/index.d.ts +22 -0
- package/dist/providers/shipping-manual/index.js +47 -0
- package/dist/providers.d.ts +2 -2
- package/dist/providers.js +5 -3
- package/dist/react/ErrorBoundary.d.ts +1 -1
- package/dist/react/contexts/SessionContext.d.ts +1 -1
- package/dist/schemas/registry.d.ts +129 -70
- package/dist/schemas/registry.js +0 -4
- package/dist/security/pii-encrypt.js +0 -7
- package/dist/security/pii-redact.js +0 -1
- package/dist/seed/conversations-seed-data.js +2 -2
- package/dist/seed/faq-seed-data.js +7 -7
- package/dist/seed/grouped-listings-seed-data.d.ts +2 -0
- package/dist/seed/index.d.ts +2 -0
- package/dist/seed/index.js +2 -0
- package/dist/seed/manifest.js +20 -16
- package/dist/seed/payouts-seed-data.js +5 -5
- package/dist/seed/products-art-seed-data.d.ts +11 -0
- package/dist/seed/products-art-seed-data.js +125 -0
- package/dist/seed/products-preorders-seed-data.d.ts +2 -0
- package/dist/seed/products-stickers-seed-data.d.ts +11 -0
- package/dist/seed/products-stickers-seed-data.js +125 -0
- package/dist/seed/site-settings-seed-data.js +13 -4
- package/dist/seed/stores-seed-data.js +11 -11
- package/dist/server.d.ts +7 -15
- package/dist/server.js +17 -42
- package/dist/ui/DataTable.d.ts +1 -1
- package/dist/ui/components/Accordion.d.ts +2 -2
- package/dist/ui/components/ActiveFilterChips.d.ts +2 -1
- package/dist/ui/components/Alert.d.ts +1 -1
- package/dist/ui/components/Anchor.d.ts +1 -1
- package/dist/ui/components/Avatar.d.ts +2 -2
- package/dist/ui/components/AvatarDisplay.d.ts +2 -1
- package/dist/ui/components/BackgroundRenderer.d.ts +1 -1
- package/dist/ui/components/Badge.d.ts +1 -1
- package/dist/ui/components/BaseListingCard.d.ts +5 -5
- package/dist/ui/components/Breadcrumb.d.ts +1 -1
- package/dist/ui/components/BulkActionBar.d.ts +1 -1
- package/dist/ui/components/Button.d.ts +1 -1
- package/dist/ui/components/Card.d.ts +4 -4
- package/dist/ui/components/Checkbox.d.ts +1 -1
- package/dist/ui/components/ConfirmDeleteModal.d.ts +1 -1
- package/dist/ui/components/CountdownDisplay.d.ts +1 -1
- package/dist/ui/components/DateInput.d.ts +1 -1
- package/dist/ui/components/DescriptionField.d.ts +1 -1
- package/dist/ui/components/DetailPageGallery.d.ts +2 -2
- package/dist/ui/components/DetailPageHero.d.ts +2 -2
- package/dist/ui/components/DetailPageTabs.d.ts +2 -2
- package/dist/ui/components/DetailViewShell.d.ts +2 -2
- package/dist/ui/components/Details.d.ts +2 -2
- package/dist/ui/components/Dialog.d.ts +1 -1
- package/dist/ui/components/Divider.d.ts +1 -1
- package/dist/ui/components/Dropdown.d.ts +5 -5
- package/dist/ui/components/DynamicBgDiv.d.ts +1 -1
- package/dist/ui/components/EmptyState.d.ts +1 -1
- package/dist/ui/components/FallbackShell.d.ts +1 -1
- package/dist/ui/components/Fieldset.d.ts +2 -2
- package/dist/ui/components/FilterChipGroup.d.ts +2 -1
- package/dist/ui/components/FilterDrawer.d.ts +1 -1
- package/dist/ui/components/FlowDiagram.d.ts +1 -1
- package/dist/ui/components/Form.d.ts +4 -4
- package/dist/ui/components/FormActionBar.d.ts +2 -1
- package/dist/ui/components/FormField.d.ts +2 -1
- package/dist/ui/components/FormGrid.d.ts +3 -2
- package/dist/ui/components/HorizontalRule.d.ts +1 -1
- package/dist/ui/components/HorizontalScroller.d.ts +1 -1
- package/dist/ui/components/HotspotMarker.d.ts +1 -1
- package/dist/ui/components/IconBox.d.ts +1 -1
- package/dist/ui/components/IconButton.d.ts +1 -1
- package/dist/ui/components/Iframe.d.ts +1 -1
- package/dist/ui/components/ImageGallery.d.ts +2 -1
- package/dist/ui/components/ItemRow.d.ts +1 -1
- package/dist/ui/components/Kbd.d.ts +1 -1
- package/dist/ui/components/Layout.d.ts +4 -4
- package/dist/ui/components/ListingFilterDrawer.d.ts +1 -1
- package/dist/ui/components/ListingLayout.d.ts +1 -1
- package/dist/ui/components/ListingToolbar.d.ts +1 -1
- package/dist/ui/components/LoginRequiredModal.d.ts +2 -1
- package/dist/ui/components/Menu.d.ts +5 -5
- package/dist/ui/components/Modal.d.ts +1 -1
- package/dist/ui/components/Motion.d.ts +14 -14
- package/dist/ui/components/NavbarChevron.d.ts +1 -1
- package/dist/ui/components/NavigationLoader.d.ts +1 -1
- package/dist/ui/components/OtpInput.d.ts +1 -1
- package/dist/ui/components/PageLoader.d.ts +1 -1
- package/dist/ui/components/PaginatedSelect.d.ts +2 -2
- package/dist/ui/components/Pagination.d.ts +2 -1
- package/dist/ui/components/PasswordStrengthIndicator.d.ts +2 -1
- package/dist/ui/components/PriceDisplay.d.ts +1 -1
- package/dist/ui/components/Progress.d.ts +3 -2
- package/dist/ui/components/ProgressBarFill.d.ts +1 -1
- package/dist/ui/components/Quote.d.ts +1 -1
- package/dist/ui/components/Radio.d.ts +2 -2
- package/dist/ui/components/RatingDisplay.d.ts +1 -1
- package/dist/ui/components/Responsive.d.ts +2 -2
- package/dist/ui/components/ResponsiveView.d.ts +1 -1
- package/dist/ui/components/RichTextEditor.d.ts +2 -1
- package/dist/ui/components/RoleBadge.d.ts +2 -1
- package/dist/ui/components/RowActionMenu.d.ts +1 -1
- package/dist/ui/components/Scrim.d.ts +1 -1
- package/dist/ui/components/Select.d.ts +1 -1
- package/dist/ui/components/Semantic.d.ts +21 -21
- package/dist/ui/components/SettingsSection.d.ts +3 -2
- package/dist/ui/components/SideDrawer.d.ts +1 -1
- package/dist/ui/components/SideModal.d.ts +1 -1
- package/dist/ui/components/SiteLogo.d.ts +1 -1
- package/dist/ui/components/Skeleton.d.ts +2 -1
- package/dist/ui/components/SkipToMain.d.ts +2 -1
- package/dist/ui/components/Slider.d.ts +1 -1
- package/dist/ui/components/SlottedListingView.d.ts +2 -2
- package/dist/ui/components/SortDropdown.d.ts +1 -1
- package/dist/ui/components/Spinner.d.ts +1 -1
- package/dist/ui/components/StackedViewShell.d.ts +2 -2
- package/dist/ui/components/StarRating.d.ts +1 -1
- package/dist/ui/components/StatsGrid.d.ts +1 -1
- package/dist/ui/components/StatusBadge.d.ts +1 -1
- package/dist/ui/components/StepperNav.d.ts +1 -1
- package/dist/ui/components/StickyToolbar.d.ts +1 -1
- package/dist/ui/components/SummaryCard.d.ts +1 -1
- package/dist/ui/components/TabStrip.d.ts +2 -1
- package/dist/ui/components/TablePagination.d.ts +2 -1
- package/dist/ui/components/Tabs.d.ts +4 -4
- package/dist/ui/components/TagInput.d.ts +2 -1
- package/dist/ui/components/TextLink.d.ts +1 -1
- package/dist/ui/components/Toast.d.ts +1 -1
- package/dist/ui/components/Toggle.d.ts +1 -1
- package/dist/ui/components/Tooltip.d.ts +1 -1
- package/dist/ui/components/Typography.d.ts +4 -4
- package/dist/ui/components/UnsavedChangesModal.d.ts +1 -1
- package/dist/ui/components/VacationBanner.d.ts +2 -1
- package/dist/ui/components/ViewToggle.d.ts +1 -1
- package/dist/ui/forms/ColorPickerField.d.ts +1 -1
- package/dist/ui/forms/FieldCheckbox.d.ts +2 -1
- package/dist/ui/forms/FieldInput.d.ts +1 -1
- package/dist/ui/forms/FieldSelect.d.ts +2 -1
- package/dist/ui/forms/FieldTextarea.d.ts +1 -1
- package/dist/ui/forms/FormShell.d.ts +2 -2
- package/dist/ui/rich-text/RichText.d.ts +1 -1
- package/dist/ui/rich-text/RichTextRenderer.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export * from "./firestore";
|
|
2
2
|
import { z } from "zod";
|
|
3
|
-
export declare const shippingProviderTypeSchema: z.ZodEnum<["
|
|
3
|
+
export declare const shippingProviderTypeSchema: z.ZodEnum<["self-courier", "store-pickup", "custom"]>;
|
|
4
4
|
export declare const shippingProviderConfigSchema: z.ZodObject<{
|
|
5
5
|
providerId: z.ZodString;
|
|
6
6
|
label: z.ZodString;
|
|
7
|
-
type: z.ZodEnum<["
|
|
7
|
+
type: z.ZodEnum<["self-courier", "store-pickup", "custom"]>;
|
|
8
8
|
fee: z.ZodObject<{
|
|
9
9
|
flatInPaise: z.ZodOptional<z.ZodNumber>;
|
|
10
10
|
perKgInPaise: z.ZodOptional<z.ZodNumber>;
|
|
@@ -29,7 +29,7 @@ export declare const shippingProviderConfigSchema: z.ZodObject<{
|
|
|
29
29
|
regions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
30
30
|
requiresAwbUpload: z.ZodOptional<z.ZodBoolean>;
|
|
31
31
|
}, "strip", z.ZodTypeAny, {
|
|
32
|
-
type: "custom" | "
|
|
32
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
33
33
|
label: string;
|
|
34
34
|
providerId: string;
|
|
35
35
|
fee: {
|
|
@@ -44,7 +44,7 @@ export declare const shippingProviderConfigSchema: z.ZodObject<{
|
|
|
44
44
|
regions?: string[] | undefined;
|
|
45
45
|
requiresAwbUpload?: boolean | undefined;
|
|
46
46
|
}, {
|
|
47
|
-
type: "custom" | "
|
|
47
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
48
48
|
label: string;
|
|
49
49
|
providerId: string;
|
|
50
50
|
fee: {
|
|
@@ -63,7 +63,7 @@ export declare const storeShippingConfigSchema: z.ZodObject<{
|
|
|
63
63
|
providers: z.ZodArray<z.ZodObject<{
|
|
64
64
|
providerId: z.ZodString;
|
|
65
65
|
label: z.ZodString;
|
|
66
|
-
type: z.ZodEnum<["
|
|
66
|
+
type: z.ZodEnum<["self-courier", "store-pickup", "custom"]>;
|
|
67
67
|
fee: z.ZodObject<{
|
|
68
68
|
flatInPaise: z.ZodOptional<z.ZodNumber>;
|
|
69
69
|
perKgInPaise: z.ZodOptional<z.ZodNumber>;
|
|
@@ -88,7 +88,7 @@ export declare const storeShippingConfigSchema: z.ZodObject<{
|
|
|
88
88
|
regions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
89
89
|
requiresAwbUpload: z.ZodOptional<z.ZodBoolean>;
|
|
90
90
|
}, "strip", z.ZodTypeAny, {
|
|
91
|
-
type: "custom" | "
|
|
91
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
92
92
|
label: string;
|
|
93
93
|
providerId: string;
|
|
94
94
|
fee: {
|
|
@@ -103,7 +103,7 @@ export declare const storeShippingConfigSchema: z.ZodObject<{
|
|
|
103
103
|
regions?: string[] | undefined;
|
|
104
104
|
requiresAwbUpload?: boolean | undefined;
|
|
105
105
|
}, {
|
|
106
|
-
type: "custom" | "
|
|
106
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
107
107
|
label: string;
|
|
108
108
|
providerId: string;
|
|
109
109
|
fee: {
|
|
@@ -121,7 +121,7 @@ export declare const storeShippingConfigSchema: z.ZodObject<{
|
|
|
121
121
|
defaultProviderId: z.ZodString;
|
|
122
122
|
}, "strip", z.ZodTypeAny, {
|
|
123
123
|
providers: {
|
|
124
|
-
type: "custom" | "
|
|
124
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
125
125
|
label: string;
|
|
126
126
|
providerId: string;
|
|
127
127
|
fee: {
|
|
@@ -139,7 +139,7 @@ export declare const storeShippingConfigSchema: z.ZodObject<{
|
|
|
139
139
|
defaultProviderId: string;
|
|
140
140
|
}, {
|
|
141
141
|
providers: {
|
|
142
|
-
type: "custom" | "
|
|
142
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
143
143
|
label: string;
|
|
144
144
|
providerId: string;
|
|
145
145
|
fee: {
|
|
@@ -253,7 +253,7 @@ export declare const storeFirestoreSchema: z.ZodObject<{
|
|
|
253
253
|
providers: z.ZodArray<z.ZodObject<{
|
|
254
254
|
providerId: z.ZodString;
|
|
255
255
|
label: z.ZodString;
|
|
256
|
-
type: z.ZodEnum<["
|
|
256
|
+
type: z.ZodEnum<["self-courier", "store-pickup", "custom"]>;
|
|
257
257
|
fee: z.ZodObject<{
|
|
258
258
|
flatInPaise: z.ZodOptional<z.ZodNumber>;
|
|
259
259
|
perKgInPaise: z.ZodOptional<z.ZodNumber>;
|
|
@@ -278,7 +278,7 @@ export declare const storeFirestoreSchema: z.ZodObject<{
|
|
|
278
278
|
regions: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
279
279
|
requiresAwbUpload: z.ZodOptional<z.ZodBoolean>;
|
|
280
280
|
}, "strip", z.ZodTypeAny, {
|
|
281
|
-
type: "custom" | "
|
|
281
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
282
282
|
label: string;
|
|
283
283
|
providerId: string;
|
|
284
284
|
fee: {
|
|
@@ -293,7 +293,7 @@ export declare const storeFirestoreSchema: z.ZodObject<{
|
|
|
293
293
|
regions?: string[] | undefined;
|
|
294
294
|
requiresAwbUpload?: boolean | undefined;
|
|
295
295
|
}, {
|
|
296
|
-
type: "custom" | "
|
|
296
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
297
297
|
label: string;
|
|
298
298
|
providerId: string;
|
|
299
299
|
fee: {
|
|
@@ -311,7 +311,7 @@ export declare const storeFirestoreSchema: z.ZodObject<{
|
|
|
311
311
|
defaultProviderId: z.ZodString;
|
|
312
312
|
}, "strip", z.ZodTypeAny, {
|
|
313
313
|
providers: {
|
|
314
|
-
type: "custom" | "
|
|
314
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
315
315
|
label: string;
|
|
316
316
|
providerId: string;
|
|
317
317
|
fee: {
|
|
@@ -329,7 +329,7 @@ export declare const storeFirestoreSchema: z.ZodObject<{
|
|
|
329
329
|
defaultProviderId: string;
|
|
330
330
|
}, {
|
|
331
331
|
providers: {
|
|
332
|
-
type: "custom" | "
|
|
332
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
333
333
|
label: string;
|
|
334
334
|
providerId: string;
|
|
335
335
|
fee: {
|
|
@@ -346,6 +346,7 @@ export declare const storeFirestoreSchema: z.ZodObject<{
|
|
|
346
346
|
}[];
|
|
347
347
|
defaultProviderId: string;
|
|
348
348
|
}>>;
|
|
349
|
+
emiEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
349
350
|
whatsappConfig: z.ZodOptional<z.ZodObject<{
|
|
350
351
|
phoneNumber: z.ZodOptional<z.ZodString>;
|
|
351
352
|
wabaId: z.ZodOptional<z.ZodString>;
|
|
@@ -422,10 +423,11 @@ export declare const storeFirestoreSchema: z.ZodObject<{
|
|
|
422
423
|
averageRating?: number | undefined;
|
|
423
424
|
} | undefined;
|
|
424
425
|
isFeatured?: boolean | undefined;
|
|
426
|
+
emiEnabled?: boolean | undefined;
|
|
425
427
|
website?: string | undefined;
|
|
426
428
|
shippingConfig?: {
|
|
427
429
|
providers: {
|
|
428
|
-
type: "custom" | "
|
|
430
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
429
431
|
label: string;
|
|
430
432
|
providerId: string;
|
|
431
433
|
fee: {
|
|
@@ -506,10 +508,11 @@ export declare const storeFirestoreSchema: z.ZodObject<{
|
|
|
506
508
|
averageRating?: number | undefined;
|
|
507
509
|
} | undefined;
|
|
508
510
|
isFeatured?: boolean | undefined;
|
|
511
|
+
emiEnabled?: boolean | undefined;
|
|
509
512
|
website?: string | undefined;
|
|
510
513
|
shippingConfig?: {
|
|
511
514
|
providers: {
|
|
512
|
-
type: "custom" | "
|
|
515
|
+
type: "custom" | "self-courier" | "store-pickup";
|
|
513
516
|
label: string;
|
|
514
517
|
providerId: string;
|
|
515
518
|
fee: {
|
|
@@ -5,7 +5,6 @@ import { auditTimestampsShape, firestoreDateSchema, paiseSchema } from "../../..
|
|
|
5
5
|
// ─── Firestore document schema (W2) ───────────────────────────────────────────
|
|
6
6
|
// Mirrors StoreDocument in ./firestore.ts. Registered into SCHEMAS.firestore.stores.
|
|
7
7
|
export const shippingProviderTypeSchema = z.enum([
|
|
8
|
-
"shiprocket",
|
|
9
8
|
"self-courier",
|
|
10
9
|
"store-pickup",
|
|
11
10
|
"custom",
|
|
@@ -83,6 +82,7 @@ export const storeFirestoreSchema = z.object({
|
|
|
83
82
|
})
|
|
84
83
|
.optional(),
|
|
85
84
|
shippingConfig: storeShippingConfigSchema.optional(),
|
|
85
|
+
emiEnabled: z.boolean().optional(),
|
|
86
86
|
whatsappConfig: z
|
|
87
87
|
.object({
|
|
88
88
|
phoneNumber: z.string().optional(),
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
export interface SellerWhatsAppSettingsViewProps {
|
|
2
3
|
/** Whether this store has the whatsapp_catalog_sync capability */
|
|
3
4
|
hasCapability: boolean;
|
|
4
5
|
}
|
|
5
|
-
export declare function SellerWhatsAppSettingsView({ hasCapability }: SellerWhatsAppSettingsViewProps):
|
|
6
|
+
export declare function SellerWhatsAppSettingsView({ hasCapability }: SellerWhatsAppSettingsViewProps): React.JSX.Element;
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
1
2
|
interface WhatsAppChatButtonProps {
|
|
2
3
|
waNumber: string;
|
|
3
4
|
message?: string;
|
|
4
5
|
label?: string;
|
|
5
6
|
className?: string;
|
|
6
7
|
}
|
|
7
|
-
export declare function WhatsAppChatButton({ waNumber, message, label, className, }: WhatsAppChatButtonProps):
|
|
8
|
+
export declare function WhatsAppChatButton({ waNumber, message, label, className, }: WhatsAppChatButtonProps): React.JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -4,7 +4,7 @@ interface WishlistCardProps {
|
|
|
4
4
|
onRemove?: (id: string) => void;
|
|
5
5
|
onProductClick?: (item: WishlistItem) => void;
|
|
6
6
|
}
|
|
7
|
-
export declare function WishlistCard({ item, onRemove, onProductClick, }: WishlistCardProps): import("react
|
|
7
|
+
export declare function WishlistCard({ item, onRemove, onProductClick, }: WishlistCardProps): import("react").JSX.Element;
|
|
8
8
|
interface WishlistPageProps {
|
|
9
9
|
items: WishlistItem[];
|
|
10
10
|
isLoading?: boolean;
|
|
@@ -12,5 +12,5 @@ interface WishlistPageProps {
|
|
|
12
12
|
onProductClick?: (item: WishlistItem) => void;
|
|
13
13
|
emptyLabel?: string;
|
|
14
14
|
}
|
|
15
|
-
export declare function WishlistPage({ items, isLoading, onRemove, onProductClick, emptyLabel, }: WishlistPageProps): import("react
|
|
15
|
+
export declare function WishlistPage({ items, isLoading, onRemove, onProductClick, emptyLabel, }: WishlistPageProps): import("react").JSX.Element;
|
|
16
16
|
export {};
|
|
@@ -8,5 +8,5 @@ interface WishlistToggleButtonProps {
|
|
|
8
8
|
className?: string;
|
|
9
9
|
size?: "sm" | "md" | "lg";
|
|
10
10
|
}
|
|
11
|
-
export declare function WishlistToggleButton({ inWishlist, isLoading, onToggle, addLabel, removeLabel, className, size, }: WishlistToggleButtonProps): import("react
|
|
11
|
+
export declare function WishlistToggleButton({ inWishlist, isLoading, onToggle, addLabel, removeLabel, className, size, }: WishlistToggleButtonProps): import("react").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -20,4 +20,4 @@ export interface WishlistViewProps {
|
|
|
20
20
|
renderPagination?: (total: number) => React.ReactNode;
|
|
21
21
|
className?: string;
|
|
22
22
|
}
|
|
23
|
-
export declare function WishlistView({ userId, initialData, labels, renderTabs, renderSearch, renderSort, renderViewToggle, renderProducts, renderTabPlaceholder, renderBulkActions, renderPagination, className, }: WishlistViewProps):
|
|
23
|
+
export declare function WishlistView({ userId, initialData, labels, renderTabs, renderSearch, renderSort, renderViewToggle, renderProducts, renderTabPlaceholder, renderBulkActions, renderPagination, className, }: WishlistViewProps): React.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -662,6 +662,8 @@ export { productsPrizeDrawsSeedData } from "./seed/index";
|
|
|
662
662
|
export { productsClassifiedsSeedData } from "./seed/index";
|
|
663
663
|
export { productsDigitalCodesSeedData } from "./seed/index";
|
|
664
664
|
export { productsLiveItemsSeedData } from "./seed/index";
|
|
665
|
+
export { productsArtSeedData } from "./seed/index";
|
|
666
|
+
export { productsStickersSeedData } from "./seed/index";
|
|
665
667
|
export { registerSeedLocale } from "./seed/index";
|
|
666
668
|
export { reviewsSeedData } from "./seed/index";
|
|
667
669
|
export { seedForTest } from "./seed/index";
|
|
@@ -895,40 +897,8 @@ export type { RazorpayOrder } from "./providers/payment-razorpay/index";
|
|
|
895
897
|
export type { RazorpayOrderOptions } from "./providers/payment-razorpay/index";
|
|
896
898
|
export type { RazorpayPaymentResult } from "./providers/payment-razorpay/index";
|
|
897
899
|
export type { RazorpayRefundResult } from "./providers/payment-razorpay/index";
|
|
898
|
-
export {
|
|
899
|
-
export {
|
|
900
|
-
export { ShiprocketProvider } from "./providers/shipping-shiprocket/index";
|
|
901
|
-
export { isShiprocketTokenExpired } from "./providers/shipping-shiprocket/index";
|
|
902
|
-
export { shiprocketAddPickupLocation } from "./providers/shipping-shiprocket/index";
|
|
903
|
-
export { shiprocketAuthenticate } from "./providers/shipping-shiprocket/index";
|
|
904
|
-
export { shiprocketCheckServiceability } from "./providers/shipping-shiprocket/index";
|
|
905
|
-
export { shiprocketCreateOrder } from "./providers/shipping-shiprocket/index";
|
|
906
|
-
export { shiprocketGenerateAWB } from "./providers/shipping-shiprocket/index";
|
|
907
|
-
export { shiprocketGeneratePickup } from "./providers/shipping-shiprocket/index";
|
|
908
|
-
export { shiprocketGetPickupLocations } from "./providers/shipping-shiprocket/index";
|
|
909
|
-
export { shiprocketTrackByAWB } from "./providers/shipping-shiprocket/index";
|
|
910
|
-
export { shiprocketVerifyPickupOTP } from "./providers/shipping-shiprocket/index";
|
|
911
|
-
export type { ShiprocketAWBResponse } from "./providers/shipping-shiprocket/index";
|
|
912
|
-
export type { ShiprocketAddPickupRequest } from "./providers/shipping-shiprocket/index";
|
|
913
|
-
export type { ShiprocketAddPickupResponse } from "./providers/shipping-shiprocket/index";
|
|
914
|
-
export type { ShiprocketAuthRequest } from "./providers/shipping-shiprocket/index";
|
|
915
|
-
export type { ShiprocketAuthResponse } from "./providers/shipping-shiprocket/index";
|
|
916
|
-
export type { ShiprocketCourierServiceabilityResponse } from "./providers/shipping-shiprocket/index";
|
|
917
|
-
export type { ShiprocketCreateOrderRequest } from "./providers/shipping-shiprocket/index";
|
|
918
|
-
export type { ShiprocketCreateOrderResponse } from "./providers/shipping-shiprocket/index";
|
|
919
|
-
export type { ShiprocketGenerateAWBRequest } from "./providers/shipping-shiprocket/index";
|
|
920
|
-
export type { ShiprocketGeneratePickupRequest } from "./providers/shipping-shiprocket/index";
|
|
921
|
-
export type { ShiprocketOrderItem } from "./providers/shipping-shiprocket/index";
|
|
922
|
-
export type { ShiprocketPickupLocation } from "./providers/shipping-shiprocket/index";
|
|
923
|
-
export type { ShiprocketPickupLocationsResponse } from "./providers/shipping-shiprocket/index";
|
|
924
|
-
export type { ShiprocketPickupResponse } from "./providers/shipping-shiprocket/index";
|
|
925
|
-
export type { ShiprocketProviderConfig } from "./providers/shipping-shiprocket/index";
|
|
926
|
-
export type { ShiprocketShipmentTrack } from "./providers/shipping-shiprocket/index";
|
|
927
|
-
export type { ShiprocketTrackActivity } from "./providers/shipping-shiprocket/index";
|
|
928
|
-
export type { ShiprocketTrackingResponse } from "./providers/shipping-shiprocket/index";
|
|
929
|
-
export type { ShiprocketVerifyPickupOTPRequest } from "./providers/shipping-shiprocket/index";
|
|
930
|
-
export type { ShiprocketVerifyPickupOTPResponse } from "./providers/shipping-shiprocket/index";
|
|
931
|
-
export type { ShiprocketWebhookPayload } from "./providers/shipping-shiprocket/index";
|
|
900
|
+
export { ManualPaymentProvider } from "./providers/payment-manual/index";
|
|
901
|
+
export { ManualShippingProvider } from "./providers/shipping-manual/index";
|
|
932
902
|
export { STORAGE_PATHS } from "./providers/storage-firebase/client";
|
|
933
903
|
export { createStorageHelpers } from "./providers/storage-firebase/client";
|
|
934
904
|
export { validateFileSize } from "./providers/storage-firebase/client";
|
|
@@ -1147,6 +1117,8 @@ export { AdminPrizeDrawsView } from "./features/admin/index";
|
|
|
1147
1117
|
export { AdminClassifiedView } from "./features/admin/index";
|
|
1148
1118
|
export { AdminDigitalCodesView } from "./features/admin/index";
|
|
1149
1119
|
export { AdminLiveView } from "./features/admin/index";
|
|
1120
|
+
export { AdminArtView } from "./features/admin/index";
|
|
1121
|
+
export { AdminStickersView } from "./features/admin/index";
|
|
1150
1122
|
export type { AdminPrizeDrawsViewProps } from "./features/admin/index";
|
|
1151
1123
|
export { AdminProductsView } from "./features/admin/index";
|
|
1152
1124
|
export { AdminProductEditorView } from "./features/admin/index";
|
|
@@ -1188,6 +1160,8 @@ export { AdminStoreAddressesView } from "./features/admin/index";
|
|
|
1188
1160
|
export type { AdminStoreAddressesViewProps } from "./features/admin/index";
|
|
1189
1161
|
export { AdminAddressesView } from "./features/admin/index";
|
|
1190
1162
|
export type { AdminAddressesViewProps } from "./features/admin/index";
|
|
1163
|
+
export { AdminAddressBookView } from "./features/admin/index";
|
|
1164
|
+
export type { AdminAddressBookViewProps } from "./features/admin/index";
|
|
1191
1165
|
export { AdminAddressClustersView } from "./features/admin/index";
|
|
1192
1166
|
export type { AdminAddressClustersViewProps } from "./features/admin/index";
|
|
1193
1167
|
export { AdminPaymentMethodsView } from "./features/admin/index";
|
|
@@ -2431,12 +2405,16 @@ export { createProductId } from "./features/products/index";
|
|
|
2431
2405
|
export { getProductFilterKeys } from "./features/products/index";
|
|
2432
2406
|
export { getProductSortOptions } from "./features/products/index";
|
|
2433
2407
|
export { getProductTableColumns } from "./features/products/index";
|
|
2434
|
-
export { normalizeListingType, isAuctionListing, isPreOrderListing, isStandardListing, isPrizeDrawListing, isClassifiedListing, isDigitalCodeListing, isLiveListing, } from "./features/products/index";
|
|
2408
|
+
export { normalizeListingType, isAuctionListing, isPreOrderListing, isStandardListing, isPrizeDrawListing, isClassifiedListing, isDigitalCodeListing, isLiveListing, isArtListing, isStickersListing, } from "./features/products/index";
|
|
2435
2409
|
export { isListingTypeEnabled, isCategoryTypeEnabled, enabledListingTypes, enabledCategoryTypes, } from "./_internal/shared/listing-types/feature-flags";
|
|
2436
2410
|
export { actionTracker, setActionTrackerSink, resetActionTrackerSink, type ActionEvent, type ActionTrackerSink, } from "./_internal/shared/listing-types/action-tracker";
|
|
2437
2411
|
export { cartRequiresShipping, cartIsDigitalOnly, cartIsChatOnly, } from "./_internal/shared/listing-types/cart-shipping";
|
|
2438
2412
|
export { ACTIONS, action, act, canPerformAction, actionsForListingType, actionLabel, type ActionDef, type ActionKind, type ActionResource, type ActionTree, type ActionConfirmation, } from "./_internal/shared/actions/action-registry";
|
|
2439
2413
|
export { buildBulkAction } from "./_internal/shared/actions/bulk-helpers";
|
|
2414
|
+
export { computeCheckoutFees, computePayoutDeduction, computeCodHandlingFee, } from "./_internal/shared/fees/calculator";
|
|
2415
|
+
export type { FeeCommissionRates, CheckoutFees, PayoutDeduction, CodHandlingFeeRates, } from "./_internal/shared/fees/calculator";
|
|
2416
|
+
export { checkEmiEligibility, computeEmiSchedule } from "./_internal/shared/features/emi/schedule";
|
|
2417
|
+
export type { EmiSettings, EmiIneligibleReason, EmiEligibility, EmiInstallmentPlan, EmiScheduleResult, } from "./_internal/shared/features/emi/schedule";
|
|
2440
2418
|
export { isAdminUser, isSellerUser, isModeratorUser, isEmployeeUser, isBuyerUser, } from "./features/auth/role-predicates";
|
|
2441
2419
|
export { sanitizeProductForPublic, sanitizeProductsForPublic } from "./features/products/index";
|
|
2442
2420
|
export { productAdminColumns } from "./features/products/index";
|
|
@@ -2806,6 +2784,9 @@ export { counterOfferByBuyer } from "./features/seller/server";
|
|
|
2806
2784
|
export { createSellerProduct } from "./features/seller/server";
|
|
2807
2785
|
export { createStore } from "./features/seller/server";
|
|
2808
2786
|
export { customShipOrder } from "./features/seller/server";
|
|
2787
|
+
export { assertEmiShippable } from "./features/seller/server";
|
|
2788
|
+
export { markEmiInstallmentPaid } from "./features/seller/server";
|
|
2789
|
+
export type { MarkEmiInstallmentPaidInput } from "./features/seller/server";
|
|
2809
2790
|
export { getSellerAnalytics } from "./features/seller/server";
|
|
2810
2791
|
export { getSellerPayoutSettings } from "./features/seller/server";
|
|
2811
2792
|
export { getSellerShipping } from "./features/seller/server";
|
|
@@ -3166,7 +3147,7 @@ export { renderPrivateProfileOgImage, renderUserProfileOgImage } from "./_intern
|
|
|
3166
3147
|
export type { UserProfileOgData } from "./_internal/server/features/profile/og";
|
|
3167
3148
|
export { LISTING_TYPE_CAPABILITIES, capabilityFor, canAddToCart, canBid, supportsShipping, requiresVendorVerified, requiresJurisdictionCheck, hasInstantFulfillment, assertNever, } from "./_internal/shared/listing-types/capabilities";
|
|
3168
3149
|
export type { ListingTypeCapability } from "./_internal/shared/listing-types/capabilities";
|
|
3169
|
-
export { LISTING_TYPE_REGISTRY, pluginFor } from "./_internal/shared/listing-types/_registry";
|
|
3150
|
+
export { LISTING_TYPE_REGISTRY, pluginFor, detectListingTypeFromSlug } from "./_internal/shared/listing-types/_registry";
|
|
3170
3151
|
export type { ListingTypePlugin } from "./_internal/shared/listing-types/_registry";
|
|
3171
3152
|
export { getListingRule, getCategoryRule, pickOrderType, getSplitKey, runSyncPreflight, CHECKOUT_RULES, CATEGORY_CHECKOUT_RULES, CHECKOUT_MAX_ORDERS_PER_TX, PRIZE_DRAW_MAX_REVEALS_PER_ORDER, BUNDLE_MAX_QTY_PER_TX, STANDARD_MAX_QTY_PER_LINE, } from "./_internal/shared/checkout/rules";
|
|
3172
3153
|
export type { ListingCheckoutRule, CategoryCheckoutRule, CartItemProductPair, OrderItemInput, RefundPolicy, } from "./_internal/shared/checkout/rules";
|
|
@@ -3208,6 +3189,10 @@ export { SellerBundlesView } from "./features/seller/components/SellerBundlesVie
|
|
|
3208
3189
|
export type { SellerBundlesViewProps } from "./features/seller/components/SellerBundlesView";
|
|
3209
3190
|
export { SellerClassifiedView } from "./features/seller/components/SellerClassifiedView";
|
|
3210
3191
|
export type { SellerClassifiedViewProps } from "./features/seller/components/SellerClassifiedView";
|
|
3192
|
+
export { SellerArtView } from "./features/seller/components/SellerArtView";
|
|
3193
|
+
export type { SellerArtViewProps } from "./features/seller/components/SellerArtView";
|
|
3194
|
+
export { SellerStickersView } from "./features/seller/components/SellerStickersView";
|
|
3195
|
+
export type { SellerStickersViewProps } from "./features/seller/components/SellerStickersView";
|
|
3211
3196
|
export { SellerDigitalCodesView } from "./features/seller/components/SellerDigitalCodesView";
|
|
3212
3197
|
export type { SellerDigitalCodesViewProps } from "./features/seller/components/SellerDigitalCodesView";
|
|
3213
3198
|
export { SellerLiveView } from "./features/seller/components/SellerLiveView";
|
package/dist/index.js
CHANGED
|
@@ -1383,6 +1383,10 @@ export { productsClassifiedsSeedData } from "./seed/index";
|
|
|
1383
1383
|
export { productsDigitalCodesSeedData } from "./seed/index";
|
|
1384
1384
|
// productsLiveItemsSeedData - Seed data for live-item product listings (SB-UNI-K).
|
|
1385
1385
|
export { productsLiveItemsSeedData } from "./seed/index";
|
|
1386
|
+
// productsArtSeedData - Seed data for art product listings (EMI/art-stickers session).
|
|
1387
|
+
export { productsArtSeedData } from "./seed/index";
|
|
1388
|
+
// productsStickersSeedData - Seed data for stickers product listings (EMI/art-stickers session).
|
|
1389
|
+
export { productsStickersSeedData } from "./seed/index";
|
|
1386
1390
|
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1387
1391
|
// registerSeedLocale - Helper for register seed locale.
|
|
1388
1392
|
export { registerSeedLocale } from "./seed/index";
|
|
@@ -1840,45 +1844,14 @@ export { verifyPaymentSignatureWithKeys } from "./providers/payment-razorpay/ind
|
|
|
1840
1844
|
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1841
1845
|
// verifyWebhookSignature - Shared export for verify webhook signature.
|
|
1842
1846
|
export { verifyWebhookSignature } from "./providers/payment-razorpay/index";
|
|
1843
|
-
// ./providers/
|
|
1847
|
+
// ./providers/payment-manual/index
|
|
1844
1848
|
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1845
|
-
//
|
|
1846
|
-
export {
|
|
1847
|
-
//
|
|
1848
|
-
export { SHIPROCKET_TRACKING_URL_BASE, buildShiprocketTrackingUrl, SHIPROCKET_STATUS_PICKUP_SCHEDULED, } from "./providers/shipping-shiprocket/index";
|
|
1849
|
+
// ManualPaymentProvider - the default IPaymentProvider implementation (no gateway).
|
|
1850
|
+
export { ManualPaymentProvider } from "./providers/payment-manual/index";
|
|
1851
|
+
// ./providers/shipping-manual/index
|
|
1849
1852
|
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1850
|
-
//
|
|
1851
|
-
export {
|
|
1852
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1853
|
-
// isShiprocketTokenExpired - Shared export for is shiprocket token expired.
|
|
1854
|
-
export { isShiprocketTokenExpired } from "./providers/shipping-shiprocket/index";
|
|
1855
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1856
|
-
// shiprocketAddPickupLocation - Shared export for shiprocket add pickup location.
|
|
1857
|
-
export { shiprocketAddPickupLocation } from "./providers/shipping-shiprocket/index";
|
|
1858
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1859
|
-
// shiprocketAuthenticate - Shared export for shiprocket authenticate.
|
|
1860
|
-
export { shiprocketAuthenticate } from "./providers/shipping-shiprocket/index";
|
|
1861
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1862
|
-
// shiprocketCheckServiceability - Shared export for shiprocket check serviceability.
|
|
1863
|
-
export { shiprocketCheckServiceability } from "./providers/shipping-shiprocket/index";
|
|
1864
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1865
|
-
// shiprocketCreateOrder - Shared export for shiprocket create order.
|
|
1866
|
-
export { shiprocketCreateOrder } from "./providers/shipping-shiprocket/index";
|
|
1867
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1868
|
-
// shiprocketGenerateAWB - Shared export for shiprocket generate awb.
|
|
1869
|
-
export { shiprocketGenerateAWB } from "./providers/shipping-shiprocket/index";
|
|
1870
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1871
|
-
// shiprocketGeneratePickup - Shared export for shiprocket generate pickup.
|
|
1872
|
-
export { shiprocketGeneratePickup } from "./providers/shipping-shiprocket/index";
|
|
1873
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1874
|
-
// shiprocketGetPickupLocations - Shared export for shiprocket get pickup locations.
|
|
1875
|
-
export { shiprocketGetPickupLocations } from "./providers/shipping-shiprocket/index";
|
|
1876
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1877
|
-
// shiprocketTrackByAWB - Shared export for shiprocket track by awb.
|
|
1878
|
-
export { shiprocketTrackByAWB } from "./providers/shipping-shiprocket/index";
|
|
1879
|
-
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1880
|
-
// shiprocketVerifyPickupOTP - Shared export for shiprocket verify pickup otp.
|
|
1881
|
-
export { shiprocketVerifyPickupOTP } from "./providers/shipping-shiprocket/index";
|
|
1853
|
+
// ManualShippingProvider - the default (and only) IShippingProvider implementation.
|
|
1854
|
+
export { ManualShippingProvider } from "./providers/shipping-manual/index";
|
|
1882
1855
|
// ./providers/storage-firebase/client
|
|
1883
1856
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
1884
1857
|
// STORAGE_PATHS - Constant used across modules.
|
|
@@ -2211,6 +2184,9 @@ export { AdminPrizeDrawsView } from "./features/admin/index";
|
|
|
2211
2184
|
export { AdminClassifiedView } from "./features/admin/index";
|
|
2212
2185
|
export { AdminDigitalCodesView } from "./features/admin/index";
|
|
2213
2186
|
export { AdminLiveView } from "./features/admin/index";
|
|
2187
|
+
// EMI/art-stickers session — admin listing views for art / stickers.
|
|
2188
|
+
export { AdminArtView } from "./features/admin/index";
|
|
2189
|
+
export { AdminStickersView } from "./features/admin/index";
|
|
2214
2190
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
2215
2191
|
// AdminProductsView - Component for admin products view.
|
|
2216
2192
|
export { AdminProductsView } from "./features/admin/index";
|
|
@@ -2280,6 +2256,8 @@ export { AdminReturnRequestsView } from "./features/admin/index";
|
|
|
2280
2256
|
export { AdminStoreAddressesView } from "./features/admin/index";
|
|
2281
2257
|
// AdminAddressesView - Address ban management (Banned / Unban Requested / Suspicious tabs).
|
|
2282
2258
|
export { AdminAddressesView } from "./features/admin/index";
|
|
2259
|
+
// AdminAddressBookView - Address book lookup by owner (ADMIN.ADDRESSES).
|
|
2260
|
+
export { AdminAddressBookView } from "./features/admin/index";
|
|
2283
2261
|
// AdminAddressClustersView - Multi-account shared address cluster view.
|
|
2284
2262
|
export { AdminAddressClustersView } from "./features/admin/index";
|
|
2285
2263
|
// AdminPaymentMethodsView - Payment method ban management.
|
|
@@ -4494,7 +4472,7 @@ export { getProductTableColumns } from "./features/products/index";
|
|
|
4494
4472
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
4495
4473
|
// normalizeListingType + predicate helpers â€" canonical SB1-G accessors.
|
|
4496
4474
|
// SB-UNI-F 2026-05-13 â€" Phase 2 predicates added (classified/digital-code/live).
|
|
4497
|
-
export { normalizeListingType, isAuctionListing, isPreOrderListing, isStandardListing, isPrizeDrawListing, isClassifiedListing, isDigitalCodeListing, isLiveListing, } from "./features/products/index";
|
|
4475
|
+
export { normalizeListingType, isAuctionListing, isPreOrderListing, isStandardListing, isPrizeDrawListing, isClassifiedListing, isDigitalCodeListing, isLiveListing, isArtListing, isStickersListing, } from "./features/products/index";
|
|
4498
4476
|
// SB-UNI-X4 2026-05-13 â€" per-type feature-flag helpers.
|
|
4499
4477
|
export { isListingTypeEnabled, isCategoryTypeEnabled, enabledListingTypes, enabledCategoryTypes, } from "./_internal/shared/listing-types/feature-flags";
|
|
4500
4478
|
// SB-UNI-X5 2026-05-13 â€" action telemetry sink.
|
|
@@ -4504,6 +4482,10 @@ export { cartRequiresShipping, cartIsDigitalOnly, cartIsChatOnly, } from "./_int
|
|
|
4504
4482
|
// SB-UNI-W-1 2026-05-13 â€" CTA action registry shell.
|
|
4505
4483
|
export { ACTIONS, action, act, canPerformAction, actionsForListingType, actionLabel, } from "./_internal/shared/actions/action-registry";
|
|
4506
4484
|
export { buildBulkAction } from "./_internal/shared/actions/bulk-helpers";
|
|
4485
|
+
// Shared fee calculator — platform/gateway/GST/COD handling fee math (pure, client-safe).
|
|
4486
|
+
export { computeCheckoutFees, computePayoutDeduction, computeCodHandlingFee, } from "./_internal/shared/fees/calculator";
|
|
4487
|
+
// EMI eligibility + schedule computation (pure, client-safe — used for checkout quotes).
|
|
4488
|
+
export { checkEmiEligibility, computeEmiSchedule } from "./_internal/shared/features/emi/schedule";
|
|
4507
4489
|
// User-role predicates â€" SB-UNI-E 2026-05-13.
|
|
4508
4490
|
export { isAdminUser, isSellerUser, isModeratorUser, isEmployeeUser, isBuyerUser, } from "./features/auth/role-predicates";
|
|
4509
4491
|
// [SERVER-ONLY]-Safe in browser but intended for server routes.
|
|
@@ -5100,6 +5082,10 @@ export { createStore } from "./features/seller/server";
|
|
|
5100
5082
|
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
5101
5083
|
// customShipOrder - Shared export for custom ship order.
|
|
5102
5084
|
export { customShipOrder } from "./features/seller/server";
|
|
5085
|
+
// assertEmiShippable - the single EMI shipment-gate choke point; any code path that transitions an order to "shipped" must call this first.
|
|
5086
|
+
export { assertEmiShippable } from "./features/seller/server";
|
|
5087
|
+
// markEmiInstallmentPaid - records collection of one EMI installment; recomputes emiRemainingBalance/emiComplete.
|
|
5088
|
+
export { markEmiInstallmentPaid } from "./features/seller/server";
|
|
5103
5089
|
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
5104
5090
|
// getSellerAnalytics - Helper for get seller analytics.
|
|
5105
5091
|
export { getSellerAnalytics } from "./features/seller/server";
|
|
@@ -5612,7 +5598,7 @@ export { renderSublistingCategoryOgImage } from "./_internal/server/features/sub
|
|
|
5612
5598
|
export { renderPrivateProfileOgImage, renderUserProfileOgImage } from "./_internal/server/features/profile/og";
|
|
5613
5599
|
// Listing-type capability registry â€" SB-UNI X1.
|
|
5614
5600
|
export { LISTING_TYPE_CAPABILITIES, capabilityFor, canAddToCart, canBid, supportsShipping, requiresVendorVerified, requiresJurisdictionCheck, hasInstantFulfillment, assertNever, } from "./_internal/shared/listing-types/capabilities";
|
|
5615
|
-
export { LISTING_TYPE_REGISTRY, pluginFor } from "./_internal/shared/listing-types/_registry";
|
|
5601
|
+
export { LISTING_TYPE_REGISTRY, pluginFor, detectListingTypeFromSlug } from "./_internal/shared/listing-types/_registry";
|
|
5616
5602
|
// Checkout rule registry â€" pure TS, safe in both client and server bundles.
|
|
5617
5603
|
export { getListingRule, getCategoryRule, pickOrderType, getSplitKey, runSyncPreflight, CHECKOUT_RULES, CATEGORY_CHECKOUT_RULES, CHECKOUT_MAX_ORDERS_PER_TX, PRIZE_DRAW_MAX_REVEALS_PER_ORDER, BUNDLE_MAX_QTY_PER_TX, STANDARD_MAX_QTY_PER_LINE, } from "./_internal/shared/checkout/rules";
|
|
5618
5604
|
// Media upload limits â€" pure constants, safe in both client and server bundles.
|
|
@@ -5654,6 +5640,8 @@ export { SellerGoogleReviewsView } from "./features/seller/components/SellerGoog
|
|
|
5654
5640
|
// ── Wave 5 listing-type views ─────────────────────────────────────────────────
|
|
5655
5641
|
export { SellerBundlesView } from "./features/seller/components/SellerBundlesView";
|
|
5656
5642
|
export { SellerClassifiedView } from "./features/seller/components/SellerClassifiedView";
|
|
5643
|
+
export { SellerArtView } from "./features/seller/components/SellerArtView";
|
|
5644
|
+
export { SellerStickersView } from "./features/seller/components/SellerStickersView";
|
|
5657
5645
|
export { SellerDigitalCodesView } from "./features/seller/components/SellerDigitalCodesView";
|
|
5658
5646
|
export { SellerLiveView } from "./features/seller/components/SellerLiveView";
|
|
5659
5647
|
// ── Central schema registry (W1) ──────────────────────────────────────────────
|
|
@@ -14,6 +14,6 @@ export declare class ErrorBoundary extends Component<ErrorBoundaryProps, ErrorBo
|
|
|
14
14
|
static getDerivedStateFromError(error: Error): ErrorBoundaryState;
|
|
15
15
|
componentDidCatch(error: Error, errorInfo: ErrorInfo): void;
|
|
16
16
|
private reset;
|
|
17
|
-
render(): string | number | bigint | boolean | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> |
|
|
17
|
+
render(): string | number | bigint | boolean | Iterable<React.ReactNode> | Promise<string | number | bigint | boolean | React.ReactPortal | React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | Iterable<React.ReactNode> | null | undefined> | React.JSX.Element | null | undefined;
|
|
18
18
|
}
|
|
19
19
|
export {};
|
|
@@ -10,4 +10,4 @@ export interface ErrorViewProps {
|
|
|
10
10
|
/** Override the retry button label. */
|
|
11
11
|
retryLabel?: string;
|
|
12
12
|
}
|
|
13
|
-
export declare function ErrorView({ error, reset, heading, description, retryLabel, }: ErrorViewProps): import("react
|
|
13
|
+
export declare function ErrorView({ error, reset, heading, description, retryLabel, }: ErrorViewProps): import("react").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export interface GlobalErrorProps {
|
|
|
4
4
|
};
|
|
5
5
|
reset: () => void;
|
|
6
6
|
}
|
|
7
|
-
export declare function GlobalError({ error, reset }: GlobalErrorProps): import("react
|
|
7
|
+
export declare function GlobalError({ error, reset }: GlobalErrorProps): import("react").JSX.Element;
|
|
@@ -25,4 +25,4 @@ export interface NotFoundViewProps {
|
|
|
25
25
|
/** Override the home link href. */
|
|
26
26
|
homeHref?: string;
|
|
27
27
|
}
|
|
28
|
-
export declare function NotFoundView({ heading, description, homeLabel, homeHref, }: NotFoundViewProps): import("react
|
|
28
|
+
export declare function NotFoundView({ heading, description, homeLabel, homeHref, }: NotFoundViewProps): import("react").JSX.Element;
|
|
@@ -25,4 +25,4 @@ export interface UnauthorizedViewProps {
|
|
|
25
25
|
/** href for the home link. */
|
|
26
26
|
homeHref?: string;
|
|
27
27
|
}
|
|
28
|
-
export declare function UnauthorizedView({ heading, description, loginLabel, loginHref, homeLabel, homeHref, }: UnauthorizedViewProps): import("react
|
|
28
|
+
export declare function UnauthorizedView({ heading, description, loginLabel, loginHref, homeLabel, homeHref, }: UnauthorizedViewProps): import("react").JSX.Element;
|
|
@@ -201,6 +201,12 @@ export declare const DEFAULT_ROUTE_MAP: {
|
|
|
201
201
|
readonly LIVE_ITEMS: "/store/live";
|
|
202
202
|
readonly LIVE_ITEMS_NEW: "/store/live/new";
|
|
203
203
|
readonly LIVE_ITEMS_EDIT: (id: string) => string;
|
|
204
|
+
readonly ART: "/store/art";
|
|
205
|
+
readonly ART_NEW: "/store/art/new";
|
|
206
|
+
readonly ART_EDIT: (id: string) => string;
|
|
207
|
+
readonly STICKERS: "/store/stickers";
|
|
208
|
+
readonly STICKERS_NEW: "/store/stickers/new";
|
|
209
|
+
readonly STICKERS_EDIT: (id: string) => string;
|
|
204
210
|
readonly PRINT_CENTER: "/store/print-center";
|
|
205
211
|
readonly INVENTORY_PRINT: "/store/inventory/print";
|
|
206
212
|
readonly FULFILLMENT: "/store/fulfillment";
|
|
@@ -260,6 +266,8 @@ export declare const DEFAULT_ROUTE_MAP: {
|
|
|
260
266
|
readonly CLASSIFIED: "/admin/classified";
|
|
261
267
|
readonly DIGITAL_CODES: "/admin/digital-codes";
|
|
262
268
|
readonly LIVE: "/admin/live";
|
|
269
|
+
readonly ART: "/admin/art";
|
|
270
|
+
readonly STICKERS: "/admin/stickers";
|
|
263
271
|
readonly GROUPED_LISTINGS: "/admin/grouped-listings";
|
|
264
272
|
readonly DEALS: "/admin/deals";
|
|
265
273
|
readonly FEATURED: "/admin/featured";
|
|
@@ -542,6 +550,12 @@ export declare const ROUTES: {
|
|
|
542
550
|
readonly LIVE_ITEMS: "/store/live";
|
|
543
551
|
readonly LIVE_ITEMS_NEW: "/store/live/new";
|
|
544
552
|
readonly LIVE_ITEMS_EDIT: (id: string) => string;
|
|
553
|
+
readonly ART: "/store/art";
|
|
554
|
+
readonly ART_NEW: "/store/art/new";
|
|
555
|
+
readonly ART_EDIT: (id: string) => string;
|
|
556
|
+
readonly STICKERS: "/store/stickers";
|
|
557
|
+
readonly STICKERS_NEW: "/store/stickers/new";
|
|
558
|
+
readonly STICKERS_EDIT: (id: string) => string;
|
|
545
559
|
readonly PRINT_CENTER: "/store/print-center";
|
|
546
560
|
readonly INVENTORY_PRINT: "/store/inventory/print";
|
|
547
561
|
readonly FULFILLMENT: "/store/fulfillment";
|
|
@@ -601,6 +615,8 @@ export declare const ROUTES: {
|
|
|
601
615
|
readonly CLASSIFIED: "/admin/classified";
|
|
602
616
|
readonly DIGITAL_CODES: "/admin/digital-codes";
|
|
603
617
|
readonly LIVE: "/admin/live";
|
|
618
|
+
readonly ART: "/admin/art";
|
|
619
|
+
readonly STICKERS: "/admin/stickers";
|
|
604
620
|
readonly GROUPED_LISTINGS: "/admin/grouped-listings";
|
|
605
621
|
readonly DEALS: "/admin/deals";
|
|
606
622
|
readonly FEATURED: "/admin/featured";
|
|
@@ -746,6 +762,12 @@ export declare const SELLER_ROUTES: {
|
|
|
746
762
|
readonly LIVE_ITEMS: "/store/live";
|
|
747
763
|
readonly LIVE_ITEMS_NEW: "/store/live/new";
|
|
748
764
|
readonly LIVE_ITEMS_EDIT: (id: string) => string;
|
|
765
|
+
readonly ART: "/store/art";
|
|
766
|
+
readonly ART_NEW: "/store/art/new";
|
|
767
|
+
readonly ART_EDIT: (id: string) => string;
|
|
768
|
+
readonly STICKERS: "/store/stickers";
|
|
769
|
+
readonly STICKERS_NEW: "/store/stickers/new";
|
|
770
|
+
readonly STICKERS_EDIT: (id: string) => string;
|
|
749
771
|
readonly PRINT_CENTER: "/store/print-center";
|
|
750
772
|
readonly INVENTORY_PRINT: "/store/inventory/print";
|
|
751
773
|
readonly FULFILLMENT: "/store/fulfillment";
|
|
@@ -191,6 +191,13 @@ export const DEFAULT_ROUTE_MAP = {
|
|
|
191
191
|
LIVE_ITEMS: "/store/live",
|
|
192
192
|
LIVE_ITEMS_NEW: "/store/live/new",
|
|
193
193
|
LIVE_ITEMS_EDIT: (id) => `/store/live/${id}/edit`,
|
|
194
|
+
// EMI/art-stickers session — art / stickers
|
|
195
|
+
ART: "/store/art",
|
|
196
|
+
ART_NEW: "/store/art/new",
|
|
197
|
+
ART_EDIT: (id) => `/store/art/${id}/edit`,
|
|
198
|
+
STICKERS: "/store/stickers",
|
|
199
|
+
STICKERS_NEW: "/store/stickers/new",
|
|
200
|
+
STICKERS_EDIT: (id) => `/store/stickers/${id}/edit`,
|
|
194
201
|
PRINT_CENTER: "/store/print-center",
|
|
195
202
|
INVENTORY_PRINT: "/store/inventory/print",
|
|
196
203
|
FULFILLMENT: "/store/fulfillment",
|
|
@@ -252,6 +259,9 @@ export const DEFAULT_ROUTE_MAP = {
|
|
|
252
259
|
CLASSIFIED: "/admin/classified",
|
|
253
260
|
DIGITAL_CODES: "/admin/digital-codes",
|
|
254
261
|
LIVE: "/admin/live",
|
|
262
|
+
// EMI/art-stickers session — art / stickers
|
|
263
|
+
ART: "/admin/art",
|
|
264
|
+
STICKERS: "/admin/stickers",
|
|
255
265
|
GROUPED_LISTINGS: "/admin/grouped-listings",
|
|
256
266
|
DEALS: "/admin/deals",
|
|
257
267
|
FEATURED: "/admin/featured",
|