@mohasinac/appkit 2.3.2 → 2.4.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/client.d.ts +48 -12
- package/dist/client.js +25 -6
- package/dist/constants/api-endpoints.d.ts +380 -22
- package/dist/constants/api-endpoints.js +66 -13
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/core/hooks/useSyncManager.d.ts +1 -0
- package/dist/core/hooks/useSyncManager.js +83 -0
- package/dist/core/integration-keys.d.ts +4 -0
- package/dist/core/integration-keys.js +8 -0
- package/dist/features/about/components/FAQPageView.js +9 -11
- package/dist/features/about/components/PolicyPageView.js +32 -11
- package/dist/features/about/components/PublicProfileView.js +77 -11
- package/dist/features/account/components/AddressesIndexListing.js +63 -38
- package/dist/features/account/components/UserOffersPanel.d.ts +8 -0
- package/dist/features/account/components/UserOffersPanel.js +81 -0
- package/dist/features/account/components/UserSettingsView.d.ts +2 -1
- package/dist/features/account/components/UserSettingsView.js +2 -1
- package/dist/features/account/components/UserSidebar.d.ts +6 -1
- package/dist/features/account/components/UserSidebar.js +48 -42
- package/dist/features/account/components/index.d.ts +2 -0
- package/dist/features/account/components/index.js +1 -0
- package/dist/features/admin/actions/admin-actions.d.ts +1 -1
- package/dist/features/admin/actions/admin-actions.js +13 -3
- package/dist/features/admin/components/AdminAdEditorView.js +6 -7
- package/dist/features/admin/components/AdminAllEventEntriesView.d.ts +4 -0
- package/dist/features/admin/components/AdminAllEventEntriesView.js +102 -0
- package/dist/features/admin/components/AdminBidsView.js +94 -8
- package/dist/features/admin/components/AdminBlogEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBlogEditorView.js +162 -0
- package/dist/features/admin/components/AdminBlogView.d.ts +4 -1
- package/dist/features/admin/components/AdminBlogView.js +61 -31
- package/dist/features/admin/components/AdminBrandEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBrandEditorView.js +104 -0
- package/dist/features/admin/components/AdminBrandsView.d.ts +4 -0
- package/dist/features/admin/components/AdminBrandsView.js +76 -0
- package/dist/features/admin/components/AdminCarouselEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminCarouselEditorView.js +204 -0
- package/dist/features/admin/components/AdminCarouselView.js +153 -34
- package/dist/features/admin/components/AdminCartsView.d.ts +4 -0
- package/dist/features/admin/components/AdminCartsView.js +82 -0
- package/dist/features/admin/components/AdminCategoriesView.d.ts +4 -1
- package/dist/features/admin/components/AdminCategoriesView.js +66 -48
- package/dist/features/admin/components/AdminCategoryEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCategoryEditorView.js +115 -0
- package/dist/features/admin/components/AdminContactEditorView.d.ts +11 -0
- package/dist/features/admin/components/AdminContactEditorView.js +32 -0
- package/dist/features/admin/components/AdminContactView.js +111 -20
- package/dist/features/admin/components/AdminCouponEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCouponEditorView.js +179 -0
- package/dist/features/admin/components/AdminCouponsView.d.ts +4 -1
- package/dist/features/admin/components/AdminCouponsView.js +57 -9
- package/dist/features/admin/components/AdminDashboardView.js +3 -0
- package/dist/features/admin/components/AdminFaqEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminFaqEditorView.js +128 -0
- package/dist/features/admin/components/AdminFaqsView.d.ts +4 -1
- package/dist/features/admin/components/AdminFaqsView.js +55 -23
- package/dist/features/admin/components/AdminFeatureFlagsView.js +33 -24
- package/dist/features/admin/components/AdminListingScaffold.d.ts +7 -1
- package/dist/features/admin/components/AdminListingScaffold.js +2 -2
- package/dist/features/admin/components/AdminMediaView.js +18 -8
- package/dist/features/admin/components/AdminNavEditorView.d.ts +20 -0
- package/dist/features/admin/components/AdminNavEditorView.js +84 -0
- package/dist/features/admin/components/AdminNavigationView.d.ts +1 -7
- package/dist/features/admin/components/AdminNavigationView.js +84 -72
- package/dist/features/admin/components/AdminNewsletterView.js +102 -20
- package/dist/features/admin/components/AdminNotificationsView.d.ts +4 -0
- package/dist/features/admin/components/AdminNotificationsView.js +119 -0
- package/dist/features/admin/components/AdminOrderEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminOrderEditorView.js +74 -0
- package/dist/features/admin/components/AdminOrdersView.js +64 -8
- package/dist/features/admin/components/AdminPayoutsView.js +122 -13
- package/dist/features/admin/components/AdminProductEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminProductEditorView.js +143 -0
- package/dist/features/admin/components/AdminProductsView.d.ts +4 -1
- package/dist/features/admin/components/AdminProductsView.js +119 -30
- package/dist/features/admin/components/AdminReturnRequestsView.d.ts +5 -0
- package/dist/features/admin/components/AdminReturnRequestsView.js +101 -0
- package/dist/features/admin/components/AdminReviewsView.js +138 -28
- package/dist/features/admin/components/AdminSectionsView.js +361 -472
- package/dist/features/admin/components/AdminSessionsView.d.ts +4 -0
- package/dist/features/admin/components/AdminSessionsView.js +119 -0
- package/dist/features/admin/components/AdminSidebar.d.ts +18 -3
- package/dist/features/admin/components/AdminSidebar.js +51 -4
- package/dist/features/admin/components/AdminSiteSettingsView.d.ts +7 -0
- package/dist/features/admin/components/AdminSiteSettingsView.js +319 -0
- package/dist/features/admin/components/AdminStoreAddressesView.d.ts +5 -0
- package/dist/features/admin/components/AdminStoreAddressesView.js +52 -0
- package/dist/features/admin/components/AdminStoreEditorView.d.ts +9 -0
- package/dist/features/admin/components/AdminStoreEditorView.js +55 -0
- package/dist/features/admin/components/AdminStoresView.js +62 -20
- package/dist/features/admin/components/AdminUserEditorView.d.ts +10 -0
- package/dist/features/admin/components/AdminUserEditorView.js +72 -0
- package/dist/features/admin/components/AdminUsersView.js +70 -36
- package/dist/features/admin/components/AdminWishlistsView.d.ts +4 -0
- package/dist/features/admin/components/AdminWishlistsView.js +53 -0
- package/dist/features/admin/components/BrandQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/BrandQuickCreateForm.js +36 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.js +35 -0
- package/dist/features/admin/components/DataTable.d.ts +4 -2
- package/dist/features/admin/components/DataTable.js +26 -6
- package/dist/features/admin/components/index.d.ts +47 -1
- package/dist/features/admin/components/index.js +23 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.d.ts +48 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.js +653 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.d.ts +298 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.js +278 -0
- package/dist/features/admin/schemas/firestore.d.ts +26 -0
- package/dist/features/admin/schemas/firestore.js +1 -0
- package/dist/features/admin/types/product.types.d.ts +2 -3
- package/dist/features/auctions/actions/bid-actions.js +6 -2
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +3 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +38 -12
- package/dist/features/auctions/components/AuctionFilters.d.ts +3 -1
- package/dist/features/auctions/components/AuctionFilters.js +6 -2
- package/dist/features/auctions/components/CollapsibleBidHistory.d.ts +7 -0
- package/dist/features/auctions/components/CollapsibleBidHistory.js +8 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +4 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.js +43 -9
- package/dist/features/auctions/components/MarketplaceAuctionGrid.js +1 -0
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +18 -0
- package/dist/features/auctions/components/PlaceBidFormClient.js +33 -0
- package/dist/features/auctions/hooks/useAuctions.d.ts +1 -0
- package/dist/features/auctions/hooks/useAuctions.js +1 -0
- package/dist/features/auctions/schemas/index.d.ts +22 -12
- package/dist/features/auth/actions/profile-actions.d.ts +5 -3
- package/dist/features/auth/actions/profile-actions.js +30 -11
- package/dist/features/auth/auth-helpers.js +1 -0
- package/dist/features/auth/components/LoginForm.js +2 -1
- package/dist/features/auth/hooks/useAuth.js +16 -4
- package/dist/features/auth/permissions/constants.d.ts +63 -0
- package/dist/features/auth/permissions/constants.js +323 -0
- package/dist/features/auth/schemas/firestore.d.ts +20 -0
- package/dist/features/auth/schemas/index.d.ts +4 -4
- package/dist/features/auth/schemas/index.js +3 -2
- package/dist/features/auth/types/index.d.ts +1 -1
- package/dist/features/before-after/schemas/index.d.ts +2 -2
- package/dist/features/blog/actions/blog-actions.d.ts +15 -15
- package/dist/features/blog/components/BlogFilters.js +1 -1
- package/dist/features/blog/components/BlogIndexListing.js +57 -5
- package/dist/features/blog/components/BlogIndexPageView.js +14 -2
- package/dist/features/blog/components/BlogPostForm.js +6 -2
- package/dist/features/blog/components/BlogPostView.js +2 -1
- package/dist/features/blog/hooks/useBlog.d.ts +2 -0
- package/dist/features/blog/hooks/useBlog.js +2 -0
- package/dist/features/blog/schemas/index.d.ts +46 -12
- package/dist/features/brands/actions/brand-actions.d.ts +2 -0
- package/dist/features/brands/actions/brand-actions.js +5 -0
- package/dist/features/brands/index.d.ts +3 -0
- package/dist/features/brands/index.js +3 -0
- package/dist/features/brands/repository/brands.repository.d.ts +13 -0
- package/dist/features/brands/repository/brands.repository.js +60 -0
- package/dist/features/brands/schemas/index.d.ts +33 -0
- package/dist/features/brands/schemas/index.js +15 -0
- package/dist/features/brands/server.d.ts +7 -0
- package/dist/features/brands/server.js +7 -0
- package/dist/features/cart/actions/cart-actions.js +2 -2
- package/dist/features/cart/components/CartDrawer.d.ts +5 -1
- package/dist/features/cart/components/CartDrawer.js +3 -3
- package/dist/features/cart/hooks/useCartCount.d.ts +3 -2
- package/dist/features/cart/hooks/useCartCount.js +4 -2
- package/dist/features/cart/hooks/useGuestCartMerge.js +1 -1
- package/dist/features/cart/index.d.ts +1 -0
- package/dist/features/cart/index.js +1 -0
- package/dist/features/cart/repository/cart.repository.d.ts +5 -1
- package/dist/features/cart/repository/cart.repository.js +36 -5
- package/dist/features/cart/schemas/firestore.d.ts +25 -6
- package/dist/features/cart/schemas/firestore.js +2 -2
- package/dist/features/cart/schemas/index.d.ts +9 -9
- package/dist/features/cart/schemas/index.js +1 -1
- package/dist/features/cart/types/index.d.ts +1 -1
- package/dist/features/cart/utils/pending-ops.d.ts +33 -0
- package/dist/features/cart/utils/pending-ops.js +102 -0
- package/dist/features/categories/components/BrandDetailPageView.d.ts +4 -0
- package/dist/features/categories/components/BrandDetailPageView.js +54 -0
- package/dist/features/categories/components/BrandDetailTabs.d.ts +10 -0
- package/dist/features/categories/components/BrandDetailTabs.js +22 -0
- package/dist/features/categories/components/CategoriesIndexListing.d.ts +3 -1
- package/dist/features/categories/components/CategoriesIndexListing.js +83 -7
- package/dist/features/categories/components/CategoryDetailPageView.js +42 -21
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +7 -1
- package/dist/features/categories/components/CategoryDetailTabs.js +12 -7
- package/dist/features/categories/components/CategoryFilters.js +1 -1
- package/dist/features/categories/components/CategoryForm.js +10 -4
- package/dist/features/categories/components/CategoryProductsListing.d.ts +4 -1
- package/dist/features/categories/components/CategoryProductsListing.js +34 -5
- package/dist/features/categories/components/ConcernCard.js +1 -1
- package/dist/features/categories/hooks/useCategories.js +2 -0
- package/dist/features/categories/repository/categories.repository.js +2 -3
- package/dist/features/categories/schemas/firestore.d.ts +23 -2
- package/dist/features/categories/schemas/firestore.js +8 -0
- package/dist/features/categories/schemas/index.d.ts +8 -8
- package/dist/features/categories/types/index.d.ts +1 -0
- package/dist/features/collections/schemas/index.d.ts +2 -2
- package/dist/features/events/components/AdminEventEditorView.js +2 -2
- package/dist/features/events/components/AdminEventsView.d.ts +4 -1
- package/dist/features/events/components/AdminEventsView.js +64 -38
- package/dist/features/events/components/EventCard.js +1 -1
- package/dist/features/events/components/EventFilters.js +1 -1
- package/dist/features/events/components/EventPollWidget.d.ts +12 -0
- package/dist/features/events/components/EventPollWidget.js +62 -0
- package/dist/features/events/components/EventsIndexListing.js +57 -5
- package/dist/features/events/components/EventsListPageView.js +1 -1
- package/dist/features/events/components/index.d.ts +2 -0
- package/dist/features/events/components/index.js +1 -0
- package/dist/features/events/hooks/useEvents.d.ts +1 -0
- package/dist/features/events/hooks/useEvents.js +1 -0
- package/dist/features/events/repository/events.repository.js +3 -0
- package/dist/features/events/schemas/firestore.d.ts +1 -0
- package/dist/features/events/schemas/index.d.ts +44 -0
- package/dist/features/events/types/index.d.ts +2 -0
- package/dist/features/faq/actions/faq-actions.d.ts +16 -16
- package/dist/features/faq/hooks/useFaqList.js +1 -1
- package/dist/features/faq/schemas/firestore.d.ts +2 -2
- package/dist/features/faq/schemas/firestore.js +2 -1
- package/dist/features/faq/schemas/index.d.ts +4 -4
- package/dist/features/filters/FilterFacetSection.d.ts +1 -0
- package/dist/features/filters/FilterFacetSection.js +13 -1
- package/dist/features/filters/SwitchFilter.js +1 -1
- package/dist/features/grouped/schemas/firestore.d.ts +32 -0
- package/dist/features/grouped/schemas/firestore.js +19 -0
- package/dist/features/homepage/components/AdSlot.d.ts +1 -3
- package/dist/features/homepage/components/AdSlot.js +15 -14
- package/dist/features/homepage/components/BlogArticlesSection.d.ts +3 -1
- package/dist/features/homepage/components/BlogArticlesSection.js +2 -2
- package/dist/features/homepage/components/BrandsSection.d.ts +3 -1
- package/dist/features/homepage/components/BrandsSection.js +4 -3
- package/dist/features/homepage/components/CustomCardsSection.d.ts +3 -0
- package/dist/features/homepage/components/CustomCardsSection.js +76 -0
- package/dist/features/homepage/components/EventsSection.d.ts +3 -1
- package/dist/features/homepage/components/EventsSection.js +2 -2
- package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.js +2 -2
- package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.js +2 -2
- package/dist/features/homepage/components/FeaturedProductsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +8 -3
- package/dist/features/homepage/components/FeaturedStoresSection.d.ts +3 -1
- package/dist/features/homepage/components/FeaturedStoresSection.js +2 -2
- package/dist/features/homepage/components/GoogleReviewsSection.d.ts +3 -0
- package/dist/features/homepage/components/GoogleReviewsSection.js +65 -0
- package/dist/features/homepage/components/HeroCarousel.js +128 -84
- package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +2 -20
- package/dist/features/homepage/components/MarketplaceHomepageView.js +73 -230
- package/dist/features/homepage/components/SectionCarousel.d.ts +1 -1
- package/dist/features/homepage/components/SectionCarousel.js +2 -0
- package/dist/features/homepage/components/ShopByCategorySection.d.ts +3 -1
- package/dist/features/homepage/components/ShopByCategorySection.js +8 -4
- package/dist/features/homepage/components/SocialFeedSection.d.ts +3 -0
- package/dist/features/homepage/components/SocialFeedSection.js +86 -0
- package/dist/features/homepage/components/SocialPostCard.d.ts +7 -0
- package/dist/features/homepage/components/SocialPostCard.js +39 -0
- package/dist/features/homepage/components/StatsCounterSection.js +1 -1
- package/dist/features/homepage/components/WelcomeSection.js +1 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.js +1 -1
- package/dist/features/homepage/hooks/useActiveAd.d.ts +23 -0
- package/dist/features/homepage/hooks/useActiveAd.js +20 -0
- package/dist/features/homepage/hooks/useBlogArticles.d.ts +1 -0
- package/dist/features/homepage/hooks/useBlogArticles.js +10 -0
- package/dist/features/homepage/hooks/useFeaturedAuctions.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedAuctions.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedPreOrders.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedPreOrders.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedProducts.d.ts +1 -0
- package/dist/features/homepage/hooks/useFeaturedProducts.js +6 -3
- package/dist/features/homepage/hooks/useFeaturedStores.d.ts +3 -1
- package/dist/features/homepage/hooks/useFeaturedStores.js +2 -1
- package/dist/features/homepage/hooks/useHomepageEvents.d.ts +3 -1
- package/dist/features/homepage/hooks/useHomepageEvents.js +2 -1
- package/dist/features/homepage/hooks/useTopBrands.d.ts +3 -1
- package/dist/features/homepage/hooks/useTopBrands.js +2 -1
- package/dist/features/homepage/index.d.ts +2 -0
- package/dist/features/homepage/index.js +1 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.d.ts +14 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.js +27 -0
- package/dist/features/homepage/lib/live-stats.d.ts +14 -0
- package/dist/features/homepage/lib/live-stats.js +62 -0
- package/dist/features/homepage/lib/section-defaults.d.ts +11 -0
- package/dist/features/homepage/lib/section-defaults.js +45 -0
- package/dist/features/homepage/lib/section-helpers.d.ts +5 -0
- package/dist/features/homepage/lib/section-helpers.js +25 -0
- package/dist/features/homepage/lib/section-renderer.d.ts +33 -0
- package/dist/features/homepage/lib/section-renderer.js +164 -0
- package/dist/features/homepage/lib/social-feed-fetcher.d.ts +5 -0
- package/dist/features/homepage/lib/social-feed-fetcher.js +193 -0
- package/dist/features/homepage/schemas/firestore.d.ts +180 -29
- package/dist/features/homepage/schemas/firestore.js +5 -0
- package/dist/features/homepage/types/index.d.ts +48 -19
- package/dist/features/layout/AppLayoutShell.d.ts +6 -1
- package/dist/features/layout/AppLayoutShell.js +25 -9
- package/dist/features/layout/BottomActions.js +1 -1
- package/dist/features/layout/BottomNavbar.d.ts +15 -1
- package/dist/features/layout/BottomNavbar.js +8 -2
- package/dist/features/layout/FooterLayout.d.ts +7 -1
- package/dist/features/layout/FooterLayout.js +3 -3
- package/dist/features/layout/ListingLayout.js +2 -2
- package/dist/features/layout/MainNavbar.d.ts +6 -14
- package/dist/features/layout/MainNavbar.js +4 -16
- package/dist/features/layout/NavItem.js +1 -1
- package/dist/features/layout/NavbarLayout.d.ts +3 -1
- package/dist/features/layout/NavbarLayout.js +5 -5
- package/dist/features/layout/TitleBar.d.ts +4 -2
- package/dist/features/layout/TitleBar.js +5 -3
- package/dist/features/layout/TitleBarLayout.d.ts +3 -1
- package/dist/features/layout/TitleBarLayout.js +2 -2
- package/dist/features/layout/index.d.ts +1 -1
- package/dist/features/media/MediaPickerModal.d.ts +30 -0
- package/dist/features/media/MediaPickerModal.js +72 -0
- package/dist/features/media/index.d.ts +3 -1
- package/dist/features/media/index.js +1 -0
- package/dist/features/media/types/index.d.ts +12 -0
- package/dist/features/media/types/index.js +4 -2
- package/dist/features/media/upload/MediaUploadField.d.ts +5 -1
- package/dist/features/media/upload/MediaUploadField.js +56 -3
- package/dist/features/messages/schemas/firestore.d.ts +36 -0
- package/dist/features/messages/schemas/firestore.js +16 -0
- package/dist/features/orders/repository/orders.repository.d.ts +2 -2
- package/dist/features/orders/repository/orders.repository.js +2 -2
- package/dist/features/orders/schemas/firestore.d.ts +17 -4
- package/dist/features/orders/schemas/firestore.js +2 -2
- package/dist/features/orders/schemas/index.d.ts +18 -18
- package/dist/features/orders/schemas/index.js +3 -3
- package/dist/features/orders/types/index.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.js +2 -2
- package/dist/features/payments/repository/payout.repository.d.ts +4 -4
- package/dist/features/payments/repository/payout.repository.js +7 -7
- package/dist/features/payments/schemas/firestore.d.ts +6 -6
- package/dist/features/payments/schemas/firestore.js +6 -6
- package/dist/features/pre-orders/components/MarketplacePreorderCard.js +11 -10
- package/dist/features/pre-orders/components/PreOrderActionsClient.d.ts +11 -0
- package/dist/features/pre-orders/components/PreOrderActionsClient.js +28 -0
- package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +27 -9
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +3 -1
- package/dist/features/pre-orders/components/PreOrderFilters.js +9 -6
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +3 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +132 -36
- package/dist/features/pre-orders/components/PreOrdersListView.js +3 -3
- package/dist/features/pre-orders/components/PreorderCard.js +1 -1
- package/dist/features/pre-orders/schemas/index.d.ts +10 -0
- package/dist/features/products/actions/product-actions.d.ts +2 -2
- package/dist/features/products/actions/product-actions.js +5 -5
- package/dist/features/products/api/[id]/route.js +5 -2
- package/dist/features/products/api/route.js +10 -14
- package/dist/features/products/columns/productTableColumns.js +2 -2
- package/dist/features/products/components/AuctionDetailView.d.ts +2 -1
- package/dist/features/products/components/AuctionDetailView.js +2 -2
- package/dist/features/products/components/AuctionsIndexListing.d.ts +3 -1
- package/dist/features/products/components/AuctionsIndexListing.js +93 -31
- package/dist/features/products/components/BidHistory.d.ts +2 -1
- package/dist/features/products/components/BidHistory.js +18 -2
- package/dist/features/products/components/MakeOfferButton.d.ts +10 -0
- package/dist/features/products/components/MakeOfferButton.js +68 -0
- package/dist/features/products/components/ProductDetailPageView.d.ts +11 -1
- package/dist/features/products/components/ProductDetailPageView.js +27 -8
- package/dist/features/products/components/ProductFilters.d.ts +7 -1
- package/dist/features/products/components/ProductFilters.js +4 -2
- package/dist/features/products/components/ProductForm.d.ts +19 -1
- package/dist/features/products/components/ProductForm.js +24 -6
- package/dist/features/products/components/ProductGrid.d.ts +10 -2
- package/dist/features/products/components/ProductGrid.js +76 -29
- package/dist/features/products/components/ProductsIndexListing.js +131 -45
- package/dist/features/products/components/RelatedProductsCarousel.js +1 -1
- package/dist/features/products/components/ShareButton.d.ts +7 -0
- package/dist/features/products/components/ShareButton.js +22 -0
- package/dist/features/products/components/index.d.ts +2 -0
- package/dist/features/products/components/index.js +1 -0
- package/dist/features/products/hooks/useProducts.d.ts +7 -0
- package/dist/features/products/hooks/useProducts.js +6 -4
- package/dist/features/products/repository/products.repository.d.ts +4 -8
- package/dist/features/products/repository/products.repository.js +17 -50
- package/dist/features/products/schemas/firestore.d.ts +11 -9
- package/dist/features/products/schemas/firestore.js +11 -3
- package/dist/features/products/schemas/index.d.ts +51 -50
- package/dist/features/products/schemas/index.js +2 -5
- package/dist/features/products/types/index.d.ts +13 -5
- package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
- package/dist/features/promotions/actions/coupon-actions.js +1 -1
- package/dist/features/promotions/actions/seller-coupon-actions.js +11 -6
- package/dist/features/promotions/api/route.js +3 -3
- package/dist/features/promotions/components/CouponCard.js +16 -7
- package/dist/features/promotions/components/CouponsIndexListing.js +3 -9
- package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
- package/dist/features/promotions/hooks/usePromotions.js +2 -2
- package/dist/features/promotions/repository/coupons.repository.d.ts +21 -15
- package/dist/features/promotions/repository/coupons.repository.js +97 -125
- package/dist/features/promotions/schemas/firestore.d.ts +31 -2
- package/dist/features/promotions/schemas/firestore.js +29 -0
- package/dist/features/promotions/schemas/index.d.ts +9 -12
- package/dist/features/promotions/schemas/index.js +1 -2
- package/dist/features/promotions/types/index.d.ts +1 -2
- package/dist/features/reviews/actions/review-actions.js +3 -2
- package/dist/features/reviews/components/ReviewDetailPageView.js +5 -9
- package/dist/features/reviews/components/ReviewFilters.js +1 -1
- package/dist/features/reviews/components/ReviewsIndexListing.js +58 -7
- package/dist/features/reviews/components/ReviewsList.js +2 -2
- package/dist/features/reviews/hooks/useReviews.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.js +2 -1
- package/dist/features/reviews/repository/reviews.repository.d.ts +9 -4
- package/dist/features/reviews/repository/reviews.repository.js +18 -7
- package/dist/features/reviews/schemas/firestore.d.ts +5 -2
- package/dist/features/reviews/schemas/firestore.js +1 -0
- package/dist/features/reviews/schemas/index.d.ts +19 -16
- package/dist/features/reviews/schemas/index.js +3 -2
- package/dist/features/reviews/types/index.d.ts +3 -2
- package/dist/features/scams/actions/scam-actions.d.ts +29 -0
- package/dist/features/scams/actions/scam-actions.js +62 -0
- package/dist/features/scams/components/ScamProfileView.d.ts +10 -0
- package/dist/features/scams/components/ScamProfileView.js +51 -0
- package/dist/features/scams/components/ScamRegistryView.d.ts +6 -0
- package/dist/features/scams/components/ScamRegistryView.js +41 -0
- package/dist/features/scams/components/index.d.ts +4 -0
- package/dist/features/scams/components/index.js +2 -0
- package/dist/features/scams/constants/scam-types.d.ts +38 -0
- package/dist/features/scams/constants/scam-types.js +443 -0
- package/dist/features/scams/repository/scammer.repository.d.ts +67 -0
- package/dist/features/scams/repository/scammer.repository.js +160 -0
- package/dist/features/scams/schemas/firestore.d.ts +362 -0
- package/dist/features/scams/schemas/firestore.js +233 -0
- package/dist/features/search/components/Search.d.ts +12 -2
- package/dist/features/search/components/Search.js +26 -7
- package/dist/features/search/components/index.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.js +2 -2
- package/dist/features/search/schemas/index.d.ts +7 -7
- package/dist/features/seller/actions/offer-actions.js +52 -36
- package/dist/features/seller/actions/seller-actions.js +19 -13
- package/dist/features/seller/api/products/route.js +9 -4
- package/dist/features/seller/components/SellerAddressesView.d.ts +3 -12
- package/dist/features/seller/components/SellerAddressesView.js +144 -4
- package/dist/features/seller/components/SellerAuctionsView.js +58 -5
- package/dist/features/seller/components/SellerBidsView.d.ts +4 -0
- package/dist/features/seller/components/SellerBidsView.js +131 -0
- package/dist/features/seller/components/SellerCouponEditorView.d.ts +19 -0
- package/dist/features/seller/components/SellerCouponEditorView.js +67 -0
- package/dist/features/seller/components/SellerCouponsView.d.ts +5 -3
- package/dist/features/seller/components/SellerCouponsView.js +135 -13
- package/dist/features/seller/components/SellerCreateProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerCreateProductView.js +4 -3
- package/dist/features/seller/components/SellerEditProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerEditProductView.js +4 -3
- package/dist/features/seller/components/SellerOffersPanel.d.ts +20 -0
- package/dist/features/seller/components/SellerOffersPanel.js +138 -0
- package/dist/features/seller/components/SellerOffersView.js +56 -5
- package/dist/features/seller/components/SellerOrdersView.d.ts +2 -1
- package/dist/features/seller/components/SellerOrdersView.js +185 -16
- package/dist/features/seller/components/SellerPayoutRequestView.d.ts +7 -0
- package/dist/features/seller/components/SellerPayoutRequestView.js +63 -0
- package/dist/features/seller/components/SellerPayoutSettingsView.d.ts +3 -10
- package/dist/features/seller/components/SellerPayoutSettingsView.js +89 -3
- package/dist/features/seller/components/SellerPayoutsView.js +56 -5
- package/dist/features/seller/components/SellerProductShell.d.ts +68 -0
- package/dist/features/seller/components/SellerProductShell.js +179 -0
- package/dist/features/seller/components/SellerProductsView.d.ts +2 -3
- package/dist/features/seller/components/SellerProductsView.js +194 -18
- package/dist/features/seller/components/SellerReviewsView.d.ts +5 -0
- package/dist/features/seller/components/SellerReviewsView.js +100 -0
- package/dist/features/seller/components/SellerShippingView.d.ts +3 -11
- package/dist/features/seller/components/SellerShippingView.js +87 -3
- package/dist/features/seller/components/SellerSidebar.d.ts +11 -3
- package/dist/features/seller/components/SellerSidebar.js +52 -8
- package/dist/features/seller/components/SellerStorefrontView.d.ts +26 -11
- package/dist/features/seller/components/SellerStorefrontView.js +45 -7
- package/dist/features/seller/components/index.d.ts +16 -2
- package/dist/features/seller/components/index.js +7 -0
- package/dist/features/seller/hooks/useSellerListingData.d.ts +3 -1
- package/dist/features/seller/hooks/useSellerListingData.js +6 -4
- package/dist/features/seller/repository/offer.repository.d.ts +3 -3
- package/dist/features/seller/repository/offer.repository.js +6 -6
- package/dist/features/seller/schemas/firestore.d.ts +7 -7
- package/dist/features/seller/schemas/firestore.js +4 -4
- package/dist/features/seller/schemas/index.d.ts +16 -16
- package/dist/features/shell/FormShell.d.ts +29 -0
- package/dist/features/shell/FormShell.js +103 -0
- package/dist/features/shell/QuickFormDrawer.d.ts +29 -0
- package/dist/features/shell/QuickFormDrawer.js +117 -0
- package/dist/features/shell/StepForm.d.ts +44 -0
- package/dist/features/shell/StepForm.js +81 -0
- package/dist/features/shell/index.d.ts +6 -0
- package/dist/features/shell/index.js +3 -0
- package/dist/features/stores/actions/store-query-actions.js +3 -3
- package/dist/features/stores/api/[storeSlug]/auctions/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/products/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +1 -1
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +2 -2
- package/dist/features/stores/components/InteractiveStoreCard.js +21 -7
- package/dist/features/stores/components/StoreAboutView.js +1 -1
- package/dist/features/stores/components/StoreAuctionsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreAuctionsListing.js +81 -8
- package/dist/features/stores/components/StoreAuctionsPageView.js +8 -7
- package/dist/features/stores/components/StoreDetailLayoutView.d.ts +1 -0
- package/dist/features/stores/components/StoreDetailLayoutView.js +29 -5
- package/dist/features/stores/components/StoreHeader.js +2 -1
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +4 -2
- package/dist/features/stores/components/StorePreOrdersListing.js +59 -7
- package/dist/features/stores/components/StorePreOrdersPageView.js +8 -7
- package/dist/features/stores/components/StoreProductsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreProductsListing.js +97 -8
- package/dist/features/stores/components/StoreProductsPageView.js +8 -7
- package/dist/features/stores/components/StoreReviewsListing.js +2 -2
- package/dist/features/stores/components/StoresIndexListing.js +74 -11
- package/dist/features/stores/components/StoresListView.js +1 -1
- package/dist/features/stores/hooks/useStores.d.ts +1 -0
- package/dist/features/stores/hooks/useStores.js +1 -0
- package/dist/features/stores/schemas/firestore.d.ts +34 -0
- package/dist/features/stores/schemas/index.d.ts +8 -8
- package/dist/features/sublisting/schemas/firestore.d.ts +30 -0
- package/dist/features/sublisting/schemas/firestore.js +19 -0
- package/dist/features/support/schemas/firestore.d.ts +113 -0
- package/dist/features/support/schemas/firestore.js +95 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.d.ts +5 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +143 -0
- package/dist/features/whatsapp-bot/components/index.d.ts +2 -0
- package/dist/features/whatsapp-bot/components/index.js +1 -0
- package/dist/features/whatsapp-bot/helpers/whatsapp.d.ts +23 -1
- package/dist/features/whatsapp-bot/helpers/whatsapp.js +104 -0
- package/dist/features/whatsapp-bot/server.d.ts +1 -0
- package/dist/features/whatsapp-bot/server.js +1 -0
- package/dist/features/whatsapp-bot/types/index.d.ts +49 -0
- package/dist/features/wishlist/components/WishlistView.d.ts +0 -10
- package/dist/features/wishlist/components/WishlistView.js +13 -6
- package/dist/features/wishlist/hooks/useWishlist.js +2 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +11 -3
- package/dist/features/wishlist/hooks/useWishlistCount.js +89 -25
- package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +1 -1
- package/dist/features/wishlist/schemas/index.d.ts +2 -2
- package/dist/features/wishlist/types/index.d.ts +16 -0
- package/dist/http/api-handler.js +8 -1
- package/dist/index.d.ts +114 -16
- package/dist/index.js +136 -28
- package/dist/monitoring/server-logger.js +9 -3
- package/dist/next/routing/route-map.d.ts +120 -6
- package/dist/next/routing/route-map.js +53 -2
- package/dist/providers/db-firebase/realtime.d.ts +1 -1
- package/dist/react/contexts/SessionContext.js +17 -26
- package/dist/react/hooks/useBulkSelection.d.ts +7 -24
- package/dist/react/hooks/useBulkSelection.js +27 -34
- package/dist/react/hooks/useLongPress.d.ts +3 -16
- package/dist/react/hooks/useLongPress.js +6 -25
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +2 -0
- package/dist/repositories/index.d.ts +3 -0
- package/dist/repositories/index.js +2 -0
- package/dist/seed/actions/demo-seed-actions.d.ts +2 -2
- package/dist/seed/actions/demo-seed-actions.js +1 -1
- package/dist/seed/anime-figures-seed-data.d.ts +8 -0
- package/dist/seed/anime-figures-seed-data.js +1033 -0
- package/dist/seed/beyblade-seed-data.js +206 -24
- package/dist/seed/bids-seed-data.d.ts +4 -10
- package/dist/seed/bids-seed-data.js +365 -238
- package/dist/seed/blog-posts-seed-data.d.ts +3 -2
- package/dist/seed/blog-posts-seed-data.js +250 -511
- package/dist/seed/brands-seed-data.d.ts +7 -0
- package/dist/seed/brands-seed-data.js +410 -0
- package/dist/seed/carousel-slides-seed-data.d.ts +3 -2
- package/dist/seed/carousel-slides-seed-data.js +177 -216
- package/dist/seed/cart-seed-data.d.ts +9 -9
- package/dist/seed/cart-seed-data.js +73 -73
- package/dist/seed/categories-seed-data.d.ts +4 -2
- package/dist/seed/categories-seed-data.js +720 -879
- package/dist/seed/conversations-seed-data.d.ts +8 -0
- package/dist/seed/conversations-seed-data.js +388 -0
- package/dist/seed/cosplay-accessories-seed-data.d.ts +8 -0
- package/dist/seed/cosplay-accessories-seed-data.js +647 -0
- package/dist/seed/coupon-usage-seed-data.d.ts +25 -0
- package/dist/seed/coupon-usage-seed-data.js +69 -0
- package/dist/seed/coupons-seed-data.d.ts +6 -3
- package/dist/seed/coupons-seed-data.js +375 -3
- package/dist/seed/events-seed-data.d.ts +4 -2
- package/dist/seed/events-seed-data.js +128 -430
- package/dist/seed/factories/cart.factory.d.ts +0 -1
- package/dist/seed/factories/cart.factory.js +2 -2
- package/dist/seed/faq-seed-data.d.ts +11 -18
- package/dist/seed/faq-seed-data.js +786 -1817
- package/dist/seed/grouped-listings-seed-data.d.ts +8 -0
- package/dist/seed/grouped-listings-seed-data.js +201 -0
- package/dist/seed/homepage-sections-seed-data.d.ts +3 -13
- package/dist/seed/homepage-sections-seed-data.js +228 -252
- package/dist/seed/hot-wheels-seed-data.js +285 -38
- package/dist/seed/index.d.ts +12 -11
- package/dist/seed/index.js +10 -12
- package/dist/seed/letitrip-official-seed-data.d.ts +8 -0
- package/dist/seed/letitrip-official-seed-data.js +399 -0
- package/dist/seed/manifest.d.ts +15 -0
- package/dist/seed/manifest.js +140 -0
- package/dist/seed/notifications-seed-data.d.ts +4 -2
- package/dist/seed/notifications-seed-data.js +117 -440
- package/dist/seed/orders-seed-data.d.ts +4 -2
- package/dist/seed/orders-seed-data.js +1090 -521
- package/dist/seed/payouts-seed-data.d.ts +4 -2
- package/dist/seed/payouts-seed-data.js +522 -145
- package/dist/seed/pokemon-carousel-slides-seed-data.js +6 -1
- package/dist/seed/pokemon-categories-seed-data.js +81 -81
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-homepage-sections-seed-data.js +116 -23
- package/dist/seed/pokemon-products-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-products-seed-data.js +83 -73
- package/dist/seed/pokemon-seed-bundle.d.ts +5 -1
- package/dist/seed/pokemon-seed-bundle.js +21 -2
- package/dist/seed/pokemon-stores-seed-data.js +85 -9
- package/dist/seed/pokemon-users-seed-data.js +107 -8
- package/dist/seed/products-auctions-seed-data.d.ts +10 -0
- package/dist/seed/products-auctions-seed-data.js +689 -0
- package/dist/seed/products-preorders-seed-data.d.ts +9 -0
- package/dist/seed/products-preorders-seed-data.js +483 -0
- package/dist/seed/products-seed-data.js +34 -13
- package/dist/seed/products-standard-seed-data.d.ts +8 -0
- package/dist/seed/products-standard-seed-data.js +4179 -0
- package/dist/seed/retro-gaming-seed-data.d.ts +8 -0
- package/dist/seed/retro-gaming-seed-data.js +801 -0
- package/dist/seed/reviews-seed-data.d.ts +4 -17
- package/dist/seed/reviews-seed-data.js +1043 -515
- package/dist/seed/scammers-seed-data.d.ts +17 -0
- package/dist/seed/scammers-seed-data.js +118 -0
- package/dist/seed/site-settings-seed-data.js +25 -2
- package/dist/seed/store-addresses-seed-data.js +188 -84
- package/dist/seed/stores-seed-data.d.ts +3 -9
- package/dist/seed/stores-seed-data.js +212 -102
- package/dist/seed/sublisting-categories-seed-data.d.ts +7 -0
- package/dist/seed/sublisting-categories-seed-data.js +315 -0
- package/dist/seed/transformers-seed-data.js +34 -14
- package/dist/seed/users-seed-data.d.ts +3 -2
- package/dist/seed/users-seed-data.js +531 -440
- package/dist/seed/wishlists-seed-data.js +13 -13
- package/dist/server.d.ts +9 -2
- package/dist/server.js +12 -4
- package/dist/tokens/tokens.css +76 -31
- package/dist/ui/components/Avatar.style.css +10 -12
- package/dist/ui/components/BaseListingCard.d.ts +8 -3
- package/dist/ui/components/BaseListingCard.js +17 -6
- package/dist/ui/components/BaseListingCard.style.css +3 -1
- package/dist/ui/components/BulkActionsBar.d.ts +16 -0
- package/dist/ui/components/BulkActionsBar.js +22 -0
- package/dist/ui/components/Button.style.css +23 -23
- package/dist/ui/components/Card.style.css +60 -62
- package/dist/ui/components/Checkbox.style.css +19 -21
- package/dist/ui/components/DashboardStatsCard.style.css +12 -14
- package/dist/ui/components/Drawer.style.css +18 -14
- package/dist/ui/components/Dropdown.style.css +25 -27
- package/dist/ui/components/EmptyState.style.css +2 -4
- package/dist/ui/components/HorizontalScroller.d.ts +3 -1
- package/dist/ui/components/HorizontalScroller.js +116 -21
- package/dist/ui/components/HorizontalScroller.style.css +2 -2
- package/dist/ui/components/ImageLightbox.d.ts +0 -9
- package/dist/ui/components/ImageLightbox.js +43 -9
- package/dist/ui/components/InlineCreateSelect.d.ts +38 -0
- package/dist/ui/components/InlineCreateSelect.js +70 -0
- package/dist/ui/components/ListingLayout.style.css +41 -77
- package/dist/ui/components/ListingToolbar.d.ts +54 -0
- package/dist/ui/components/ListingToolbar.js +34 -0
- package/dist/ui/components/Modal.style.css +14 -10
- package/dist/ui/components/PageLoader.d.ts +11 -0
- package/dist/ui/components/PageLoader.js +21 -0
- package/dist/ui/components/Radio.style.css +34 -36
- package/dist/ui/components/RichTextEditor.js +1 -1
- package/dist/ui/components/RowActionMenu.d.ts +1 -0
- package/dist/ui/components/RowActionMenu.js +4 -2
- package/dist/ui/components/SectionTabs.js +1 -1
- package/dist/ui/components/SectionTabs.style.css +1 -0
- package/dist/ui/components/SideModal.style.css +4 -8
- package/dist/ui/components/Slider.style.css +2 -4
- package/dist/ui/components/Tabs.style.css +8 -10
- package/dist/ui/components/Toast.style.css +22 -24
- package/dist/ui/components/Toggle.style.css +11 -13
- package/dist/ui/index.d.ts +9 -0
- package/dist/ui/index.js +5 -0
- package/dist/ui/rich-text/RichText.js +2 -1
- package/dist/ui/rich-text/RichText.style.css +292 -5
- package/dist/ui/rich-text/RichTextRenderer.d.ts +15 -0
- package/dist/ui/rich-text/RichTextRenderer.js +15 -0
- package/dist/utils/id-generators.d.ts +10 -0
- package/dist/utils/id-generators.js +12 -0
- package/dist/validation/schemas.d.ts +9 -9
- package/package.json +5 -1
- package/README.md +0 -116
|
@@ -39,35 +39,35 @@ function withRichTextDescription(item) {
|
|
|
39
39
|
// Seller shortcuts
|
|
40
40
|
const MISTY = {
|
|
41
41
|
sellerId: "user-misty-water-gym-misty",
|
|
42
|
-
storeId: "
|
|
42
|
+
storeId: "mistys-water-cards",
|
|
43
43
|
sellerName: "Misty's Water Cards",
|
|
44
44
|
sellerEmail: "misty@letitrip.in",
|
|
45
45
|
};
|
|
46
46
|
const SURGE = {
|
|
47
47
|
sellerId: "user-lt-surge-electric-surge",
|
|
48
|
-
storeId: "
|
|
48
|
+
storeId: "surges-electric-emporium",
|
|
49
49
|
sellerName: "Surge's Electric Emporium",
|
|
50
50
|
sellerEmail: "surge@letitrip.in",
|
|
51
51
|
};
|
|
52
52
|
const BLAINE = {
|
|
53
53
|
sellerId: "user-blaine-fire-gym-blaine",
|
|
54
|
-
storeId: "
|
|
54
|
+
storeId: "blaines-fire-shoppe",
|
|
55
55
|
sellerName: "Blaine's Fire Shoppe",
|
|
56
56
|
sellerEmail: "blaine@letitrip.in",
|
|
57
57
|
};
|
|
58
58
|
// Helper — pokemontcg.io Base Set card image
|
|
59
59
|
const cardImg = (num) => `https://images.pokemontcg.io/base1/${num}_hires.png`;
|
|
60
60
|
export const pokemonProductsSeedData = [
|
|
61
|
-
//
|
|
62
|
-
// HOLO RARE SINGLES (cards 1
|
|
63
|
-
//
|
|
61
|
+
// ════════════════════════════════════════════════════════════
|
|
62
|
+
// HOLO RARE SINGLES (cards 1–16)
|
|
63
|
+
// ════════════════════════════════════════════════════════════
|
|
64
64
|
// #4 — Charizard (the crown jewel)
|
|
65
65
|
{
|
|
66
66
|
id: "product-charizard-base1-4-holo-rare-fire-blaine-1",
|
|
67
67
|
title: "Charizard — Base Set #4 Holo Rare (Near Mint)",
|
|
68
68
|
description: "The most iconic card in Pokémon history. First-edition Base Set Charizard in Near Mint condition. " +
|
|
69
69
|
"Lightly played centering, no scratches on holo surface. Comes in a hard sleeve and top-loader.",
|
|
70
|
-
slug: "charizard-base1-4-holo-rare",
|
|
70
|
+
slug: "product-charizard-base1-4-holo-rare",
|
|
71
71
|
category: "category-holo-rare-rarity",
|
|
72
72
|
subcategory: "Fire",
|
|
73
73
|
brand: "Wizards of the Coast",
|
|
@@ -113,7 +113,7 @@ export const pokemonProductsSeedData = [
|
|
|
113
113
|
title: "Blastoise — Base Set #2 Holo Rare (Near Mint)",
|
|
114
114
|
description: "Blastoise Holo Rare from the original Pokémon Base Set. Near Mint, light play centering. " +
|
|
115
115
|
"A must-have Water-type collectible.",
|
|
116
|
-
slug: "blastoise-base1-2-holo-rare",
|
|
116
|
+
slug: "product-blastoise-base1-2-holo-rare",
|
|
117
117
|
category: "category-holo-rare-rarity",
|
|
118
118
|
subcategory: "Water",
|
|
119
119
|
brand: "Wizards of the Coast",
|
|
@@ -154,7 +154,7 @@ export const pokemonProductsSeedData = [
|
|
|
154
154
|
id: "product-venusaur-base1-15-holo-rare-grass-blaine-1",
|
|
155
155
|
title: "Venusaur — Base Set #15 Holo Rare (Lightly Played)",
|
|
156
156
|
description: "Venusaur Holo Rare from Base Set. Lightly Played — minor corner wear, holo surface pristine.",
|
|
157
|
-
slug: "venusaur-base1-15-holo-rare",
|
|
157
|
+
slug: "product-venusaur-base1-15-holo-rare",
|
|
158
158
|
category: "category-holo-rare-rarity",
|
|
159
159
|
subcategory: "Grass",
|
|
160
160
|
brand: "Wizards of the Coast",
|
|
@@ -193,7 +193,7 @@ export const pokemonProductsSeedData = [
|
|
|
193
193
|
id: "product-mewtwo-base1-10-holo-rare-psychic-surge-1",
|
|
194
194
|
title: "Mewtwo — Base Set #10 Holo Rare (Near Mint)",
|
|
195
195
|
description: "The Genetic Pokémon. Mewtwo Holo Rare from the original Base Set in Near Mint condition.",
|
|
196
|
-
slug: "mewtwo-base1-10-holo-rare",
|
|
196
|
+
slug: "product-mewtwo-base1-10-holo-rare",
|
|
197
197
|
category: "category-holo-rare-rarity",
|
|
198
198
|
subcategory: "Psychic",
|
|
199
199
|
brand: "Wizards of the Coast",
|
|
@@ -233,7 +233,7 @@ export const pokemonProductsSeedData = [
|
|
|
233
233
|
id: "product-zapdos-base1-16-holo-rare-electric-surge-1",
|
|
234
234
|
title: "Zapdos — Base Set #16 Holo Rare (Near Mint)",
|
|
235
235
|
description: "Zapdos Holo Rare from Base Set. One of the three legendary birds — this one is pure Electric.",
|
|
236
|
-
slug: "zapdos-base1-16-holo-rare",
|
|
236
|
+
slug: "product-zapdos-base1-16-holo-rare",
|
|
237
237
|
category: "category-holo-rare-rarity",
|
|
238
238
|
subcategory: "Electric",
|
|
239
239
|
brand: "Wizards of the Coast",
|
|
@@ -272,7 +272,7 @@ export const pokemonProductsSeedData = [
|
|
|
272
272
|
id: "product-chansey-base1-3-holo-rare-colorless-misty-1",
|
|
273
273
|
title: "Chansey — Base Set #3 Holo Rare (Near Mint)",
|
|
274
274
|
description: "Chansey with 120 HP — the tankiest Base Set card. Holo Rare, Near Mint.",
|
|
275
|
-
slug: "chansey-base1-3-holo-rare",
|
|
275
|
+
slug: "product-chansey-base1-3-holo-rare",
|
|
276
276
|
category: "category-holo-rare-rarity",
|
|
277
277
|
subcategory: "Colorless",
|
|
278
278
|
brand: "Wizards of the Coast",
|
|
@@ -311,7 +311,7 @@ export const pokemonProductsSeedData = [
|
|
|
311
311
|
id: "product-gyarados-base1-6-holo-rare-water-misty-1",
|
|
312
312
|
title: "Gyarados — Base Set #6 Holo Rare (Near Mint)",
|
|
313
313
|
description: "The fearsome sea serpent. Gyarados Holo Rare from Base Set, Near Mint.",
|
|
314
|
-
slug: "gyarados-base1-6-holo-rare",
|
|
314
|
+
slug: "product-gyarados-base1-6-holo-rare",
|
|
315
315
|
category: "category-holo-rare-rarity",
|
|
316
316
|
subcategory: "Water",
|
|
317
317
|
brand: "Wizards of the Coast",
|
|
@@ -350,7 +350,7 @@ export const pokemonProductsSeedData = [
|
|
|
350
350
|
id: "product-magneton-base1-9-holo-rare-electric-surge-1",
|
|
351
351
|
title: "Magneton — Base Set #9 Holo Rare (Lightly Played)",
|
|
352
352
|
description: "Magneton Holo Rare, Lightly Played. Light whitening on corners, holo face clean.",
|
|
353
|
-
slug: "magneton-base1-9-holo-rare",
|
|
353
|
+
slug: "product-magneton-base1-9-holo-rare",
|
|
354
354
|
category: "category-holo-rare-rarity",
|
|
355
355
|
subcategory: "Electric",
|
|
356
356
|
brand: "Wizards of the Coast",
|
|
@@ -384,15 +384,15 @@ export const pokemonProductsSeedData = [
|
|
|
384
384
|
createdAt: daysAgo(28),
|
|
385
385
|
updatedAt: daysAgo(9),
|
|
386
386
|
},
|
|
387
|
-
//
|
|
387
|
+
// ════════════════════════════════════════════════════════════
|
|
388
388
|
// NON-HOLO RARE SINGLES
|
|
389
|
-
//
|
|
389
|
+
// ════════════════════════════════════════════════════════════
|
|
390
390
|
// #17 — Beedrill
|
|
391
391
|
{
|
|
392
392
|
id: "product-beedrill-base1-17-non-holo-rare-grass-blaine-1",
|
|
393
393
|
title: "Beedrill — Base Set #17 Non-Holo Rare (Near Mint)",
|
|
394
394
|
description: "Beedrill Non-Holo Rare. A Grass-type attacker classic from the original Base Set.",
|
|
395
|
-
slug: "beedrill-base1-17-non-holo-rare",
|
|
395
|
+
slug: "product-beedrill-base1-17-non-holo-rare",
|
|
396
396
|
category: "category-non-holo-rare-rarity",
|
|
397
397
|
subcategory: "Grass",
|
|
398
398
|
brand: "Wizards of the Coast",
|
|
@@ -431,7 +431,7 @@ export const pokemonProductsSeedData = [
|
|
|
431
431
|
id: "product-dugtrio-base1-19-non-holo-rare-fighting-misty-1",
|
|
432
432
|
title: "Dugtrio — Base Set #19 Non-Holo Rare (Near Mint)",
|
|
433
433
|
description: "Dugtrio Non-Holo Rare from Base Set. Subsonic move artwork is iconic.",
|
|
434
|
-
slug: "dugtrio-base1-19-non-holo-rare",
|
|
434
|
+
slug: "product-dugtrio-base1-19-non-holo-rare",
|
|
435
435
|
category: "category-non-holo-rare-rarity",
|
|
436
436
|
subcategory: "Fighting",
|
|
437
437
|
brand: "Wizards of the Coast",
|
|
@@ -470,7 +470,7 @@ export const pokemonProductsSeedData = [
|
|
|
470
470
|
id: "product-haunter-base1-24-non-holo-rare-psychic-surge-1",
|
|
471
471
|
title: "Haunter — Base Set #24 Non-Holo Rare (Near Mint)",
|
|
472
472
|
description: "Haunter Non-Holo Rare. A beloved Psychic-type card with the classic Lick attack.",
|
|
473
|
-
slug: "haunter-base1-24-non-holo-rare",
|
|
473
|
+
slug: "product-haunter-base1-24-non-holo-rare",
|
|
474
474
|
category: "category-non-holo-rare-rarity",
|
|
475
475
|
subcategory: "Psychic",
|
|
476
476
|
brand: "Wizards of the Coast",
|
|
@@ -504,15 +504,15 @@ export const pokemonProductsSeedData = [
|
|
|
504
504
|
createdAt: daysAgo(22),
|
|
505
505
|
updatedAt: daysAgo(7),
|
|
506
506
|
},
|
|
507
|
-
//
|
|
507
|
+
// ════════════════════════════════════════════════════════════
|
|
508
508
|
// UNCOMMON SINGLES
|
|
509
|
-
//
|
|
509
|
+
// ════════════════════════════════════════════════════════════
|
|
510
510
|
// #35 — Clefairy
|
|
511
511
|
{
|
|
512
512
|
id: "product-clefairy-base1-35-uncommon-colorless-misty-1",
|
|
513
513
|
title: "Clefairy — Base Set #35 Uncommon (Near Mint)",
|
|
514
514
|
description: "Clefairy Uncommon from Base Set. Uses Metronome — a nostalgic fan favourite.",
|
|
515
|
-
slug: "clefairy-base1-35-uncommon",
|
|
515
|
+
slug: "product-clefairy-base1-35-uncommon",
|
|
516
516
|
category: "category-uncommon-rarity",
|
|
517
517
|
subcategory: "Colorless",
|
|
518
518
|
brand: "Wizards of the Coast",
|
|
@@ -551,7 +551,7 @@ export const pokemonProductsSeedData = [
|
|
|
551
551
|
id: "product-growlithe-base1-40-uncommon-fire-blaine-1",
|
|
552
552
|
title: "Growlithe — Base Set #40 Uncommon (Near Mint)",
|
|
553
553
|
description: "Growlithe Uncommon from Base Set. A loyal Fire-type favourite.",
|
|
554
|
-
slug: "growlithe-base1-40-uncommon",
|
|
554
|
+
slug: "product-growlithe-base1-40-uncommon",
|
|
555
555
|
category: "category-uncommon-rarity",
|
|
556
556
|
subcategory: "Fire",
|
|
557
557
|
brand: "Wizards of the Coast",
|
|
@@ -590,7 +590,7 @@ export const pokemonProductsSeedData = [
|
|
|
590
590
|
id: "product-pikachu-base1-58-common-electric-surge-1",
|
|
591
591
|
title: "Pikachu — Base Set #58 Common (Near Mint)",
|
|
592
592
|
description: "The Pokémon mascot himself. Base Set Pikachu, Common, Near Mint — yellow cheeks version.",
|
|
593
|
-
slug: "pikachu-base1-58-common",
|
|
593
|
+
slug: "product-pikachu-base1-58-common",
|
|
594
594
|
category: "category-common-rarity",
|
|
595
595
|
subcategory: "Electric",
|
|
596
596
|
brand: "Wizards of the Coast",
|
|
@@ -626,15 +626,15 @@ export const pokemonProductsSeedData = [
|
|
|
626
626
|
createdAt: daysAgo(50),
|
|
627
627
|
updatedAt: daysAgo(1),
|
|
628
628
|
},
|
|
629
|
-
//
|
|
629
|
+
// ════════════════════════════════════════════════════════════
|
|
630
630
|
// TRAINER CARDS
|
|
631
|
-
//
|
|
631
|
+
// ════════════════════════════════════════════════════════════
|
|
632
632
|
// #88 — Professor Oak
|
|
633
633
|
{
|
|
634
634
|
id: "product-professor-oak-base1-88-uncommon-trainer-surge-1",
|
|
635
635
|
title: "Professor Oak — Base Set #88 Trainer (Near Mint)",
|
|
636
636
|
description: "Draw 7 cards. Professor Oak is one of the most powerful Trainer cards ever printed. Near Mint copy.",
|
|
637
|
-
slug: "professor-oak-base1-88-trainer",
|
|
637
|
+
slug: "product-professor-oak-base1-88-trainer",
|
|
638
638
|
category: "category-trainer-type-card-type",
|
|
639
639
|
subcategory: "Trainer",
|
|
640
640
|
brand: "Wizards of the Coast",
|
|
@@ -674,7 +674,7 @@ export const pokemonProductsSeedData = [
|
|
|
674
674
|
id: "product-energy-retrieval-base1-91-common-trainer-misty-1",
|
|
675
675
|
title: "Energy Retrieval — Base Set #91 Trainer (Near Mint)",
|
|
676
676
|
description: "Return 2 Basic Energy from discard to hand. A staple in Water decks. Near Mint.",
|
|
677
|
-
slug: "energy-retrieval-base1-91-trainer",
|
|
677
|
+
slug: "product-energy-retrieval-base1-91-trainer",
|
|
678
678
|
category: "category-trainer-type-card-type",
|
|
679
679
|
subcategory: "Trainer",
|
|
680
680
|
brand: "Wizards of the Coast",
|
|
@@ -709,15 +709,15 @@ export const pokemonProductsSeedData = [
|
|
|
709
709
|
createdAt: daysAgo(22),
|
|
710
710
|
updatedAt: daysAgo(6),
|
|
711
711
|
},
|
|
712
|
-
//
|
|
712
|
+
// ════════════════════════════════════════════════════════════
|
|
713
713
|
// ENERGY CARDS
|
|
714
|
-
//
|
|
714
|
+
// ════════════════════════════════════════════════════════════
|
|
715
715
|
// #99 — Water Energy (x10 lot)
|
|
716
716
|
{
|
|
717
717
|
id: "product-water-energy-base1-99-common-energy-misty-lot",
|
|
718
718
|
title: "Water Energy — Base Set #99 x10 Lot (Near Mint)",
|
|
719
|
-
description: "10
|
|
720
|
-
slug: "water-energy-base1-99-x10-lot",
|
|
719
|
+
description: "10× Water Energy from the original Base Set. Near Mint. Perfect for deck building.",
|
|
720
|
+
slug: "product-water-energy-base1-99-x10-lot",
|
|
721
721
|
category: "category-energy-type-card-type",
|
|
722
722
|
subcategory: "Water",
|
|
723
723
|
brand: "Wizards of the Coast",
|
|
@@ -757,8 +757,8 @@ export const pokemonProductsSeedData = [
|
|
|
757
757
|
{
|
|
758
758
|
id: "product-fire-energy-base1-100-common-energy-blaine-lot",
|
|
759
759
|
title: "Fire Energy — Base Set #100 x10 Lot (Near Mint)",
|
|
760
|
-
description: "10
|
|
761
|
-
slug: "fire-energy-base1-100-x10-lot",
|
|
760
|
+
description: "10× Fire Energy from Base Set. Perfect for Charizard and Arcanine decks.",
|
|
761
|
+
slug: "product-fire-energy-base1-100-x10-lot",
|
|
762
762
|
category: "category-energy-type-card-type",
|
|
763
763
|
subcategory: "Fire",
|
|
764
764
|
brand: "Wizards of the Coast",
|
|
@@ -798,8 +798,8 @@ export const pokemonProductsSeedData = [
|
|
|
798
798
|
{
|
|
799
799
|
id: "product-lightning-energy-base1-101-common-energy-surge-lot",
|
|
800
800
|
title: "Lightning Energy — Base Set #101 x10 Lot (Near Mint)",
|
|
801
|
-
description: "10
|
|
802
|
-
slug: "lightning-energy-base1-101-x10-lot",
|
|
801
|
+
description: "10× Lightning (Electric) Energy from Base Set. Fuel for Pikachu, Raichu, and Zapdos.",
|
|
802
|
+
slug: "product-lightning-energy-base1-101-x10-lot",
|
|
803
803
|
category: "category-energy-type-card-type",
|
|
804
804
|
subcategory: "Electric",
|
|
805
805
|
brand: "Wizards of the Coast",
|
|
@@ -835,16 +835,16 @@ export const pokemonProductsSeedData = [
|
|
|
835
835
|
createdAt: daysAgo(12),
|
|
836
836
|
updatedAt: daysAgo(1),
|
|
837
837
|
},
|
|
838
|
-
//
|
|
838
|
+
// ════════════════════════════════════════════════════════════
|
|
839
839
|
// SEALED PRODUCTS
|
|
840
|
-
//
|
|
840
|
+
// ════════════════════════════════════════════════════════════
|
|
841
841
|
// Booster Pack
|
|
842
842
|
{
|
|
843
843
|
id: "product-base-set-booster-pack-sealed-blaine-1",
|
|
844
844
|
title: "Pokémon Base Set Booster Pack (Sealed, Random Art)",
|
|
845
845
|
description: "Sealed Pokémon TCG Base Set booster pack with 11 cards and one guaranteed rare. " +
|
|
846
846
|
"Perfect for vintage collectors searching for authentic Base Set pack openings and long-term sealed investments.",
|
|
847
|
-
slug: "pokemon-tcg-base-set-sealed-booster-pack-random-art",
|
|
847
|
+
slug: "product-pokemon-tcg-base-set-sealed-booster-pack-random-art",
|
|
848
848
|
category: "category-sealed-products",
|
|
849
849
|
subcategory: "Booster Pack",
|
|
850
850
|
brand: "Wizards of the Coast",
|
|
@@ -885,7 +885,7 @@ export const pokemonProductsSeedData = [
|
|
|
885
885
|
title: "Pokémon Base Set 'Zap!' Theme Deck (Sealed)",
|
|
886
886
|
description: "Factory-sealed Pokémon Base Set Zap! Theme Deck featuring Electric-type strategy cards led by Raichu. " +
|
|
887
887
|
"Ideal for collectors who want original sealed WOTC era deck products.",
|
|
888
|
-
slug: "pokemon-base-set-zap-theme-deck-sealed-raichu",
|
|
888
|
+
slug: "product-pokemon-base-set-zap-theme-deck-sealed-raichu",
|
|
889
889
|
category: "category-sealed-products",
|
|
890
890
|
subcategory: "Theme Deck",
|
|
891
891
|
brand: "Wizards of the Coast",
|
|
@@ -919,14 +919,14 @@ export const pokemonProductsSeedData = [
|
|
|
919
919
|
createdAt: daysAgo(25),
|
|
920
920
|
updatedAt: daysAgo(4),
|
|
921
921
|
},
|
|
922
|
-
//
|
|
922
|
+
// ════════════════════════════════════════════════════════════
|
|
923
923
|
// ACCESSORIES
|
|
924
|
-
//
|
|
924
|
+
// ════════════════════════════════════════════════════════════
|
|
925
925
|
{
|
|
926
926
|
id: "product-pokemon-card-sleeves-standard-blaine-1",
|
|
927
927
|
title: "Pokémon-Art Card Sleeves (100-pack, Pikachu)",
|
|
928
928
|
description: "100 standard-size card sleeves featuring Pikachu artwork. Compatible with all Base Set singles.",
|
|
929
|
-
slug: "pokemon-pikachu-card-sleeves-100pack",
|
|
929
|
+
slug: "product-pokemon-pikachu-card-sleeves-100pack",
|
|
930
930
|
category: "category-accessories",
|
|
931
931
|
subcategory: "Card Sleeves",
|
|
932
932
|
brand: "Ultra PRO",
|
|
@@ -943,7 +943,7 @@ export const pokemonProductsSeedData = [
|
|
|
943
943
|
specifications: [
|
|
944
944
|
{ name: "Brand", value: "Ultra PRO" },
|
|
945
945
|
{ name: "Quantity", value: "100 sleeves" },
|
|
946
|
-
{ name: "Size", value: "Standard (66
|
|
946
|
+
{ name: "Size", value: "Standard (66 × 91 mm)" },
|
|
947
947
|
{ name: "Art", value: "Pikachu" },
|
|
948
948
|
],
|
|
949
949
|
features: ["Acid-free", "Archival quality", "Fits Base Set cards"],
|
|
@@ -963,7 +963,7 @@ export const pokemonProductsSeedData = [
|
|
|
963
963
|
id: "product-pokemon-9-pocket-binder-misty-1",
|
|
964
964
|
title: "Pokémon 9-Pocket Binder (360 cards, Charizard Cover)",
|
|
965
965
|
description: "9-pocket binder for storing and displaying up to 360 Pokémon cards. Charizard cover art.",
|
|
966
|
-
slug: "pokemon-charizard-9-pocket-binder",
|
|
966
|
+
slug: "product-pokemon-charizard-9-pocket-binder",
|
|
967
967
|
category: "category-accessories",
|
|
968
968
|
subcategory: "Binder",
|
|
969
969
|
brand: "Ultra PRO",
|
|
@@ -996,9 +996,9 @@ export const pokemonProductsSeedData = [
|
|
|
996
996
|
createdAt: daysAgo(8),
|
|
997
997
|
updatedAt: daysAgo(1),
|
|
998
998
|
},
|
|
999
|
-
//
|
|
999
|
+
// ════════════════════════════════════════════════════════════
|
|
1000
1000
|
// AUCTION LISTINGS
|
|
1001
|
-
//
|
|
1001
|
+
// ════════════════════════════════════════════════════════════
|
|
1002
1002
|
// Auction: 1st Edition Charizard
|
|
1003
1003
|
{
|
|
1004
1004
|
id: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
@@ -1116,15 +1116,15 @@ export const pokemonProductsSeedData = [
|
|
|
1116
1116
|
createdAt: daysAgo(2),
|
|
1117
1117
|
updatedAt: daysAgo(0),
|
|
1118
1118
|
},
|
|
1119
|
-
//
|
|
1119
|
+
// ════════════════════════════════════════════════════════════
|
|
1120
1120
|
// MORE HOLO RARES
|
|
1121
|
-
//
|
|
1121
|
+
// ════════════════════════════════════════════════════════════
|
|
1122
1122
|
// #14 — Raichu
|
|
1123
1123
|
{
|
|
1124
1124
|
id: "product-raichu-base1-14-holo-rare-electric-surge-1",
|
|
1125
1125
|
title: "Raichu — Base Set #14 Holo Rare (Near Mint)",
|
|
1126
1126
|
description: "Raichu Holo Rare from Base Set. Powerful Electric-type evolution of Pikachu with 80 HP and the Thunder Punch attack.",
|
|
1127
|
-
slug: "raichu-base1-14-holo-rare",
|
|
1127
|
+
slug: "product-raichu-base1-14-holo-rare",
|
|
1128
1128
|
category: "category-holo-rare-rarity",
|
|
1129
1129
|
subcategory: "Electric",
|
|
1130
1130
|
brand: "Wizards of the Coast",
|
|
@@ -1163,7 +1163,7 @@ export const pokemonProductsSeedData = [
|
|
|
1163
1163
|
id: "product-ninetales-base1-12-holo-rare-fire-blaine-1",
|
|
1164
1164
|
title: "Ninetales — Base Set #12 Holo Rare (Near Mint)",
|
|
1165
1165
|
description: "Ninetales Holo Rare, one of the most visually stunning cards in Base Set. Beautiful fox artwork on a shimmering holo background.",
|
|
1166
|
-
slug: "ninetales-base1-12-holo-rare",
|
|
1166
|
+
slug: "product-ninetales-base1-12-holo-rare",
|
|
1167
1167
|
category: "category-holo-rare-rarity",
|
|
1168
1168
|
subcategory: "Fire",
|
|
1169
1169
|
brand: "Wizards of the Coast",
|
|
@@ -1202,7 +1202,7 @@ export const pokemonProductsSeedData = [
|
|
|
1202
1202
|
id: "product-hitmonchan-base1-7-holo-rare-fighting-misty-1",
|
|
1203
1203
|
title: "Hitmonchan — Base Set #7 Holo Rare (Near Mint)",
|
|
1204
1204
|
description: "Hitmonchan Holo Rare — a staple Fighting-type card widely used in competitive Base Set format decks.",
|
|
1205
|
-
slug: "hitmonchan-base1-7-holo-rare",
|
|
1205
|
+
slug: "product-hitmonchan-base1-7-holo-rare",
|
|
1206
1206
|
category: "category-holo-rare-rarity",
|
|
1207
1207
|
subcategory: "Fighting",
|
|
1208
1208
|
brand: "Wizards of the Coast",
|
|
@@ -1241,7 +1241,7 @@ export const pokemonProductsSeedData = [
|
|
|
1241
1241
|
id: "product-alakazam-base1-1-holo-rare-psychic-surge-1",
|
|
1242
1242
|
title: "Alakazam — Base Set #1 Holo Rare (Near Mint)",
|
|
1243
1243
|
description: "Alakazam Holo Rare — card #1 in Base Set. Features the iconic Damage Swap Pokémon Power.",
|
|
1244
|
-
slug: "alakazam-base1-1-holo-rare",
|
|
1244
|
+
slug: "product-alakazam-base1-1-holo-rare",
|
|
1245
1245
|
category: "category-holo-rare-rarity",
|
|
1246
1246
|
subcategory: "Psychic",
|
|
1247
1247
|
brand: "Wizards of the Coast",
|
|
@@ -1275,15 +1275,15 @@ export const pokemonProductsSeedData = [
|
|
|
1275
1275
|
createdAt: daysAgo(48),
|
|
1276
1276
|
updatedAt: daysAgo(3),
|
|
1277
1277
|
},
|
|
1278
|
-
//
|
|
1278
|
+
// ════════════════════════════════════════════════════════════
|
|
1279
1279
|
// MORE NON-HOLO RARES
|
|
1280
|
-
//
|
|
1280
|
+
// ════════════════════════════════════════════════════════════
|
|
1281
1281
|
// #23 — Arcanine
|
|
1282
1282
|
{
|
|
1283
1283
|
id: "product-arcanine-base1-23-non-holo-rare-fire-blaine-1",
|
|
1284
1284
|
title: "Arcanine — Base Set #23 Non-Holo Rare (Near Mint)",
|
|
1285
1285
|
description: "Arcanine Non-Holo Rare from Base Set — the Legendary Pokémon. Flame Wheel 50 damage, near mint condition.",
|
|
1286
|
-
slug: "arcanine-base1-23-non-holo-rare",
|
|
1286
|
+
slug: "product-arcanine-base1-23-non-holo-rare",
|
|
1287
1287
|
category: "category-non-holo-rare-rarity",
|
|
1288
1288
|
subcategory: "Fire",
|
|
1289
1289
|
brand: "Wizards of the Coast",
|
|
@@ -1322,7 +1322,7 @@ export const pokemonProductsSeedData = [
|
|
|
1322
1322
|
id: "product-electabuzz-base1-20-non-holo-rare-electric-surge-1",
|
|
1323
1323
|
title: "Electabuzz — Base Set #20 Non-Holo Rare (Near Mint)",
|
|
1324
1324
|
description: "Electabuzz Non-Holo Rare — another competitive Base Set staple with Thunderpunch.",
|
|
1325
|
-
slug: "electabuzz-base1-20-non-holo-rare",
|
|
1325
|
+
slug: "product-electabuzz-base1-20-non-holo-rare",
|
|
1326
1326
|
category: "category-non-holo-rare-rarity",
|
|
1327
1327
|
subcategory: "Electric",
|
|
1328
1328
|
brand: "Wizards of the Coast",
|
|
@@ -1361,7 +1361,7 @@ export const pokemonProductsSeedData = [
|
|
|
1361
1361
|
id: "product-magmar-base1-30-non-holo-rare-fire-blaine-1",
|
|
1362
1362
|
title: "Magmar — Base Set #30 Non-Holo Rare (Lightly Played)",
|
|
1363
1363
|
description: "Magmar Non-Holo Rare, Lightly Played. Slight edge whitening but face clean.",
|
|
1364
|
-
slug: "magmar-base1-30-non-holo-rare-lp",
|
|
1364
|
+
slug: "product-magmar-base1-30-non-holo-rare-lp",
|
|
1365
1365
|
category: "category-non-holo-rare-rarity",
|
|
1366
1366
|
subcategory: "Fire",
|
|
1367
1367
|
brand: "Wizards of the Coast",
|
|
@@ -1395,15 +1395,15 @@ export const pokemonProductsSeedData = [
|
|
|
1395
1395
|
createdAt: daysAgo(10),
|
|
1396
1396
|
updatedAt: daysAgo(9),
|
|
1397
1397
|
},
|
|
1398
|
-
//
|
|
1398
|
+
// ════════════════════════════════════════════════════════════
|
|
1399
1399
|
// MORE UNCOMMONS
|
|
1400
|
-
//
|
|
1400
|
+
// ════════════════════════════════════════════════════════════
|
|
1401
1401
|
// #37 — Dewgong
|
|
1402
1402
|
{
|
|
1403
1403
|
id: "product-dewgong-base1-37-uncommon-water-misty-1",
|
|
1404
1404
|
title: "Dewgong — Base Set #37 Uncommon (Near Mint)",
|
|
1405
1405
|
description: "Dewgong Uncommon from Base Set — an underrated Water-type with Aurora Beam.",
|
|
1406
|
-
slug: "dewgong-base1-37-uncommon",
|
|
1406
|
+
slug: "product-dewgong-base1-37-uncommon",
|
|
1407
1407
|
category: "category-uncommon-rarity",
|
|
1408
1408
|
subcategory: "Water",
|
|
1409
1409
|
brand: "Wizards of the Coast",
|
|
@@ -1442,7 +1442,7 @@ export const pokemonProductsSeedData = [
|
|
|
1442
1442
|
id: "product-kadabra-base1-32-uncommon-psychic-surge-1",
|
|
1443
1443
|
title: "Kadabra — Base Set #32 Uncommon (Near Mint)",
|
|
1444
1444
|
description: "Kadabra Uncommon from Base Set. A notorious card rarely reprinted. Near Mint copy.",
|
|
1445
|
-
slug: "kadabra-base1-32-uncommon",
|
|
1445
|
+
slug: "product-kadabra-base1-32-uncommon",
|
|
1446
1446
|
category: "category-uncommon-rarity",
|
|
1447
1447
|
subcategory: "Psychic",
|
|
1448
1448
|
brand: "Wizards of the Coast",
|
|
@@ -1476,15 +1476,15 @@ export const pokemonProductsSeedData = [
|
|
|
1476
1476
|
createdAt: daysAgo(20),
|
|
1477
1477
|
updatedAt: daysAgo(6),
|
|
1478
1478
|
},
|
|
1479
|
-
//
|
|
1479
|
+
// ════════════════════════════════════════════════════════════
|
|
1480
1480
|
// MORE TRAINERS
|
|
1481
|
-
//
|
|
1481
|
+
// ════════════════════════════════════════════════════════════
|
|
1482
1482
|
// #93 — Potion
|
|
1483
1483
|
{
|
|
1484
1484
|
id: "product-potion-base1-93-common-trainer-misty-1",
|
|
1485
1485
|
title: "Potion — Base Set #93 Trainer Common (Near Mint)",
|
|
1486
1486
|
description: "Remove 2 damage counters from one of your Pokémon. Potion is the most classic Trainer card ever printed.",
|
|
1487
|
-
slug: "potion-base1-93-trainer-common",
|
|
1487
|
+
slug: "product-potion-base1-93-trainer-common",
|
|
1488
1488
|
category: "category-trainer-type-card-type",
|
|
1489
1489
|
subcategory: "Trainer",
|
|
1490
1490
|
brand: "Wizards of the Coast",
|
|
@@ -1524,7 +1524,7 @@ export const pokemonProductsSeedData = [
|
|
|
1524
1524
|
id: "product-bill-base1-89-common-trainer-surge-1",
|
|
1525
1525
|
title: "Bill — Base Set #89 Trainer Common (Near Mint)",
|
|
1526
1526
|
description: "Draw 2 cards. Bill is a beloved draw supporter from Base Set — simple, effective, nostalgic.",
|
|
1527
|
-
slug: "bill-base1-89-trainer-common",
|
|
1527
|
+
slug: "product-bill-base1-89-trainer-common",
|
|
1528
1528
|
category: "category-trainer-type-card-type",
|
|
1529
1529
|
subcategory: "Trainer",
|
|
1530
1530
|
brand: "Wizards of the Coast",
|
|
@@ -1559,15 +1559,15 @@ export const pokemonProductsSeedData = [
|
|
|
1559
1559
|
createdAt: daysAgo(23),
|
|
1560
1560
|
updatedAt: daysAgo(4),
|
|
1561
1561
|
},
|
|
1562
|
-
//
|
|
1562
|
+
// ════════════════════════════════════════════════════════════
|
|
1563
1563
|
// GRADED SLAB (non-auction)
|
|
1564
|
-
//
|
|
1564
|
+
// ════════════════════════════════════════════════════════════
|
|
1565
1565
|
// Blastoise PSA 8
|
|
1566
1566
|
{
|
|
1567
1567
|
id: "product-blastoise-psa8-base1-2-water-misty-graded",
|
|
1568
1568
|
title: "Blastoise — Base Set #2 Holo Rare (PSA 8 NM-MT)",
|
|
1569
1569
|
description: "PSA graded 8 (NM-MT) Blastoise Holo Rare from Base Set. A certified investment-grade slab for serious collectors. No auction — buy it now.",
|
|
1570
|
-
slug: "blastoise-base1-2-psa8-holo-graded",
|
|
1570
|
+
slug: "product-blastoise-base1-2-psa8-holo-graded",
|
|
1571
1571
|
category: "category-holo-rare-rarity",
|
|
1572
1572
|
subcategory: "Water",
|
|
1573
1573
|
brand: "Wizards of the Coast",
|
|
@@ -1608,7 +1608,7 @@ export const pokemonProductsSeedData = [
|
|
|
1608
1608
|
id: "product-base-set-booster-box-sealed-blaine-2",
|
|
1609
1609
|
title: "Pokémon Base Set Booster Box (36 Packs, Sealed)",
|
|
1610
1610
|
description: "Factory-sealed Base Set booster box containing 36 packs (11 cards each). The ultimate sealed vintage investment. Ships double-boxed.",
|
|
1611
|
-
slug: "pokemon-tcg-base-set-sealed-booster-box-36-packs",
|
|
1611
|
+
slug: "product-pokemon-tcg-base-set-sealed-booster-box-36-packs",
|
|
1612
1612
|
category: "category-sealed-products",
|
|
1613
1613
|
subcategory: "Booster Box",
|
|
1614
1614
|
brand: "Wizards of the Coast",
|
|
@@ -1644,9 +1644,9 @@ export const pokemonProductsSeedData = [
|
|
|
1644
1644
|
createdAt: daysAgo(5),
|
|
1645
1645
|
updatedAt: daysAgo(1),
|
|
1646
1646
|
},
|
|
1647
|
-
//
|
|
1647
|
+
// ════════════════════════════════════════════════════════════
|
|
1648
1648
|
// PRE-ORDERS
|
|
1649
|
-
//
|
|
1649
|
+
// ════════════════════════════════════════════════════════════
|
|
1650
1650
|
{
|
|
1651
1651
|
id: "preorder-pokemon-tcg-151-booster-box-misty-1",
|
|
1652
1652
|
title: "Pokémon TCG: Scarlet & Violet — 151 Booster Box (Pre-Order)",
|
|
@@ -1778,4 +1778,14 @@ export const pokemonProductsSeedData = [
|
|
|
1778
1778
|
createdAt: daysAgo(3),
|
|
1779
1779
|
updatedAt: daysAgo(1),
|
|
1780
1780
|
},
|
|
1781
|
-
].map((item) =>
|
|
1781
|
+
].map((item) => {
|
|
1782
|
+
const p = withRichTextDescription(item);
|
|
1783
|
+
const isSimplePublished = !p.isAuction &&
|
|
1784
|
+
!p.isPreOrder &&
|
|
1785
|
+
p.status === "published" &&
|
|
1786
|
+
(p.availableQuantity ?? p.stockQuantity ?? 1) > 0;
|
|
1787
|
+
return {
|
|
1788
|
+
...p,
|
|
1789
|
+
allowOffers: isSimplePublished ? true : (p.allowOffers ?? false),
|
|
1790
|
+
};
|
|
1791
|
+
});
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* - storeAddresses (storeAddressesSeedData)
|
|
22
22
|
* - coupons (pokemonCouponsSeedData)
|
|
23
23
|
*/
|
|
24
|
-
/** All products across all
|
|
24
|
+
/** All products across all franchises + official store — use this as the `products` seed collection. */
|
|
25
25
|
export declare const allProductsSeedData: Partial<import("..").ProductDocument>[];
|
|
26
26
|
export { pokemonCategoriesSeedData } from "./pokemon-categories-seed-data";
|
|
27
27
|
export { pokemonUsersSeedData } from "./pokemon-users-seed-data";
|
|
@@ -41,3 +41,7 @@ export { eventsSeedData, eventEntriesSeedData } from "./events-seed-data";
|
|
|
41
41
|
export { addressesSeedData } from "./addresses-seed-data";
|
|
42
42
|
export { storeAddressesSeedData } from "./store-addresses-seed-data";
|
|
43
43
|
export { pokemonCouponsSeedData } from "./pokemon-coupons-seed-data";
|
|
44
|
+
export { animeFiguresSeedData } from "./anime-figures-seed-data";
|
|
45
|
+
export { retroGamingSeedData } from "./retro-gaming-seed-data";
|
|
46
|
+
export { cosplayAccessoriesSeedData } from "./cosplay-accessories-seed-data";
|
|
47
|
+
export { letitripOfficialSeedData } from "./letitrip-official-seed-data";
|
|
@@ -25,13 +25,28 @@ import { pokemonProductsSeedData } from "./pokemon-products-seed-data";
|
|
|
25
25
|
import { hotWheelsProductsSeedData } from "./hot-wheels-seed-data";
|
|
26
26
|
import { beybladeProductsSeedData } from "./beyblade-seed-data";
|
|
27
27
|
import { transformersProductsSeedData } from "./transformers-seed-data";
|
|
28
|
-
|
|
28
|
+
import { animeFiguresSeedData } from "./anime-figures-seed-data";
|
|
29
|
+
import { retroGamingSeedData } from "./retro-gaming-seed-data";
|
|
30
|
+
import { cosplayAccessoriesSeedData } from "./cosplay-accessories-seed-data";
|
|
31
|
+
import { letitripOfficialSeedData } from "./letitrip-official-seed-data";
|
|
32
|
+
function withAllowOffers(p) {
|
|
33
|
+
const eligible = !p.isAuction &&
|
|
34
|
+
!p.isPreOrder &&
|
|
35
|
+
p.status === "published" &&
|
|
36
|
+
(p.availableQuantity ?? p.stockQuantity ?? 1) > 0;
|
|
37
|
+
return { ...p, allowOffers: eligible ? true : (p.allowOffers ?? false) };
|
|
38
|
+
}
|
|
39
|
+
/** All products across all franchises + official store — use this as the `products` seed collection. */
|
|
29
40
|
export const allProductsSeedData = [
|
|
30
41
|
...pokemonProductsSeedData,
|
|
31
42
|
...hotWheelsProductsSeedData,
|
|
32
43
|
...beybladeProductsSeedData,
|
|
33
44
|
...transformersProductsSeedData,
|
|
34
|
-
|
|
45
|
+
...animeFiguresSeedData,
|
|
46
|
+
...retroGamingSeedData,
|
|
47
|
+
...cosplayAccessoriesSeedData,
|
|
48
|
+
...letitripOfficialSeedData,
|
|
49
|
+
].map(withAllowOffers);
|
|
35
50
|
export { pokemonCategoriesSeedData } from "./pokemon-categories-seed-data";
|
|
36
51
|
export { pokemonUsersSeedData } from "./pokemon-users-seed-data";
|
|
37
52
|
export { pokemonProductsSeedData } from "./pokemon-products-seed-data";
|
|
@@ -50,3 +65,7 @@ export { eventsSeedData, eventEntriesSeedData } from "./events-seed-data";
|
|
|
50
65
|
export { addressesSeedData } from "./addresses-seed-data";
|
|
51
66
|
export { storeAddressesSeedData } from "./store-addresses-seed-data";
|
|
52
67
|
export { pokemonCouponsSeedData } from "./pokemon-coupons-seed-data";
|
|
68
|
+
export { animeFiguresSeedData } from "./anime-figures-seed-data";
|
|
69
|
+
export { retroGamingSeedData } from "./retro-gaming-seed-data";
|
|
70
|
+
export { cosplayAccessoriesSeedData } from "./cosplay-accessories-seed-data";
|
|
71
|
+
export { letitripOfficialSeedData } from "./letitrip-official-seed-data";
|