@mohasinac/appkit 2.3.1 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +54 -18
- package/dist/client.js +29 -10
- package/dist/constants/api-endpoints.d.ts +384 -22
- package/dist/constants/api-endpoints.js +68 -13
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/core/contact-submissions.repository.d.ts +32 -0
- package/dist/core/contact-submissions.repository.js +49 -0
- package/dist/core/hooks/useSyncManager.d.ts +1 -0
- package/dist/core/hooks/useSyncManager.js +83 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +1 -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/HowPayoutsWorkView.js +1 -1
- package/dist/features/about/components/PolicyPageView.js +32 -11
- package/dist/features/about/components/PublicProfileView.js +77 -11
- package/dist/features/account/components/AddressFilters.d.ts +5 -0
- package/dist/features/account/components/AddressFilters.js +20 -0
- package/dist/features/account/components/AddressesIndexListing.d.ts +6 -0
- package/dist/features/account/components/AddressesIndexListing.js +76 -0
- 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 +12 -3
- package/dist/features/account/components/UserSidebar.js +64 -10
- package/dist/features/account/components/index.d.ts +2 -0
- package/dist/features/account/components/index.js +1 -0
- package/dist/features/account/hooks/useAddresses.d.ts +7 -0
- package/dist/features/account/hooks/useAddresses.js +12 -1
- 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/actions/admin-read-actions.d.ts +12 -0
- package/dist/features/admin/actions/admin-read-actions.js +18 -0
- 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 +64 -10
- 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 +155 -20
- 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 +69 -26
- 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.d.ts +4 -0
- package/dist/features/admin/components/AdminContactView.js +141 -0
- 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 -6
- package/dist/features/admin/components/AdminFeatureFlagsView.js +33 -24
- package/dist/features/admin/components/AdminListingScaffold.d.ts +17 -2
- package/dist/features/admin/components/AdminListingScaffold.js +14 -3
- 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.d.ts +4 -0
- package/dist/features/admin/components/AdminNewsletterView.js +132 -0
- 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 +124 -7
- 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 +140 -6
- 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 -5
- 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 +73 -14
- 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 +5 -2
- package/dist/features/admin/components/DataTable.js +38 -4
- package/dist/features/admin/components/index.d.ts +53 -1
- package/dist/features/admin/components/index.js +26 -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/hooks/useAdminListingData.d.ts +3 -1
- package/dist/features/admin/hooks/useAdminListingData.js +12 -7
- package/dist/features/admin/schemas/firestore.d.ts +26 -0
- package/dist/features/admin/schemas/firestore.js +1 -0
- package/dist/features/admin/server.d.ts +3 -0
- package/dist/features/admin/server.js +2 -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 +125 -53
- package/dist/features/auctions/components/AuctionFilters.d.ts +10 -0
- package/dist/features/auctions/components/AuctionFilters.js +16 -0
- package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
- package/dist/features/auctions/components/AuctionsListView.js +37 -5
- 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 +18 -8
- 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/BlogFeaturedCard.d.ts +1 -7
- package/dist/features/blog/components/BlogFeaturedCard.js +4 -5
- package/dist/features/blog/components/BlogFilters.js +2 -1
- package/dist/features/blog/components/BlogIndexListing.js +66 -9
- package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
- package/dist/features/blog/components/BlogIndexPageView.js +24 -4
- package/dist/features/blog/components/BlogListView.d.ts +2 -1
- package/dist/features/blog/components/BlogListView.js +10 -3
- 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 +117 -38
- package/dist/features/categories/components/CategoriesIndexPageView.d.ts +6 -1
- package/dist/features/categories/components/CategoriesIndexPageView.js +41 -2
- package/dist/features/categories/components/CategoryDetailPageView.js +47 -19
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +11 -0
- package/dist/features/categories/components/CategoryDetailTabs.js +22 -0
- package/dist/features/categories/components/CategoryFilters.js +2 -1
- package/dist/features/categories/components/CategoryForm.js +10 -4
- package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
- package/dist/features/categories/components/CategoryGrid.js +8 -6
- package/dist/features/categories/components/CategoryProductsListing.d.ts +4 -1
- package/dist/features/categories/components/CategoryProductsListing.js +53 -13
- package/dist/features/categories/components/ConcernCard.js +1 -1
- package/dist/features/categories/components/index.d.ts +2 -0
- package/dist/features/categories/components/index.js +1 -0
- package/dist/features/categories/hooks/useCategories.d.ts +20 -0
- package/dist/features/categories/hooks/useCategories.js +52 -1
- package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
- package/dist/features/categories/hooks/useCategoryTree.js +65 -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.d.ts +6 -0
- package/dist/features/events/components/AdminEventEditorView.js +203 -0
- package/dist/features/events/components/AdminEventsView.d.ts +4 -1
- package/dist/features/events/components/AdminEventsView.js +66 -14
- package/dist/features/events/components/EventCard.js +4 -2
- package/dist/features/events/components/EventFilters.js +2 -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 +92 -10
- package/dist/features/events/components/EventsListPageView.d.ts +6 -1
- package/dist/features/events/components/EventsListPageView.js +40 -7
- package/dist/features/events/components/index.d.ts +4 -0
- package/dist/features/events/components/index.js +2 -0
- package/dist/features/events/hooks/useEvents.d.ts +1 -0
- package/dist/features/events/hooks/useEvents.js +3 -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 +3 -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 +3 -3
- 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 +3 -3
- package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.js +3 -3
- package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.js +3 -3
- 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 +3 -3
- 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 +129 -85
- package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +2 -20
- package/dist/features/homepage/components/MarketplaceHomepageView.js +73 -220
- package/dist/features/homepage/components/SectionCarousel.d.ts +1 -1
- package/dist/features/homepage/components/SectionCarousel.js +6 -4
- 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 +7 -1
- package/dist/features/homepage/types/index.d.ts +48 -19
- package/dist/features/layout/AppLayoutShell.d.ts +11 -2
- package/dist/features/layout/AppLayoutShell.js +30 -10
- 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.d.ts +3 -1
- package/dist/features/pre-orders/components/MarketplacePreorderCard.js +13 -8
- 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 +100 -14
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +10 -0
- package/dist/features/pre-orders/components/PreOrderFilters.js +24 -0
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +4 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +166 -11
- package/dist/features/pre-orders/components/PreOrdersListView.d.ts +6 -1
- package/dist/features/pre-orders/components/PreOrdersListView.js +26 -7
- package/dist/features/pre-orders/components/PreorderCard.js +1 -1
- package/dist/features/pre-orders/components/index.d.ts +2 -0
- package/dist/features/pre-orders/components/index.js +1 -0
- 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 +4 -1
- package/dist/features/products/components/AuctionsIndexListing.js +124 -10
- package/dist/features/products/components/BidHistory.d.ts +2 -1
- package/dist/features/products/components/BidHistory.js +18 -2
- package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
- package/dist/features/products/components/InteractiveProductCard.js +2 -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 +136 -26
- package/dist/features/products/components/ProductFilters.d.ts +13 -12
- package/dist/features/products/components/ProductFilters.js +8 -4
- 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 +16 -2
- package/dist/features/products/components/ProductGrid.js +80 -18
- package/dist/features/products/components/ProductTabsShell.d.ts +3 -11
- package/dist/features/products/components/ProductTabsShell.js +14 -14
- package/dist/features/products/components/ProductsIndexListing.js +160 -10
- package/dist/features/products/components/ProductsIndexPageView.d.ts +6 -1
- package/dist/features/products/components/ProductsIndexPageView.js +39 -6
- package/dist/features/products/components/RelatedProductsCarousel.d.ts +7 -0
- package/dist/features/products/components/RelatedProductsCarousel.js +11 -0
- 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 +3 -0
- package/dist/features/products/components/index.js +2 -0
- package/dist/features/products/hooks/useProducts.d.ts +7 -0
- package/dist/features/products/hooks/useProducts.js +20 -2
- package/dist/features/products/repository/products.repository.d.ts +9 -5
- package/dist/features/products/repository/products.repository.js +19 -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 +43 -42
- package/dist/features/products/schemas/index.js +2 -5
- package/dist/features/products/types/index.d.ts +24 -4
- 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.d.ts +9 -0
- package/dist/features/promotions/components/CouponsIndexListing.js +80 -0
- package/dist/features/promotions/components/PromotionsView.d.ts +11 -5
- package/dist/features/promotions/components/PromotionsView.js +6 -1
- package/dist/features/promotions/components/index.d.ts +4 -2
- package/dist/features/promotions/components/index.js +2 -1
- 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.d.ts +4 -0
- package/dist/features/reviews/components/ReviewDetailPageView.js +16 -0
- package/dist/features/reviews/components/ReviewDetailShell.d.ts +7 -0
- package/dist/features/reviews/components/ReviewDetailShell.js +80 -0
- package/dist/features/reviews/components/ReviewFilters.d.ts +3 -3
- package/dist/features/reviews/components/ReviewFilters.js +5 -4
- package/dist/features/reviews/components/ReviewsIndexListing.d.ts +4 -3
- package/dist/features/reviews/components/ReviewsIndexListing.js +86 -51
- package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +6 -1
- package/dist/features/reviews/components/ReviewsIndexPageView.js +49 -3
- package/dist/features/reviews/components/ReviewsList.js +9 -1
- package/dist/features/reviews/components/index.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.js +16 -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 +9 -3
- 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 +7 -0
- package/dist/features/scams/components/ScamProfileView.js +49 -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 +18 -6
- package/dist/features/seller/components/SellerSidebar.js +54 -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 +45 -1
- package/dist/features/seller/components/index.js +24 -0
- package/dist/features/seller/hooks/useSellerListingData.d.ts +3 -1
- package/dist/features/seller/hooks/useSellerListingData.js +6 -4
- package/dist/features/seller/hooks/useSellerStore.d.ts +2 -0
- package/dist/features/seller/hooks/useSellerStore.js +2 -0
- package/dist/features/seller/permission-map.d.ts +4 -2
- package/dist/features/seller/permission-map.js +16 -14
- 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 +18 -18
- 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.d.ts +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +25 -20
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +2 -7
- package/dist/features/stores/components/InteractiveStoreCard.js +24 -10
- 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 +103 -12
- 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 +30 -4
- package/dist/features/stores/components/StoreFilters.d.ts +5 -0
- package/dist/features/stores/components/StoreFilters.js +20 -0
- package/dist/features/stores/components/StoreHeader.js +3 -2
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +7 -0
- package/dist/features/stores/components/StorePreOrdersListing.js +92 -0
- package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
- package/dist/features/stores/components/StorePreOrdersPageView.js +22 -0
- package/dist/features/stores/components/StoreProductsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreProductsListing.js +113 -14
- package/dist/features/stores/components/StoreProductsPageView.js +8 -7
- package/dist/features/stores/components/StoreReviewsListing.js +4 -9
- package/dist/features/stores/components/StoresIndexListing.js +106 -9
- package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
- package/dist/features/stores/components/StoresIndexPageView.js +9 -2
- package/dist/features/stores/components/StoresListView.js +1 -1
- package/dist/features/stores/components/index.d.ts +3 -0
- package/dist/features/stores/components/index.js +1 -0
- package/dist/features/stores/hooks/useStores.d.ts +8 -1
- package/dist/features/stores/hooks/useStores.js +17 -3
- package/dist/features/stores/schemas/firestore.d.ts +34 -0
- package/dist/features/stores/schemas/index.d.ts +10 -10
- package/dist/features/stores/types/index.d.ts +3 -0
- 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/useGuestWishlist.d.ts +20 -0
- package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
- package/dist/features/wishlist/hooks/useWishlist.js +2 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +15 -0
- package/dist/features/wishlist/hooks/useWishlistCount.js +95 -0
- package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +56 -0
- package/dist/features/wishlist/hooks/useWishlistWithGuest.js +57 -0
- package/dist/features/wishlist/index.d.ts +3 -0
- package/dist/features/wishlist/index.js +3 -0
- package/dist/features/wishlist/schemas/index.d.ts +2 -2
- package/dist/features/wishlist/types/index.d.ts +16 -0
- package/dist/features/wishlist/utils/guest-wishlist.d.ts +22 -0
- package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
- package/dist/http/api-handler.js +8 -1
- package/dist/index.d.ts +158 -13
- package/dist/index.js +188 -21
- package/dist/monitoring/server-logger.js +9 -3
- package/dist/next/routing/route-map.d.ts +184 -36
- package/dist/next/routing/route-map.js +81 -22
- 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/addresses-seed-data.js +62 -261
- 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.d.ts +7 -0
- package/dist/seed/beyblade-seed-data.js +1129 -0
- package/dist/seed/bids-seed-data.d.ts +4 -2
- package/dist/seed/bids-seed-data.js +343 -1067
- package/dist/seed/blog-posts-seed-data.d.ts +3 -2
- package/dist/seed/blog-posts-seed-data.js +258 -181
- 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 +8 -8
- package/dist/seed/cart-seed-data.js +73 -74
- 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 +4 -2
- package/dist/seed/coupons-seed-data.js +204 -338
- package/dist/seed/events-seed-data.d.ts +4 -2
- package/dist/seed/events-seed-data.js +125 -588
- 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 -41
- package/dist/seed/faq-seed-data.js +833 -1977
- 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.d.ts +7 -0
- package/dist/seed/hot-wheels-seed-data.js +1612 -0
- package/dist/seed/index.d.ts +12 -6
- package/dist/seed/index.js +10 -7
- 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.d.ts +4 -2
- package/dist/seed/pokemon-carousel-slides-seed-data.js +157 -268
- package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
- package/dist/seed/pokemon-categories-seed-data.js +445 -1025
- package/dist/seed/pokemon-coupons-seed-data.d.ts +6 -0
- package/dist/seed/pokemon-coupons-seed-data.js +465 -0
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +3 -2
- package/dist/seed/pokemon-homepage-sections-seed-data.js +120 -249
- package/dist/seed/pokemon-products-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-products-seed-data.js +720 -48
- package/dist/seed/pokemon-seed-bundle.d.ts +36 -11
- package/dist/seed/pokemon-seed-bundle.js +60 -11
- package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
- package/dist/seed/pokemon-stores-seed-data.js +135 -34
- package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
- package/dist/seed/pokemon-users-seed-data.js +344 -261
- 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 -2
- package/dist/seed/reviews-seed-data.js +1005 -441
- 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 +39 -16
- package/dist/seed/store-addresses-seed-data.js +187 -65
- 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.d.ts +7 -0
- package/dist/seed/transformers-seed-data.js +530 -0
- 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.d.ts +5 -1
- package/dist/seed/wishlists-seed-data.js +84 -6
- package/dist/server.d.ts +10 -2
- package/dist/server.js +14 -4
- package/dist/tokens/index.d.ts +6 -0
- package/dist/tokens/index.js +2 -0
- 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 +39 -30
- package/dist/ui/components/BaseListingCard.style.css +8 -6
- 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 +130 -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/SideDrawer.style.css +3 -11
- 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 +21 -2
- 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
|
@@ -1,38 +1,50 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* Multi-Franchise Collectibles — Categories Seed Data (35 categories)
|
|
3
|
+
*
|
|
4
|
+
* Franchises: Pokémon TCG · Hot Wheels · Beyblade Burst · Transformers
|
|
3
5
|
*
|
|
4
6
|
* Hierarchy:
|
|
5
|
-
* Pokémon Cards (root)
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
* │ ├- Non-Holo Rare (leaf)
|
|
21
|
-
* │ ├- Uncommon (leaf)
|
|
22
|
-
* │ └- Common (leaf)
|
|
23
|
-
* Sealed Products (root, leaf)
|
|
24
|
-
* Accessories (root, leaf)
|
|
7
|
+
* Pokémon Cards (root) — tier 0
|
|
8
|
+
* Card Type — tier 1
|
|
9
|
+
* Pokémon / Trainer / Energy — tier 2 leaf
|
|
10
|
+
* Element Type — tier 1
|
|
11
|
+
* Water / Electric / Fire / Grass / Psychic / Fighting / Colorless — leaf
|
|
12
|
+
* Rarity — tier 1
|
|
13
|
+
* Holo Rare / Non-Holo / Uncommon / Common — leaf
|
|
14
|
+
* Hot Wheels (root) — tier 0
|
|
15
|
+
* Basic Cars / Premium / Treasure Hunt / Track Sets — tier 1 leaf
|
|
16
|
+
* Beyblade Burst (root) — tier 0
|
|
17
|
+
* Attack / Defense / Stamina / Balance / Stadium — tier 1 leaf
|
|
18
|
+
* Transformers (root) — tier 0
|
|
19
|
+
* Autobots / Decepticons / Combiners — tier 1 leaf
|
|
20
|
+
* Sealed Products (root leaf)
|
|
21
|
+
* Accessories (root leaf)
|
|
25
22
|
*/
|
|
26
23
|
const NOW = new Date();
|
|
27
24
|
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
28
25
|
const ADMIN = "user-admin-user-admin";
|
|
26
|
+
function mkCat(partial) {
|
|
27
|
+
return {
|
|
28
|
+
isActive: true,
|
|
29
|
+
isSearchable: true,
|
|
30
|
+
isFeatured: false,
|
|
31
|
+
isBrand: false,
|
|
32
|
+
showOnHomepage: false,
|
|
33
|
+
createdBy: ADMIN,
|
|
34
|
+
createdAt: daysAgo(30),
|
|
35
|
+
updatedAt: daysAgo(1),
|
|
36
|
+
...partial,
|
|
37
|
+
};
|
|
38
|
+
}
|
|
29
39
|
export const pokemonCategoriesSeedData = [
|
|
30
|
-
//
|
|
31
|
-
|
|
40
|
+
// ═══════════════════════════════════════════════════
|
|
41
|
+
// POKÉMON TCG
|
|
42
|
+
// ═══════════════════════════════════════════════════
|
|
43
|
+
mkCat({
|
|
32
44
|
id: "category-pokemon-cards",
|
|
33
45
|
name: "Pokémon Cards",
|
|
34
|
-
slug: "pokemon-cards",
|
|
35
|
-
description: "Original Pokémon Base Set 151 cards — singles, lots, and
|
|
46
|
+
slug: "category-pokemon-cards",
|
|
47
|
+
description: "Original Pokémon Base Set 151 cards — singles, lots, graded, and sealed",
|
|
36
48
|
rootId: "category-pokemon-cards",
|
|
37
49
|
parentIds: [],
|
|
38
50
|
childrenIds: [
|
|
@@ -44,1084 +56,492 @@ export const pokemonCategoriesSeedData = [
|
|
|
44
56
|
path: "pokemon-cards",
|
|
45
57
|
order: 1,
|
|
46
58
|
isLeaf: false,
|
|
47
|
-
metrics: {
|
|
48
|
-
productCount: 0,
|
|
49
|
-
productIds: [],
|
|
50
|
-
auctionCount: 0,
|
|
51
|
-
auctionIds: [],
|
|
52
|
-
totalProductCount: 60,
|
|
53
|
-
totalAuctionCount: 5,
|
|
54
|
-
totalItemCount: 65,
|
|
55
|
-
lastUpdated: daysAgo(1),
|
|
56
|
-
},
|
|
57
59
|
isFeatured: true,
|
|
58
60
|
featuredPriority: 1,
|
|
59
|
-
|
|
61
|
+
showOnHomepage: true,
|
|
62
|
+
metrics: {
|
|
63
|
+
productCount: 0, productIds: [], auctionCount: 0, auctionIds: [],
|
|
64
|
+
totalProductCount: 80, totalAuctionCount: 6, totalItemCount: 86, lastUpdated: daysAgo(1),
|
|
65
|
+
},
|
|
60
66
|
seo: {
|
|
61
67
|
title: "Pokémon Cards — Base Set 151 | LetItRip",
|
|
62
68
|
description: "Buy and sell original Pokémon Base Set 151 singles, holos, and sealed packs.",
|
|
63
69
|
keywords: ["pokemon cards", "base set", "151", "charizard", "pikachu"],
|
|
64
70
|
},
|
|
65
|
-
display: {
|
|
66
|
-
showInFooter: true,
|
|
67
|
-
icon: "🃏",
|
|
68
|
-
coverImage: "https://images.pokemontcg.io/base1/logo.png",
|
|
69
|
-
color: "#FFCB05",
|
|
70
|
-
showInMenu: true,
|
|
71
|
-
},
|
|
72
|
-
showOnHomepage: true,
|
|
73
|
-
isActive: true,
|
|
74
|
-
isSearchable: true,
|
|
71
|
+
display: { showInFooter: true, icon: "ðŸƒ", coverImage: "https://images.pokemontcg.io/base1/logo.png", color: "#FFCB05", showInMenu: true },
|
|
75
72
|
ancestors: [],
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
updatedAt: daysAgo(1),
|
|
79
|
-
},
|
|
80
|
-
// -- TIER 1: Card Type -------------------------------------------------------
|
|
81
|
-
{
|
|
73
|
+
}),
|
|
74
|
+
mkCat({
|
|
82
75
|
id: "category-card-type-pokemon-cards",
|
|
83
76
|
name: "Card Type",
|
|
84
|
-
slug: "card-type",
|
|
85
|
-
description: "Filter by Pokémon, Trainer, or Energy",
|
|
77
|
+
slug: "category-card-type-pokemon-cards",
|
|
78
|
+
description: "Filter by Pokémon, Trainer, or Energy card",
|
|
86
79
|
rootId: "category-pokemon-cards",
|
|
87
80
|
parentIds: ["category-pokemon-cards"],
|
|
88
|
-
childrenIds: [
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
tier:
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
isLeaf: false,
|
|
97
|
-
metrics: {
|
|
98
|
-
productCount: 0,
|
|
99
|
-
productIds: [],
|
|
100
|
-
auctionCount: 0,
|
|
101
|
-
auctionIds: [],
|
|
102
|
-
totalProductCount: 40,
|
|
103
|
-
totalAuctionCount: 3,
|
|
104
|
-
totalItemCount: 43,
|
|
105
|
-
lastUpdated: daysAgo(1),
|
|
106
|
-
},
|
|
107
|
-
isFeatured: false,
|
|
108
|
-
isBrand: false,
|
|
109
|
-
seo: {
|
|
110
|
-
title: "Card Type — Pokémon Base Set 151",
|
|
111
|
-
description: "Shop by Pokémon, Trainer, or Energy card type.",
|
|
112
|
-
keywords: ["pokemon card type", "trainer card", "energy card"],
|
|
113
|
-
},
|
|
114
|
-
display: { showInFooter: false, icon: "🎴", showInMenu: true },
|
|
115
|
-
showOnHomepage: false,
|
|
116
|
-
isActive: true,
|
|
117
|
-
isSearchable: true,
|
|
118
|
-
ancestors: [
|
|
119
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
120
|
-
],
|
|
121
|
-
createdBy: ADMIN,
|
|
122
|
-
createdAt: daysAgo(30),
|
|
123
|
-
updatedAt: daysAgo(1),
|
|
124
|
-
},
|
|
125
|
-
// -- LEAF: Pokémon-type cards ------------------------------------------------
|
|
126
|
-
{
|
|
81
|
+
childrenIds: ["category-pokemon-type-card-type", "category-trainer-type-card-type", "category-energy-type-card-type"],
|
|
82
|
+
tier: 1, path: "pokemon-cards/card-type", order: 1, isLeaf: false,
|
|
83
|
+
metrics: { productCount: 0, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 45, totalAuctionCount: 4, totalItemCount: 49, lastUpdated: daysAgo(1) },
|
|
84
|
+
seo: { title: "Card Type — Pokémon TCG", description: "Shop by card type.", keywords: ["pokemon card type"] },
|
|
85
|
+
display: { showInFooter: false, icon: "🎴", showInMenu: true },
|
|
86
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }],
|
|
87
|
+
}),
|
|
88
|
+
mkCat({
|
|
127
89
|
id: "category-pokemon-type-card-type",
|
|
128
90
|
name: "Pokémon Cards",
|
|
129
|
-
slug: "pokemon-type",
|
|
91
|
+
slug: "category-pokemon-type-card-type",
|
|
130
92
|
description: "Individual creature cards — the core of the Base Set",
|
|
131
93
|
rootId: "category-pokemon-cards",
|
|
132
94
|
parentIds: ["category-card-type-pokemon-cards"],
|
|
133
|
-
childrenIds: [],
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
auctionCount: 3,
|
|
142
|
-
auctionIds: [],
|
|
143
|
-
totalProductCount: 30,
|
|
144
|
-
totalAuctionCount: 3,
|
|
145
|
-
totalItemCount: 33,
|
|
146
|
-
lastUpdated: daysAgo(1),
|
|
147
|
-
},
|
|
148
|
-
isFeatured: true,
|
|
149
|
-
featuredPriority: 2,
|
|
150
|
-
isBrand: false,
|
|
151
|
-
seo: {
|
|
152
|
-
title: "Pokémon Cards — Base Set Singles",
|
|
153
|
-
description: "Shop all 102 Pokémon Base Set creature singles.",
|
|
154
|
-
keywords: [
|
|
155
|
-
"pokemon singles",
|
|
156
|
-
"base set pokemon",
|
|
157
|
-
"charizard",
|
|
158
|
-
"blastoise",
|
|
159
|
-
],
|
|
160
|
-
},
|
|
161
|
-
display: {
|
|
162
|
-
showInFooter: false,
|
|
163
|
-
icon: "⚡",
|
|
164
|
-
coverImage: "https://images.pokemontcg.io/base1/4_hires.png",
|
|
165
|
-
showInMenu: true,
|
|
166
|
-
},
|
|
167
|
-
showOnHomepage: true,
|
|
168
|
-
isActive: true,
|
|
169
|
-
isSearchable: true,
|
|
170
|
-
ancestors: [
|
|
171
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
172
|
-
{ id: "category-card-type-pokemon-cards", name: "Card Type", tier: 1 },
|
|
173
|
-
],
|
|
174
|
-
createdBy: ADMIN,
|
|
175
|
-
createdAt: daysAgo(30),
|
|
176
|
-
updatedAt: daysAgo(1),
|
|
177
|
-
},
|
|
178
|
-
// -- LEAF: Trainer cards -----------------------------------------------------
|
|
179
|
-
{
|
|
95
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/card-type/pokemon-type", order: 1, isLeaf: true,
|
|
96
|
+
isFeatured: true, featuredPriority: 2, showOnHomepage: true,
|
|
97
|
+
metrics: { productCount: 35, productIds: [], auctionCount: 4, auctionIds: [], totalProductCount: 35, totalAuctionCount: 4, totalItemCount: 39, lastUpdated: daysAgo(1) },
|
|
98
|
+
seo: { title: "Pokémon Cards — Base Set Singles", description: "Shop all Base Set creature singles.", keywords: ["pokemon singles", "charizard", "blastoise"] },
|
|
99
|
+
display: { showInFooter: false, icon: "âš¡", coverImage: "https://images.pokemontcg.io/base1/4_hires.png", showInMenu: true },
|
|
100
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-card-type-pokemon-cards", name: "Card Type", tier: 1 }],
|
|
101
|
+
}),
|
|
102
|
+
mkCat({
|
|
180
103
|
id: "category-trainer-type-card-type",
|
|
181
104
|
name: "Trainer Cards",
|
|
182
|
-
slug: "trainer-type",
|
|
105
|
+
slug: "category-trainer-type-card-type",
|
|
183
106
|
description: "Supporter, Item, and Stadium trainer cards from Base Set",
|
|
184
107
|
rootId: "category-pokemon-cards",
|
|
185
108
|
parentIds: ["category-card-type-pokemon-cards"],
|
|
186
|
-
childrenIds: [],
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
productIds: [],
|
|
194
|
-
auctionCount: 0,
|
|
195
|
-
auctionIds: [],
|
|
196
|
-
totalProductCount: 8,
|
|
197
|
-
totalAuctionCount: 0,
|
|
198
|
-
totalItemCount: 8,
|
|
199
|
-
lastUpdated: daysAgo(1),
|
|
200
|
-
},
|
|
201
|
-
isFeatured: false,
|
|
202
|
-
isBrand: false,
|
|
203
|
-
seo: {
|
|
204
|
-
title: "Trainer Cards — Base Set",
|
|
205
|
-
description: "Professor Oak, Bill, Energy Retrieval and more Base Set trainer cards.",
|
|
206
|
-
keywords: ["trainer cards", "professor oak", "bill", "pokemon trainer"],
|
|
207
|
-
},
|
|
208
|
-
display: {
|
|
209
|
-
showInFooter: false,
|
|
210
|
-
icon: "🧑🏫",
|
|
211
|
-
coverImage: "https://images.pokemontcg.io/base1/88_hires.png",
|
|
212
|
-
showInMenu: true,
|
|
213
|
-
},
|
|
214
|
-
showOnHomepage: false,
|
|
215
|
-
isActive: true,
|
|
216
|
-
isSearchable: true,
|
|
217
|
-
ancestors: [
|
|
218
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
219
|
-
{ id: "category-card-type-pokemon-cards", name: "Card Type", tier: 1 },
|
|
220
|
-
],
|
|
221
|
-
createdBy: ADMIN,
|
|
222
|
-
createdAt: daysAgo(30),
|
|
223
|
-
updatedAt: daysAgo(1),
|
|
224
|
-
},
|
|
225
|
-
// -- LEAF: Energy cards ------------------------------------------------------
|
|
226
|
-
{
|
|
109
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/card-type/trainer-type", order: 2, isLeaf: true,
|
|
110
|
+
metrics: { productCount: 8, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 8, totalAuctionCount: 0, totalItemCount: 8, lastUpdated: daysAgo(1) },
|
|
111
|
+
seo: { title: "Trainer Cards — Pokémon Base Set", description: "Professor Oak, Bill, Energy Removal and more.", keywords: ["trainer cards", "professor oak", "item cards"] },
|
|
112
|
+
display: { showInFooter: false, icon: "🧑â€ðŸ«", showInMenu: true },
|
|
113
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-card-type-pokemon-cards", name: "Card Type", tier: 1 }],
|
|
114
|
+
}),
|
|
115
|
+
mkCat({
|
|
227
116
|
id: "category-energy-type-card-type",
|
|
228
117
|
name: "Energy Cards",
|
|
229
|
-
slug: "energy-type",
|
|
230
|
-
description: "Basic Energy cards
|
|
118
|
+
slug: "category-energy-type-card-type",
|
|
119
|
+
description: "Basic and Special Energy cards to power your Pokémon",
|
|
231
120
|
rootId: "category-pokemon-cards",
|
|
232
121
|
parentIds: ["category-card-type-pokemon-cards"],
|
|
233
|
-
childrenIds: [],
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
productIds: [],
|
|
241
|
-
auctionCount: 0,
|
|
242
|
-
auctionIds: [],
|
|
243
|
-
totalProductCount: 6,
|
|
244
|
-
totalAuctionCount: 0,
|
|
245
|
-
totalItemCount: 6,
|
|
246
|
-
lastUpdated: daysAgo(1),
|
|
247
|
-
},
|
|
248
|
-
isFeatured: false,
|
|
249
|
-
isBrand: false,
|
|
250
|
-
seo: {
|
|
251
|
-
title: "Energy Cards — Base Set",
|
|
252
|
-
description: "All basic energy types from the original Pokémon Base Set.",
|
|
253
|
-
keywords: [
|
|
254
|
-
"energy cards",
|
|
255
|
-
"water energy",
|
|
256
|
-
"fire energy",
|
|
257
|
-
"pokemon energy",
|
|
258
|
-
],
|
|
259
|
-
},
|
|
260
|
-
display: {
|
|
261
|
-
showInFooter: false,
|
|
262
|
-
icon: "⚡",
|
|
263
|
-
coverImage: "https://images.pokemontcg.io/base1/99_hires.png",
|
|
264
|
-
showInMenu: true,
|
|
265
|
-
},
|
|
266
|
-
showOnHomepage: false,
|
|
267
|
-
isActive: true,
|
|
268
|
-
isSearchable: true,
|
|
269
|
-
ancestors: [
|
|
270
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
271
|
-
{ id: "category-card-type-pokemon-cards", name: "Card Type", tier: 1 },
|
|
272
|
-
],
|
|
273
|
-
createdBy: ADMIN,
|
|
274
|
-
createdAt: daysAgo(30),
|
|
275
|
-
updatedAt: daysAgo(1),
|
|
276
|
-
},
|
|
277
|
-
// -- TIER 1: Element Type ----------------------------------------------------
|
|
278
|
-
{
|
|
122
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/card-type/energy-type", order: 3, isLeaf: true,
|
|
123
|
+
metrics: { productCount: 5, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 5, totalAuctionCount: 0, totalItemCount: 5, lastUpdated: daysAgo(1) },
|
|
124
|
+
seo: { title: "Energy Cards — Pokémon Base Set", description: "Basic Energy sets from the original print runs.", keywords: ["energy cards", "fire energy", "water energy"] },
|
|
125
|
+
display: { showInFooter: false, icon: "⚪", showInMenu: true },
|
|
126
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-card-type-pokemon-cards", name: "Card Type", tier: 1 }],
|
|
127
|
+
}),
|
|
128
|
+
mkCat({
|
|
279
129
|
id: "category-element-type-pokemon-cards",
|
|
280
130
|
name: "Element Type",
|
|
281
|
-
slug: "element-type",
|
|
282
|
-
description: "
|
|
131
|
+
slug: "category-element-type-pokemon-cards",
|
|
132
|
+
description: "Shop by Pokémon energy type",
|
|
283
133
|
rootId: "category-pokemon-cards",
|
|
284
134
|
parentIds: ["category-pokemon-cards"],
|
|
285
|
-
childrenIds: [
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
tier: 1,
|
|
295
|
-
path: "pokemon-cards/element-type",
|
|
296
|
-
order: 2,
|
|
297
|
-
isLeaf: false,
|
|
298
|
-
metrics: {
|
|
299
|
-
productCount: 0,
|
|
300
|
-
productIds: [],
|
|
301
|
-
auctionCount: 0,
|
|
302
|
-
auctionIds: [],
|
|
303
|
-
totalProductCount: 35,
|
|
304
|
-
totalAuctionCount: 2,
|
|
305
|
-
totalItemCount: 37,
|
|
306
|
-
lastUpdated: daysAgo(1),
|
|
307
|
-
},
|
|
308
|
-
isFeatured: false,
|
|
309
|
-
isBrand: false,
|
|
310
|
-
seo: {
|
|
311
|
-
title: "Element Types — Pokémon Base Set",
|
|
312
|
-
description: "Water, Electric, Fire, Grass, Psychic, Fighting, Colorless",
|
|
313
|
-
keywords: [
|
|
314
|
-
"pokemon element",
|
|
315
|
-
"type",
|
|
316
|
-
"water pokemon",
|
|
317
|
-
"electric pokemon",
|
|
318
|
-
],
|
|
319
|
-
},
|
|
320
|
-
display: { showInFooter: true, icon: "🌊", showInMenu: true },
|
|
321
|
-
showOnHomepage: false,
|
|
322
|
-
isActive: true,
|
|
323
|
-
isSearchable: true,
|
|
324
|
-
ancestors: [
|
|
325
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
326
|
-
],
|
|
327
|
-
createdBy: ADMIN,
|
|
328
|
-
createdAt: daysAgo(30),
|
|
329
|
-
updatedAt: daysAgo(1),
|
|
330
|
-
},
|
|
331
|
-
// -- LEAF: Water -------------------------------------------------------------
|
|
332
|
-
{
|
|
333
|
-
id: "category-water-element-type",
|
|
135
|
+
childrenIds: ["category-water-element", "category-electric-element", "category-fire-element", "category-grass-element", "category-psychic-element", "category-fighting-element", "category-colorless-element"],
|
|
136
|
+
tier: 1, path: "pokemon-cards/element-type", order: 2, isLeaf: false,
|
|
137
|
+
metrics: { productCount: 0, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 35, totalAuctionCount: 4, totalItemCount: 39, lastUpdated: daysAgo(1) },
|
|
138
|
+
seo: { title: "Element Types — Pokémon TCG", description: "Water, Fire, Electric, Grass, Psychic, Fighting, and Colorless types.", keywords: ["pokemon elements", "fire type", "water type"] },
|
|
139
|
+
display: { showInFooter: false, icon: "🌊", showInMenu: true },
|
|
140
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }],
|
|
141
|
+
}),
|
|
142
|
+
mkCat({
|
|
143
|
+
id: "category-water-element",
|
|
334
144
|
name: "Water",
|
|
335
|
-
slug: "water",
|
|
336
|
-
description: "Water-type Pokémon cards —
|
|
145
|
+
slug: "category-water-element",
|
|
146
|
+
description: "Water-type Pokémon cards — Blastoise, Lapras, Starmie, Gyarados",
|
|
337
147
|
rootId: "category-pokemon-cards",
|
|
338
148
|
parentIds: ["category-element-type-pokemon-cards"],
|
|
339
|
-
childrenIds: [],
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
auctionCount: 0,
|
|
348
|
-
auctionIds: [],
|
|
349
|
-
totalProductCount: 6,
|
|
350
|
-
totalAuctionCount: 0,
|
|
351
|
-
totalItemCount: 6,
|
|
352
|
-
lastUpdated: daysAgo(1),
|
|
353
|
-
},
|
|
354
|
-
isFeatured: true,
|
|
355
|
-
featuredPriority: 3,
|
|
356
|
-
isBrand: false,
|
|
357
|
-
seo: {
|
|
358
|
-
title: "Water-type Pokémon Cards — Base Set",
|
|
359
|
-
description: "Blastoise, Squirtle, Lapras, Starmie and all Base Set Water types.",
|
|
360
|
-
keywords: ["water pokemon", "blastoise", "squirtle"],
|
|
361
|
-
},
|
|
362
|
-
display: {
|
|
363
|
-
showInFooter: false,
|
|
364
|
-
icon: "💧",
|
|
365
|
-
coverImage: "https://images.pokemontcg.io/base1/2_hires.png",
|
|
366
|
-
color: "#6DB6D4",
|
|
367
|
-
showInMenu: true,
|
|
368
|
-
},
|
|
369
|
-
showOnHomepage: true,
|
|
370
|
-
isActive: true,
|
|
371
|
-
isSearchable: true,
|
|
372
|
-
ancestors: [
|
|
373
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
374
|
-
{
|
|
375
|
-
id: "category-element-type-pokemon-cards",
|
|
376
|
-
name: "Element Type",
|
|
377
|
-
tier: 1,
|
|
378
|
-
},
|
|
379
|
-
],
|
|
380
|
-
createdBy: ADMIN,
|
|
381
|
-
createdAt: daysAgo(30),
|
|
382
|
-
updatedAt: daysAgo(1),
|
|
383
|
-
},
|
|
384
|
-
// -- LEAF: Electric ----------------------------------------------------------
|
|
385
|
-
{
|
|
386
|
-
id: "category-electric-element-type",
|
|
149
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/element-type/water", order: 1, isLeaf: true,
|
|
150
|
+
metrics: { productCount: 6, productIds: [], auctionCount: 1, auctionIds: [], totalProductCount: 6, totalAuctionCount: 1, totalItemCount: 7, lastUpdated: daysAgo(1) },
|
|
151
|
+
seo: { title: "Water-Type Pokémon Cards", description: "Blastoise, Lapras, Starmie and more.", keywords: ["water pokemon", "blastoise"] },
|
|
152
|
+
display: { showInFooter: false, icon: "💧", color: "#6DB6D4", showInMenu: true },
|
|
153
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-element-type-pokemon-cards", name: "Element Type", tier: 1 }],
|
|
154
|
+
}),
|
|
155
|
+
mkCat({
|
|
156
|
+
id: "category-electric-element",
|
|
387
157
|
name: "Electric",
|
|
388
|
-
slug: "electric",
|
|
389
|
-
description: "Electric-type Pokémon cards — Pikachu, Raichu, Zapdos, Electabuzz
|
|
158
|
+
slug: "category-electric-element",
|
|
159
|
+
description: "Electric-type Pokémon cards — Pikachu, Raichu, Zapdos, Electabuzz",
|
|
390
160
|
rootId: "category-pokemon-cards",
|
|
391
161
|
parentIds: ["category-element-type-pokemon-cards"],
|
|
392
|
-
childrenIds: [],
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
auctionCount: 1,
|
|
401
|
-
auctionIds: [],
|
|
402
|
-
totalProductCount: 5,
|
|
403
|
-
totalAuctionCount: 1,
|
|
404
|
-
totalItemCount: 6,
|
|
405
|
-
lastUpdated: daysAgo(1),
|
|
406
|
-
},
|
|
407
|
-
isFeatured: true,
|
|
408
|
-
featuredPriority: 4,
|
|
409
|
-
isBrand: false,
|
|
410
|
-
seo: {
|
|
411
|
-
title: "Electric-type Pokémon Cards — Base Set",
|
|
412
|
-
description: "Pikachu, Raichu, Zapdos and all Base Set Electric types.",
|
|
413
|
-
keywords: ["electric pokemon", "pikachu", "zapdos"],
|
|
414
|
-
},
|
|
415
|
-
display: {
|
|
416
|
-
showInFooter: false,
|
|
417
|
-
icon: "⚡",
|
|
418
|
-
coverImage: "https://images.pokemontcg.io/base1/16_hires.png",
|
|
419
|
-
color: "#F7D02C",
|
|
420
|
-
showInMenu: true,
|
|
421
|
-
},
|
|
422
|
-
showOnHomepage: true,
|
|
423
|
-
isActive: true,
|
|
424
|
-
isSearchable: true,
|
|
425
|
-
ancestors: [
|
|
426
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
427
|
-
{
|
|
428
|
-
id: "category-element-type-pokemon-cards",
|
|
429
|
-
name: "Element Type",
|
|
430
|
-
tier: 1,
|
|
431
|
-
},
|
|
432
|
-
],
|
|
433
|
-
createdBy: ADMIN,
|
|
434
|
-
createdAt: daysAgo(30),
|
|
435
|
-
updatedAt: daysAgo(1),
|
|
436
|
-
},
|
|
437
|
-
// -- LEAF: Fire --------------------------------------------------------------
|
|
438
|
-
{
|
|
439
|
-
id: "category-fire-element-type",
|
|
162
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/element-type/electric", order: 2, isLeaf: true,
|
|
163
|
+
metrics: { productCount: 5, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 5, totalAuctionCount: 0, totalItemCount: 5, lastUpdated: daysAgo(1) },
|
|
164
|
+
seo: { title: "Electric-Type Pokémon Cards", description: "Pikachu, Zapdos, Raichu and more.", keywords: ["electric pokemon", "pikachu", "zapdos"] },
|
|
165
|
+
display: { showInFooter: false, icon: "âš¡", color: "#F7D02C", showInMenu: true },
|
|
166
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-element-type-pokemon-cards", name: "Element Type", tier: 1 }],
|
|
167
|
+
}),
|
|
168
|
+
mkCat({
|
|
169
|
+
id: "category-fire-element",
|
|
440
170
|
name: "Fire",
|
|
441
|
-
slug: "fire",
|
|
442
|
-
description: "Fire-type Pokémon cards — Charizard, Arcanine, Ninetales,
|
|
171
|
+
slug: "category-fire-element",
|
|
172
|
+
description: "Fire-type Pokémon cards — Charizard, Arcanine, Ninetales, Moltres",
|
|
443
173
|
rootId: "category-pokemon-cards",
|
|
444
174
|
parentIds: ["category-element-type-pokemon-cards"],
|
|
445
|
-
childrenIds: [],
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
auctionIds: [],
|
|
455
|
-
totalProductCount: 7,
|
|
456
|
-
totalAuctionCount: 2,
|
|
457
|
-
totalItemCount: 9,
|
|
458
|
-
lastUpdated: daysAgo(1),
|
|
459
|
-
},
|
|
460
|
-
isFeatured: true,
|
|
461
|
-
featuredPriority: 2,
|
|
462
|
-
isBrand: false,
|
|
463
|
-
seo: {
|
|
464
|
-
title: "Fire-type Pokémon Cards — Base Set",
|
|
465
|
-
description: "Charizard, Arcanine, Ninetales and all Base Set Fire types.",
|
|
466
|
-
keywords: ["fire pokemon", "charizard", "arcanine"],
|
|
467
|
-
},
|
|
468
|
-
display: {
|
|
469
|
-
showInFooter: false,
|
|
470
|
-
icon: "🔥",
|
|
471
|
-
coverImage: "https://images.pokemontcg.io/base1/4_hires.png",
|
|
472
|
-
color: "#EE8130",
|
|
473
|
-
showInMenu: true,
|
|
474
|
-
},
|
|
475
|
-
showOnHomepage: true,
|
|
476
|
-
isActive: true,
|
|
477
|
-
isSearchable: true,
|
|
478
|
-
ancestors: [
|
|
479
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
480
|
-
{
|
|
481
|
-
id: "category-element-type-pokemon-cards",
|
|
482
|
-
name: "Element Type",
|
|
483
|
-
tier: 1,
|
|
484
|
-
},
|
|
485
|
-
],
|
|
486
|
-
createdBy: ADMIN,
|
|
487
|
-
createdAt: daysAgo(30),
|
|
488
|
-
updatedAt: daysAgo(1),
|
|
489
|
-
},
|
|
490
|
-
// -- LEAF: Grass -------------------------------------------------------------
|
|
491
|
-
{
|
|
492
|
-
id: "category-grass-element-type",
|
|
175
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/element-type/fire", order: 3, isLeaf: true,
|
|
176
|
+
isFeatured: true, featuredPriority: 3, showOnHomepage: true,
|
|
177
|
+
metrics: { productCount: 6, productIds: [], auctionCount: 2, auctionIds: [], totalProductCount: 6, totalAuctionCount: 2, totalItemCount: 8, lastUpdated: daysAgo(1) },
|
|
178
|
+
seo: { title: "Fire-Type Pokémon Cards", description: "Charizard, Arcanine, Ninetales and more.", keywords: ["fire pokemon", "charizard"] },
|
|
179
|
+
display: { showInFooter: false, icon: "🔥", color: "#EE8130", coverImage: "https://images.pokemontcg.io/base1/4_hires.png", showInMenu: true },
|
|
180
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-element-type-pokemon-cards", name: "Element Type", tier: 1 }],
|
|
181
|
+
}),
|
|
182
|
+
mkCat({
|
|
183
|
+
id: "category-grass-element",
|
|
493
184
|
name: "Grass",
|
|
494
|
-
slug: "grass",
|
|
495
|
-
description: "Grass-type Pokémon cards —
|
|
185
|
+
slug: "category-grass-element",
|
|
186
|
+
description: "Grass-type Pokémon cards — Venusaur, Scyther, Pinsir, Clefairy",
|
|
496
187
|
rootId: "category-pokemon-cards",
|
|
497
188
|
parentIds: ["category-element-type-pokemon-cards"],
|
|
498
|
-
childrenIds: [],
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
auctionCount: 0,
|
|
507
|
-
auctionIds: [],
|
|
508
|
-
totalProductCount: 6,
|
|
509
|
-
totalAuctionCount: 0,
|
|
510
|
-
totalItemCount: 6,
|
|
511
|
-
lastUpdated: daysAgo(1),
|
|
512
|
-
},
|
|
513
|
-
isFeatured: false,
|
|
514
|
-
isBrand: false,
|
|
515
|
-
seo: {
|
|
516
|
-
title: "Grass-type Pokémon Cards — Base Set",
|
|
517
|
-
description: "Venusaur, Bulbasaur, Scyther and all Base Set Grass types.",
|
|
518
|
-
keywords: ["grass pokemon", "venusaur", "bulbasaur"],
|
|
519
|
-
},
|
|
520
|
-
display: {
|
|
521
|
-
showInFooter: false,
|
|
522
|
-
icon: "🌿",
|
|
523
|
-
coverImage: "https://images.pokemontcg.io/base1/15_hires.png",
|
|
524
|
-
color: "#7AC74C",
|
|
525
|
-
showInMenu: true,
|
|
526
|
-
},
|
|
527
|
-
showOnHomepage: false,
|
|
528
|
-
isActive: true,
|
|
529
|
-
isSearchable: true,
|
|
530
|
-
ancestors: [
|
|
531
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
532
|
-
{
|
|
533
|
-
id: "category-element-type-pokemon-cards",
|
|
534
|
-
name: "Element Type",
|
|
535
|
-
tier: 1,
|
|
536
|
-
},
|
|
537
|
-
],
|
|
538
|
-
createdBy: ADMIN,
|
|
539
|
-
createdAt: daysAgo(30),
|
|
540
|
-
updatedAt: daysAgo(1),
|
|
541
|
-
},
|
|
542
|
-
// -- LEAF: Psychic -----------------------------------------------------------
|
|
543
|
-
{
|
|
544
|
-
id: "category-psychic-element-type",
|
|
189
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/element-type/grass", order: 4, isLeaf: true,
|
|
190
|
+
metrics: { productCount: 4, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 4, totalAuctionCount: 0, totalItemCount: 4, lastUpdated: daysAgo(1) },
|
|
191
|
+
seo: { title: "Grass-Type Pokémon Cards", description: "Venusaur, Scyther, Pinsir and more.", keywords: ["grass pokemon", "venusaur"] },
|
|
192
|
+
display: { showInFooter: false, icon: "🌿", color: "#7AC74C", showInMenu: true },
|
|
193
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-element-type-pokemon-cards", name: "Element Type", tier: 1 }],
|
|
194
|
+
}),
|
|
195
|
+
mkCat({
|
|
196
|
+
id: "category-psychic-element",
|
|
545
197
|
name: "Psychic",
|
|
546
|
-
slug: "psychic",
|
|
547
|
-
description: "Psychic-type Pokémon cards — Mewtwo,
|
|
198
|
+
slug: "category-psychic-element",
|
|
199
|
+
description: "Psychic-type Pokémon cards — Mewtwo, Gengar, Jynx, Alakazam",
|
|
548
200
|
rootId: "category-pokemon-cards",
|
|
549
201
|
parentIds: ["category-element-type-pokemon-cards"],
|
|
550
|
-
childrenIds: [],
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
auctionIds: [],
|
|
560
|
-
totalProductCount: 5,
|
|
561
|
-
totalAuctionCount: 1,
|
|
562
|
-
totalItemCount: 6,
|
|
563
|
-
lastUpdated: daysAgo(1),
|
|
564
|
-
},
|
|
565
|
-
isFeatured: true,
|
|
566
|
-
featuredPriority: 5,
|
|
567
|
-
isBrand: false,
|
|
568
|
-
seo: {
|
|
569
|
-
title: "Psychic-type Pokémon Cards — Base Set",
|
|
570
|
-
description: "Mewtwo, Gengar, Jynx and all Base Set Psychic types.",
|
|
571
|
-
keywords: ["psychic pokemon", "mewtwo", "gengar"],
|
|
572
|
-
},
|
|
573
|
-
display: {
|
|
574
|
-
showInFooter: false,
|
|
575
|
-
icon: "🔮",
|
|
576
|
-
coverImage: "https://images.pokemontcg.io/base1/10_hires.png",
|
|
577
|
-
color: "#F95587",
|
|
578
|
-
showInMenu: true,
|
|
579
|
-
},
|
|
580
|
-
showOnHomepage: true,
|
|
581
|
-
isActive: true,
|
|
582
|
-
isSearchable: true,
|
|
583
|
-
ancestors: [
|
|
584
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
585
|
-
{
|
|
586
|
-
id: "category-element-type-pokemon-cards",
|
|
587
|
-
name: "Element Type",
|
|
588
|
-
tier: 1,
|
|
589
|
-
},
|
|
590
|
-
],
|
|
591
|
-
createdBy: ADMIN,
|
|
592
|
-
createdAt: daysAgo(30),
|
|
593
|
-
updatedAt: daysAgo(1),
|
|
594
|
-
},
|
|
595
|
-
// -- LEAF: Fighting ----------------------------------------------------------
|
|
596
|
-
{
|
|
597
|
-
id: "category-fighting-element-type",
|
|
202
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/element-type/psychic", order: 5, isLeaf: true,
|
|
203
|
+
isFeatured: true, featuredPriority: 4,
|
|
204
|
+
metrics: { productCount: 5, productIds: [], auctionCount: 1, auctionIds: [], totalProductCount: 5, totalAuctionCount: 1, totalItemCount: 6, lastUpdated: daysAgo(1) },
|
|
205
|
+
seo: { title: "Psychic-Type Pokémon Cards", description: "Mewtwo, Gengar, Alakazam and more.", keywords: ["psychic pokemon", "mewtwo", "gengar"] },
|
|
206
|
+
display: { showInFooter: false, icon: "🔮", color: "#F95587", coverImage: "https://images.pokemontcg.io/base1/10_hires.png", showInMenu: true },
|
|
207
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-element-type-pokemon-cards", name: "Element Type", tier: 1 }],
|
|
208
|
+
}),
|
|
209
|
+
mkCat({
|
|
210
|
+
id: "category-fighting-element",
|
|
598
211
|
name: "Fighting",
|
|
599
|
-
slug: "fighting",
|
|
600
|
-
description: "Fighting-type Pokémon cards — Machamp, Hitmonchan,
|
|
212
|
+
slug: "category-fighting-element",
|
|
213
|
+
description: "Fighting-type Pokémon cards — Machamp, Hitmonchan, Primeape, Onix",
|
|
601
214
|
rootId: "category-pokemon-cards",
|
|
602
215
|
parentIds: ["category-element-type-pokemon-cards"],
|
|
603
|
-
childrenIds: [],
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
auctionCount: 0,
|
|
612
|
-
auctionIds: [],
|
|
613
|
-
totalProductCount: 4,
|
|
614
|
-
totalAuctionCount: 0,
|
|
615
|
-
totalItemCount: 4,
|
|
616
|
-
lastUpdated: daysAgo(1),
|
|
617
|
-
},
|
|
618
|
-
isFeatured: false,
|
|
619
|
-
isBrand: false,
|
|
620
|
-
seo: {
|
|
621
|
-
title: "Fighting-type Pokémon Cards — Base Set",
|
|
622
|
-
description: "Machamp, Hitmonchan and all Base Set Fighting types.",
|
|
623
|
-
keywords: ["fighting pokemon", "machamp", "hitmonchan"],
|
|
624
|
-
},
|
|
625
|
-
display: {
|
|
626
|
-
showInFooter: false,
|
|
627
|
-
icon: "🥊",
|
|
628
|
-
coverImage: "https://images.pokemontcg.io/base1/8_hires.png",
|
|
629
|
-
color: "#C22E28",
|
|
630
|
-
showInMenu: true,
|
|
631
|
-
},
|
|
632
|
-
showOnHomepage: false,
|
|
633
|
-
isActive: true,
|
|
634
|
-
isSearchable: true,
|
|
635
|
-
ancestors: [
|
|
636
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
637
|
-
{
|
|
638
|
-
id: "category-element-type-pokemon-cards",
|
|
639
|
-
name: "Element Type",
|
|
640
|
-
tier: 1,
|
|
641
|
-
},
|
|
642
|
-
],
|
|
643
|
-
createdBy: ADMIN,
|
|
644
|
-
createdAt: daysAgo(30),
|
|
645
|
-
updatedAt: daysAgo(1),
|
|
646
|
-
},
|
|
647
|
-
// -- LEAF: Colorless ---------------------------------------------------------
|
|
648
|
-
{
|
|
649
|
-
id: "category-colorless-element-type",
|
|
216
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/element-type/fighting", order: 6, isLeaf: true,
|
|
217
|
+
metrics: { productCount: 3, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 3, totalAuctionCount: 0, totalItemCount: 3, lastUpdated: daysAgo(1) },
|
|
218
|
+
seo: { title: "Fighting-Type Pokémon Cards", description: "Machamp, Hitmonchan and more.", keywords: ["fighting pokemon", "machamp"] },
|
|
219
|
+
display: { showInFooter: false, icon: "🥊", color: "#C22E28", showInMenu: true },
|
|
220
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-element-type-pokemon-cards", name: "Element Type", tier: 1 }],
|
|
221
|
+
}),
|
|
222
|
+
mkCat({
|
|
223
|
+
id: "category-colorless-element",
|
|
650
224
|
name: "Colorless",
|
|
651
|
-
slug: "colorless",
|
|
652
|
-
description: "Colorless-type Pokémon cards — Snorlax,
|
|
225
|
+
slug: "category-colorless-element",
|
|
226
|
+
description: "Colorless-type Pokémon cards — Chansey, Snorlax, Dragonite, Kangaskhan",
|
|
653
227
|
rootId: "category-pokemon-cards",
|
|
654
228
|
parentIds: ["category-element-type-pokemon-cards"],
|
|
655
|
-
childrenIds: [],
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
productIds: [],
|
|
663
|
-
auctionCount: 0,
|
|
664
|
-
auctionIds: [],
|
|
665
|
-
totalProductCount: 5,
|
|
666
|
-
totalAuctionCount: 0,
|
|
667
|
-
totalItemCount: 5,
|
|
668
|
-
lastUpdated: daysAgo(1),
|
|
669
|
-
},
|
|
670
|
-
isFeatured: false,
|
|
671
|
-
isBrand: false,
|
|
672
|
-
seo: {
|
|
673
|
-
title: "Colorless Pokémon Cards — Base Set",
|
|
674
|
-
description: "Snorlax, Clefable, Chansey and all Colorless Base Set cards.",
|
|
675
|
-
keywords: ["colorless pokemon", "snorlax", "chansey"],
|
|
676
|
-
},
|
|
677
|
-
display: {
|
|
678
|
-
showInFooter: false,
|
|
679
|
-
icon: "🤍",
|
|
680
|
-
coverImage: "https://images.pokemontcg.io/base1/3_hires.png",
|
|
681
|
-
showInMenu: true,
|
|
682
|
-
},
|
|
683
|
-
showOnHomepage: false,
|
|
684
|
-
isActive: true,
|
|
685
|
-
isSearchable: true,
|
|
686
|
-
ancestors: [
|
|
687
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
688
|
-
{
|
|
689
|
-
id: "category-element-type-pokemon-cards",
|
|
690
|
-
name: "Element Type",
|
|
691
|
-
tier: 1,
|
|
692
|
-
},
|
|
693
|
-
],
|
|
694
|
-
createdBy: ADMIN,
|
|
695
|
-
createdAt: daysAgo(30),
|
|
696
|
-
updatedAt: daysAgo(1),
|
|
697
|
-
},
|
|
698
|
-
// -- TIER 1: Rarity ----------------------------------------------------------
|
|
699
|
-
{
|
|
229
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/element-type/colorless", order: 7, isLeaf: true,
|
|
230
|
+
metrics: { productCount: 4, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 4, totalAuctionCount: 0, totalItemCount: 4, lastUpdated: daysAgo(1) },
|
|
231
|
+
seo: { title: "Colorless-Type Pokémon Cards", description: "Chansey, Snorlax, Dragonite and more.", keywords: ["colorless pokemon", "chansey", "snorlax"] },
|
|
232
|
+
display: { showInFooter: false, icon: "⚪", color: "#A8A77A", showInMenu: true },
|
|
233
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-element-type-pokemon-cards", name: "Element Type", tier: 1 }],
|
|
234
|
+
}),
|
|
235
|
+
mkCat({
|
|
700
236
|
id: "category-rarity-pokemon-cards",
|
|
701
237
|
name: "Rarity",
|
|
702
|
-
slug: "rarity",
|
|
703
|
-
description: "
|
|
238
|
+
slug: "category-rarity-pokemon-cards",
|
|
239
|
+
description: "Shop by card rarity level",
|
|
704
240
|
rootId: "category-pokemon-cards",
|
|
705
241
|
parentIds: ["category-pokemon-cards"],
|
|
706
|
-
childrenIds: [
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
],
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
order: 3,
|
|
715
|
-
isLeaf: false,
|
|
716
|
-
metrics: {
|
|
717
|
-
productCount: 0,
|
|
718
|
-
productIds: [],
|
|
719
|
-
auctionCount: 0,
|
|
720
|
-
auctionIds: [],
|
|
721
|
-
totalProductCount: 40,
|
|
722
|
-
totalAuctionCount: 4,
|
|
723
|
-
totalItemCount: 44,
|
|
724
|
-
lastUpdated: daysAgo(1),
|
|
725
|
-
},
|
|
726
|
-
isFeatured: false,
|
|
727
|
-
isBrand: false,
|
|
728
|
-
seo: {
|
|
729
|
-
title: "Card Rarity — Base Set",
|
|
730
|
-
description: "Holo Rare, Non-Holo Rare, Uncommon and Common Base Set cards.",
|
|
731
|
-
keywords: ["pokemon rarity", "holo rare", "common pokemon"],
|
|
732
|
-
},
|
|
733
|
-
display: { showInFooter: true, icon: "⭐", showInMenu: true },
|
|
734
|
-
showOnHomepage: false,
|
|
735
|
-
isActive: true,
|
|
736
|
-
isSearchable: true,
|
|
737
|
-
ancestors: [
|
|
738
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
739
|
-
],
|
|
740
|
-
createdBy: ADMIN,
|
|
741
|
-
createdAt: daysAgo(30),
|
|
742
|
-
updatedAt: daysAgo(1),
|
|
743
|
-
},
|
|
744
|
-
// -- LEAF: Holo Rare ---------------------------------------------------------
|
|
745
|
-
{
|
|
242
|
+
childrenIds: ["category-holo-rare-rarity", "category-non-holo-rare-rarity", "category-uncommon-rarity", "category-common-rarity"],
|
|
243
|
+
tier: 1, path: "pokemon-cards/rarity", order: 3, isLeaf: false,
|
|
244
|
+
metrics: { productCount: 0, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 35, totalAuctionCount: 4, totalItemCount: 39, lastUpdated: daysAgo(1) },
|
|
245
|
+
seo: { title: "Rarity — Pokémon TCG", description: "Browse Holo Rare, Uncommon, and Common Pokémon cards.", keywords: ["pokemon rarity", "holo rare", "uncommon"] },
|
|
246
|
+
display: { showInFooter: false, icon: "â", showInMenu: true },
|
|
247
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }],
|
|
248
|
+
}),
|
|
249
|
+
mkCat({
|
|
746
250
|
id: "category-holo-rare-rarity",
|
|
747
|
-
name: "
|
|
748
|
-
slug: "holo-rare",
|
|
749
|
-
description: "
|
|
251
|
+
name: "Holo Rare",
|
|
252
|
+
slug: "category-holo-rare-rarity",
|
|
253
|
+
description: "Holographic Rare cards — the crown jewels of any Base Set collection",
|
|
750
254
|
rootId: "category-pokemon-cards",
|
|
751
255
|
parentIds: ["category-rarity-pokemon-cards"],
|
|
752
|
-
childrenIds: [],
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
auctionCount: 4,
|
|
761
|
-
auctionIds: [],
|
|
762
|
-
totalProductCount: 16,
|
|
763
|
-
totalAuctionCount: 4,
|
|
764
|
-
totalItemCount: 20,
|
|
765
|
-
lastUpdated: daysAgo(1),
|
|
766
|
-
},
|
|
767
|
-
isFeatured: true,
|
|
768
|
-
featuredPriority: 1,
|
|
769
|
-
isBrand: false,
|
|
770
|
-
seo: {
|
|
771
|
-
title: "Holo Rare Pokémon Cards — Base Set",
|
|
772
|
-
description: "All 16 Holo Rare cards from the original Pokémon Base Set.",
|
|
773
|
-
keywords: ["holo rare", "holographic pokemon", "charizard holo"],
|
|
774
|
-
},
|
|
775
|
-
display: {
|
|
776
|
-
showInFooter: true,
|
|
777
|
-
icon: "✨",
|
|
778
|
-
coverImage: "https://images.pokemontcg.io/base1/4_hires.png",
|
|
779
|
-
color: "#FFD700",
|
|
780
|
-
showInMenu: true,
|
|
781
|
-
},
|
|
782
|
-
showOnHomepage: true,
|
|
783
|
-
isActive: true,
|
|
784
|
-
isSearchable: true,
|
|
785
|
-
ancestors: [
|
|
786
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
787
|
-
{ id: "category-rarity-pokemon-cards", name: "Rarity", tier: 1 },
|
|
788
|
-
],
|
|
789
|
-
createdBy: ADMIN,
|
|
790
|
-
createdAt: daysAgo(30),
|
|
791
|
-
updatedAt: daysAgo(1),
|
|
792
|
-
},
|
|
793
|
-
// -- LEAF: Non-Holo Rare -----------------------------------------------------
|
|
794
|
-
{
|
|
256
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/rarity/holo-rare", order: 1, isLeaf: true,
|
|
257
|
+
isFeatured: true, featuredPriority: 1, showOnHomepage: true,
|
|
258
|
+
metrics: { productCount: 16, productIds: [], auctionCount: 4, auctionIds: [], totalProductCount: 16, totalAuctionCount: 4, totalItemCount: 20, lastUpdated: daysAgo(1) },
|
|
259
|
+
seo: { title: "Holo Rare Pokémon Cards — Base Set", description: "All 16 Holo Rares from the original Pokémon Base Set.", keywords: ["holo rare", "holographic", "charizard", "mewtwo"] },
|
|
260
|
+
display: { showInFooter: true, icon: "✨", coverImage: "https://images.pokemontcg.io/base1/4_hires.png", color: "#B8860B", showInMenu: true },
|
|
261
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-rarity-pokemon-cards", name: "Rarity", tier: 1 }],
|
|
262
|
+
}),
|
|
263
|
+
mkCat({
|
|
795
264
|
id: "category-non-holo-rare-rarity",
|
|
796
265
|
name: "Non-Holo Rare",
|
|
797
|
-
slug: "non-holo-rare",
|
|
798
|
-
description: "Rare cards without
|
|
266
|
+
slug: "category-non-holo-rare-rarity",
|
|
267
|
+
description: "Rare cards without holo foiling — often overlooked, great value",
|
|
799
268
|
rootId: "category-pokemon-cards",
|
|
800
269
|
parentIds: ["category-rarity-pokemon-cards"],
|
|
801
|
-
childrenIds: [],
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
productIds: [],
|
|
809
|
-
auctionCount: 0,
|
|
810
|
-
auctionIds: [],
|
|
811
|
-
totalProductCount: 10,
|
|
812
|
-
totalAuctionCount: 0,
|
|
813
|
-
totalItemCount: 10,
|
|
814
|
-
lastUpdated: daysAgo(1),
|
|
815
|
-
},
|
|
816
|
-
isFeatured: false,
|
|
817
|
-
isBrand: false,
|
|
818
|
-
seo: {
|
|
819
|
-
title: "Non-Holo Rare Pokémon Cards — Base Set",
|
|
820
|
-
description: "Rare but non-holographic Base Set singles.",
|
|
821
|
-
keywords: ["non holo rare", "rare pokemon cards"],
|
|
822
|
-
},
|
|
823
|
-
display: { showInFooter: false, icon: "🌟", showInMenu: true },
|
|
824
|
-
showOnHomepage: false,
|
|
825
|
-
isActive: true,
|
|
826
|
-
isSearchable: true,
|
|
827
|
-
ancestors: [
|
|
828
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
829
|
-
{ id: "category-rarity-pokemon-cards", name: "Rarity", tier: 1 },
|
|
830
|
-
],
|
|
831
|
-
createdBy: ADMIN,
|
|
832
|
-
createdAt: daysAgo(30),
|
|
833
|
-
updatedAt: daysAgo(1),
|
|
834
|
-
},
|
|
835
|
-
// -- LEAF: Uncommon ----------------------------------------------------------
|
|
836
|
-
{
|
|
270
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/rarity/non-holo-rare", order: 2, isLeaf: true,
|
|
271
|
+
metrics: { productCount: 10, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 10, totalAuctionCount: 0, totalItemCount: 10, lastUpdated: daysAgo(1) },
|
|
272
|
+
seo: { title: "Non-Holo Rare Pokémon Cards", description: "Rare cards without holo foil from Base Set.", keywords: ["non holo rare", "rare pokemon cards"] },
|
|
273
|
+
display: { showInFooter: false, icon: "🌟", showInMenu: true },
|
|
274
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-rarity-pokemon-cards", name: "Rarity", tier: 1 }],
|
|
275
|
+
}),
|
|
276
|
+
mkCat({
|
|
837
277
|
id: "category-uncommon-rarity",
|
|
838
278
|
name: "Uncommon",
|
|
839
|
-
slug: "uncommon",
|
|
840
|
-
description: "Uncommon
|
|
279
|
+
slug: "category-uncommon-rarity",
|
|
280
|
+
description: "Uncommon cards — playable staples at accessible prices",
|
|
841
281
|
rootId: "category-pokemon-cards",
|
|
842
282
|
parentIds: ["category-rarity-pokemon-cards"],
|
|
843
|
-
childrenIds: [],
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
productIds: [],
|
|
851
|
-
auctionCount: 0,
|
|
852
|
-
auctionIds: [],
|
|
853
|
-
totalProductCount: 8,
|
|
854
|
-
totalAuctionCount: 0,
|
|
855
|
-
totalItemCount: 8,
|
|
856
|
-
lastUpdated: daysAgo(1),
|
|
857
|
-
},
|
|
858
|
-
isFeatured: false,
|
|
859
|
-
isBrand: false,
|
|
860
|
-
seo: {
|
|
861
|
-
title: "Uncommon Pokémon Cards — Base Set",
|
|
862
|
-
description: "Base Set uncommon singles for collectors and players.",
|
|
863
|
-
keywords: ["uncommon pokemon", "base set uncommon"],
|
|
864
|
-
},
|
|
865
|
-
display: { showInFooter: false, icon: "🔵", showInMenu: true },
|
|
866
|
-
showOnHomepage: false,
|
|
867
|
-
isActive: true,
|
|
868
|
-
isSearchable: true,
|
|
869
|
-
ancestors: [
|
|
870
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
871
|
-
{ id: "category-rarity-pokemon-cards", name: "Rarity", tier: 1 },
|
|
872
|
-
],
|
|
873
|
-
createdBy: ADMIN,
|
|
874
|
-
createdAt: daysAgo(30),
|
|
875
|
-
updatedAt: daysAgo(1),
|
|
876
|
-
},
|
|
877
|
-
// -- LEAF: Common ------------------------------------------------------------
|
|
878
|
-
{
|
|
283
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/rarity/uncommon", order: 3, isLeaf: true,
|
|
284
|
+
metrics: { productCount: 6, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 6, totalAuctionCount: 0, totalItemCount: 6, lastUpdated: daysAgo(1) },
|
|
285
|
+
seo: { title: "Uncommon Pokémon Cards — Base Set", description: "Budget-friendly uncommon singles from the original print run.", keywords: ["uncommon pokemon cards", "base set uncommon"] },
|
|
286
|
+
display: { showInFooter: false, icon: "💎", showInMenu: true },
|
|
287
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-rarity-pokemon-cards", name: "Rarity", tier: 1 }],
|
|
288
|
+
}),
|
|
289
|
+
mkCat({
|
|
879
290
|
id: "category-common-rarity",
|
|
880
291
|
name: "Common",
|
|
881
|
-
slug: "common",
|
|
882
|
-
description: "Common
|
|
292
|
+
slug: "category-common-rarity",
|
|
293
|
+
description: "Common cards — great for play sets and completing your collection",
|
|
883
294
|
rootId: "category-pokemon-cards",
|
|
884
295
|
parentIds: ["category-rarity-pokemon-cards"],
|
|
885
|
-
childrenIds: [],
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
isFeatured: false,
|
|
901
|
-
isBrand: false,
|
|
902
|
-
seo: {
|
|
903
|
-
title: "Common Pokémon Cards — Base Set",
|
|
904
|
-
description: "Base Set common singles, great for bulk collectors.",
|
|
905
|
-
keywords: ["common pokemon", "base set common", "pokemon bulk"],
|
|
906
|
-
},
|
|
907
|
-
display: { showInFooter: false, icon: "⚪", showInMenu: true },
|
|
908
|
-
showOnHomepage: false,
|
|
909
|
-
isActive: true,
|
|
910
|
-
isSearchable: true,
|
|
911
|
-
ancestors: [
|
|
912
|
-
{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 },
|
|
913
|
-
{ id: "category-rarity-pokemon-cards", name: "Rarity", tier: 1 },
|
|
914
|
-
],
|
|
915
|
-
createdBy: ADMIN,
|
|
916
|
-
createdAt: daysAgo(30),
|
|
917
|
-
updatedAt: daysAgo(1),
|
|
918
|
-
},
|
|
919
|
-
// -- ROOT: Sealed Products ---------------------------------------------------
|
|
920
|
-
{
|
|
921
|
-
id: "category-sealed-products",
|
|
922
|
-
name: "Sealed Products",
|
|
923
|
-
slug: "sealed-products",
|
|
924
|
-
description: "Factory-sealed Pokémon TCG products — booster packs, theme decks, booster boxes",
|
|
925
|
-
rootId: "category-sealed-products",
|
|
296
|
+
childrenIds: [], tier: 2, path: "pokemon-cards/rarity/common", order: 4, isLeaf: true,
|
|
297
|
+
metrics: { productCount: 6, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 6, totalAuctionCount: 0, totalItemCount: 6, lastUpdated: daysAgo(1) },
|
|
298
|
+
seo: { title: "Common Pokémon Cards — Base Set", description: "Affordable common singles from the original Base Set.", keywords: ["common pokemon cards", "base set common"] },
|
|
299
|
+
display: { showInFooter: false, icon: "ðŸƒ", showInMenu: true },
|
|
300
|
+
ancestors: [{ id: "category-pokemon-cards", name: "Pokémon Cards", tier: 0 }, { id: "category-rarity-pokemon-cards", name: "Rarity", tier: 1 }],
|
|
301
|
+
}),
|
|
302
|
+
// ═══════════════════════════════════════════════════
|
|
303
|
+
// HOT WHEELS
|
|
304
|
+
// ═══════════════════════════════════════════════════
|
|
305
|
+
mkCat({
|
|
306
|
+
id: "category-hot-wheels",
|
|
307
|
+
name: "Hot Wheels",
|
|
308
|
+
slug: "category-hot-wheels",
|
|
309
|
+
description: "Die-cast Hot Wheels cars — basic, premium, Treasure Hunt, and track sets",
|
|
310
|
+
rootId: "category-hot-wheels",
|
|
926
311
|
parentIds: [],
|
|
927
|
-
childrenIds: [],
|
|
928
|
-
tier: 0,
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
productCount: 6,
|
|
934
|
-
productIds: [],
|
|
935
|
-
auctionCount: 1,
|
|
936
|
-
auctionIds: [],
|
|
937
|
-
totalProductCount: 6,
|
|
938
|
-
totalAuctionCount: 1,
|
|
939
|
-
totalItemCount: 7,
|
|
940
|
-
lastUpdated: daysAgo(1),
|
|
941
|
-
},
|
|
942
|
-
isFeatured: true,
|
|
943
|
-
featuredPriority: 6,
|
|
944
|
-
isBrand: false,
|
|
945
|
-
seo: {
|
|
946
|
-
title: "Sealed Pokémon Products | LetItRip",
|
|
947
|
-
description: "Booster packs, theme decks, display boxes — all sealed Base Set products.",
|
|
948
|
-
keywords: ["sealed pokemon", "booster pack", "theme deck"],
|
|
949
|
-
},
|
|
950
|
-
display: {
|
|
951
|
-
showInFooter: true,
|
|
952
|
-
icon: "📦",
|
|
953
|
-
coverImage: "https://images.pokemontcg.io/base1/logo.png",
|
|
954
|
-
color: "#2563EB",
|
|
955
|
-
showInMenu: true,
|
|
956
|
-
},
|
|
957
|
-
showOnHomepage: true,
|
|
958
|
-
isActive: true,
|
|
959
|
-
isSearchable: true,
|
|
312
|
+
childrenIds: ["category-hw-basic-cars", "category-hw-premium", "category-hw-treasure-hunt", "category-hw-track-sets"],
|
|
313
|
+
tier: 0, path: "hot-wheels", order: 2, isLeaf: false,
|
|
314
|
+
isFeatured: true, featuredPriority: 2, showOnHomepage: true,
|
|
315
|
+
metrics: { productCount: 0, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 35, totalAuctionCount: 3, totalItemCount: 38, lastUpdated: daysAgo(1) },
|
|
316
|
+
seo: { title: "Hot Wheels Die-Cast Cars | LetItRip", description: "Shop Hot Wheels basic, premium, Treasure Hunt, and collector cars.", keywords: ["hot wheels", "die cast", "toy cars", "treasure hunt"] },
|
|
317
|
+
display: { showInFooter: true, icon: "🚗", color: "#e74c3c", coverImage: "https://picsum.photos/seed/hw-root/600/400", showInMenu: true },
|
|
960
318
|
ancestors: [],
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
319
|
+
}),
|
|
320
|
+
mkCat({
|
|
321
|
+
id: "category-hw-basic-cars",
|
|
322
|
+
name: "Basic Die-Cast Cars",
|
|
323
|
+
slug: "category-hw-basic-cars",
|
|
324
|
+
description: "Everyday Hot Wheels cars — from movie vehicles to original designs",
|
|
325
|
+
rootId: "category-hot-wheels",
|
|
326
|
+
parentIds: ["category-hot-wheels"],
|
|
327
|
+
childrenIds: [], tier: 1, path: "hot-wheels/basic-cars", order: 1, isLeaf: true,
|
|
328
|
+
isFeatured: true, featuredPriority: 5,
|
|
329
|
+
metrics: { productCount: 15, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 15, totalAuctionCount: 0, totalItemCount: 15, lastUpdated: daysAgo(1) },
|
|
330
|
+
seo: { title: "Hot Wheels Basic Cars", description: "Everyday mainline Hot Wheels die-cast cars.", keywords: ["hot wheels basic", "mainline", "die cast cars"] },
|
|
331
|
+
display: { showInFooter: false, icon: "🚙", color: "#e74c3c", showInMenu: true },
|
|
332
|
+
ancestors: [{ id: "category-hot-wheels", name: "Hot Wheels", tier: 0 }],
|
|
333
|
+
}),
|
|
334
|
+
mkCat({
|
|
335
|
+
id: "category-hw-premium",
|
|
336
|
+
name: "Premium Cars",
|
|
337
|
+
slug: "category-hw-premium",
|
|
338
|
+
description: "Hot Wheels premium lines — Car Culture, Boulevard, Real Riders with rubber tyres",
|
|
339
|
+
rootId: "category-hot-wheels",
|
|
340
|
+
parentIds: ["category-hot-wheels"],
|
|
341
|
+
childrenIds: [], tier: 1, path: "hot-wheels/premium", order: 2, isLeaf: true,
|
|
342
|
+
isFeatured: true, featuredPriority: 6,
|
|
343
|
+
metrics: { productCount: 10, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 10, totalAuctionCount: 0, totalItemCount: 10, lastUpdated: daysAgo(1) },
|
|
344
|
+
seo: { title: "Hot Wheels Premium Cars — Car Culture, Boulevard", description: "Premium Hot Wheels with real rubber tyres and premium packaging.", keywords: ["hot wheels premium", "car culture", "boulevard", "real riders"] },
|
|
345
|
+
display: { showInFooter: false, icon: "ðŸŽï¸", color: "#c0392b", showInMenu: true },
|
|
346
|
+
ancestors: [{ id: "category-hot-wheels", name: "Hot Wheels", tier: 0 }],
|
|
347
|
+
}),
|
|
348
|
+
mkCat({
|
|
349
|
+
id: "category-hw-treasure-hunt",
|
|
350
|
+
name: "Treasure Hunt",
|
|
351
|
+
slug: "category-hw-treasure-hunt",
|
|
352
|
+
description: "Super Treasure Hunt (STH) and regular Treasure Hunt — the most sought-after Hot Wheels",
|
|
353
|
+
rootId: "category-hot-wheels",
|
|
354
|
+
parentIds: ["category-hot-wheels"],
|
|
355
|
+
childrenIds: [], tier: 1, path: "hot-wheels/treasure-hunt", order: 3, isLeaf: true,
|
|
356
|
+
isFeatured: true, featuredPriority: 7,
|
|
357
|
+
metrics: { productCount: 5, productIds: [], auctionCount: 3, auctionIds: [], totalProductCount: 5, totalAuctionCount: 3, totalItemCount: 8, lastUpdated: daysAgo(1) },
|
|
358
|
+
seo: { title: "Hot Wheels Treasure Hunt & Super Treasure Hunt", description: "Rare and super-rare Treasure Hunt Hot Wheels cars.", keywords: ["super treasure hunt", "STH", "hot wheels rare"] },
|
|
359
|
+
display: { showInFooter: false, icon: "ðŸ†", color: "#d4ac0d", showInMenu: true },
|
|
360
|
+
ancestors: [{ id: "category-hot-wheels", name: "Hot Wheels", tier: 0 }],
|
|
361
|
+
}),
|
|
362
|
+
mkCat({
|
|
363
|
+
id: "category-hw-track-sets",
|
|
364
|
+
name: "Track Sets & Playsets",
|
|
365
|
+
slug: "category-hw-track-sets",
|
|
366
|
+
description: "Hot Wheels track sets, loop launchers, garages, and city playsets",
|
|
367
|
+
rootId: "category-hot-wheels",
|
|
368
|
+
parentIds: ["category-hot-wheels"],
|
|
369
|
+
childrenIds: [], tier: 1, path: "hot-wheels/track-sets", order: 4, isLeaf: true,
|
|
370
|
+
metrics: { productCount: 5, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 5, totalAuctionCount: 0, totalItemCount: 5, lastUpdated: daysAgo(1) },
|
|
371
|
+
seo: { title: "Hot Wheels Track Sets and Playsets", description: "Loops, launchers, garages, and city sets from Hot Wheels.", keywords: ["hot wheels track", "loop set", "playset", "garage"] },
|
|
372
|
+
display: { showInFooter: false, icon: "🛤ï¸", showInMenu: true },
|
|
373
|
+
ancestors: [{ id: "category-hot-wheels", name: "Hot Wheels", tier: 0 }],
|
|
374
|
+
}),
|
|
375
|
+
// ═══════════════════════════════════════════════════
|
|
376
|
+
// BEYBLADE BURST
|
|
377
|
+
// ═══════════════════════════════════════════════════
|
|
378
|
+
mkCat({
|
|
379
|
+
id: "category-beyblade-burst",
|
|
380
|
+
name: "Beyblade Burst",
|
|
381
|
+
slug: "category-beyblade-burst",
|
|
382
|
+
description: "Beyblade Burst spinning tops — Attack, Defense, Stamina, and Balance types",
|
|
383
|
+
rootId: "category-beyblade-burst",
|
|
972
384
|
parentIds: [],
|
|
973
|
-
childrenIds: [],
|
|
974
|
-
tier: 0,
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
productCount: 4,
|
|
980
|
-
productIds: [],
|
|
981
|
-
auctionCount: 0,
|
|
982
|
-
auctionIds: [],
|
|
983
|
-
totalProductCount: 4,
|
|
984
|
-
totalAuctionCount: 0,
|
|
985
|
-
totalItemCount: 4,
|
|
986
|
-
lastUpdated: daysAgo(1),
|
|
987
|
-
},
|
|
988
|
-
isFeatured: false,
|
|
989
|
-
isBrand: false,
|
|
990
|
-
seo: {
|
|
991
|
-
title: "Pokémon TCG Accessories | LetItRip",
|
|
992
|
-
description: "Card sleeves, binders, playmats and deck boxes for Pokémon TCG collectors.",
|
|
993
|
-
keywords: ["pokemon accessories", "card sleeves", "deck box", "binder"],
|
|
994
|
-
},
|
|
995
|
-
display: { showInFooter: true, icon: "🎒", showInMenu: true },
|
|
996
|
-
showOnHomepage: false,
|
|
997
|
-
isActive: true,
|
|
998
|
-
isSearchable: true,
|
|
385
|
+
childrenIds: ["category-bb-attack-type", "category-bb-defense-type", "category-bb-stamina-type", "category-bb-balance-type", "category-bb-stadium"],
|
|
386
|
+
tier: 0, path: "beyblade-burst", order: 3, isLeaf: false,
|
|
387
|
+
isFeatured: true, featuredPriority: 3, showOnHomepage: true,
|
|
388
|
+
metrics: { productCount: 0, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 24, totalAuctionCount: 2, totalItemCount: 26, lastUpdated: daysAgo(1) },
|
|
389
|
+
seo: { title: "Beyblade Burst Tops | LetItRip", description: "Shop Beyblade Burst spinning tops — all types and series.", keywords: ["beyblade burst", "spinning top", "beyblade", "valtryek", "spriggan"] },
|
|
390
|
+
display: { showInFooter: true, icon: "🌀", color: "#2980b9", coverImage: "https://picsum.photos/seed/bb-root/600/400", showInMenu: true },
|
|
999
391
|
ancestors: [],
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
392
|
+
}),
|
|
393
|
+
mkCat({
|
|
394
|
+
id: "category-bb-attack-type",
|
|
395
|
+
name: "Attack Type",
|
|
396
|
+
slug: "category-bb-attack-type",
|
|
397
|
+
description: "Aggressive attack-type Beyblade Burst tops — built for raw power and KOs",
|
|
398
|
+
rootId: "category-beyblade-burst",
|
|
399
|
+
parentIds: ["category-beyblade-burst"],
|
|
400
|
+
childrenIds: [], tier: 1, path: "beyblade-burst/attack-type", order: 1, isLeaf: true,
|
|
401
|
+
isFeatured: true, featuredPriority: 8,
|
|
402
|
+
metrics: { productCount: 6, productIds: [], auctionCount: 1, auctionIds: [], totalProductCount: 6, totalAuctionCount: 1, totalItemCount: 7, lastUpdated: daysAgo(1) },
|
|
403
|
+
seo: { title: "Attack Type Beyblades — Burst", description: "Valtryek, Spriggan, Achilles and top attack-type Beyblade Burst tops.", keywords: ["attack type beyblade", "valtryek", "achilles"] },
|
|
404
|
+
display: { showInFooter: false, icon: "âš”ï¸", color: "#e74c3c", showInMenu: true },
|
|
405
|
+
ancestors: [{ id: "category-beyblade-burst", name: "Beyblade Burst", tier: 0 }],
|
|
406
|
+
}),
|
|
407
|
+
mkCat({
|
|
408
|
+
id: "category-bb-defense-type",
|
|
409
|
+
name: "Defense Type",
|
|
410
|
+
slug: "category-bb-defense-type",
|
|
411
|
+
description: "Defense-type Beyblade Burst tops — wide, heavy layers that resist attacks",
|
|
412
|
+
rootId: "category-beyblade-burst",
|
|
413
|
+
parentIds: ["category-beyblade-burst"],
|
|
414
|
+
childrenIds: [], tier: 1, path: "beyblade-burst/defense-type", order: 2, isLeaf: true,
|
|
415
|
+
metrics: { productCount: 4, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 4, totalAuctionCount: 0, totalItemCount: 4, lastUpdated: daysAgo(1) },
|
|
416
|
+
seo: { title: "Defense Type Beyblades — Burst", description: "Garuda, Balkesh, and top defense-type Beyblades.", keywords: ["defense type beyblade", "garuda"] },
|
|
417
|
+
display: { showInFooter: false, icon: "🛡ï¸", color: "#2c3e50", showInMenu: true },
|
|
418
|
+
ancestors: [{ id: "category-beyblade-burst", name: "Beyblade Burst", tier: 0 }],
|
|
419
|
+
}),
|
|
420
|
+
mkCat({
|
|
421
|
+
id: "category-bb-stamina-type",
|
|
422
|
+
name: "Stamina Type",
|
|
423
|
+
slug: "category-bb-stamina-type",
|
|
424
|
+
description: "Stamina-type tops — long-spinning, outlast opponents in the stadium",
|
|
425
|
+
rootId: "category-beyblade-burst",
|
|
426
|
+
parentIds: ["category-beyblade-burst"],
|
|
427
|
+
childrenIds: [], tier: 1, path: "beyblade-burst/stamina-type", order: 3, isLeaf: true,
|
|
428
|
+
metrics: { productCount: 5, productIds: [], auctionCount: 1, auctionIds: [], totalProductCount: 5, totalAuctionCount: 1, totalItemCount: 6, lastUpdated: daysAgo(1) },
|
|
429
|
+
seo: { title: "Stamina Type Beyblades — Burst", description: "Nepstrius, Phoenix, and top stamina-type Beyblades.", keywords: ["stamina type beyblade", "nepstrius", "phoenix"] },
|
|
430
|
+
display: { showInFooter: false, icon: "🌀", color: "#27ae60", showInMenu: true },
|
|
431
|
+
ancestors: [{ id: "category-beyblade-burst", name: "Beyblade Burst", tier: 0 }],
|
|
432
|
+
}),
|
|
433
|
+
mkCat({
|
|
434
|
+
id: "category-bb-balance-type",
|
|
435
|
+
name: "Balance Type",
|
|
436
|
+
slug: "category-bb-balance-type",
|
|
437
|
+
description: "Balance-type tops — versatile performance across attack, defense, and stamina",
|
|
438
|
+
rootId: "category-beyblade-burst",
|
|
439
|
+
parentIds: ["category-beyblade-burst"],
|
|
440
|
+
childrenIds: [], tier: 1, path: "beyblade-burst/balance-type", order: 4, isLeaf: true,
|
|
441
|
+
metrics: { productCount: 3, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 3, totalAuctionCount: 0, totalItemCount: 3, lastUpdated: daysAgo(1) },
|
|
442
|
+
seo: { title: "Balance Type Beyblades — Burst", description: "Genesis Drago, Achilles, Dead Hades — all-round balance tops.", keywords: ["balance type beyblade", "genesis drago"] },
|
|
443
|
+
display: { showInFooter: false, icon: "âš–ï¸", color: "#8e44ad", showInMenu: true },
|
|
444
|
+
ancestors: [{ id: "category-beyblade-burst", name: "Beyblade Burst", tier: 0 }],
|
|
445
|
+
}),
|
|
446
|
+
mkCat({
|
|
447
|
+
id: "category-bb-stadium",
|
|
448
|
+
name: "Stadiums & Accessories",
|
|
449
|
+
slug: "category-bb-stadium",
|
|
450
|
+
description: "Beyblade Burst stadiums, launchers, string tops, and customisation parts",
|
|
451
|
+
rootId: "category-beyblade-burst",
|
|
452
|
+
parentIds: ["category-beyblade-burst"],
|
|
453
|
+
childrenIds: [], tier: 1, path: "beyblade-burst/stadium", order: 5, isLeaf: true,
|
|
454
|
+
metrics: { productCount: 4, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 4, totalAuctionCount: 0, totalItemCount: 4, lastUpdated: daysAgo(1) },
|
|
455
|
+
seo: { title: "Beyblade Burst Stadiums & Accessories", description: "Official Beyblade stadiums, launchers, and custom parts.", keywords: ["beyblade stadium", "beystadium", "launcher"] },
|
|
456
|
+
display: { showInFooter: false, icon: "ðŸŸï¸", showInMenu: true },
|
|
457
|
+
ancestors: [{ id: "category-beyblade-burst", name: "Beyblade Burst", tier: 0 }],
|
|
458
|
+
}),
|
|
459
|
+
// ═══════════════════════════════════════════════════
|
|
460
|
+
// TRANSFORMERS
|
|
461
|
+
// ═══════════════════════════════════════════════════
|
|
462
|
+
mkCat({
|
|
463
|
+
id: "category-transformers",
|
|
464
|
+
name: "Transformers",
|
|
465
|
+
slug: "category-transformers",
|
|
466
|
+
description: "Transformers action figures — Autobots, Decepticons, Combiners, G1 and modern",
|
|
467
|
+
rootId: "category-transformers",
|
|
1011
468
|
parentIds: [],
|
|
1012
|
-
childrenIds: [],
|
|
1013
|
-
tier: 0,
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
isFeatured: false,
|
|
1019
|
-
metrics: {
|
|
1020
|
-
productCount: 0,
|
|
1021
|
-
productIds: [],
|
|
1022
|
-
auctionCount: 0,
|
|
1023
|
-
auctionIds: [],
|
|
1024
|
-
totalProductCount: 0,
|
|
1025
|
-
totalAuctionCount: 0,
|
|
1026
|
-
totalItemCount: 0,
|
|
1027
|
-
lastUpdated: daysAgo(1),
|
|
1028
|
-
},
|
|
1029
|
-
seo: {
|
|
1030
|
-
title: "Wizards of the Coast Pokémon Cards",
|
|
1031
|
-
description: "Original Base Set cards published by Wizards of the Coast.",
|
|
1032
|
-
keywords: ["wizards of the coast", "wotc pokemon"],
|
|
1033
|
-
},
|
|
1034
|
-
display: { showInFooter: false, showInMenu: false },
|
|
1035
|
-
showOnHomepage: false,
|
|
1036
|
-
isActive: true,
|
|
1037
|
-
isSearchable: true,
|
|
469
|
+
childrenIds: ["category-tf-autobots", "category-tf-decepticons", "category-tf-combiners"],
|
|
470
|
+
tier: 0, path: "transformers", order: 4, isLeaf: false,
|
|
471
|
+
isFeatured: true, featuredPriority: 4, showOnHomepage: true,
|
|
472
|
+
metrics: { productCount: 0, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 12, totalAuctionCount: 1, totalItemCount: 13, lastUpdated: daysAgo(1) },
|
|
473
|
+
seo: { title: "Transformers Action Figures | LetItRip", description: "Shop Transformers figures — Autobots, Decepticons, and Combiners.", keywords: ["transformers", "optimus prime", "megatron", "autobots"] },
|
|
474
|
+
display: { showInFooter: true, icon: "🤖", color: "#e67e22", coverImage: "https://picsum.photos/seed/tf-root/600/400", showInMenu: true },
|
|
1038
475
|
ancestors: [],
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
476
|
+
}),
|
|
477
|
+
mkCat({
|
|
478
|
+
id: "category-tf-autobots",
|
|
479
|
+
name: "Autobots",
|
|
480
|
+
slug: "category-tf-autobots",
|
|
481
|
+
description: "Autobot Transformers — Optimus Prime, Bumblebee, Jazz, Ironhide and more",
|
|
482
|
+
rootId: "category-transformers",
|
|
483
|
+
parentIds: ["category-transformers"],
|
|
484
|
+
childrenIds: [], tier: 1, path: "transformers/autobots", order: 1, isLeaf: true,
|
|
485
|
+
isFeatured: true, featuredPriority: 9,
|
|
486
|
+
metrics: { productCount: 6, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 6, totalAuctionCount: 0, totalItemCount: 6, lastUpdated: daysAgo(1) },
|
|
487
|
+
seo: { title: "Autobot Transformers Figures", description: "Optimus Prime, Bumblebee, Jazz, and all Autobot figures.", keywords: ["autobots", "optimus prime", "bumblebee", "transformers"] },
|
|
488
|
+
display: { showInFooter: false, icon: "🔵", color: "#2980b9", showInMenu: true },
|
|
489
|
+
ancestors: [{ id: "category-transformers", name: "Transformers", tier: 0 }],
|
|
490
|
+
}),
|
|
491
|
+
mkCat({
|
|
492
|
+
id: "category-tf-decepticons",
|
|
493
|
+
name: "Decepticons",
|
|
494
|
+
slug: "category-tf-decepticons",
|
|
495
|
+
description: "Decepticon Transformers — Megatron, Starscream, Soundwave, Shockwave",
|
|
496
|
+
rootId: "category-transformers",
|
|
497
|
+
parentIds: ["category-transformers"],
|
|
498
|
+
childrenIds: [], tier: 1, path: "transformers/decepticons", order: 2, isLeaf: true,
|
|
499
|
+
metrics: { productCount: 4, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 4, totalAuctionCount: 0, totalItemCount: 4, lastUpdated: daysAgo(1) },
|
|
500
|
+
seo: { title: "Decepticon Transformers Figures", description: "Megatron, Starscream, Soundwave, and all Decepticon figures.", keywords: ["decepticons", "megatron", "starscream", "soundwave"] },
|
|
501
|
+
display: { showInFooter: false, icon: "🔴", color: "#922b21", showInMenu: true },
|
|
502
|
+
ancestors: [{ id: "category-transformers", name: "Transformers", tier: 0 }],
|
|
503
|
+
}),
|
|
504
|
+
mkCat({
|
|
505
|
+
id: "category-tf-combiners",
|
|
506
|
+
name: "Combiners & Special Teams",
|
|
507
|
+
slug: "category-tf-combiners",
|
|
508
|
+
description: "Combiner Wars, Siege, and Legacy combiner sets — Devastator, Superion and more",
|
|
509
|
+
rootId: "category-transformers",
|
|
510
|
+
parentIds: ["category-transformers"],
|
|
511
|
+
childrenIds: [], tier: 1, path: "transformers/combiners", order: 3, isLeaf: true,
|
|
512
|
+
metrics: { productCount: 2, productIds: [], auctionCount: 1, auctionIds: [], totalProductCount: 2, totalAuctionCount: 1, totalItemCount: 3, lastUpdated: daysAgo(1) },
|
|
513
|
+
seo: { title: "Transformers Combiner Sets", description: "Devastator, Superion, Menasor — all Transformers combiner sets.", keywords: ["combiners", "devastator", "superion", "combiner wars"] },
|
|
514
|
+
display: { showInFooter: false, icon: "🦾", color: "#641e16", showInMenu: true },
|
|
515
|
+
ancestors: [{ id: "category-transformers", name: "Transformers", tier: 0 }],
|
|
516
|
+
}),
|
|
517
|
+
// ═══════════════════════════════════════════════════
|
|
518
|
+
// CROSS-FRANCHISE
|
|
519
|
+
// ═══════════════════════════════════════════════════
|
|
520
|
+
mkCat({
|
|
521
|
+
id: "category-sealed-products",
|
|
522
|
+
name: "Sealed Products",
|
|
523
|
+
slug: "category-sealed-products",
|
|
524
|
+
description: "Factory-sealed booster boxes, packs, starter sets, and collector bundles",
|
|
525
|
+
rootId: "category-sealed-products",
|
|
1049
526
|
parentIds: [],
|
|
1050
|
-
childrenIds: [],
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
isBrand: true,
|
|
1056
|
-
isFeatured: true,
|
|
1057
|
-
featuredPriority: 1,
|
|
1058
|
-
metrics: {
|
|
1059
|
-
productCount: 0,
|
|
1060
|
-
productIds: [],
|
|
1061
|
-
auctionCount: 0,
|
|
1062
|
-
auctionIds: [],
|
|
1063
|
-
totalProductCount: 0,
|
|
1064
|
-
totalAuctionCount: 0,
|
|
1065
|
-
totalItemCount: 0,
|
|
1066
|
-
lastUpdated: daysAgo(1),
|
|
1067
|
-
},
|
|
1068
|
-
seo: {
|
|
1069
|
-
title: "The Pokémon Company | LetItRip",
|
|
1070
|
-
description: "Official Pokémon TCG cards published by The Pokémon Company International.",
|
|
1071
|
-
keywords: ["pokemon company", "tpci", "official pokemon cards"],
|
|
1072
|
-
},
|
|
1073
|
-
display: {
|
|
1074
|
-
showInFooter: false,
|
|
1075
|
-
showInMenu: false,
|
|
1076
|
-
icon: "https://images.pokemontcg.io/base1/logo.png",
|
|
1077
|
-
},
|
|
1078
|
-
showOnHomepage: false,
|
|
1079
|
-
isActive: true,
|
|
1080
|
-
isSearchable: true,
|
|
527
|
+
childrenIds: [], tier: 0, path: "sealed-products", order: 5, isLeaf: true,
|
|
528
|
+
isFeatured: true, featuredPriority: 10, showOnHomepage: true,
|
|
529
|
+
metrics: { productCount: 8, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 8, totalAuctionCount: 0, totalItemCount: 8, lastUpdated: daysAgo(1) },
|
|
530
|
+
seo: { title: "Sealed Products — Pokémon, Hot Wheels & More | LetItRip", description: "Factory-sealed collectibles — Pokémon packs, Hot Wheels cases, Beyblade sets.", keywords: ["sealed products", "booster box", "factory sealed"] },
|
|
531
|
+
display: { showInFooter: true, icon: "📦", showInMenu: true },
|
|
1081
532
|
ancestors: [],
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
slug: "brand-nintendo",
|
|
1090
|
-
description: "Nintendo-licensed Pokémon card products and accessories",
|
|
1091
|
-
rootId: "category-brand-nintendo",
|
|
533
|
+
}),
|
|
534
|
+
mkCat({
|
|
535
|
+
id: "category-accessories",
|
|
536
|
+
name: "Accessories & Display",
|
|
537
|
+
slug: "category-accessories",
|
|
538
|
+
description: "Card sleeves, top-loaders, binders, display stands, and storage solutions",
|
|
539
|
+
rootId: "category-accessories",
|
|
1092
540
|
parentIds: [],
|
|
1093
|
-
childrenIds: [],
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
isLeaf: true,
|
|
1098
|
-
isBrand: true,
|
|
1099
|
-
isFeatured: false,
|
|
1100
|
-
metrics: {
|
|
1101
|
-
productCount: 0,
|
|
1102
|
-
productIds: [],
|
|
1103
|
-
auctionCount: 0,
|
|
1104
|
-
auctionIds: [],
|
|
1105
|
-
totalProductCount: 0,
|
|
1106
|
-
totalAuctionCount: 0,
|
|
1107
|
-
totalItemCount: 0,
|
|
1108
|
-
lastUpdated: daysAgo(1),
|
|
1109
|
-
},
|
|
1110
|
-
seo: {
|
|
1111
|
-
title: "Nintendo Pokémon Products | LetItRip",
|
|
1112
|
-
description: "Nintendo-licensed Pokémon collectibles and accessories.",
|
|
1113
|
-
keywords: ["nintendo pokemon", "nintendo licensed"],
|
|
1114
|
-
},
|
|
1115
|
-
display: {
|
|
1116
|
-
showInFooter: false,
|
|
1117
|
-
showInMenu: false,
|
|
1118
|
-
},
|
|
1119
|
-
showOnHomepage: false,
|
|
1120
|
-
isActive: true,
|
|
1121
|
-
isSearchable: true,
|
|
541
|
+
childrenIds: [], tier: 0, path: "accessories", order: 6, isLeaf: true,
|
|
542
|
+
metrics: { productCount: 6, productIds: [], auctionCount: 0, auctionIds: [], totalProductCount: 6, totalAuctionCount: 0, totalItemCount: 6, lastUpdated: daysAgo(1) },
|
|
543
|
+
seo: { title: "Accessories & Display Products | LetItRip", description: "Card sleeves, binders, top-loaders, display cases, and storage.", keywords: ["card sleeves", "top loader", "binder", "display case"] },
|
|
544
|
+
display: { showInFooter: true, icon: "🗂ï¸", showInMenu: true },
|
|
1122
545
|
ancestors: [],
|
|
1123
|
-
|
|
1124
|
-
createdAt: daysAgo(30),
|
|
1125
|
-
updatedAt: daysAgo(1),
|
|
1126
|
-
},
|
|
546
|
+
}),
|
|
1127
547
|
];
|