@mohasinac/appkit 2.7.49 → 2.7.52
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/layout/SidebarCollapseToggle.d.ts +19 -0
- package/dist/_internal/client/features/layout/SidebarCollapseToggle.js +15 -0
- package/dist/_internal/client/features/layout/index.d.ts +2 -0
- package/dist/_internal/client/features/layout/index.js +1 -0
- package/dist/_internal/server/features/checkout/actions.js +25 -2
- package/dist/_internal/server/features/promotions/actions.js +3 -1
- package/dist/_internal/server/jobs/core/__tests__/couponExpiry.test.d.ts +1 -0
- package/dist/_internal/server/jobs/core/__tests__/couponExpiry.test.js +65 -0
- package/dist/_internal/server/jobs/core/__tests__/listingProcessor.test.d.ts +1 -0
- package/dist/_internal/server/jobs/core/__tests__/listingProcessor.test.js +163 -0
- package/dist/_internal/server/jobs/core/__tests__/mediaTmpCleanup.test.d.ts +1 -0
- package/dist/_internal/server/jobs/core/__tests__/mediaTmpCleanup.test.js +115 -0
- package/dist/_internal/server/jobs/core/__tests__/pendingOrderTimeout.test.d.ts +1 -0
- package/dist/_internal/server/jobs/core/__tests__/pendingOrderTimeout.test.js +96 -0
- package/dist/_internal/shared/actions/action-registry.js +149 -0
- package/dist/client.d.ts +45 -6
- package/dist/client.js +27 -4
- package/dist/constants/api-endpoints.d.ts +42 -0
- package/dist/constants/api-endpoints.js +14 -0
- package/dist/features/_guide-cls.d.ts +13 -0
- package/dist/features/_guide-cls.js +14 -0
- package/dist/features/about/components/HelpPageView.js +29 -26
- package/dist/features/account/components/BuyerAccountGuideView.d.ts +1 -0
- package/dist/features/account/components/BuyerAccountGuideView.js +39 -0
- package/dist/features/account/components/BuyerAuctionsGuideView.d.ts +1 -0
- package/dist/features/account/components/BuyerAuctionsGuideView.js +38 -0
- package/dist/features/account/components/BuyerOrdersGuideView.d.ts +1 -0
- package/dist/features/account/components/BuyerOrdersGuideView.js +48 -0
- package/dist/features/account/components/BuyerShoppingGuideView.d.ts +1 -0
- package/dist/features/account/components/BuyerShoppingGuideView.js +38 -0
- package/dist/features/account/components/UserSidebar.js +2 -1
- package/dist/features/admin/components/AdminAnalyticsGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminAnalyticsGuideView.js +24 -0
- package/dist/features/admin/components/AdminBlogEditorView.js +102 -75
- package/dist/features/admin/components/AdminBundleEditorView.js +20 -14
- package/dist/features/admin/components/AdminBundlesView.d.ts +1 -3
- package/dist/features/admin/components/AdminBundlesView.js +173 -52
- package/dist/features/admin/components/AdminCatalogGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminCatalogGuideView.js +28 -0
- package/dist/features/admin/components/AdminContentGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminContentGuideView.js +36 -0
- package/dist/features/admin/components/AdminCouponEditorView.js +1 -1
- package/dist/features/admin/components/AdminGuideHubView.d.ts +5 -0
- package/dist/features/admin/components/AdminGuideHubView.js +79 -0
- package/dist/features/admin/components/AdminOrdersGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminOrdersGuideView.js +44 -0
- package/dist/features/admin/components/AdminProductsView.js +8 -3
- package/dist/features/admin/components/AdminSidebar.js +2 -1
- package/dist/features/admin/components/AdminSiteConfigGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminSiteConfigGuideView.js +21 -0
- package/dist/features/admin/components/AdminStoresGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminStoresGuideView.js +32 -0
- package/dist/features/admin/components/AdminTeamGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminTeamGuideView.js +33 -0
- package/dist/features/admin/components/AdminTrustGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminTrustGuideView.js +40 -0
- package/dist/features/admin/components/AdminUsersGuideView.d.ts +1 -0
- package/dist/features/admin/components/AdminUsersGuideView.js +38 -0
- package/dist/features/auth/repository/session.repository.js +16 -1
- package/dist/features/cart/hooks/useAddToCart.d.ts +2 -0
- package/dist/features/cart/hooks/useAddToCart.js +2 -0
- package/dist/features/cart/hooks/useGuestCart.d.ts +2 -0
- package/dist/features/cart/utils/guest-cart.d.ts +7 -0
- package/dist/features/cart/utils/pending-ops.d.ts +6 -0
- package/dist/features/categories/components/CategoryBundlesListing.js +3 -25
- package/dist/features/categories/components/CategoryProductsListing.js +6 -10
- package/dist/features/categories/components/index.d.ts +0 -2
- package/dist/features/categories/components/index.js +0 -1
- package/dist/features/categories/schemas/firestore.d.ts +9 -0
- package/dist/features/events/components/AdminEventEditorView.js +223 -269
- package/dist/features/events/components/EventRaffleWinnerView.d.ts +9 -1
- package/dist/features/events/components/EventRaffleWinnerView.js +3 -3
- package/dist/features/events/components/SpinWheelView.js +3 -3
- package/dist/features/grouped/repository/grouped-listings.repository.d.ts +9 -0
- package/dist/features/grouped/repository/grouped-listings.repository.js +12 -0
- package/dist/features/layout/BottomNavLayout.d.ts +5 -0
- package/dist/features/layout/BottomNavLayout.js +21 -0
- package/dist/features/layout/TitleBar.js +7 -1
- package/dist/features/layout/TitleBarLayout.d.ts +8 -2
- package/dist/features/layout/TitleBarLayout.js +11 -7
- package/dist/features/media/upload/MediaUploadField.js +1 -1
- package/dist/features/orders/schemas/index.d.ts +2 -2
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +12 -6
- package/dist/features/products/components/AuctionsIndexListing.js +3 -1
- package/dist/features/products/components/MarketplaceBundleCard.d.ts +21 -0
- package/dist/features/products/components/MarketplaceBundleCard.js +56 -0
- package/dist/features/products/components/PrizeDrawDetailPageView.js +1 -1
- package/dist/features/products/components/PrizeDrawEntryActions.d.ts +3 -1
- package/dist/features/products/components/PrizeDrawEntryActions.js +8 -12
- package/dist/features/products/components/ProductDetailActions.d.ts +5 -1
- package/dist/features/products/components/ProductDetailActions.js +3 -1
- package/dist/features/products/components/ProductDetailPageView.d.ts +2 -0
- package/dist/features/products/components/ProductDetailPageView.js +4 -0
- package/dist/features/products/components/ProductGrid.js +3 -3
- package/dist/features/products/components/ProductsIndexListing.js +18 -9
- package/dist/features/products/components/index.d.ts +2 -4
- package/dist/features/products/components/index.js +1 -2
- package/dist/features/promotions/components/CouponCard.d.ts +11 -1
- package/dist/features/promotions/components/CouponCard.js +36 -2
- package/dist/features/promotions/repository/claimed-coupons.repository.d.ts +27 -0
- package/dist/features/promotions/repository/claimed-coupons.repository.js +115 -0
- package/dist/features/promotions/schemas/firestore.d.ts +34 -0
- package/dist/features/promotions/schemas/firestore.js +14 -1
- package/dist/features/reviews/components/index.d.ts +0 -2
- package/dist/features/reviews/components/index.js +0 -1
- package/dist/features/seller/components/BrandInlineSelect.js +23 -3
- package/dist/features/seller/components/CategoryInlineSelect.js +20 -3
- package/dist/features/seller/components/SellerAddressesView.js +3 -2
- package/dist/features/seller/components/SellerAnalyticsAlertsView.d.ts +6 -0
- package/dist/features/seller/components/SellerAnalyticsAlertsView.js +124 -0
- package/dist/features/seller/components/SellerAnalyticsView.d.ts +2 -0
- package/dist/features/seller/components/SellerAnalyticsView.js +17 -9
- package/dist/features/seller/components/SellerBidsView.js +33 -3
- package/dist/features/seller/components/SellerBundlesView.d.ts +5 -0
- package/dist/features/seller/components/SellerBundlesView.js +104 -0
- package/dist/features/seller/components/SellerClassifiedView.d.ts +5 -0
- package/dist/features/seller/components/SellerClassifiedView.js +113 -0
- package/dist/features/seller/components/SellerDashboardView.js +19 -7
- package/dist/features/seller/components/SellerDigitalCodesView.d.ts +5 -0
- package/dist/features/seller/components/SellerDigitalCodesView.js +115 -0
- package/dist/features/seller/components/SellerGoogleReviewsView.d.ts +14 -0
- package/dist/features/seller/components/SellerGoogleReviewsView.js +95 -0
- package/dist/features/seller/components/SellerGroupedListingsView.d.ts +6 -0
- package/dist/features/seller/components/SellerGroupedListingsView.js +112 -0
- package/dist/features/seller/components/SellerLiveView.d.ts +5 -0
- package/dist/features/seller/components/SellerLiveView.js +113 -0
- package/dist/features/seller/components/SellerOrdersView.js +53 -2
- package/dist/features/seller/components/SellerPayoutMethodsView.d.ts +7 -0
- package/dist/features/seller/components/SellerPayoutMethodsView.js +120 -0
- package/dist/features/seller/components/SellerPayoutSettingsView.js +50 -12
- package/dist/features/seller/components/SellerProductShell.d.ts +3 -1
- package/dist/features/seller/components/SellerProductShell.js +35 -11
- package/dist/features/seller/components/SellerProductsCards.d.ts +19 -0
- package/dist/features/seller/components/SellerProductsCards.js +19 -0
- package/dist/features/seller/components/SellerProductsFilterDrawer.d.ts +14 -0
- package/dist/features/seller/components/SellerProductsFilterDrawer.js +22 -0
- package/dist/features/seller/components/SellerProductsView.d.ts +3 -1
- package/dist/features/seller/components/SellerProductsView.js +92 -49
- package/dist/features/seller/components/SellerReviewsView.js +67 -4
- package/dist/features/seller/components/SellerShippingConfigsView.d.ts +7 -0
- package/dist/features/seller/components/SellerShippingConfigsView.js +149 -0
- package/dist/features/seller/components/SellerShippingView.js +37 -10
- package/dist/features/seller/components/SellerSidebar.js +2 -1
- package/dist/features/seller/components/SellerStoreCategoriesView.d.ts +9 -0
- package/dist/features/seller/components/SellerStoreCategoriesView.js +122 -0
- package/dist/features/seller/components/SellerStorefrontView.d.ts +0 -7
- package/dist/features/seller/components/SellerStorefrontView.js +26 -29
- package/dist/features/seller/components/SellerTemplatesView.d.ts +10 -0
- package/dist/features/seller/components/SellerTemplatesView.js +265 -0
- package/dist/features/seller/components/index.d.ts +26 -0
- package/dist/features/seller/components/index.js +13 -0
- package/dist/features/seller/components/seller-products-styles.d.ts +7 -0
- package/dist/features/seller/components/seller-products-styles.js +14 -0
- package/dist/features/shell/FormShell.d.ts +7 -1
- package/dist/features/shell/FormShell.js +5 -2
- package/dist/features/store-extensions/index.d.ts +4 -0
- package/dist/features/store-extensions/index.js +4 -0
- package/dist/features/store-extensions/repository/rbac.repositories.d.ts +23 -0
- package/dist/features/store-extensions/repository/rbac.repositories.js +32 -0
- package/dist/features/store-extensions/repository/store-extensions.repositories.d.ts +91 -0
- package/dist/features/store-extensions/repository/store-extensions.repositories.js +127 -0
- package/dist/features/store-extensions/schemas/firestore.d.ts +244 -0
- package/dist/features/store-extensions/schemas/firestore.js +158 -0
- package/dist/features/store-extensions/schemas/rbac.d.ts +65 -0
- package/dist/features/store-extensions/schemas/rbac.js +43 -0
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +49 -7
- package/dist/features/stores/components/InteractiveStoreCard.js +7 -3
- package/dist/features/stores/components/StoreCapabilitiesGuideView.d.ts +3 -0
- package/dist/features/stores/components/StoreCapabilitiesGuideView.js +101 -0
- package/dist/features/stores/components/StoreFinanceGuideView.d.ts +3 -0
- package/dist/features/stores/components/StoreFinanceGuideView.js +79 -0
- package/dist/features/stores/components/StoreGuideHubView.d.ts +5 -0
- package/dist/features/stores/components/StoreGuideHubView.js +89 -0
- package/dist/features/stores/components/StoreListingsGuideView.d.ts +3 -0
- package/dist/features/stores/components/StoreListingsGuideView.js +151 -0
- package/dist/features/stores/components/StoreOrdersGuideView.d.ts +3 -0
- package/dist/features/stores/components/StoreOrdersGuideView.js +122 -0
- package/dist/features/stores/components/StoreProductsListing.js +6 -10
- package/dist/features/stores/components/StoreReviewsListing.js +100 -23
- package/dist/features/stores/components/StoreSettingsGuideView.d.ts +3 -0
- package/dist/features/stores/components/StoreSettingsGuideView.js +56 -0
- package/dist/features/stores/components/index.d.ts +12 -1
- package/dist/features/stores/components/index.js +6 -1
- package/dist/features/stores/hooks/useStores.d.ts +5 -0
- package/dist/features/stores/hooks/useStores.js +10 -0
- package/dist/features/stores/manifest.js +1 -1
- package/dist/features/stores/schemas/firestore.d.ts +2 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +13 -2
- package/dist/index.d.ts +60 -9
- package/dist/index.js +66 -15
- package/dist/next/routing/route-map.d.ts +134 -0
- package/dist/next/routing/route-map.js +59 -0
- package/dist/providers/db-firebase/__tests__/filter-aliases.test.d.ts +1 -0
- package/dist/providers/db-firebase/__tests__/filter-aliases.test.js +93 -0
- package/dist/providers/db-firebase/sieve.d.ts +49 -0
- package/dist/providers/db-firebase/sieve.js +61 -8
- package/dist/react/hooks/useFormStatePreservation.d.ts +17 -0
- package/dist/react/hooks/useFormStatePreservation.js +62 -0
- package/dist/react/hooks/useInlineRowEdit.d.ts +24 -0
- package/dist/react/hooks/useInlineRowEdit.js +68 -0
- package/dist/react/index.d.ts +4 -0
- package/dist/react/index.js +4 -0
- package/dist/repositories/index.d.ts +5 -0
- package/dist/repositories/index.js +7 -0
- package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
- package/dist/seed/claimed-coupons-seed-data.d.ts +13 -0
- package/dist/seed/claimed-coupons-seed-data.js +79 -0
- package/dist/seed/index.d.ts +2 -0
- package/dist/seed/index.js +3 -0
- package/dist/seed/manifest.js +17 -0
- package/dist/seed/store-extensions-seed-data.d.ts +19 -0
- package/dist/seed/store-extensions-seed-data.js +421 -0
- package/dist/tailwind-utilities.css +1 -1
- package/dist/ui/components/Button.style.css +20 -12
- package/dist/ui/components/ClaimCouponButton.d.ts +28 -0
- package/dist/ui/components/ClaimCouponButton.js +89 -0
- package/dist/ui/components/ListingToolbar.d.ts +8 -1
- package/dist/ui/components/ListingToolbar.js +4 -2
- package/dist/ui/components/QuickCreateModal.d.ts +15 -0
- package/dist/ui/components/QuickCreateModal.js +48 -0
- package/dist/ui/components/QuickCreateModal.style.css +84 -0
- package/dist/ui/components/StickyBottomBar.d.ts +22 -0
- package/dist/ui/components/StickyBottomBar.js +20 -0
- package/dist/ui/components/VacationBanner.d.ts +11 -0
- package/dist/ui/components/VacationBanner.js +16 -0
- package/dist/ui/components/__tests__/BulkActionBar.test.d.ts +1 -0
- package/dist/ui/components/__tests__/BulkActionBar.test.js +96 -0
- package/dist/ui/components/__tests__/ListingToolbar.test.d.ts +1 -0
- package/dist/ui/components/__tests__/ListingToolbar.test.js +125 -0
- package/dist/ui/index.d.ts +9 -1
- package/dist/ui/index.js +4 -0
- package/package.json +8 -2
package/dist/index.d.ts
CHANGED
|
@@ -486,6 +486,7 @@ export type { ResolvedUser } from "./security/index";
|
|
|
486
486
|
export type { RoleDefinition } from "./security/index";
|
|
487
487
|
export type { UserRole } from "./security/index";
|
|
488
488
|
export { AddressesRepository } from "./repositories/index";
|
|
489
|
+
export * from "./features/store-extensions/index";
|
|
489
490
|
export { BaseRepository } from "./repositories/index";
|
|
490
491
|
export { BlogRepository } from "./repositories/index";
|
|
491
492
|
export { CartRepository } from "./repositories/index";
|
|
@@ -519,6 +520,9 @@ export { cartRepository } from "./repositories/index";
|
|
|
519
520
|
export { categoriesRepository } from "./repositories/index";
|
|
520
521
|
export { chatRepository } from "./repositories/index";
|
|
521
522
|
export { couponsRepository } from "./repositories/index";
|
|
523
|
+
export { claimedCouponsRepository, ClaimedCouponsRepository } from "./repositories/index";
|
|
524
|
+
export type { ClaimedCouponCreateInput } from "./repositories/index";
|
|
525
|
+
export type { ClaimedCouponDocument, ClaimedCouponStatus, ClaimedCouponSource, ClaimedCouponSnapshot, } from "./features/promotions/schemas";
|
|
522
526
|
export { emailVerificationTokenRepository } from "./repositories/index";
|
|
523
527
|
export { eventEntryRepository } from "./repositories/index";
|
|
524
528
|
export { eventRepository } from "./repositories/index";
|
|
@@ -541,6 +545,7 @@ export type { SupportTicketDocument, SupportTicketCreateInput, SupportTicketUpda
|
|
|
541
545
|
export { ELIGIBLE_ORDER_STATUSES_FOR_TICKET, SUPPORT_TICKET_COLLECTION, ACTIVE_TICKET_STATUSES, SUPPORT_TICKET_FIELDS, TicketCategoryValues, TicketStatusValues, TicketPriorityValues, } from "./features/support/schemas/firestore";
|
|
542
546
|
export { supportTicketsSeedData } from "./seed/index";
|
|
543
547
|
export { offersSeedData } from "./seed/index";
|
|
548
|
+
export { payoutMethodsSeedData, shippingConfigsSeedData, analyticsCardsSeedData, analyticsAlertsSeedData, storeCategoriesSeedData, listingTemplatesSeedData, moderationQueueSeedData, reportsSeedData, itemRequestsSeedData, storeWhatsAppConfigSeedData, storeGoogleConfigSeedData, } from "./seed/index";
|
|
544
549
|
export { productFeaturesRepository } from "./repositories/index";
|
|
545
550
|
export type { ProductFeatureListFilter } from "./repositories/index";
|
|
546
551
|
export { loadProductFeaturesForStore } from "./repositories/index";
|
|
@@ -549,6 +554,7 @@ export type { ProductTemplateDocument, ProductTemplateCreateInput, ProductTempla
|
|
|
549
554
|
export { tokenRepository } from "./repositories/index";
|
|
550
555
|
export { userRepository } from "./repositories/index";
|
|
551
556
|
export { wishlistRepository } from "./repositories/index";
|
|
557
|
+
export { GroupedListingsRepository, groupedListingsRepository } from "./repositories/index";
|
|
552
558
|
export type { NewsletterListModel } from "./repositories/index";
|
|
553
559
|
export type { WishlistItem } from "./repositories/index";
|
|
554
560
|
export { ADDRESS_FIXTURES } from "./seed/index";
|
|
@@ -576,6 +582,7 @@ export { categoriesSeedData } from "./seed/index";
|
|
|
576
582
|
export { couponsSeedData } from "./seed/index";
|
|
577
583
|
export type { CouponUsageSeedRecord } from "./seed/index";
|
|
578
584
|
export { couponUsageSeedData } from "./seed/index";
|
|
585
|
+
export { claimedCouponsSeedData } from "./seed/index";
|
|
579
586
|
export { eventEntriesSeedData } from "./seed/index";
|
|
580
587
|
export { eventsSeedData } from "./seed/index";
|
|
581
588
|
export { faqSeedData } from "./seed/index";
|
|
@@ -1552,7 +1559,6 @@ export { CATEGORY_FIELDS } from "./features/categories/index";
|
|
|
1552
1559
|
export { CATEGORY_FILTER_KEYS } from "./features/categories/index";
|
|
1553
1560
|
export { CATEGORY_PUBLIC_SORT_OPTIONS } from "./features/categories/index";
|
|
1554
1561
|
export { CATEGORY_SELLER_SORT_OPTIONS } from "./features/categories/index";
|
|
1555
|
-
export { CategoriesListView } from "./features/categories/index";
|
|
1556
1562
|
export { CategoryCard } from "./features/categories/index";
|
|
1557
1563
|
export { CategoryFilters } from "./features/categories/index";
|
|
1558
1564
|
export { CategoryForm } from "./features/categories/index";
|
|
@@ -1594,7 +1600,6 @@ export { useCategoryDetail } from "./features/categories/index";
|
|
|
1594
1600
|
export { useCategorySelector } from "./features/categories/index";
|
|
1595
1601
|
export { useCreateCategory } from "./features/categories/index";
|
|
1596
1602
|
export type { BreadcrumbTrailProps } from "./features/categories/index";
|
|
1597
|
-
export type { CategoriesListViewProps } from "./features/categories/index";
|
|
1598
1603
|
export type { CategoriesResponse } from "./features/categories/index";
|
|
1599
1604
|
export type { Category } from "./features/categories/index";
|
|
1600
1605
|
export type { CategoryAncestor } from "./features/categories/index";
|
|
@@ -2306,7 +2311,6 @@ export { BundleCollage } from "./features/categories/components/BundleCollage";
|
|
|
2306
2311
|
export type { BundleCollageProps } from "./features/categories/components/BundleCollage";
|
|
2307
2312
|
export { BundleBuyNowCta } from "./features/categories/components/BundleBuyNowCta";
|
|
2308
2313
|
export type { BundleBuyNowCtaProps } from "./features/categories/components/BundleBuyNowCta";
|
|
2309
|
-
export { AuctionsView } from "./features/products/index";
|
|
2310
2314
|
export { BidHistory } from "./features/products/index";
|
|
2311
2315
|
export { BuyBar } from "./features/products/index";
|
|
2312
2316
|
export { DEFAULT_PRODUCT_DATA } from "./features/products/index";
|
|
@@ -2337,7 +2341,6 @@ export { PRODUCT_STATUS_OPTIONS } from "./features/products/index";
|
|
|
2337
2341
|
export { PRODUCT_UPDATABLE_FIELDS } from "./features/products/index";
|
|
2338
2342
|
export { PlaceBidForm } from "./features/products/index";
|
|
2339
2343
|
export { PreOrderDetailView } from "./features/products/index";
|
|
2340
|
-
export { PreOrdersView } from "./features/products/index";
|
|
2341
2344
|
export type { PrizeDrawsListingViewProps } from "./features/products/components/PrizeDrawsListingView";
|
|
2342
2345
|
export { PrizeDrawsIndexListing } from "./features/products/index";
|
|
2343
2346
|
export type { PrizeDrawsIndexListingProps } from "./features/products/index";
|
|
@@ -2391,7 +2394,6 @@ export { useProductDetail } from "./features/products/index";
|
|
|
2391
2394
|
export { useProducts } from "./features/products/index";
|
|
2392
2395
|
export { useRelatedProducts } from "./features/products/index";
|
|
2393
2396
|
export type { AuctionDetailViewProps } from "./features/products/index";
|
|
2394
|
-
export type { AuctionsViewProps } from "./features/products/index";
|
|
2395
2397
|
export type { BidHistoryEntry } from "./features/products/index";
|
|
2396
2398
|
export type { BidHistoryProps } from "./features/products/index";
|
|
2397
2399
|
export type { BuyBarProps } from "./features/products/index";
|
|
@@ -2400,7 +2402,6 @@ export type { ListingType } from "./features/products/index";
|
|
|
2400
2402
|
export type { MakeOfferFormProps } from "./features/products/index";
|
|
2401
2403
|
export type { PlaceBidFormProps } from "./features/products/index";
|
|
2402
2404
|
export type { PreOrderDetailViewProps } from "./features/products/index";
|
|
2403
|
-
export type { PreOrdersViewProps } from "./features/products/index";
|
|
2404
2405
|
export type { ProductAdminUpdateInput } from "./features/products/index";
|
|
2405
2406
|
export type { ProductCondition } from "./features/products/index";
|
|
2406
2407
|
export type { ProductCreateInput } from "./features/products/index";
|
|
@@ -2525,7 +2526,6 @@ export { ReviewFilters } from "./features/reviews/index";
|
|
|
2525
2526
|
export { ReviewStatusValues } from "./features/reviews/index";
|
|
2526
2527
|
export { ReviewSummary } from "./features/reviews/index";
|
|
2527
2528
|
export { ReviewsList } from "./features/reviews/index";
|
|
2528
|
-
export { ReviewsListView } from "./features/reviews/index";
|
|
2529
2529
|
export type { ReviewDetailPageViewProps } from "./features/reviews/components/ReviewDetailPageView";
|
|
2530
2530
|
export { ReviewsIndexListing } from "./features/reviews/components/ReviewsIndexListing";
|
|
2531
2531
|
export type { ReviewsIndexListingProps } from "./features/reviews/components/ReviewsIndexListing";
|
|
@@ -2562,7 +2562,6 @@ export type { ReviewUpdateInput } from "./features/reviews/index";
|
|
|
2562
2562
|
export type { ReviewVideo } from "./features/reviews/index";
|
|
2563
2563
|
export type { ReviewVideoField } from "./features/reviews/index";
|
|
2564
2564
|
export type { ReviewsListProps } from "./features/reviews/index";
|
|
2565
|
-
export type { ReviewsListViewProps } from "./features/reviews/index";
|
|
2566
2565
|
export type { ViewReviewModalProps } from "./features/reviews/index";
|
|
2567
2566
|
export { adminDeleteReview } from "./features/reviews/server";
|
|
2568
2567
|
export { adminUpdateReview } from "./features/reviews/server";
|
|
@@ -2629,6 +2628,12 @@ export { SellerDashboardView } from "./features/seller/index";
|
|
|
2629
2628
|
export { SellerEditProductView } from "./features/seller/index";
|
|
2630
2629
|
export { SellerGuideView } from "./features/seller/index";
|
|
2631
2630
|
export { SellerOffersView } from "./features/seller/index";
|
|
2631
|
+
export { SellerGroupedListingsView } from "./features/seller/index";
|
|
2632
|
+
export type { SellerGroupedListingsViewProps } from "./features/seller/index";
|
|
2633
|
+
export { SellerGroupedListingsView as StoreGroupedListingsView } from "./features/seller/index";
|
|
2634
|
+
export { SellerAnalyticsAlertsView } from "./features/seller/index";
|
|
2635
|
+
export type { SellerAnalyticsAlertsViewProps } from "./features/seller/index";
|
|
2636
|
+
export { SellerAnalyticsAlertsView as StoreAnalyticsAlertsView } from "./features/seller/index";
|
|
2632
2637
|
export { SellerOffersPanel } from "./features/seller/index";
|
|
2633
2638
|
export type { SellerOffersPanelProps, SellerOfferAction } from "./features/seller/index";
|
|
2634
2639
|
export { SellerOrdersView } from "./features/seller/index";
|
|
@@ -2801,7 +2806,6 @@ export { StoreNavTabs } from "./features/stores/index";
|
|
|
2801
2806
|
export { StoreProductsView } from "./features/stores/index";
|
|
2802
2807
|
export { StoreReviewsView } from "./features/stores/index";
|
|
2803
2808
|
export { StoreStatusValues } from "./features/stores/index";
|
|
2804
|
-
export { StoresListView } from "./features/stores/index";
|
|
2805
2809
|
export { StoresIndexListing } from "./features/stores/index";
|
|
2806
2810
|
export type { StoresIndexListingProps } from "./features/stores/index";
|
|
2807
2811
|
export { StoreProductsListing } from "./features/stores/components/StoreProductsListing";
|
|
@@ -2813,6 +2817,33 @@ export type { StoreReviewsListingProps } from "./features/stores/components/Stor
|
|
|
2813
2817
|
export { StoreReviewsPageView } from "./features/stores/components/StoreReviewsPageView";
|
|
2814
2818
|
export type { StorePrizeDrawsPageViewProps } from "./features/stores/components/StorePrizeDrawsPageView";
|
|
2815
2819
|
export type { StoreBundlesPageViewProps } from "./features/stores/components/StoreBundlesPageView";
|
|
2820
|
+
export { AdminGuideHubView } from "./features/admin/components/AdminGuideHubView";
|
|
2821
|
+
export type { AdminGuideHubViewProps } from "./features/admin/components/AdminGuideHubView";
|
|
2822
|
+
export { AdminUsersGuideView } from "./features/admin/components/AdminUsersGuideView";
|
|
2823
|
+
export { AdminCatalogGuideView } from "./features/admin/components/AdminCatalogGuideView";
|
|
2824
|
+
export { AdminStoresGuideView } from "./features/admin/components/AdminStoresGuideView";
|
|
2825
|
+
export { AdminOrdersGuideView } from "./features/admin/components/AdminOrdersGuideView";
|
|
2826
|
+
export { AdminContentGuideView } from "./features/admin/components/AdminContentGuideView";
|
|
2827
|
+
export { AdminSiteConfigGuideView } from "./features/admin/components/AdminSiteConfigGuideView";
|
|
2828
|
+
export { AdminTeamGuideView } from "./features/admin/components/AdminTeamGuideView";
|
|
2829
|
+
export { AdminAnalyticsGuideView } from "./features/admin/components/AdminAnalyticsGuideView";
|
|
2830
|
+
export { AdminTrustGuideView } from "./features/admin/components/AdminTrustGuideView";
|
|
2831
|
+
export { BuyerShoppingGuideView } from "./features/account/components/BuyerShoppingGuideView";
|
|
2832
|
+
export { BuyerAuctionsGuideView } from "./features/account/components/BuyerAuctionsGuideView";
|
|
2833
|
+
export { BuyerOrdersGuideView } from "./features/account/components/BuyerOrdersGuideView";
|
|
2834
|
+
export { BuyerAccountGuideView } from "./features/account/components/BuyerAccountGuideView";
|
|
2835
|
+
export { StoreGuideHubView } from "./features/stores/components/StoreGuideHubView";
|
|
2836
|
+
export type { StoreGuideHubViewProps } from "./features/stores/components/StoreGuideHubView";
|
|
2837
|
+
export { StoreListingsGuideView } from "./features/stores/components/StoreListingsGuideView";
|
|
2838
|
+
export type { StoreListingsGuideViewProps } from "./features/stores/components/StoreListingsGuideView";
|
|
2839
|
+
export { StoreOrdersGuideView } from "./features/stores/components/StoreOrdersGuideView";
|
|
2840
|
+
export type { StoreOrdersGuideViewProps } from "./features/stores/components/StoreOrdersGuideView";
|
|
2841
|
+
export { StoreFinanceGuideView } from "./features/stores/components/StoreFinanceGuideView";
|
|
2842
|
+
export type { StoreFinanceGuideViewProps } from "./features/stores/components/StoreFinanceGuideView";
|
|
2843
|
+
export { StoreCapabilitiesGuideView } from "./features/stores/components/StoreCapabilitiesGuideView";
|
|
2844
|
+
export type { StoreCapabilitiesGuideViewProps } from "./features/stores/components/StoreCapabilitiesGuideView";
|
|
2845
|
+
export { StoreSettingsGuideView } from "./features/stores/components/StoreSettingsGuideView";
|
|
2846
|
+
export type { StoreSettingsGuideViewProps } from "./features/stores/components/StoreSettingsGuideView";
|
|
2816
2847
|
export { StorePreOrdersListing } from "./features/stores/components/StorePreOrdersListing";
|
|
2817
2848
|
export type { StorePreOrdersListingProps } from "./features/stores/components/StorePreOrdersListing";
|
|
2818
2849
|
export { buildStoreColumns } from "./features/stores/index";
|
|
@@ -3098,3 +3129,23 @@ export { getDigitalCodeForDetail } from "./_internal/server/features/digital-cod
|
|
|
3098
3129
|
export { PRODUCT_CODES_SUBCOLLECTION } from "./features/products/schemas/firestore";
|
|
3099
3130
|
export type { ProductCodeDocument } from "./features/products/schemas/firestore";
|
|
3100
3131
|
export { getLiveItemForDetail } from "./_internal/server/features/live/data";
|
|
3132
|
+
export { MarketplaceBundleCard } from "./features/products/index";
|
|
3133
|
+
export type { MarketplaceBundleCardProps, MarketplaceBundleCardData, MarketplaceBundleCardLabels, } from "./features/products/index";
|
|
3134
|
+
export { SellerStoreCategoriesView } from "./features/seller/components/SellerStoreCategoriesView";
|
|
3135
|
+
export type { SellerStoreCategoriesViewProps } from "./features/seller/components/SellerStoreCategoriesView";
|
|
3136
|
+
export { SellerTemplatesView } from "./features/seller/components/SellerTemplatesView";
|
|
3137
|
+
export type { SellerTemplatesViewProps } from "./features/seller/components/SellerTemplatesView";
|
|
3138
|
+
export { SellerPayoutMethodsView } from "./features/seller/components/SellerPayoutMethodsView";
|
|
3139
|
+
export type { SellerPayoutMethodsViewProps } from "./features/seller/components/SellerPayoutMethodsView";
|
|
3140
|
+
export { SellerShippingConfigsView } from "./features/seller/components/SellerShippingConfigsView";
|
|
3141
|
+
export type { SellerShippingConfigsViewProps } from "./features/seller/components/SellerShippingConfigsView";
|
|
3142
|
+
export { SellerGoogleReviewsView } from "./features/seller/components/SellerGoogleReviewsView";
|
|
3143
|
+
export type { SellerGoogleReviewsViewProps } from "./features/seller/components/SellerGoogleReviewsView";
|
|
3144
|
+
export { SellerBundlesView } from "./features/seller/components/SellerBundlesView";
|
|
3145
|
+
export type { SellerBundlesViewProps } from "./features/seller/components/SellerBundlesView";
|
|
3146
|
+
export { SellerClassifiedView } from "./features/seller/components/SellerClassifiedView";
|
|
3147
|
+
export type { SellerClassifiedViewProps } from "./features/seller/components/SellerClassifiedView";
|
|
3148
|
+
export { SellerDigitalCodesView } from "./features/seller/components/SellerDigitalCodesView";
|
|
3149
|
+
export type { SellerDigitalCodesViewProps } from "./features/seller/components/SellerDigitalCodesView";
|
|
3150
|
+
export { SellerLiveView } from "./features/seller/components/SellerLiveView";
|
|
3151
|
+
export type { SellerLiveViewProps } from "./features/seller/components/SellerLiveView";
|
package/dist/index.js
CHANGED
|
@@ -932,6 +932,8 @@ export { resolvePermissions } from "./security/index";
|
|
|
932
932
|
// [DB]-Database layer â€" uses firebase-admin or another server-side DB SDK; can only run in a trusted server environment.
|
|
933
933
|
// AddressesRepository - unified top-level addresses collection (SB-UNI-A 2026-05-13).
|
|
934
934
|
export { AddressesRepository } from "./repositories/index";
|
|
935
|
+
// S-STORE foundation — 14 schemas + 14 repositories + RBAC
|
|
936
|
+
export * from "./features/store-extensions/index";
|
|
935
937
|
// [DB]-Database layer â€" uses firebase-admin or another server-side DB SDK; can only run in a trusted server environment.
|
|
936
938
|
// BaseRepository - Shared export for base repository.
|
|
937
939
|
export { BaseRepository } from "./repositories/index";
|
|
@@ -1035,6 +1037,8 @@ export { chatRepository } from "./repositories/index";
|
|
|
1035
1037
|
// [DB]-Database layer â€" uses firebase-admin or another server-side DB SDK; can only run in a trusted server environment.
|
|
1036
1038
|
// couponsRepository - Shared export for coupons repository.
|
|
1037
1039
|
export { couponsRepository } from "./repositories/index";
|
|
1040
|
+
// [DB] claimedCouponsRepository — user-wallet claims (plan §10).
|
|
1041
|
+
export { claimedCouponsRepository, ClaimedCouponsRepository } from "./repositories/index";
|
|
1038
1042
|
// [DB]-Database layer â€" uses firebase-admin or another server-side DB SDK; can only run in a trusted server environment.
|
|
1039
1043
|
// emailVerificationTokenRepository - Shared export for email verification token repository.
|
|
1040
1044
|
export { emailVerificationTokenRepository } from "./repositories/index";
|
|
@@ -1094,6 +1098,8 @@ export { ELIGIBLE_ORDER_STATUSES_FOR_TICKET, SUPPORT_TICKET_COLLECTION, ACTIVE_T
|
|
|
1094
1098
|
// Support tickets â€" seed data
|
|
1095
1099
|
export { supportTicketsSeedData } from "./seed/index";
|
|
1096
1100
|
export { offersSeedData } from "./seed/index";
|
|
1101
|
+
// S-STORE foundation seed data
|
|
1102
|
+
export { payoutMethodsSeedData, shippingConfigsSeedData, analyticsCardsSeedData, analyticsAlertsSeedData, storeCategoriesSeedData, listingTemplatesSeedData, moderationQueueSeedData, reportsSeedData, itemRequestsSeedData, storeWhatsAppConfigSeedData, storeGoogleConfigSeedData, } from "./seed/index";
|
|
1097
1103
|
// SB-UNI-B â€" sublistingCategoriesRepository + SublistingCategoryDocument deleted.
|
|
1098
1104
|
// Use categoriesRepository.findBySlugAndType(slug, "sublisting") and CategoryDocument with categoryType:"sublisting".
|
|
1099
1105
|
// [DB]-Database layer â€" uses firebase-admin; server-only.
|
|
@@ -1112,6 +1118,7 @@ export { userRepository } from "./repositories/index";
|
|
|
1112
1118
|
// [DB]-Database layer â€" uses firebase-admin or another server-side DB SDK; can only run in a trusted server environment.
|
|
1113
1119
|
// wishlistRepository - Shared export for wishlist repository.
|
|
1114
1120
|
export { wishlistRepository } from "./repositories/index";
|
|
1121
|
+
export { GroupedListingsRepository, groupedListingsRepository } from "./repositories/index";
|
|
1115
1122
|
// ./seed/index
|
|
1116
1123
|
// [SERVER-ONLY]-Server-only â€" uses Node.js, Next.js server internals, or third-party server SDKs (auth, email, payment, shipping).
|
|
1117
1124
|
// ADDRESS_FIXTURES - Constant used across modules.
|
|
@@ -1184,6 +1191,8 @@ export { categoriesSeedData } from "./seed/index";
|
|
|
1184
1191
|
// couponsSeedData - Model for coupons seed data.
|
|
1185
1192
|
export { couponsSeedData } from "./seed/index";
|
|
1186
1193
|
export { couponUsageSeedData } from "./seed/index";
|
|
1194
|
+
// claimedCouponsSeedData - Plan §10 wallet seed (active/expired/used rows).
|
|
1195
|
+
export { claimedCouponsSeedData } from "./seed/index";
|
|
1187
1196
|
// demoSeed has been moved to "@mohasinac/appkit/server" â€" it transitively
|
|
1188
1197
|
// reaches firebase-admin via the seed runner, which must not leak into client
|
|
1189
1198
|
// bundles. Import from `@mohasinac/appkit/server` in server-only code.
|
|
@@ -2969,9 +2978,6 @@ export { CATEGORY_PUBLIC_SORT_OPTIONS } from "./features/categories/index";
|
|
|
2969
2978
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
2970
2979
|
// CATEGORY_SELLER_SORT_OPTIONS - Constant used across modules.
|
|
2971
2980
|
export { CATEGORY_SELLER_SORT_OPTIONS } from "./features/categories/index";
|
|
2972
|
-
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
2973
|
-
// CategoriesListView - Component for categories list view.
|
|
2974
|
-
export { CategoriesListView } from "./features/categories/index";
|
|
2975
2981
|
// [SERVER-RSC]-Self-fetching index/detail page views for categories.
|
|
2976
2982
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
2977
2983
|
// CategoryCard - Component for category card.
|
|
@@ -4278,9 +4284,6 @@ export { BundleBuyNowCta } from "./features/categories/components/BundleBuyNowCt
|
|
|
4278
4284
|
// CategoryBundlesListing is also re-exported lower in this file (line ~8871);
|
|
4279
4285
|
// the canonical export lives there next to BUNDLE_MIN_ITEMS / BUNDLE_MAX_ITEMS.
|
|
4280
4286
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
4281
|
-
// AuctionsView - Component for auctions view.
|
|
4282
|
-
export { AuctionsView } from "./features/products/index";
|
|
4283
|
-
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
4284
4287
|
// BidHistory - Shared export for bid history.
|
|
4285
4288
|
export { BidHistory } from "./features/products/index";
|
|
4286
4289
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
@@ -4344,9 +4347,6 @@ export { PlaceBidForm } from "./features/products/index";
|
|
|
4344
4347
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
4345
4348
|
// PreOrderDetailView - Component for pre order detail view.
|
|
4346
4349
|
export { PreOrderDetailView } from "./features/products/index";
|
|
4347
|
-
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
4348
|
-
// PreOrdersView - Component for pre orders view.
|
|
4349
|
-
export { PreOrdersView } from "./features/products/index";
|
|
4350
4350
|
// [CLIENT]-Client toolbar+grid for prize draws (SB4-F).
|
|
4351
4351
|
export { PrizeDrawsIndexListing } from "./features/products/index";
|
|
4352
4352
|
// [CLIENT]-Marketplace card for prize draws (SB4-F).
|
|
@@ -4673,9 +4673,6 @@ export { ReviewSummary } from "./features/reviews/index";
|
|
|
4673
4673
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
4674
4674
|
// ReviewsList - Shared export for reviews list.
|
|
4675
4675
|
export { ReviewsList } from "./features/reviews/index";
|
|
4676
|
-
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
4677
|
-
// ReviewsListView - Component for reviews list view.
|
|
4678
|
-
export { ReviewsListView } from "./features/reviews/index";
|
|
4679
4676
|
// ReviewsIndexListing - Client listing component with sort/filter/pagination.
|
|
4680
4677
|
export { ReviewsIndexListing } from "./features/reviews/components/ReviewsIndexListing";
|
|
4681
4678
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
@@ -4865,6 +4862,10 @@ export { SellerGuideView } from "./features/seller/index";
|
|
|
4865
4862
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
4866
4863
|
// SellerOffersView - Component for seller offers view.
|
|
4867
4864
|
export { SellerOffersView } from "./features/seller/index";
|
|
4865
|
+
export { SellerGroupedListingsView } from "./features/seller/index";
|
|
4866
|
+
export { SellerGroupedListingsView as StoreGroupedListingsView } from "./features/seller/index";
|
|
4867
|
+
export { SellerAnalyticsAlertsView } from "./features/seller/index";
|
|
4868
|
+
export { SellerAnalyticsAlertsView as StoreAnalyticsAlertsView } from "./features/seller/index";
|
|
4868
4869
|
// [CLIENT]-Runs in browser only â€" uses useState/useEffect/fetch.
|
|
4869
4870
|
// SellerOffersPanel - Interactive panel with accept/decline/counter actions for seller offers.
|
|
4870
4871
|
export { SellerOffersPanel } from "./features/seller/index";
|
|
@@ -5158,15 +5159,52 @@ export { StoreReviewsView } from "./features/stores/index";
|
|
|
5158
5159
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
5159
5160
|
// StoreStatusValues - Model for store status values.
|
|
5160
5161
|
export { StoreStatusValues } from "./features/stores/index";
|
|
5161
|
-
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
5162
|
-
// StoresListView - Component for stores list view.
|
|
5163
|
-
export { StoresListView } from "./features/stores/index";
|
|
5164
5162
|
// [SERVER-RSC] â€" Self-fetching RSC page views for store tab pages.
|
|
5165
5163
|
export { StoresIndexListing } from "./features/stores/index";
|
|
5166
5164
|
export { StoreProductsListing } from "./features/stores/components/StoreProductsListing";
|
|
5167
5165
|
export { StoreAuctionsListing } from "./features/stores/components/StoreAuctionsListing";
|
|
5168
5166
|
export { StoreReviewsListing } from "./features/stores/components/StoreReviewsListing";
|
|
5169
5167
|
export { StoreReviewsPageView } from "./features/stores/components/StoreReviewsPageView";
|
|
5168
|
+
// [CLIENT-SSR]-Admin guide hub — static view, permission-aware card grid.
|
|
5169
|
+
export { AdminGuideHubView } from "./features/admin/components/AdminGuideHubView";
|
|
5170
|
+
// [CLIENT-SSR]-Admin users guide — static view, no firebase-admin.
|
|
5171
|
+
export { AdminUsersGuideView } from "./features/admin/components/AdminUsersGuideView";
|
|
5172
|
+
// [CLIENT-SSR]-Admin catalog guide — static view, no firebase-admin.
|
|
5173
|
+
export { AdminCatalogGuideView } from "./features/admin/components/AdminCatalogGuideView";
|
|
5174
|
+
// [CLIENT-SSR]-Admin stores guide — static view, no firebase-admin.
|
|
5175
|
+
export { AdminStoresGuideView } from "./features/admin/components/AdminStoresGuideView";
|
|
5176
|
+
// [CLIENT-SSR]-Admin orders guide — static view, no firebase-admin.
|
|
5177
|
+
export { AdminOrdersGuideView } from "./features/admin/components/AdminOrdersGuideView";
|
|
5178
|
+
// [CLIENT-SSR]-Admin content guide — static view, no firebase-admin.
|
|
5179
|
+
export { AdminContentGuideView } from "./features/admin/components/AdminContentGuideView";
|
|
5180
|
+
// [CLIENT-SSR]-Admin site config guide — static view, no firebase-admin.
|
|
5181
|
+
export { AdminSiteConfigGuideView } from "./features/admin/components/AdminSiteConfigGuideView";
|
|
5182
|
+
// [CLIENT-SSR]-Admin team guide — static view, no firebase-admin.
|
|
5183
|
+
export { AdminTeamGuideView } from "./features/admin/components/AdminTeamGuideView";
|
|
5184
|
+
// [CLIENT-SSR]-Admin analytics guide — static view, no firebase-admin.
|
|
5185
|
+
export { AdminAnalyticsGuideView } from "./features/admin/components/AdminAnalyticsGuideView";
|
|
5186
|
+
// [CLIENT-SSR]-Admin trust & safety guide — static view, no firebase-admin.
|
|
5187
|
+
export { AdminTrustGuideView } from "./features/admin/components/AdminTrustGuideView";
|
|
5188
|
+
// [CLIENT-SSR]-Buyer shopping guide — static view, no firebase-admin.
|
|
5189
|
+
export { BuyerShoppingGuideView } from "./features/account/components/BuyerShoppingGuideView";
|
|
5190
|
+
// [CLIENT-SSR]-Buyer auctions & pre-orders guide — static view, no firebase-admin.
|
|
5191
|
+
export { BuyerAuctionsGuideView } from "./features/account/components/BuyerAuctionsGuideView";
|
|
5192
|
+
// [CLIENT-SSR]-Buyer orders & returns guide — static view, no firebase-admin.
|
|
5193
|
+
export { BuyerOrdersGuideView } from "./features/account/components/BuyerOrdersGuideView";
|
|
5194
|
+
// [CLIENT-SSR]-Buyer account & safety guide — static view, no firebase-admin.
|
|
5195
|
+
export { BuyerAccountGuideView } from "./features/account/components/BuyerAccountGuideView";
|
|
5196
|
+
// [CLIENT-SSR]-Store seller guide hub — static view, no firebase-admin.
|
|
5197
|
+
export { StoreGuideHubView } from "./features/stores/components/StoreGuideHubView";
|
|
5198
|
+
// [CLIENT-SSR]-Store listings guide — static view, no firebase-admin.
|
|
5199
|
+
export { StoreListingsGuideView } from "./features/stores/components/StoreListingsGuideView";
|
|
5200
|
+
// [CLIENT-SSR]-Store orders guide — static view, no firebase-admin.
|
|
5201
|
+
export { StoreOrdersGuideView } from "./features/stores/components/StoreOrdersGuideView";
|
|
5202
|
+
// [CLIENT-SSR]-Store finance guide — static view, no firebase-admin.
|
|
5203
|
+
export { StoreFinanceGuideView } from "./features/stores/components/StoreFinanceGuideView";
|
|
5204
|
+
// [CLIENT-SSR]-Store capabilities guide — static view, no firebase-admin.
|
|
5205
|
+
export { StoreCapabilitiesGuideView } from "./features/stores/components/StoreCapabilitiesGuideView";
|
|
5206
|
+
// [CLIENT-SSR]-Store settings guide — static view, no firebase-admin.
|
|
5207
|
+
export { StoreSettingsGuideView } from "./features/stores/components/StoreSettingsGuideView";
|
|
5170
5208
|
export { StorePreOrdersListing } from "./features/stores/components/StorePreOrdersListing";
|
|
5171
5209
|
// [CLIENT-SSR]-Runs in both SSR and browser â€" React component or hook that does not depend on browser-only APIs.
|
|
5172
5210
|
// buildStoreColumns - Helper for build store columns.
|
|
@@ -5534,3 +5572,16 @@ export { getDigitalCodeForDetail } from "./_internal/server/features/digital-cod
|
|
|
5534
5572
|
export { PRODUCT_CODES_SUBCOLLECTION } from "./features/products/schemas/firestore";
|
|
5535
5573
|
// ── Live-item listing feature ─────────────────────────────────────────────────
|
|
5536
5574
|
export { getLiveItemForDetail } from "./_internal/server/features/live/data";
|
|
5575
|
+
// ── MarketplaceBundleCard (W3) ────────────────────────────────────────────────
|
|
5576
|
+
export { MarketplaceBundleCard } from "./features/products/index";
|
|
5577
|
+
// ── Wave 4 Seller management views ───────────────────────────────────────────
|
|
5578
|
+
export { SellerStoreCategoriesView } from "./features/seller/components/SellerStoreCategoriesView";
|
|
5579
|
+
export { SellerTemplatesView } from "./features/seller/components/SellerTemplatesView";
|
|
5580
|
+
export { SellerPayoutMethodsView } from "./features/seller/components/SellerPayoutMethodsView";
|
|
5581
|
+
export { SellerShippingConfigsView } from "./features/seller/components/SellerShippingConfigsView";
|
|
5582
|
+
export { SellerGoogleReviewsView } from "./features/seller/components/SellerGoogleReviewsView";
|
|
5583
|
+
// ── Wave 5 listing-type views ─────────────────────────────────────────────────
|
|
5584
|
+
export { SellerBundlesView } from "./features/seller/components/SellerBundlesView";
|
|
5585
|
+
export { SellerClassifiedView } from "./features/seller/components/SellerClassifiedView";
|
|
5586
|
+
export { SellerDigitalCodesView } from "./features/seller/components/SellerDigitalCodesView";
|
|
5587
|
+
export { SellerLiveView } from "./features/seller/components/SellerLiveView";
|
|
@@ -53,6 +53,10 @@ export declare const DEFAULT_ROUTE_MAP: {
|
|
|
53
53
|
readonly CONTACT: "/contact";
|
|
54
54
|
readonly BLOG: "/blog";
|
|
55
55
|
readonly HELP: "/help";
|
|
56
|
+
readonly HELP_SHOPPING: "/help/shopping";
|
|
57
|
+
readonly HELP_AUCTIONS: "/help/auctions";
|
|
58
|
+
readonly HELP_ORDERS: "/help/orders";
|
|
59
|
+
readonly HELP_ACCOUNT: "/help/account";
|
|
56
60
|
readonly TERMS: "/terms";
|
|
57
61
|
readonly PRIVACY: "/privacy";
|
|
58
62
|
readonly SECURITY: "/security";
|
|
@@ -80,6 +84,10 @@ export declare const DEFAULT_ROUTE_MAP: {
|
|
|
80
84
|
readonly SCAMS: "/scams";
|
|
81
85
|
readonly SCAM_DETAIL: (id: string) => string;
|
|
82
86
|
readonly SCAM_REPORT: "/scams/report";
|
|
87
|
+
readonly REPORT_ENTITY: "/report";
|
|
88
|
+
readonly ITEM_REQUESTS: "/item-requests";
|
|
89
|
+
readonly ITEM_REQUEST_DETAIL: (id: string) => string;
|
|
90
|
+
readonly ITEM_REQUESTS_NEW: "/item-requests/new";
|
|
83
91
|
readonly SCAM_TYPES: "/scams/types";
|
|
84
92
|
readonly SCAM_FAQS: "/scams/faqs";
|
|
85
93
|
readonly CLASSIFIED: "/classified";
|
|
@@ -116,6 +124,8 @@ export declare const DEFAULT_ROUTE_MAP: {
|
|
|
116
124
|
readonly ORDER_INVOICE: (id: string) => string;
|
|
117
125
|
readonly NOTIFICATIONS: "/user/notifications";
|
|
118
126
|
readonly MESSAGES: "/user/messages";
|
|
127
|
+
/** Plan §10 — claimed-coupons wallet (Active / Expired / Used tabs). */
|
|
128
|
+
readonly CLAIMED_COUPONS: "/user/coupons";
|
|
119
129
|
readonly BECOME_SELLER: "/user/become-seller";
|
|
120
130
|
readonly CART: "/cart";
|
|
121
131
|
readonly CHECKOUT: "/checkout";
|
|
@@ -185,6 +195,30 @@ export declare const DEFAULT_ROUTE_MAP: {
|
|
|
185
195
|
readonly LIVE_ITEMS_EDIT: (id: string) => string;
|
|
186
196
|
readonly PRINT_CENTER: "/store/print-center";
|
|
187
197
|
readonly INVENTORY_PRINT: "/store/inventory/print";
|
|
198
|
+
readonly PAYOUT_METHODS: "/store/payout-methods";
|
|
199
|
+
readonly PAYOUT_METHODS_NEW: "/store/payout-methods/new";
|
|
200
|
+
readonly PAYOUT_METHODS_EDIT: (id: string) => string;
|
|
201
|
+
readonly SHIPPING_CONFIGS: "/store/shipping-configs";
|
|
202
|
+
readonly SHIPPING_CONFIGS_NEW: "/store/shipping-configs/new";
|
|
203
|
+
readonly SHIPPING_CONFIGS_EDIT: (id: string) => string;
|
|
204
|
+
readonly ANALYTICS_CARDS: "/store/analytics/cards";
|
|
205
|
+
readonly ANALYTICS_ALERTS: "/store/analytics/alerts";
|
|
206
|
+
readonly GROUPED_LISTINGS: "/store/grouped-listings";
|
|
207
|
+
readonly GROUPED_LISTINGS_NEW: "/store/grouped-listings/new";
|
|
208
|
+
readonly GROUPED_LISTINGS_EDIT: (id: string) => string;
|
|
209
|
+
readonly STORE_CATEGORIES: "/store/categories";
|
|
210
|
+
readonly STORE_CATEGORIES_NEW: "/store/categories/new";
|
|
211
|
+
readonly STORE_CATEGORIES_EDIT: (id: string) => string;
|
|
212
|
+
readonly LISTING_TEMPLATES: "/store/listing-templates";
|
|
213
|
+
readonly LISTING_TEMPLATES_NEW: "/store/listing-templates/new";
|
|
214
|
+
readonly LISTING_TEMPLATES_EDIT: (id: string) => string;
|
|
215
|
+
readonly GOOGLE_REVIEWS: "/store/google-reviews";
|
|
216
|
+
readonly GUIDE: "/store/guide";
|
|
217
|
+
readonly GUIDE_LISTINGS: "/store/guide/listings";
|
|
218
|
+
readonly GUIDE_ORDERS: "/store/guide/orders";
|
|
219
|
+
readonly GUIDE_FINANCE: "/store/guide/finance";
|
|
220
|
+
readonly GUIDE_CAPABILITIES: "/store/guide/capabilities";
|
|
221
|
+
readonly GUIDE_SETTINGS: "/store/guide/settings";
|
|
188
222
|
};
|
|
189
223
|
readonly ADMIN: {
|
|
190
224
|
readonly DASHBOARD: "/admin/dashboard";
|
|
@@ -266,6 +300,27 @@ export declare const DEFAULT_ROUTE_MAP: {
|
|
|
266
300
|
readonly SETTINGS_ACTIONS: "/admin/settings/actions";
|
|
267
301
|
readonly SETTINGS_NAVIGATION: "/admin/settings/navigation";
|
|
268
302
|
readonly PRINT_CENTER: "/admin/print-center";
|
|
303
|
+
readonly MODERATION: "/admin/moderation";
|
|
304
|
+
readonly MODERATION_DETAIL: (id: string) => string;
|
|
305
|
+
readonly REPORTS: "/admin/reports";
|
|
306
|
+
readonly REPORT_DETAIL: (id: string) => string;
|
|
307
|
+
readonly ITEM_REQUESTS: "/admin/item-requests";
|
|
308
|
+
readonly ITEM_REQUEST_DETAIL: (id: string) => string;
|
|
309
|
+
readonly ROLES: "/admin/roles";
|
|
310
|
+
readonly ROLES_NEW: "/admin/roles/new";
|
|
311
|
+
readonly ROLES_EDIT: (id: string) => string;
|
|
312
|
+
readonly PERMISSIONS: "/admin/permissions";
|
|
313
|
+
readonly ADMIN_NOTIFICATIONS: "/admin/admin-notifications";
|
|
314
|
+
readonly GUIDE: "/admin/guide";
|
|
315
|
+
readonly GUIDE_USERS: "/admin/guide/users";
|
|
316
|
+
readonly GUIDE_CATALOG: "/admin/guide/catalog";
|
|
317
|
+
readonly GUIDE_STORES: "/admin/guide/stores";
|
|
318
|
+
readonly GUIDE_ORDERS: "/admin/guide/orders";
|
|
319
|
+
readonly GUIDE_CONTENT: "/admin/guide/content";
|
|
320
|
+
readonly GUIDE_SITE: "/admin/guide/site";
|
|
321
|
+
readonly GUIDE_TEAM: "/admin/guide/team";
|
|
322
|
+
readonly GUIDE_ANALYTICS: "/admin/guide/analytics";
|
|
323
|
+
readonly GUIDE_TRUST: "/admin/guide/trust";
|
|
269
324
|
};
|
|
270
325
|
readonly DEMO: {
|
|
271
326
|
readonly SEED: "/demo/seed";
|
|
@@ -318,6 +373,10 @@ export declare const ROUTES: {
|
|
|
318
373
|
readonly CONTACT: "/contact";
|
|
319
374
|
readonly BLOG: "/blog";
|
|
320
375
|
readonly HELP: "/help";
|
|
376
|
+
readonly HELP_SHOPPING: "/help/shopping";
|
|
377
|
+
readonly HELP_AUCTIONS: "/help/auctions";
|
|
378
|
+
readonly HELP_ORDERS: "/help/orders";
|
|
379
|
+
readonly HELP_ACCOUNT: "/help/account";
|
|
321
380
|
readonly TERMS: "/terms";
|
|
322
381
|
readonly PRIVACY: "/privacy";
|
|
323
382
|
readonly SECURITY: "/security";
|
|
@@ -345,6 +404,10 @@ export declare const ROUTES: {
|
|
|
345
404
|
readonly SCAMS: "/scams";
|
|
346
405
|
readonly SCAM_DETAIL: (id: string) => string;
|
|
347
406
|
readonly SCAM_REPORT: "/scams/report";
|
|
407
|
+
readonly REPORT_ENTITY: "/report";
|
|
408
|
+
readonly ITEM_REQUESTS: "/item-requests";
|
|
409
|
+
readonly ITEM_REQUEST_DETAIL: (id: string) => string;
|
|
410
|
+
readonly ITEM_REQUESTS_NEW: "/item-requests/new";
|
|
348
411
|
readonly SCAM_TYPES: "/scams/types";
|
|
349
412
|
readonly SCAM_FAQS: "/scams/faqs";
|
|
350
413
|
readonly CLASSIFIED: "/classified";
|
|
@@ -381,6 +444,8 @@ export declare const ROUTES: {
|
|
|
381
444
|
readonly ORDER_INVOICE: (id: string) => string;
|
|
382
445
|
readonly NOTIFICATIONS: "/user/notifications";
|
|
383
446
|
readonly MESSAGES: "/user/messages";
|
|
447
|
+
/** Plan §10 — claimed-coupons wallet (Active / Expired / Used tabs). */
|
|
448
|
+
readonly CLAIMED_COUPONS: "/user/coupons";
|
|
384
449
|
readonly BECOME_SELLER: "/user/become-seller";
|
|
385
450
|
readonly CART: "/cart";
|
|
386
451
|
readonly CHECKOUT: "/checkout";
|
|
@@ -450,6 +515,30 @@ export declare const ROUTES: {
|
|
|
450
515
|
readonly LIVE_ITEMS_EDIT: (id: string) => string;
|
|
451
516
|
readonly PRINT_CENTER: "/store/print-center";
|
|
452
517
|
readonly INVENTORY_PRINT: "/store/inventory/print";
|
|
518
|
+
readonly PAYOUT_METHODS: "/store/payout-methods";
|
|
519
|
+
readonly PAYOUT_METHODS_NEW: "/store/payout-methods/new";
|
|
520
|
+
readonly PAYOUT_METHODS_EDIT: (id: string) => string;
|
|
521
|
+
readonly SHIPPING_CONFIGS: "/store/shipping-configs";
|
|
522
|
+
readonly SHIPPING_CONFIGS_NEW: "/store/shipping-configs/new";
|
|
523
|
+
readonly SHIPPING_CONFIGS_EDIT: (id: string) => string;
|
|
524
|
+
readonly ANALYTICS_CARDS: "/store/analytics/cards";
|
|
525
|
+
readonly ANALYTICS_ALERTS: "/store/analytics/alerts";
|
|
526
|
+
readonly GROUPED_LISTINGS: "/store/grouped-listings";
|
|
527
|
+
readonly GROUPED_LISTINGS_NEW: "/store/grouped-listings/new";
|
|
528
|
+
readonly GROUPED_LISTINGS_EDIT: (id: string) => string;
|
|
529
|
+
readonly STORE_CATEGORIES: "/store/categories";
|
|
530
|
+
readonly STORE_CATEGORIES_NEW: "/store/categories/new";
|
|
531
|
+
readonly STORE_CATEGORIES_EDIT: (id: string) => string;
|
|
532
|
+
readonly LISTING_TEMPLATES: "/store/listing-templates";
|
|
533
|
+
readonly LISTING_TEMPLATES_NEW: "/store/listing-templates/new";
|
|
534
|
+
readonly LISTING_TEMPLATES_EDIT: (id: string) => string;
|
|
535
|
+
readonly GOOGLE_REVIEWS: "/store/google-reviews";
|
|
536
|
+
readonly GUIDE: "/store/guide";
|
|
537
|
+
readonly GUIDE_LISTINGS: "/store/guide/listings";
|
|
538
|
+
readonly GUIDE_ORDERS: "/store/guide/orders";
|
|
539
|
+
readonly GUIDE_FINANCE: "/store/guide/finance";
|
|
540
|
+
readonly GUIDE_CAPABILITIES: "/store/guide/capabilities";
|
|
541
|
+
readonly GUIDE_SETTINGS: "/store/guide/settings";
|
|
453
542
|
};
|
|
454
543
|
readonly ADMIN: {
|
|
455
544
|
readonly DASHBOARD: "/admin/dashboard";
|
|
@@ -531,6 +620,27 @@ export declare const ROUTES: {
|
|
|
531
620
|
readonly SETTINGS_ACTIONS: "/admin/settings/actions";
|
|
532
621
|
readonly SETTINGS_NAVIGATION: "/admin/settings/navigation";
|
|
533
622
|
readonly PRINT_CENTER: "/admin/print-center";
|
|
623
|
+
readonly MODERATION: "/admin/moderation";
|
|
624
|
+
readonly MODERATION_DETAIL: (id: string) => string;
|
|
625
|
+
readonly REPORTS: "/admin/reports";
|
|
626
|
+
readonly REPORT_DETAIL: (id: string) => string;
|
|
627
|
+
readonly ITEM_REQUESTS: "/admin/item-requests";
|
|
628
|
+
readonly ITEM_REQUEST_DETAIL: (id: string) => string;
|
|
629
|
+
readonly ROLES: "/admin/roles";
|
|
630
|
+
readonly ROLES_NEW: "/admin/roles/new";
|
|
631
|
+
readonly ROLES_EDIT: (id: string) => string;
|
|
632
|
+
readonly PERMISSIONS: "/admin/permissions";
|
|
633
|
+
readonly ADMIN_NOTIFICATIONS: "/admin/admin-notifications";
|
|
634
|
+
readonly GUIDE: "/admin/guide";
|
|
635
|
+
readonly GUIDE_USERS: "/admin/guide/users";
|
|
636
|
+
readonly GUIDE_CATALOG: "/admin/guide/catalog";
|
|
637
|
+
readonly GUIDE_STORES: "/admin/guide/stores";
|
|
638
|
+
readonly GUIDE_ORDERS: "/admin/guide/orders";
|
|
639
|
+
readonly GUIDE_CONTENT: "/admin/guide/content";
|
|
640
|
+
readonly GUIDE_SITE: "/admin/guide/site";
|
|
641
|
+
readonly GUIDE_TEAM: "/admin/guide/team";
|
|
642
|
+
readonly GUIDE_ANALYTICS: "/admin/guide/analytics";
|
|
643
|
+
readonly GUIDE_TRUST: "/admin/guide/trust";
|
|
534
644
|
};
|
|
535
645
|
readonly DEMO: {
|
|
536
646
|
readonly SEED: "/demo/seed";
|
|
@@ -595,6 +705,30 @@ export declare const SELLER_ROUTES: {
|
|
|
595
705
|
readonly LIVE_ITEMS_EDIT: (id: string) => string;
|
|
596
706
|
readonly PRINT_CENTER: "/store/print-center";
|
|
597
707
|
readonly INVENTORY_PRINT: "/store/inventory/print";
|
|
708
|
+
readonly PAYOUT_METHODS: "/store/payout-methods";
|
|
709
|
+
readonly PAYOUT_METHODS_NEW: "/store/payout-methods/new";
|
|
710
|
+
readonly PAYOUT_METHODS_EDIT: (id: string) => string;
|
|
711
|
+
readonly SHIPPING_CONFIGS: "/store/shipping-configs";
|
|
712
|
+
readonly SHIPPING_CONFIGS_NEW: "/store/shipping-configs/new";
|
|
713
|
+
readonly SHIPPING_CONFIGS_EDIT: (id: string) => string;
|
|
714
|
+
readonly ANALYTICS_CARDS: "/store/analytics/cards";
|
|
715
|
+
readonly ANALYTICS_ALERTS: "/store/analytics/alerts";
|
|
716
|
+
readonly GROUPED_LISTINGS: "/store/grouped-listings";
|
|
717
|
+
readonly GROUPED_LISTINGS_NEW: "/store/grouped-listings/new";
|
|
718
|
+
readonly GROUPED_LISTINGS_EDIT: (id: string) => string;
|
|
719
|
+
readonly STORE_CATEGORIES: "/store/categories";
|
|
720
|
+
readonly STORE_CATEGORIES_NEW: "/store/categories/new";
|
|
721
|
+
readonly STORE_CATEGORIES_EDIT: (id: string) => string;
|
|
722
|
+
readonly LISTING_TEMPLATES: "/store/listing-templates";
|
|
723
|
+
readonly LISTING_TEMPLATES_NEW: "/store/listing-templates/new";
|
|
724
|
+
readonly LISTING_TEMPLATES_EDIT: (id: string) => string;
|
|
725
|
+
readonly GOOGLE_REVIEWS: "/store/google-reviews";
|
|
726
|
+
readonly GUIDE: "/store/guide";
|
|
727
|
+
readonly GUIDE_LISTINGS: "/store/guide/listings";
|
|
728
|
+
readonly GUIDE_ORDERS: "/store/guide/orders";
|
|
729
|
+
readonly GUIDE_FINANCE: "/store/guide/finance";
|
|
730
|
+
readonly GUIDE_CAPABILITIES: "/store/guide/capabilities";
|
|
731
|
+
readonly GUIDE_SETTINGS: "/store/guide/settings";
|
|
598
732
|
};
|
|
599
733
|
export declare const PUBLIC_ROUTES: readonly ["/", string, string, string, string, string, string, string, string, string, string, string, string, string, string, string, "/unauthorized", "/auth/login", "/auth/register", "/auth/forgot-password", "/auth/reset-password", "/auth/verify-email"];
|
|
600
734
|
export declare const PROTECTED_ROUTES: readonly [string, string, string, string, string, string, string];
|