@mohasinac/appkit 2.3.2 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +48 -12
- package/dist/client.js +25 -6
- package/dist/constants/api-endpoints.d.ts +380 -22
- package/dist/constants/api-endpoints.js +66 -13
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/core/hooks/useSyncManager.d.ts +1 -0
- package/dist/core/hooks/useSyncManager.js +83 -0
- package/dist/core/integration-keys.d.ts +4 -0
- package/dist/core/integration-keys.js +8 -0
- package/dist/features/about/components/FAQPageView.js +9 -11
- package/dist/features/about/components/PolicyPageView.js +32 -11
- package/dist/features/about/components/PublicProfileView.js +77 -11
- package/dist/features/account/components/AddressesIndexListing.js +63 -38
- package/dist/features/account/components/UserOffersPanel.d.ts +8 -0
- package/dist/features/account/components/UserOffersPanel.js +81 -0
- package/dist/features/account/components/UserSettingsView.d.ts +2 -1
- package/dist/features/account/components/UserSettingsView.js +2 -1
- package/dist/features/account/components/UserSidebar.d.ts +6 -1
- package/dist/features/account/components/UserSidebar.js +48 -42
- package/dist/features/account/components/index.d.ts +2 -0
- package/dist/features/account/components/index.js +1 -0
- package/dist/features/admin/actions/admin-actions.d.ts +1 -1
- package/dist/features/admin/actions/admin-actions.js +13 -3
- package/dist/features/admin/components/AdminAdEditorView.js +6 -7
- package/dist/features/admin/components/AdminAllEventEntriesView.d.ts +4 -0
- package/dist/features/admin/components/AdminAllEventEntriesView.js +102 -0
- package/dist/features/admin/components/AdminBidsView.js +94 -8
- package/dist/features/admin/components/AdminBlogEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBlogEditorView.js +162 -0
- package/dist/features/admin/components/AdminBlogView.d.ts +4 -1
- package/dist/features/admin/components/AdminBlogView.js +61 -31
- package/dist/features/admin/components/AdminBrandEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBrandEditorView.js +104 -0
- package/dist/features/admin/components/AdminBrandsView.d.ts +4 -0
- package/dist/features/admin/components/AdminBrandsView.js +76 -0
- package/dist/features/admin/components/AdminCarouselEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminCarouselEditorView.js +204 -0
- package/dist/features/admin/components/AdminCarouselView.js +153 -34
- package/dist/features/admin/components/AdminCartsView.d.ts +4 -0
- package/dist/features/admin/components/AdminCartsView.js +82 -0
- package/dist/features/admin/components/AdminCategoriesView.d.ts +4 -1
- package/dist/features/admin/components/AdminCategoriesView.js +66 -48
- package/dist/features/admin/components/AdminCategoryEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCategoryEditorView.js +115 -0
- package/dist/features/admin/components/AdminContactEditorView.d.ts +11 -0
- package/dist/features/admin/components/AdminContactEditorView.js +32 -0
- package/dist/features/admin/components/AdminContactView.js +111 -20
- package/dist/features/admin/components/AdminCouponEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCouponEditorView.js +179 -0
- package/dist/features/admin/components/AdminCouponsView.d.ts +4 -1
- package/dist/features/admin/components/AdminCouponsView.js +57 -9
- package/dist/features/admin/components/AdminDashboardView.js +3 -0
- package/dist/features/admin/components/AdminFaqEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminFaqEditorView.js +128 -0
- package/dist/features/admin/components/AdminFaqsView.d.ts +4 -1
- package/dist/features/admin/components/AdminFaqsView.js +55 -23
- package/dist/features/admin/components/AdminFeatureFlagsView.js +33 -24
- package/dist/features/admin/components/AdminListingScaffold.d.ts +7 -1
- package/dist/features/admin/components/AdminListingScaffold.js +2 -2
- package/dist/features/admin/components/AdminMediaView.js +18 -8
- package/dist/features/admin/components/AdminNavEditorView.d.ts +20 -0
- package/dist/features/admin/components/AdminNavEditorView.js +84 -0
- package/dist/features/admin/components/AdminNavigationView.d.ts +1 -7
- package/dist/features/admin/components/AdminNavigationView.js +84 -72
- package/dist/features/admin/components/AdminNewsletterView.js +102 -20
- package/dist/features/admin/components/AdminNotificationsView.d.ts +4 -0
- package/dist/features/admin/components/AdminNotificationsView.js +119 -0
- package/dist/features/admin/components/AdminOrderEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminOrderEditorView.js +74 -0
- package/dist/features/admin/components/AdminOrdersView.js +64 -8
- package/dist/features/admin/components/AdminPayoutsView.js +122 -13
- package/dist/features/admin/components/AdminProductEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminProductEditorView.js +143 -0
- package/dist/features/admin/components/AdminProductsView.d.ts +4 -1
- package/dist/features/admin/components/AdminProductsView.js +119 -30
- package/dist/features/admin/components/AdminReturnRequestsView.d.ts +5 -0
- package/dist/features/admin/components/AdminReturnRequestsView.js +101 -0
- package/dist/features/admin/components/AdminReviewsView.js +138 -28
- package/dist/features/admin/components/AdminSectionsView.js +361 -472
- package/dist/features/admin/components/AdminSessionsView.d.ts +4 -0
- package/dist/features/admin/components/AdminSessionsView.js +119 -0
- package/dist/features/admin/components/AdminSidebar.d.ts +18 -3
- package/dist/features/admin/components/AdminSidebar.js +51 -4
- package/dist/features/admin/components/AdminSiteSettingsView.d.ts +7 -0
- package/dist/features/admin/components/AdminSiteSettingsView.js +319 -0
- package/dist/features/admin/components/AdminStoreAddressesView.d.ts +5 -0
- package/dist/features/admin/components/AdminStoreAddressesView.js +52 -0
- package/dist/features/admin/components/AdminStoreEditorView.d.ts +9 -0
- package/dist/features/admin/components/AdminStoreEditorView.js +55 -0
- package/dist/features/admin/components/AdminStoresView.js +62 -20
- package/dist/features/admin/components/AdminUserEditorView.d.ts +10 -0
- package/dist/features/admin/components/AdminUserEditorView.js +72 -0
- package/dist/features/admin/components/AdminUsersView.js +70 -36
- package/dist/features/admin/components/AdminWishlistsView.d.ts +4 -0
- package/dist/features/admin/components/AdminWishlistsView.js +53 -0
- package/dist/features/admin/components/BrandQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/BrandQuickCreateForm.js +36 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.js +35 -0
- package/dist/features/admin/components/DataTable.d.ts +4 -2
- package/dist/features/admin/components/DataTable.js +26 -6
- package/dist/features/admin/components/index.d.ts +47 -1
- package/dist/features/admin/components/index.js +23 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.d.ts +48 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.js +653 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.d.ts +298 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.js +278 -0
- package/dist/features/admin/schemas/firestore.d.ts +26 -0
- package/dist/features/admin/schemas/firestore.js +1 -0
- package/dist/features/admin/types/product.types.d.ts +2 -3
- package/dist/features/auctions/actions/bid-actions.js +6 -2
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +3 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +38 -12
- package/dist/features/auctions/components/AuctionFilters.d.ts +3 -1
- package/dist/features/auctions/components/AuctionFilters.js +6 -2
- package/dist/features/auctions/components/CollapsibleBidHistory.d.ts +7 -0
- package/dist/features/auctions/components/CollapsibleBidHistory.js +8 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +4 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.js +43 -9
- package/dist/features/auctions/components/MarketplaceAuctionGrid.js +1 -0
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +18 -0
- package/dist/features/auctions/components/PlaceBidFormClient.js +33 -0
- package/dist/features/auctions/hooks/useAuctions.d.ts +1 -0
- package/dist/features/auctions/hooks/useAuctions.js +1 -0
- package/dist/features/auctions/schemas/index.d.ts +22 -12
- package/dist/features/auth/actions/profile-actions.d.ts +5 -3
- package/dist/features/auth/actions/profile-actions.js +30 -11
- package/dist/features/auth/auth-helpers.js +1 -0
- package/dist/features/auth/components/LoginForm.js +2 -1
- package/dist/features/auth/hooks/useAuth.js +16 -4
- package/dist/features/auth/permissions/constants.d.ts +63 -0
- package/dist/features/auth/permissions/constants.js +323 -0
- package/dist/features/auth/schemas/firestore.d.ts +20 -0
- package/dist/features/auth/schemas/index.d.ts +4 -4
- package/dist/features/auth/schemas/index.js +3 -2
- package/dist/features/auth/types/index.d.ts +1 -1
- package/dist/features/before-after/schemas/index.d.ts +2 -2
- package/dist/features/blog/actions/blog-actions.d.ts +15 -15
- package/dist/features/blog/components/BlogFilters.js +1 -1
- package/dist/features/blog/components/BlogIndexListing.js +57 -5
- package/dist/features/blog/components/BlogIndexPageView.js +14 -2
- package/dist/features/blog/components/BlogPostForm.js +6 -2
- package/dist/features/blog/components/BlogPostView.js +2 -1
- package/dist/features/blog/hooks/useBlog.d.ts +2 -0
- package/dist/features/blog/hooks/useBlog.js +2 -0
- package/dist/features/blog/schemas/index.d.ts +46 -12
- package/dist/features/brands/actions/brand-actions.d.ts +2 -0
- package/dist/features/brands/actions/brand-actions.js +5 -0
- package/dist/features/brands/index.d.ts +3 -0
- package/dist/features/brands/index.js +3 -0
- package/dist/features/brands/repository/brands.repository.d.ts +13 -0
- package/dist/features/brands/repository/brands.repository.js +60 -0
- package/dist/features/brands/schemas/index.d.ts +33 -0
- package/dist/features/brands/schemas/index.js +15 -0
- package/dist/features/brands/server.d.ts +7 -0
- package/dist/features/brands/server.js +7 -0
- package/dist/features/cart/actions/cart-actions.js +2 -2
- package/dist/features/cart/components/CartDrawer.d.ts +5 -1
- package/dist/features/cart/components/CartDrawer.js +3 -3
- package/dist/features/cart/hooks/useCartCount.d.ts +3 -2
- package/dist/features/cart/hooks/useCartCount.js +4 -2
- package/dist/features/cart/hooks/useGuestCartMerge.js +1 -1
- package/dist/features/cart/index.d.ts +1 -0
- package/dist/features/cart/index.js +1 -0
- package/dist/features/cart/repository/cart.repository.d.ts +5 -1
- package/dist/features/cart/repository/cart.repository.js +36 -5
- package/dist/features/cart/schemas/firestore.d.ts +25 -6
- package/dist/features/cart/schemas/firestore.js +2 -2
- package/dist/features/cart/schemas/index.d.ts +9 -9
- package/dist/features/cart/schemas/index.js +1 -1
- package/dist/features/cart/types/index.d.ts +1 -1
- package/dist/features/cart/utils/pending-ops.d.ts +33 -0
- package/dist/features/cart/utils/pending-ops.js +102 -0
- package/dist/features/categories/components/BrandDetailPageView.d.ts +4 -0
- package/dist/features/categories/components/BrandDetailPageView.js +54 -0
- package/dist/features/categories/components/BrandDetailTabs.d.ts +10 -0
- package/dist/features/categories/components/BrandDetailTabs.js +22 -0
- package/dist/features/categories/components/CategoriesIndexListing.d.ts +3 -1
- package/dist/features/categories/components/CategoriesIndexListing.js +83 -7
- package/dist/features/categories/components/CategoryDetailPageView.js +42 -21
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +7 -1
- package/dist/features/categories/components/CategoryDetailTabs.js +12 -7
- package/dist/features/categories/components/CategoryFilters.js +1 -1
- package/dist/features/categories/components/CategoryForm.js +10 -4
- package/dist/features/categories/components/CategoryProductsListing.d.ts +4 -1
- package/dist/features/categories/components/CategoryProductsListing.js +34 -5
- package/dist/features/categories/components/ConcernCard.js +1 -1
- package/dist/features/categories/hooks/useCategories.js +2 -0
- package/dist/features/categories/repository/categories.repository.js +2 -3
- package/dist/features/categories/schemas/firestore.d.ts +23 -2
- package/dist/features/categories/schemas/firestore.js +8 -0
- package/dist/features/categories/schemas/index.d.ts +8 -8
- package/dist/features/categories/types/index.d.ts +1 -0
- package/dist/features/collections/schemas/index.d.ts +2 -2
- package/dist/features/events/components/AdminEventEditorView.js +2 -2
- package/dist/features/events/components/AdminEventsView.d.ts +4 -1
- package/dist/features/events/components/AdminEventsView.js +64 -38
- package/dist/features/events/components/EventCard.js +1 -1
- package/dist/features/events/components/EventFilters.js +1 -1
- package/dist/features/events/components/EventPollWidget.d.ts +12 -0
- package/dist/features/events/components/EventPollWidget.js +62 -0
- package/dist/features/events/components/EventsIndexListing.js +57 -5
- package/dist/features/events/components/EventsListPageView.js +1 -1
- package/dist/features/events/components/index.d.ts +2 -0
- package/dist/features/events/components/index.js +1 -0
- package/dist/features/events/hooks/useEvents.d.ts +1 -0
- package/dist/features/events/hooks/useEvents.js +1 -0
- package/dist/features/events/repository/events.repository.js +3 -0
- package/dist/features/events/schemas/firestore.d.ts +1 -0
- package/dist/features/events/schemas/index.d.ts +44 -0
- package/dist/features/events/types/index.d.ts +2 -0
- package/dist/features/faq/actions/faq-actions.d.ts +16 -16
- package/dist/features/faq/hooks/useFaqList.js +1 -1
- package/dist/features/faq/schemas/firestore.d.ts +2 -2
- package/dist/features/faq/schemas/firestore.js +2 -1
- package/dist/features/faq/schemas/index.d.ts +4 -4
- package/dist/features/filters/FilterFacetSection.d.ts +1 -0
- package/dist/features/filters/FilterFacetSection.js +13 -1
- package/dist/features/filters/SwitchFilter.js +1 -1
- package/dist/features/grouped/schemas/firestore.d.ts +32 -0
- package/dist/features/grouped/schemas/firestore.js +19 -0
- package/dist/features/homepage/components/AdSlot.d.ts +1 -3
- package/dist/features/homepage/components/AdSlot.js +15 -14
- package/dist/features/homepage/components/BlogArticlesSection.d.ts +3 -1
- package/dist/features/homepage/components/BlogArticlesSection.js +2 -2
- package/dist/features/homepage/components/BrandsSection.d.ts +3 -1
- package/dist/features/homepage/components/BrandsSection.js +4 -3
- package/dist/features/homepage/components/CustomCardsSection.d.ts +3 -0
- package/dist/features/homepage/components/CustomCardsSection.js +76 -0
- package/dist/features/homepage/components/EventsSection.d.ts +3 -1
- package/dist/features/homepage/components/EventsSection.js +2 -2
- package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.js +2 -2
- package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.js +2 -2
- package/dist/features/homepage/components/FeaturedProductsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +8 -3
- package/dist/features/homepage/components/FeaturedStoresSection.d.ts +3 -1
- package/dist/features/homepage/components/FeaturedStoresSection.js +2 -2
- package/dist/features/homepage/components/GoogleReviewsSection.d.ts +3 -0
- package/dist/features/homepage/components/GoogleReviewsSection.js +65 -0
- package/dist/features/homepage/components/HeroCarousel.js +128 -84
- package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +2 -20
- package/dist/features/homepage/components/MarketplaceHomepageView.js +73 -230
- package/dist/features/homepage/components/SectionCarousel.d.ts +1 -1
- package/dist/features/homepage/components/SectionCarousel.js +2 -0
- package/dist/features/homepage/components/ShopByCategorySection.d.ts +3 -1
- package/dist/features/homepage/components/ShopByCategorySection.js +8 -4
- package/dist/features/homepage/components/SocialFeedSection.d.ts +3 -0
- package/dist/features/homepage/components/SocialFeedSection.js +86 -0
- package/dist/features/homepage/components/SocialPostCard.d.ts +7 -0
- package/dist/features/homepage/components/SocialPostCard.js +39 -0
- package/dist/features/homepage/components/StatsCounterSection.js +1 -1
- package/dist/features/homepage/components/WelcomeSection.js +1 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.js +1 -1
- package/dist/features/homepage/hooks/useActiveAd.d.ts +23 -0
- package/dist/features/homepage/hooks/useActiveAd.js +20 -0
- package/dist/features/homepage/hooks/useBlogArticles.d.ts +1 -0
- package/dist/features/homepage/hooks/useBlogArticles.js +10 -0
- package/dist/features/homepage/hooks/useFeaturedAuctions.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedAuctions.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedPreOrders.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedPreOrders.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedProducts.d.ts +1 -0
- package/dist/features/homepage/hooks/useFeaturedProducts.js +6 -3
- package/dist/features/homepage/hooks/useFeaturedStores.d.ts +3 -1
- package/dist/features/homepage/hooks/useFeaturedStores.js +2 -1
- package/dist/features/homepage/hooks/useHomepageEvents.d.ts +3 -1
- package/dist/features/homepage/hooks/useHomepageEvents.js +2 -1
- package/dist/features/homepage/hooks/useTopBrands.d.ts +3 -1
- package/dist/features/homepage/hooks/useTopBrands.js +2 -1
- package/dist/features/homepage/index.d.ts +2 -0
- package/dist/features/homepage/index.js +1 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.d.ts +14 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.js +27 -0
- package/dist/features/homepage/lib/live-stats.d.ts +14 -0
- package/dist/features/homepage/lib/live-stats.js +62 -0
- package/dist/features/homepage/lib/section-defaults.d.ts +11 -0
- package/dist/features/homepage/lib/section-defaults.js +45 -0
- package/dist/features/homepage/lib/section-helpers.d.ts +5 -0
- package/dist/features/homepage/lib/section-helpers.js +25 -0
- package/dist/features/homepage/lib/section-renderer.d.ts +33 -0
- package/dist/features/homepage/lib/section-renderer.js +164 -0
- package/dist/features/homepage/lib/social-feed-fetcher.d.ts +5 -0
- package/dist/features/homepage/lib/social-feed-fetcher.js +193 -0
- package/dist/features/homepage/schemas/firestore.d.ts +180 -29
- package/dist/features/homepage/schemas/firestore.js +5 -0
- package/dist/features/homepage/types/index.d.ts +48 -19
- package/dist/features/layout/AppLayoutShell.d.ts +6 -1
- package/dist/features/layout/AppLayoutShell.js +25 -9
- package/dist/features/layout/BottomActions.js +1 -1
- package/dist/features/layout/BottomNavbar.d.ts +15 -1
- package/dist/features/layout/BottomNavbar.js +8 -2
- package/dist/features/layout/FooterLayout.d.ts +7 -1
- package/dist/features/layout/FooterLayout.js +3 -3
- package/dist/features/layout/ListingLayout.js +2 -2
- package/dist/features/layout/MainNavbar.d.ts +6 -14
- package/dist/features/layout/MainNavbar.js +4 -16
- package/dist/features/layout/NavItem.js +1 -1
- package/dist/features/layout/NavbarLayout.d.ts +3 -1
- package/dist/features/layout/NavbarLayout.js +5 -5
- package/dist/features/layout/TitleBar.d.ts +4 -2
- package/dist/features/layout/TitleBar.js +5 -3
- package/dist/features/layout/TitleBarLayout.d.ts +3 -1
- package/dist/features/layout/TitleBarLayout.js +2 -2
- package/dist/features/layout/index.d.ts +1 -1
- package/dist/features/media/MediaPickerModal.d.ts +30 -0
- package/dist/features/media/MediaPickerModal.js +72 -0
- package/dist/features/media/index.d.ts +3 -1
- package/dist/features/media/index.js +1 -0
- package/dist/features/media/types/index.d.ts +12 -0
- package/dist/features/media/types/index.js +4 -2
- package/dist/features/media/upload/MediaUploadField.d.ts +5 -1
- package/dist/features/media/upload/MediaUploadField.js +56 -3
- package/dist/features/messages/schemas/firestore.d.ts +36 -0
- package/dist/features/messages/schemas/firestore.js +16 -0
- package/dist/features/orders/repository/orders.repository.d.ts +2 -2
- package/dist/features/orders/repository/orders.repository.js +2 -2
- package/dist/features/orders/schemas/firestore.d.ts +17 -4
- package/dist/features/orders/schemas/firestore.js +2 -2
- package/dist/features/orders/schemas/index.d.ts +18 -18
- package/dist/features/orders/schemas/index.js +3 -3
- package/dist/features/orders/types/index.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.js +2 -2
- package/dist/features/payments/repository/payout.repository.d.ts +4 -4
- package/dist/features/payments/repository/payout.repository.js +7 -7
- package/dist/features/payments/schemas/firestore.d.ts +6 -6
- package/dist/features/payments/schemas/firestore.js +6 -6
- package/dist/features/pre-orders/components/MarketplacePreorderCard.js +11 -10
- package/dist/features/pre-orders/components/PreOrderActionsClient.d.ts +11 -0
- package/dist/features/pre-orders/components/PreOrderActionsClient.js +28 -0
- package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +27 -9
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +3 -1
- package/dist/features/pre-orders/components/PreOrderFilters.js +9 -6
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +3 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +132 -36
- package/dist/features/pre-orders/components/PreOrdersListView.js +3 -3
- package/dist/features/pre-orders/components/PreorderCard.js +1 -1
- package/dist/features/pre-orders/schemas/index.d.ts +10 -0
- package/dist/features/products/actions/product-actions.d.ts +2 -2
- package/dist/features/products/actions/product-actions.js +5 -5
- package/dist/features/products/api/[id]/route.js +5 -2
- package/dist/features/products/api/route.js +10 -14
- package/dist/features/products/columns/productTableColumns.js +2 -2
- package/dist/features/products/components/AuctionDetailView.d.ts +2 -1
- package/dist/features/products/components/AuctionDetailView.js +2 -2
- package/dist/features/products/components/AuctionsIndexListing.d.ts +3 -1
- package/dist/features/products/components/AuctionsIndexListing.js +93 -31
- package/dist/features/products/components/BidHistory.d.ts +2 -1
- package/dist/features/products/components/BidHistory.js +18 -2
- package/dist/features/products/components/MakeOfferButton.d.ts +10 -0
- package/dist/features/products/components/MakeOfferButton.js +68 -0
- package/dist/features/products/components/ProductDetailPageView.d.ts +11 -1
- package/dist/features/products/components/ProductDetailPageView.js +27 -8
- package/dist/features/products/components/ProductFilters.d.ts +7 -1
- package/dist/features/products/components/ProductFilters.js +4 -2
- package/dist/features/products/components/ProductForm.d.ts +19 -1
- package/dist/features/products/components/ProductForm.js +24 -6
- package/dist/features/products/components/ProductGrid.d.ts +10 -2
- package/dist/features/products/components/ProductGrid.js +76 -29
- package/dist/features/products/components/ProductsIndexListing.js +131 -45
- package/dist/features/products/components/RelatedProductsCarousel.js +1 -1
- package/dist/features/products/components/ShareButton.d.ts +7 -0
- package/dist/features/products/components/ShareButton.js +22 -0
- package/dist/features/products/components/index.d.ts +2 -0
- package/dist/features/products/components/index.js +1 -0
- package/dist/features/products/hooks/useProducts.d.ts +7 -0
- package/dist/features/products/hooks/useProducts.js +6 -4
- package/dist/features/products/repository/products.repository.d.ts +4 -8
- package/dist/features/products/repository/products.repository.js +17 -50
- package/dist/features/products/schemas/firestore.d.ts +11 -9
- package/dist/features/products/schemas/firestore.js +11 -3
- package/dist/features/products/schemas/index.d.ts +51 -50
- package/dist/features/products/schemas/index.js +2 -5
- package/dist/features/products/types/index.d.ts +13 -5
- package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
- package/dist/features/promotions/actions/coupon-actions.js +1 -1
- package/dist/features/promotions/actions/seller-coupon-actions.js +11 -6
- package/dist/features/promotions/api/route.js +3 -3
- package/dist/features/promotions/components/CouponCard.js +16 -7
- package/dist/features/promotions/components/CouponsIndexListing.js +3 -9
- package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
- package/dist/features/promotions/hooks/usePromotions.js +2 -2
- package/dist/features/promotions/repository/coupons.repository.d.ts +21 -15
- package/dist/features/promotions/repository/coupons.repository.js +97 -125
- package/dist/features/promotions/schemas/firestore.d.ts +31 -2
- package/dist/features/promotions/schemas/firestore.js +29 -0
- package/dist/features/promotions/schemas/index.d.ts +9 -12
- package/dist/features/promotions/schemas/index.js +1 -2
- package/dist/features/promotions/types/index.d.ts +1 -2
- package/dist/features/reviews/actions/review-actions.js +3 -2
- package/dist/features/reviews/components/ReviewDetailPageView.js +5 -9
- package/dist/features/reviews/components/ReviewFilters.js +1 -1
- package/dist/features/reviews/components/ReviewsIndexListing.js +58 -7
- package/dist/features/reviews/components/ReviewsList.js +2 -2
- package/dist/features/reviews/hooks/useReviews.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.js +2 -1
- package/dist/features/reviews/repository/reviews.repository.d.ts +9 -4
- package/dist/features/reviews/repository/reviews.repository.js +18 -7
- package/dist/features/reviews/schemas/firestore.d.ts +5 -2
- package/dist/features/reviews/schemas/firestore.js +1 -0
- package/dist/features/reviews/schemas/index.d.ts +19 -16
- package/dist/features/reviews/schemas/index.js +3 -2
- package/dist/features/reviews/types/index.d.ts +3 -2
- package/dist/features/scams/actions/scam-actions.d.ts +29 -0
- package/dist/features/scams/actions/scam-actions.js +62 -0
- package/dist/features/scams/components/ScamProfileView.d.ts +10 -0
- package/dist/features/scams/components/ScamProfileView.js +51 -0
- package/dist/features/scams/components/ScamRegistryView.d.ts +6 -0
- package/dist/features/scams/components/ScamRegistryView.js +41 -0
- package/dist/features/scams/components/index.d.ts +4 -0
- package/dist/features/scams/components/index.js +2 -0
- package/dist/features/scams/constants/scam-types.d.ts +38 -0
- package/dist/features/scams/constants/scam-types.js +443 -0
- package/dist/features/scams/repository/scammer.repository.d.ts +67 -0
- package/dist/features/scams/repository/scammer.repository.js +160 -0
- package/dist/features/scams/schemas/firestore.d.ts +362 -0
- package/dist/features/scams/schemas/firestore.js +233 -0
- package/dist/features/search/components/Search.d.ts +12 -2
- package/dist/features/search/components/Search.js +26 -7
- package/dist/features/search/components/index.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.js +2 -2
- package/dist/features/search/schemas/index.d.ts +7 -7
- package/dist/features/seller/actions/offer-actions.js +52 -36
- package/dist/features/seller/actions/seller-actions.js +19 -13
- package/dist/features/seller/api/products/route.js +9 -4
- package/dist/features/seller/components/SellerAddressesView.d.ts +3 -12
- package/dist/features/seller/components/SellerAddressesView.js +144 -4
- package/dist/features/seller/components/SellerAuctionsView.js +58 -5
- package/dist/features/seller/components/SellerBidsView.d.ts +4 -0
- package/dist/features/seller/components/SellerBidsView.js +131 -0
- package/dist/features/seller/components/SellerCouponEditorView.d.ts +19 -0
- package/dist/features/seller/components/SellerCouponEditorView.js +67 -0
- package/dist/features/seller/components/SellerCouponsView.d.ts +5 -3
- package/dist/features/seller/components/SellerCouponsView.js +135 -13
- package/dist/features/seller/components/SellerCreateProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerCreateProductView.js +4 -3
- package/dist/features/seller/components/SellerEditProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerEditProductView.js +4 -3
- package/dist/features/seller/components/SellerOffersPanel.d.ts +20 -0
- package/dist/features/seller/components/SellerOffersPanel.js +138 -0
- package/dist/features/seller/components/SellerOffersView.js +56 -5
- package/dist/features/seller/components/SellerOrdersView.d.ts +2 -1
- package/dist/features/seller/components/SellerOrdersView.js +185 -16
- package/dist/features/seller/components/SellerPayoutRequestView.d.ts +7 -0
- package/dist/features/seller/components/SellerPayoutRequestView.js +63 -0
- package/dist/features/seller/components/SellerPayoutSettingsView.d.ts +3 -10
- package/dist/features/seller/components/SellerPayoutSettingsView.js +89 -3
- package/dist/features/seller/components/SellerPayoutsView.js +56 -5
- package/dist/features/seller/components/SellerProductShell.d.ts +68 -0
- package/dist/features/seller/components/SellerProductShell.js +179 -0
- package/dist/features/seller/components/SellerProductsView.d.ts +2 -3
- package/dist/features/seller/components/SellerProductsView.js +194 -18
- package/dist/features/seller/components/SellerReviewsView.d.ts +5 -0
- package/dist/features/seller/components/SellerReviewsView.js +100 -0
- package/dist/features/seller/components/SellerShippingView.d.ts +3 -11
- package/dist/features/seller/components/SellerShippingView.js +87 -3
- package/dist/features/seller/components/SellerSidebar.d.ts +11 -3
- package/dist/features/seller/components/SellerSidebar.js +52 -8
- package/dist/features/seller/components/SellerStorefrontView.d.ts +26 -11
- package/dist/features/seller/components/SellerStorefrontView.js +45 -7
- package/dist/features/seller/components/index.d.ts +16 -2
- package/dist/features/seller/components/index.js +7 -0
- package/dist/features/seller/hooks/useSellerListingData.d.ts +3 -1
- package/dist/features/seller/hooks/useSellerListingData.js +6 -4
- package/dist/features/seller/repository/offer.repository.d.ts +3 -3
- package/dist/features/seller/repository/offer.repository.js +6 -6
- package/dist/features/seller/schemas/firestore.d.ts +7 -7
- package/dist/features/seller/schemas/firestore.js +4 -4
- package/dist/features/seller/schemas/index.d.ts +16 -16
- package/dist/features/shell/FormShell.d.ts +29 -0
- package/dist/features/shell/FormShell.js +103 -0
- package/dist/features/shell/QuickFormDrawer.d.ts +29 -0
- package/dist/features/shell/QuickFormDrawer.js +117 -0
- package/dist/features/shell/StepForm.d.ts +44 -0
- package/dist/features/shell/StepForm.js +81 -0
- package/dist/features/shell/index.d.ts +6 -0
- package/dist/features/shell/index.js +3 -0
- package/dist/features/stores/actions/store-query-actions.js +3 -3
- package/dist/features/stores/api/[storeSlug]/auctions/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/products/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +1 -1
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +2 -2
- package/dist/features/stores/components/InteractiveStoreCard.js +21 -7
- package/dist/features/stores/components/StoreAboutView.js +1 -1
- package/dist/features/stores/components/StoreAuctionsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreAuctionsListing.js +81 -8
- package/dist/features/stores/components/StoreAuctionsPageView.js +8 -7
- package/dist/features/stores/components/StoreDetailLayoutView.d.ts +1 -0
- package/dist/features/stores/components/StoreDetailLayoutView.js +29 -5
- package/dist/features/stores/components/StoreHeader.js +2 -1
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +4 -2
- package/dist/features/stores/components/StorePreOrdersListing.js +59 -7
- package/dist/features/stores/components/StorePreOrdersPageView.js +8 -7
- package/dist/features/stores/components/StoreProductsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreProductsListing.js +97 -8
- package/dist/features/stores/components/StoreProductsPageView.js +8 -7
- package/dist/features/stores/components/StoreReviewsListing.js +2 -2
- package/dist/features/stores/components/StoresIndexListing.js +74 -11
- package/dist/features/stores/components/StoresListView.js +1 -1
- package/dist/features/stores/hooks/useStores.d.ts +1 -0
- package/dist/features/stores/hooks/useStores.js +1 -0
- package/dist/features/stores/schemas/firestore.d.ts +34 -0
- package/dist/features/stores/schemas/index.d.ts +8 -8
- package/dist/features/sublisting/schemas/firestore.d.ts +30 -0
- package/dist/features/sublisting/schemas/firestore.js +19 -0
- package/dist/features/support/schemas/firestore.d.ts +113 -0
- package/dist/features/support/schemas/firestore.js +95 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.d.ts +5 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +143 -0
- package/dist/features/whatsapp-bot/components/index.d.ts +2 -0
- package/dist/features/whatsapp-bot/components/index.js +1 -0
- package/dist/features/whatsapp-bot/helpers/whatsapp.d.ts +23 -1
- package/dist/features/whatsapp-bot/helpers/whatsapp.js +104 -0
- package/dist/features/whatsapp-bot/server.d.ts +1 -0
- package/dist/features/whatsapp-bot/server.js +1 -0
- package/dist/features/whatsapp-bot/types/index.d.ts +49 -0
- package/dist/features/wishlist/components/WishlistView.d.ts +0 -10
- package/dist/features/wishlist/components/WishlistView.js +13 -6
- package/dist/features/wishlist/hooks/useWishlist.js +2 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +11 -3
- package/dist/features/wishlist/hooks/useWishlistCount.js +89 -25
- package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +1 -1
- package/dist/features/wishlist/schemas/index.d.ts +2 -2
- package/dist/features/wishlist/types/index.d.ts +16 -0
- package/dist/http/api-handler.js +8 -1
- package/dist/index.d.ts +114 -16
- package/dist/index.js +136 -28
- package/dist/monitoring/server-logger.js +9 -3
- package/dist/next/routing/route-map.d.ts +120 -6
- package/dist/next/routing/route-map.js +53 -2
- package/dist/providers/db-firebase/realtime.d.ts +1 -1
- package/dist/react/contexts/SessionContext.js +17 -26
- package/dist/react/hooks/useBulkSelection.d.ts +7 -24
- package/dist/react/hooks/useBulkSelection.js +27 -34
- package/dist/react/hooks/useLongPress.d.ts +3 -16
- package/dist/react/hooks/useLongPress.js +6 -25
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +2 -0
- package/dist/repositories/index.d.ts +3 -0
- package/dist/repositories/index.js +2 -0
- package/dist/seed/actions/demo-seed-actions.d.ts +2 -2
- package/dist/seed/actions/demo-seed-actions.js +1 -1
- package/dist/seed/anime-figures-seed-data.d.ts +8 -0
- package/dist/seed/anime-figures-seed-data.js +1033 -0
- package/dist/seed/beyblade-seed-data.js +206 -24
- package/dist/seed/bids-seed-data.d.ts +4 -10
- package/dist/seed/bids-seed-data.js +365 -238
- package/dist/seed/blog-posts-seed-data.d.ts +3 -2
- package/dist/seed/blog-posts-seed-data.js +250 -511
- package/dist/seed/brands-seed-data.d.ts +7 -0
- package/dist/seed/brands-seed-data.js +410 -0
- package/dist/seed/carousel-slides-seed-data.d.ts +3 -2
- package/dist/seed/carousel-slides-seed-data.js +177 -216
- package/dist/seed/cart-seed-data.d.ts +9 -9
- package/dist/seed/cart-seed-data.js +73 -73
- package/dist/seed/categories-seed-data.d.ts +4 -2
- package/dist/seed/categories-seed-data.js +720 -879
- package/dist/seed/conversations-seed-data.d.ts +8 -0
- package/dist/seed/conversations-seed-data.js +388 -0
- package/dist/seed/cosplay-accessories-seed-data.d.ts +8 -0
- package/dist/seed/cosplay-accessories-seed-data.js +647 -0
- package/dist/seed/coupon-usage-seed-data.d.ts +25 -0
- package/dist/seed/coupon-usage-seed-data.js +69 -0
- package/dist/seed/coupons-seed-data.d.ts +6 -3
- package/dist/seed/coupons-seed-data.js +375 -3
- package/dist/seed/events-seed-data.d.ts +4 -2
- package/dist/seed/events-seed-data.js +128 -430
- package/dist/seed/factories/cart.factory.d.ts +0 -1
- package/dist/seed/factories/cart.factory.js +2 -2
- package/dist/seed/faq-seed-data.d.ts +11 -18
- package/dist/seed/faq-seed-data.js +786 -1817
- package/dist/seed/grouped-listings-seed-data.d.ts +8 -0
- package/dist/seed/grouped-listings-seed-data.js +201 -0
- package/dist/seed/homepage-sections-seed-data.d.ts +3 -13
- package/dist/seed/homepage-sections-seed-data.js +228 -252
- package/dist/seed/hot-wheels-seed-data.js +285 -38
- package/dist/seed/index.d.ts +12 -11
- package/dist/seed/index.js +10 -12
- package/dist/seed/letitrip-official-seed-data.d.ts +8 -0
- package/dist/seed/letitrip-official-seed-data.js +399 -0
- package/dist/seed/manifest.d.ts +15 -0
- package/dist/seed/manifest.js +140 -0
- package/dist/seed/notifications-seed-data.d.ts +4 -2
- package/dist/seed/notifications-seed-data.js +117 -440
- package/dist/seed/orders-seed-data.d.ts +4 -2
- package/dist/seed/orders-seed-data.js +1090 -521
- package/dist/seed/payouts-seed-data.d.ts +4 -2
- package/dist/seed/payouts-seed-data.js +522 -145
- package/dist/seed/pokemon-carousel-slides-seed-data.js +6 -1
- package/dist/seed/pokemon-categories-seed-data.js +81 -81
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-homepage-sections-seed-data.js +116 -23
- package/dist/seed/pokemon-products-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-products-seed-data.js +83 -73
- package/dist/seed/pokemon-seed-bundle.d.ts +5 -1
- package/dist/seed/pokemon-seed-bundle.js +21 -2
- package/dist/seed/pokemon-stores-seed-data.js +85 -9
- package/dist/seed/pokemon-users-seed-data.js +107 -8
- package/dist/seed/products-auctions-seed-data.d.ts +10 -0
- package/dist/seed/products-auctions-seed-data.js +689 -0
- package/dist/seed/products-preorders-seed-data.d.ts +9 -0
- package/dist/seed/products-preorders-seed-data.js +483 -0
- package/dist/seed/products-seed-data.js +34 -13
- package/dist/seed/products-standard-seed-data.d.ts +8 -0
- package/dist/seed/products-standard-seed-data.js +4179 -0
- package/dist/seed/retro-gaming-seed-data.d.ts +8 -0
- package/dist/seed/retro-gaming-seed-data.js +801 -0
- package/dist/seed/reviews-seed-data.d.ts +4 -17
- package/dist/seed/reviews-seed-data.js +1043 -515
- package/dist/seed/scammers-seed-data.d.ts +17 -0
- package/dist/seed/scammers-seed-data.js +118 -0
- package/dist/seed/site-settings-seed-data.js +25 -2
- package/dist/seed/store-addresses-seed-data.js +188 -84
- package/dist/seed/stores-seed-data.d.ts +3 -9
- package/dist/seed/stores-seed-data.js +212 -102
- package/dist/seed/sublisting-categories-seed-data.d.ts +7 -0
- package/dist/seed/sublisting-categories-seed-data.js +315 -0
- package/dist/seed/transformers-seed-data.js +34 -14
- package/dist/seed/users-seed-data.d.ts +3 -2
- package/dist/seed/users-seed-data.js +531 -440
- package/dist/seed/wishlists-seed-data.js +13 -13
- package/dist/server.d.ts +9 -2
- package/dist/server.js +12 -4
- package/dist/tokens/tokens.css +76 -31
- package/dist/ui/components/Avatar.style.css +10 -12
- package/dist/ui/components/BaseListingCard.d.ts +8 -3
- package/dist/ui/components/BaseListingCard.js +17 -6
- package/dist/ui/components/BaseListingCard.style.css +3 -1
- package/dist/ui/components/BulkActionsBar.d.ts +16 -0
- package/dist/ui/components/BulkActionsBar.js +22 -0
- package/dist/ui/components/Button.style.css +23 -23
- package/dist/ui/components/Card.style.css +60 -62
- package/dist/ui/components/Checkbox.style.css +19 -21
- package/dist/ui/components/DashboardStatsCard.style.css +12 -14
- package/dist/ui/components/Drawer.style.css +18 -14
- package/dist/ui/components/Dropdown.style.css +25 -27
- package/dist/ui/components/EmptyState.style.css +2 -4
- package/dist/ui/components/HorizontalScroller.d.ts +3 -1
- package/dist/ui/components/HorizontalScroller.js +116 -21
- package/dist/ui/components/HorizontalScroller.style.css +2 -2
- package/dist/ui/components/ImageLightbox.d.ts +0 -9
- package/dist/ui/components/ImageLightbox.js +43 -9
- package/dist/ui/components/InlineCreateSelect.d.ts +38 -0
- package/dist/ui/components/InlineCreateSelect.js +70 -0
- package/dist/ui/components/ListingLayout.style.css +41 -77
- package/dist/ui/components/ListingToolbar.d.ts +54 -0
- package/dist/ui/components/ListingToolbar.js +34 -0
- package/dist/ui/components/Modal.style.css +14 -10
- package/dist/ui/components/PageLoader.d.ts +11 -0
- package/dist/ui/components/PageLoader.js +21 -0
- package/dist/ui/components/Radio.style.css +34 -36
- package/dist/ui/components/RichTextEditor.js +1 -1
- package/dist/ui/components/RowActionMenu.d.ts +1 -0
- package/dist/ui/components/RowActionMenu.js +4 -2
- package/dist/ui/components/SectionTabs.js +1 -1
- package/dist/ui/components/SectionTabs.style.css +1 -0
- package/dist/ui/components/SideModal.style.css +4 -8
- package/dist/ui/components/Slider.style.css +2 -4
- package/dist/ui/components/Tabs.style.css +8 -10
- package/dist/ui/components/Toast.style.css +22 -24
- package/dist/ui/components/Toggle.style.css +11 -13
- package/dist/ui/index.d.ts +9 -0
- package/dist/ui/index.js +5 -0
- package/dist/ui/rich-text/RichText.js +2 -1
- package/dist/ui/rich-text/RichText.style.css +292 -5
- package/dist/ui/rich-text/RichTextRenderer.d.ts +15 -0
- package/dist/ui/rich-text/RichTextRenderer.js +15 -0
- package/dist/utils/id-generators.d.ts +10 -0
- package/dist/utils/id-generators.js +12 -0
- package/dist/validation/schemas.d.ts +9 -9
- package/package.json +5 -1
- package/README.md +0 -116
|
@@ -9,19 +9,36 @@ const NOW = new Date();
|
|
|
9
9
|
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
10
10
|
const daysAhead = (n) => new Date(NOW.getTime() + n * 86400000);
|
|
11
11
|
const SK = {
|
|
12
|
-
sellerId: "user-speed-king-diecast",
|
|
13
12
|
storeId: "store-speed-king-diecast",
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
storeName: "Speed King Diecast",
|
|
14
|
+
};
|
|
15
|
+
const HW_IMGS = [
|
|
16
|
+
"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8a/HotWheels.svg/640px-HotWheels.svg.png",
|
|
17
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Die-cast_toy_automobiles.jpg?width=640",
|
|
18
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Toy_Cars_Hot_Wheels.jpg?width=640",
|
|
19
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Matchbox_cars.jpg?width=640",
|
|
20
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Hot_Wheels_-_Twin_Mill.jpg?width=640",
|
|
21
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Diecast_toy_car.jpg?width=640",
|
|
22
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Toy_car.jpg?width=640",
|
|
23
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Hot_Wheels_cars_collection.jpg?width=640",
|
|
24
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Miniature_diecast_car.jpg?width=640",
|
|
25
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Hot_Wheels_Deora_II.jpg?width=640",
|
|
26
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Diecast_model_car.jpg?width=640",
|
|
27
|
+
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Toy_sports_car.jpg?width=640",
|
|
28
|
+
];
|
|
29
|
+
const img = (seed) => {
|
|
30
|
+
let h = 0;
|
|
31
|
+
for (const c of seed)
|
|
32
|
+
h = (h * 31 + c.charCodeAt(0)) & 0x7fff;
|
|
33
|
+
return HW_IMGS[h % HW_IMGS.length];
|
|
16
34
|
};
|
|
17
|
-
const img = (seed) => `https://picsum.photos/seed/${seed}/600/400`;
|
|
18
35
|
export const hotWheelsProductsSeedData = [
|
|
19
36
|
// ── BASIC MAINLINE CARS (15) ──────────────────────────────────────────────
|
|
20
37
|
{
|
|
21
38
|
id: "product-hw-corvette-zr1-2019-basic-sk-1",
|
|
22
39
|
title: "Hot Wheels 2019 Corvette ZR1 — Mainline (Red)",
|
|
23
40
|
description: "<p>The iconic 2019 Corvette ZR1 in Hot Wheels scale. Vivid red finish with detailed tampo print. A must-have for American muscle collectors.</p>",
|
|
24
|
-
slug: "hw-2019-corvette-zr1-red-mainline",
|
|
41
|
+
slug: "product-hw-2019-corvette-zr1-red-mainline",
|
|
25
42
|
category: "category-hw-basic-cars",
|
|
26
43
|
subcategory: "American Muscle",
|
|
27
44
|
brand: "Hot Wheels",
|
|
@@ -31,6 +48,11 @@ export const hotWheelsProductsSeedData = [
|
|
|
31
48
|
availableQuantity: 24,
|
|
32
49
|
mainImage: img("hw-corvette-zr1"),
|
|
33
50
|
images: [img("hw-corvette-zr1"), img("hw-corvette-zr1-2")],
|
|
51
|
+
video: {
|
|
52
|
+
url: "https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/VolkswagenGTIReview.mp4",
|
|
53
|
+
thumbnailUrl: "https://commons.wikimedia.org/wiki/Special:Redirect/file/Hot_Wheels_Deora_II.jpg?width=640",
|
|
54
|
+
duration: 47,
|
|
55
|
+
},
|
|
34
56
|
status: "published",
|
|
35
57
|
...SK,
|
|
36
58
|
featured: true,
|
|
@@ -61,7 +83,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
61
83
|
id: "product-hw-67-camaro-blue-basic-sk-2",
|
|
62
84
|
title: "Hot Wheels '67 Camaro — Mainline (Metallic Blue)",
|
|
63
85
|
description: "<p>Classic 1967 Chevrolet Camaro in Hot Wheels 1:64 scale. Striking metallic blue finish with chrome bumpers.</p>",
|
|
64
|
-
slug: "hw-67-camaro-metallic-blue",
|
|
86
|
+
slug: "product-hw-67-camaro-metallic-blue",
|
|
65
87
|
category: "category-hw-basic-cars",
|
|
66
88
|
subcategory: "Classic American",
|
|
67
89
|
brand: "Hot Wheels",
|
|
@@ -97,7 +119,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
97
119
|
id: "product-hw-twin-mill-classic-basic-sk-3",
|
|
98
120
|
title: "Hot Wheels Twin Mill — Classic Redline Replica",
|
|
99
121
|
description: "<p>The legendary Twin Mill — one of the most iconic original Hot Wheels designs ever created. Dual-engine supercar in eye-catching orange with tampo details.</p>",
|
|
100
|
-
slug: "hw-twin-mill-classic-redline",
|
|
122
|
+
slug: "product-hw-twin-mill-classic-redline",
|
|
101
123
|
category: "category-hw-basic-cars",
|
|
102
124
|
subcategory: "Originals",
|
|
103
125
|
brand: "Hot Wheels",
|
|
@@ -135,7 +157,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
135
157
|
id: "product-hw-bone-shaker-skull-basic-sk-4",
|
|
136
158
|
title: "Hot Wheels Bone Shaker — Skull Edition (Black)",
|
|
137
159
|
description: "<p>Bone Shaker is one of Hot Wheels' most popular original designs. The skull and engine exposed front makes this an instant classic. Black variant with chrome details.</p>",
|
|
138
|
-
slug: "hw-bone-shaker-skull-black",
|
|
160
|
+
slug: "product-hw-bone-shaker-skull-black",
|
|
139
161
|
category: "category-hw-basic-cars",
|
|
140
162
|
subcategory: "Originals",
|
|
141
163
|
brand: "Hot Wheels",
|
|
@@ -170,7 +192,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
170
192
|
id: "product-hw-toyota-ae86-jdm-basic-sk-5",
|
|
171
193
|
title: "Hot Wheels Toyota AE86 Corolla — JDM Edition (White)",
|
|
172
194
|
description: "<p>The legendary Toyota AE86 Trueno in white with Initial D-inspired livery. One of the most beloved JDM icons in Hot Wheels form. Extremely popular — limited stock.</p>",
|
|
173
|
-
slug: "hw-toyota-ae86-corolla-jdm-white",
|
|
195
|
+
slug: "product-hw-toyota-ae86-corolla-jdm-white",
|
|
174
196
|
category: "category-hw-basic-cars",
|
|
175
197
|
subcategory: "JDM",
|
|
176
198
|
brand: "Hot Wheels",
|
|
@@ -208,7 +230,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
208
230
|
id: "product-hw-ford-gt-lm-racing-basic-sk-6",
|
|
209
231
|
title: "Hot Wheels Ford GT Le Mans — Racing Livery",
|
|
210
232
|
description: "<p>Ford GT in full Le Mans racing livery — the car that beat Ferrari at the 1966 24 Hours of Le Mans. Stunning Gulf Oil colours in 1:64 scale.</p>",
|
|
211
|
-
slug: "hw-ford-gt-le-mans-racing",
|
|
233
|
+
slug: "product-hw-ford-gt-le-mans-racing",
|
|
212
234
|
category: "category-hw-basic-cars",
|
|
213
235
|
subcategory: "Racing",
|
|
214
236
|
brand: "Hot Wheels",
|
|
@@ -242,9 +264,9 @@ export const hotWheelsProductsSeedData = [
|
|
|
242
264
|
},
|
|
243
265
|
{
|
|
244
266
|
id: "product-hw-lamborghini-huracan-yellow-basic-sk-7",
|
|
245
|
-
title: "Hot Wheels Lamborghini
|
|
246
|
-
description: "<p>The Lamborghini
|
|
247
|
-
slug: "hw-lamborghini-huracan-yellow",
|
|
267
|
+
title: "Hot Wheels Lamborghini Huracán LP 610-4 (Yellow)",
|
|
268
|
+
description: "<p>The Lamborghini Huracán in the classic Giallo Belenus yellow. Sharp angles and supercar stance make this one of the best modern Hot Wheels castings.</p>",
|
|
269
|
+
slug: "product-hw-lamborghini-huracan-yellow",
|
|
248
270
|
category: "category-hw-basic-cars",
|
|
249
271
|
subcategory: "Supercars",
|
|
250
272
|
brand: "Hot Wheels",
|
|
@@ -261,7 +283,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
261
283
|
specifications: [
|
|
262
284
|
{ name: "Scale", value: "1:64" },
|
|
263
285
|
{ name: "Brand", value: "Lamborghini" },
|
|
264
|
-
{ name: "Model", value: "
|
|
286
|
+
{ name: "Model", value: "Huracán LP 610-4" },
|
|
265
287
|
],
|
|
266
288
|
features: ["Official Lamborghini licensing", "Detailed interior"],
|
|
267
289
|
shippingInfo: "Padded box nationwide.",
|
|
@@ -280,7 +302,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
280
302
|
id: "product-hw-dodge-challenger-hellcat-basic-sk-8",
|
|
281
303
|
title: "Hot Wheels Dodge Challenger SRT Hellcat (Dark Purple)",
|
|
282
304
|
description: "<p>The Dodge Challenger SRT Hellcat — 707 bhp of raw American muscle in 1:64 form. Dark purple with subtle flame tampo.</p>",
|
|
283
|
-
slug: "hw-dodge-challenger-hellcat-purple",
|
|
305
|
+
slug: "product-hw-dodge-challenger-hellcat-purple",
|
|
284
306
|
category: "category-hw-basic-cars",
|
|
285
307
|
subcategory: "American Muscle",
|
|
286
308
|
brand: "Hot Wheels",
|
|
@@ -315,7 +337,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
315
337
|
id: "product-hw-deora-iii-surf-basic-sk-9",
|
|
316
338
|
title: "Hot Wheels Deora III — Surf Van (Teal)",
|
|
317
339
|
description: "<p>The Deora III continues the legendary Deora lineage. Part van, part hot rod, all Cool. The surfboard detail and teal finish make this a showpiece.</p>",
|
|
318
|
-
slug: "hw-deora-iii-surf-van-teal",
|
|
340
|
+
slug: "product-hw-deora-iii-surf-van-teal",
|
|
319
341
|
category: "category-hw-basic-cars",
|
|
320
342
|
subcategory: "Originals",
|
|
321
343
|
brand: "Hot Wheels",
|
|
@@ -350,7 +372,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
350
372
|
id: "product-hw-nissan-gtr-r35-basic-sk-10",
|
|
351
373
|
title: "Hot Wheels Nissan GT-R R35 (Midnight Purple)",
|
|
352
374
|
description: "<p>The Nissan GT-R R35 — Godzilla in midnight purple. Sharp casting with all GT-R detail lines reproduced perfectly in 1:64 scale.</p>",
|
|
353
|
-
slug: "hw-nissan-gtr-r35-midnight-purple",
|
|
375
|
+
slug: "product-hw-nissan-gtr-r35-midnight-purple",
|
|
354
376
|
category: "category-hw-basic-cars",
|
|
355
377
|
subcategory: "JDM",
|
|
356
378
|
brand: "Hot Wheels",
|
|
@@ -386,7 +408,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
386
408
|
id: "product-hw-ferrari-488-gt3-basic-sk-11",
|
|
387
409
|
title: "Hot Wheels Ferrari 488 GT3 — Race Edition",
|
|
388
410
|
description: "<p>Ferrari 488 GT3 in full race livery. Official Ferrari licensed casting in 1:64 with race number tampo and GT3 body kit details.</p>",
|
|
389
|
-
slug: "hw-ferrari-488-gt3-race",
|
|
411
|
+
slug: "product-hw-ferrari-488-gt3-race",
|
|
390
412
|
category: "category-hw-basic-cars",
|
|
391
413
|
subcategory: "Supercars",
|
|
392
414
|
brand: "Hot Wheels",
|
|
@@ -422,7 +444,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
422
444
|
id: "product-hw-porsche-911-gt3-basic-sk-12",
|
|
423
445
|
title: "Hot Wheels Porsche 911 GT3 RS — White",
|
|
424
446
|
description: "<p>Porsche 911 GT3 RS in white with distinctive GT3 RS wing. Official Porsche licensed. One of the cleanest castings in the current lineup.</p>",
|
|
425
|
-
slug: "hw-porsche-911-gt3-rs-white",
|
|
447
|
+
slug: "product-hw-porsche-911-gt3-rs-white",
|
|
426
448
|
category: "category-hw-basic-cars",
|
|
427
449
|
subcategory: "Supercars",
|
|
428
450
|
brand: "Hot Wheels",
|
|
@@ -457,7 +479,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
457
479
|
id: "product-hw-bmw-m3-e30-basic-sk-13",
|
|
458
480
|
title: "Hot Wheels BMW M3 E30 — Touring Car (Red)",
|
|
459
481
|
description: "<p>The iconic BMW E30 M3 in touring car spec — red with white BBS-style wheels. One of the most wanted JDM/Euro castings from Hot Wheels.</p>",
|
|
460
|
-
slug: "hw-bmw-m3-e30-touring-red",
|
|
482
|
+
slug: "product-hw-bmw-m3-e30-touring-red",
|
|
461
483
|
category: "category-hw-basic-cars",
|
|
462
484
|
subcategory: "Euro",
|
|
463
485
|
brand: "Hot Wheels",
|
|
@@ -495,7 +517,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
495
517
|
id: "product-hw-subaru-wrx-sti-basic-sk-14",
|
|
496
518
|
title: "Hot Wheels Subaru WRX STI — Rally Edition (Blue)",
|
|
497
519
|
description: "<p>Subaru WRX STI in iconic blue with rally decals. Full rally livery tampo with WRC mudflaps. Real Riders rubber tyres included.</p>",
|
|
498
|
-
slug: "hw-subaru-wrx-sti-rally-blue",
|
|
520
|
+
slug: "product-hw-subaru-wrx-sti-rally-blue",
|
|
499
521
|
category: "category-hw-basic-cars",
|
|
500
522
|
subcategory: "JDM",
|
|
501
523
|
brand: "Hot Wheels",
|
|
@@ -531,7 +553,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
531
553
|
id: "product-hw-datsun-240z-classic-basic-sk-15",
|
|
532
554
|
title: "Hot Wheels Datsun 240Z — JDM Classic (Orange)",
|
|
533
555
|
description: "<p>The timeless Datsun 240Z in classic orange. A beloved JDM grand tourer that defined a generation. This casting is one of Hot Wheels' most lauded.</p>",
|
|
534
|
-
slug: "hw-datsun-240z-jdm-orange",
|
|
556
|
+
slug: "product-hw-datsun-240z-jdm-orange",
|
|
535
557
|
category: "category-hw-basic-cars",
|
|
536
558
|
subcategory: "JDM",
|
|
537
559
|
brand: "Hot Wheels",
|
|
@@ -568,7 +590,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
568
590
|
id: "product-hw-car-culture-boulevard-pack-premium-sk-16",
|
|
569
591
|
title: "Hot Wheels Car Culture Boulevard — Wave 5 (5-pack)",
|
|
570
592
|
description: "<p>Hot Wheels Car Culture Boulevard Wave 5 — premium 5-car assortment featuring Real Riders rubber tyres and premium packaging. Includes BMW 2002, Honda S2000, Mini Cooper, Mazda MX-5, and Alfa Romeo Spider.</p>",
|
|
571
|
-
slug: "hw-car-culture-boulevard-wave5-5pack",
|
|
593
|
+
slug: "product-hw-car-culture-boulevard-wave5-5pack",
|
|
572
594
|
category: "category-hw-premium",
|
|
573
595
|
subcategory: "Car Culture",
|
|
574
596
|
brand: "Hot Wheels",
|
|
@@ -608,7 +630,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
608
630
|
id: "product-hw-japan-historics-3-premium-sk-17",
|
|
609
631
|
title: "Hot Wheels Car Culture Japan Historics 3 (5-pack)",
|
|
610
632
|
description: "<p>Car Culture Japan Historics 3 — 5 iconic Japanese cars from the 70s and 80s. Features Mazda Cosmo, Honda N600, Toyota Celica, Datsun 510, and Nissan Skyline C210. All with Real Riders rubber tyres.</p>",
|
|
611
|
-
slug: "hw-car-culture-japan-historics-3-5pack",
|
|
633
|
+
slug: "product-hw-car-culture-japan-historics-3-5pack",
|
|
612
634
|
category: "category-hw-premium",
|
|
613
635
|
subcategory: "Car Culture",
|
|
614
636
|
brand: "Hot Wheels",
|
|
@@ -646,7 +668,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
646
668
|
id: "product-hw-pop-culture-tmnt-5pack-premium-sk-18",
|
|
647
669
|
title: "Hot Wheels Pop Culture TMNT Ninja Turtles 5-pack",
|
|
648
670
|
description: "<p>Hot Wheels meets the Teenage Mutant Ninja Turtles! 5 unique cars themed after Leonardo, Donatello, Raphael, Michelangelo, and Master Splinter. A perfect collector crossover.</p>",
|
|
649
|
-
slug: "hw-pop-culture-tmnt-5pack",
|
|
671
|
+
slug: "product-hw-pop-culture-tmnt-5pack",
|
|
650
672
|
category: "category-hw-premium",
|
|
651
673
|
subcategory: "Pop Culture",
|
|
652
674
|
brand: "Hot Wheels",
|
|
@@ -681,8 +703,8 @@ export const hotWheelsProductsSeedData = [
|
|
|
681
703
|
{
|
|
682
704
|
id: "product-hw-nostalgia-mcdonalds-5pack-premium-sk-19",
|
|
683
705
|
title: "Hot Wheels Pop Culture McDonald's 5-pack",
|
|
684
|
-
description: "<p>Hot Wheels
|
|
685
|
-
slug: "hw-pop-culture-mcdonalds-5pack",
|
|
706
|
+
description: "<p>Hot Wheels × McDonald's crossover pack. 5 cars dressed in iconic McDonald's livery including the Arches Hauler, Happy Meal Bus, and more. A nostalgia bomb for collectors.</p>",
|
|
707
|
+
slug: "product-hw-pop-culture-mcdonalds-5pack",
|
|
686
708
|
category: "category-hw-premium",
|
|
687
709
|
subcategory: "Pop Culture",
|
|
688
710
|
brand: "Hot Wheels",
|
|
@@ -718,7 +740,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
718
740
|
id: "product-hw-real-riders-trucks-pack-premium-sk-20",
|
|
719
741
|
title: "Hot Wheels Real Riders Trucks Series — Wave 1 (5-pack)",
|
|
720
742
|
description: "<p>5 premium 1:64 scale trucks with Real Riders rubber tyres. Includes Chevy Silverado, Ford F-150 Raptor, Ram 1500 TRX, Toyota Tundra, and GMC Sierra. Off-road details throughout.</p>",
|
|
721
|
-
slug: "hw-real-riders-trucks-series-wave1",
|
|
743
|
+
slug: "product-hw-real-riders-trucks-series-wave1",
|
|
722
744
|
category: "category-hw-premium",
|
|
723
745
|
subcategory: "Real Riders",
|
|
724
746
|
brand: "Hot Wheels",
|
|
@@ -755,7 +777,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
755
777
|
id: "product-hw-loop-launch-track-set-sk-21",
|
|
756
778
|
title: "Hot Wheels Loop & Launch Track Set — Triple Loop",
|
|
757
779
|
description: "<p>Three vertigo-inducing loops in one set! Launcher-powered track with triple loop, crash zone, and finish line. Works with all standard Hot Wheels mainline cars. Recommended age 5+.</p>",
|
|
758
|
-
slug: "hw-loop-launch-triple-loop-track-set",
|
|
780
|
+
slug: "product-hw-loop-launch-triple-loop-track-set",
|
|
759
781
|
category: "category-hw-track-sets",
|
|
760
782
|
subcategory: "Track Sets",
|
|
761
783
|
brand: "Hot Wheels",
|
|
@@ -793,7 +815,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
793
815
|
id: "product-hw-city-ultimate-garage-track-sk-22",
|
|
794
816
|
title: "Hot Wheels City Ultimate Garage — 5-Level Playset",
|
|
795
817
|
description: "<p>The ultimate Hot Wheels garage! 5-level parking structure with loop, elevator, car wash, and service station. Stores over 90 cars. A centrepiece for any collection or playroom.</p>",
|
|
796
|
-
slug: "hw-city-ultimate-garage-5-level",
|
|
818
|
+
slug: "product-hw-city-ultimate-garage-5-level",
|
|
797
819
|
category: "category-hw-track-sets",
|
|
798
820
|
subcategory: "Playsets",
|
|
799
821
|
brand: "Hot Wheels",
|
|
@@ -833,7 +855,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
833
855
|
id: "product-hw-monster-trucks-jump-track-sk-23",
|
|
834
856
|
title: "Hot Wheels Monster Trucks Jump Track — Epic Crash",
|
|
835
857
|
description: "<p>Monster Trucks themed jump and crash track. Launch your 1:64 monster truck over cars and obstacles, smash the crash zone, then do it all again. Includes 1 Monster Truck and 2 crash cars.</p>",
|
|
836
|
-
slug: "hw-monster-trucks-jump-crash-track",
|
|
858
|
+
slug: "product-hw-monster-trucks-jump-crash-track",
|
|
837
859
|
category: "category-hw-track-sets",
|
|
838
860
|
subcategory: "Monster Trucks",
|
|
839
861
|
brand: "Hot Wheels",
|
|
@@ -868,7 +890,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
868
890
|
id: "product-hw-mega-hauler-truck-track-sk-24",
|
|
869
891
|
title: "Hot Wheels Mega Hauler Transport Truck",
|
|
870
892
|
description: "<p>Massive die-cast and plastic semi-truck that carries 25 Hot Wheels cars. Includes ramp for easy loading and unloading. Perfect for collectors who need mobile storage.</p>",
|
|
871
|
-
slug: "hw-mega-hauler-transport-truck",
|
|
893
|
+
slug: "product-hw-mega-hauler-transport-truck",
|
|
872
894
|
category: "category-hw-track-sets",
|
|
873
895
|
subcategory: "Playsets",
|
|
874
896
|
brand: "Hot Wheels",
|
|
@@ -903,7 +925,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
903
925
|
id: "product-hw-racing-circuit-10pack-sk-25",
|
|
904
926
|
title: "Hot Wheels Racing Circuit — 10-car Collector Pack",
|
|
905
927
|
description: "<p>10 racing-themed Hot Wheels cars in collector blister packaging. Mix of Formula-style, GT racers, and touring cars — all with racing liveries. Great value collector set.</p>",
|
|
906
|
-
slug: "hw-racing-circuit-10car-pack",
|
|
928
|
+
slug: "product-hw-racing-circuit-10car-pack",
|
|
907
929
|
category: "category-hw-track-sets",
|
|
908
930
|
subcategory: "Collector Sets",
|
|
909
931
|
brand: "Hot Wheels",
|
|
@@ -940,7 +962,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
940
962
|
id: "product-hw-th-charger-orange-th-sk-26",
|
|
941
963
|
title: "Hot Wheels Treasure Hunt Dodge Charger R/T (2024 #TH1)",
|
|
942
964
|
description: "<p>Official 2024 Treasure Hunt — Dodge Charger R/T with the distinctive TH logo, green flame tampo, and specialised Real Riders tyres. Much harder to find than mainline. Original blister card, unopened.</p>",
|
|
943
|
-
slug: "hw-treasure-hunt-dodge-charger-rt-2024",
|
|
965
|
+
slug: "product-hw-treasure-hunt-dodge-charger-rt-2024",
|
|
944
966
|
category: "category-hw-treasure-hunt",
|
|
945
967
|
subcategory: "Treasure Hunt",
|
|
946
968
|
brand: "Hot Wheels",
|
|
@@ -980,7 +1002,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
980
1002
|
id: "product-hw-th-shelby-gt500-th-sk-27",
|
|
981
1003
|
title: "Hot Wheels Treasure Hunt Ford Shelby GT500 (2024 #TH7)",
|
|
982
1004
|
description: "<p>2024 Treasure Hunt Ford Shelby GT500 with TH script, specialised wheels, and Shelby GT500 livery tampo. Hunted in stores worldwide — authentic card, acquired directly from Case C assortment.</p>",
|
|
983
|
-
slug: "hw-treasure-hunt-shelby-gt500-2024",
|
|
1005
|
+
slug: "product-hw-treasure-hunt-shelby-gt500-2024",
|
|
984
1006
|
category: "category-hw-treasure-hunt",
|
|
985
1007
|
subcategory: "Treasure Hunt",
|
|
986
1008
|
brand: "Hot Wheels",
|
|
@@ -1016,7 +1038,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
1016
1038
|
id: "product-hw-th-bmw-m5-th-sk-28",
|
|
1017
1039
|
title: "Hot Wheels Treasure Hunt BMW M5 E60 (2024 #TH12)",
|
|
1018
1040
|
description: "<p>2024 Treasure Hunt BMW M5 E60 — a collector holy grail for BMW fans. TH logo, Real Riders, and authentic M-stripe tampo. Stored sealed since case opening.</p>",
|
|
1019
|
-
slug: "hw-treasure-hunt-bmw-m5-e60-2024",
|
|
1041
|
+
slug: "product-hw-treasure-hunt-bmw-m5-e60-2024",
|
|
1020
1042
|
category: "category-hw-treasure-hunt",
|
|
1021
1043
|
subcategory: "Treasure Hunt",
|
|
1022
1044
|
brand: "Hot Wheels",
|
|
@@ -1053,7 +1075,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
1053
1075
|
id: "product-hw-th-acura-nsx-th-sk-29",
|
|
1054
1076
|
title: "Hot Wheels Treasure Hunt Acura NSX GT3 (2024 #TH15)",
|
|
1055
1077
|
description: "<p>Acura NSX GT3 as a 2024 Treasure Hunt. Special blue and yellow livery with TH designation and Real Riders wheels. A much-sought JDM TH.</p>",
|
|
1056
|
-
slug: "hw-treasure-hunt-acura-nsx-gt3-2024",
|
|
1078
|
+
slug: "product-hw-treasure-hunt-acura-nsx-gt3-2024",
|
|
1057
1079
|
category: "category-hw-treasure-hunt",
|
|
1058
1080
|
subcategory: "Treasure Hunt",
|
|
1059
1081
|
brand: "Hot Wheels",
|
|
@@ -1089,7 +1111,7 @@ export const hotWheelsProductsSeedData = [
|
|
|
1089
1111
|
id: "product-hw-th-porsche-914-th-sk-30",
|
|
1090
1112
|
title: "Hot Wheels Treasure Hunt Porsche 914 (2024 #TH18)",
|
|
1091
1113
|
description: "<p>Rare 2024 TH Porsche 914 — a vintage mid-engine Porsche in treasure hunt spec. Includes TH flame graphics and Real Riders. Perfect for Euro-car collectors.</p>",
|
|
1092
|
-
slug: "hw-treasure-hunt-porsche-914-2024",
|
|
1114
|
+
slug: "product-hw-treasure-hunt-porsche-914-2024",
|
|
1093
1115
|
category: "category-hw-treasure-hunt",
|
|
1094
1116
|
subcategory: "Treasure Hunt",
|
|
1095
1117
|
brand: "Hot Wheels",
|
|
@@ -1362,4 +1384,229 @@ export const hotWheelsProductsSeedData = [
|
|
|
1362
1384
|
createdAt: daysAgo(5),
|
|
1363
1385
|
updatedAt: daysAgo(1),
|
|
1364
1386
|
},
|
|
1387
|
+
// ── ADDITIONAL MAINLINE (16 more) ─────────────────────────────────────────
|
|
1388
|
+
{
|
|
1389
|
+
id: "product-hw-dodge-challenger-hellcat-sk-36",
|
|
1390
|
+
title: "Hot Wheels Dodge Challenger SRT Hellcat — Mainline (Purple)",
|
|
1391
|
+
slug: "product-hw-dodge-challenger-srt-hellcat-purple",
|
|
1392
|
+
description: "<p>Dodge Challenger SRT Hellcat in Hot Wheels Mainline — 707HP muscle car in deep purple with aggressive tampo. A crowd favourite for American muscle collectors.</p>",
|
|
1393
|
+
category: "category-hw-basic-cars", subcategory: "American Muscle", brand: "Hot Wheels",
|
|
1394
|
+
price: 199, currency: _CURRENCY, stockQuantity: 28, availableQuantity: 22,
|
|
1395
|
+
mainImage: img("hw-challenger-hellcat-purple"), images: [img("hw-challenger-hellcat-purple")],
|
|
1396
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "dodge challenger", "hellcat", "purple", "mainline"],
|
|
1397
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Mainline" }],
|
|
1398
|
+
features: ["707HP Hellcat tampo", "Purple metallic finish", "Real Riders compatible"], shippingInfo: "Bubble wrapped.", returnPolicy: "10-day returns.",
|
|
1399
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1400
|
+
avgRating: 4.5, reviewCount: 19, createdAt: daysAgo(20), updatedAt: daysAgo(2),
|
|
1401
|
+
},
|
|
1402
|
+
{
|
|
1403
|
+
id: "product-hw-ford-gt40-le-mans-sk-37",
|
|
1404
|
+
title: "Hot Wheels Ford GT40 Le Mans 1966 — Car Culture",
|
|
1405
|
+
slug: "product-hw-ford-gt40-lemans-1966-car-culture",
|
|
1406
|
+
description: "<p>Ford GT40 from the 1966 Le Mans — the car that beat Ferrari. Car Culture premium series with Real Riders tyres and detailed livery. Gulf Oil racing colours.</p>",
|
|
1407
|
+
category: "category-hw-premium", subcategory: "Car Culture", brand: "Hot Wheels",
|
|
1408
|
+
price: 699, currency: _CURRENCY, stockQuantity: 18, availableQuantity: 14,
|
|
1409
|
+
mainImage: img("hw-gt40-lemans"), images: [img("hw-gt40-lemans")],
|
|
1410
|
+
status: "published", ...SK, featured: true, tags: ["hot wheels", "ford gt40", "le mans", "1966", "car culture", "gulf oil"],
|
|
1411
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Car Culture" }, { name: "Tyres", value: "Real Riders" }],
|
|
1412
|
+
features: ["Real Riders tyres", "Gulf Oil livery", "Detailed engine bay"], shippingInfo: "Blister pack protection.", returnPolicy: "10-day returns.",
|
|
1413
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1414
|
+
avgRating: 4.8, reviewCount: 31, createdAt: daysAgo(25), updatedAt: daysAgo(3),
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
id: "product-hw-lamborghini-countach-white-sk-38",
|
|
1418
|
+
title: "Hot Wheels Lamborghini Countach LP400S — Mainline (White)",
|
|
1419
|
+
slug: "product-hw-lamborghini-countach-lp400s-white",
|
|
1420
|
+
description: "<p>Lamborghini Countach LP400S in pearl white — the poster car of the 80s in Hot Wheels scale. Mainline series. Opening scissor doors modelled in the tampo art.</p>",
|
|
1421
|
+
category: "category-hw-basic-cars", subcategory: "Supercars", brand: "Hot Wheels",
|
|
1422
|
+
price: 199, currency: _CURRENCY, stockQuantity: 25, availableQuantity: 21,
|
|
1423
|
+
mainImage: img("hw-countach-white"), images: [img("hw-countach-white")],
|
|
1424
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "lamborghini", "countach", "lp400s", "white", "mainline"],
|
|
1425
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Mainline" }],
|
|
1426
|
+
features: ["Pearl white Countach", "LP400S livery", "Iconic 80s supercar"], shippingInfo: "Bubble wrapped.", returnPolicy: "10-day returns.",
|
|
1427
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1428
|
+
avgRating: 4.7, reviewCount: 23, createdAt: daysAgo(18), updatedAt: daysAgo(3),
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
id: "product-hw-porsche-911-gt3-rs-sk-39",
|
|
1432
|
+
title: "Hot Wheels Porsche 911 GT3 RS — Car Culture (Orange)",
|
|
1433
|
+
slug: "product-hw-porsche-911-gt3-rs-orange-car-culture",
|
|
1434
|
+
description: "<p>Porsche 911 GT3 RS in hot orange — Car Culture premium with Real Riders and detailed GT3 RS aero. Black cage interior detail. The benchmark track Porsche in 1:64 scale.</p>",
|
|
1435
|
+
category: "category-hw-premium", subcategory: "Car Culture", brand: "Hot Wheels",
|
|
1436
|
+
price: 699, currency: _CURRENCY, stockQuantity: 20, availableQuantity: 16,
|
|
1437
|
+
mainImage: img("hw-porsche-911-gt3-rs"), images: [img("hw-porsche-911-gt3-rs")],
|
|
1438
|
+
status: "published", ...SK, featured: true, tags: ["hot wheels", "porsche", "911 gt3 rs", "orange", "car culture", "real riders"],
|
|
1439
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Car Culture" }, { name: "Tyres", value: "Real Riders" }],
|
|
1440
|
+
features: ["Real Riders tyres", "GT3 RS orange livery", "Cage interior detail"], shippingInfo: "Blister pack.", returnPolicy: "10-day returns.",
|
|
1441
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1442
|
+
avgRating: 4.8, reviewCount: 28, createdAt: daysAgo(22), updatedAt: daysAgo(2),
|
|
1443
|
+
},
|
|
1444
|
+
{
|
|
1445
|
+
id: "product-hw-nissan-gtr-r35-blue-sk-40",
|
|
1446
|
+
title: "Hot Wheels Nissan GT-R R35 — Premium (Pearl Blue)",
|
|
1447
|
+
slug: "product-hw-nissan-gtr-r35-pearl-blue-premium",
|
|
1448
|
+
description: "<p>Nissan GT-R R35 in pearl blue — premium Hot Wheels with die-cast body and Real Riders. Godzilla in miniature. Detailed front bumper and rear diffuser aero kit.</p>",
|
|
1449
|
+
category: "category-hw-premium", subcategory: "JDM", brand: "Hot Wheels",
|
|
1450
|
+
price: 499, currency: _CURRENCY, stockQuantity: 22, availableQuantity: 18,
|
|
1451
|
+
mainImage: img("hw-nissan-gtr-r35"), images: [img("hw-nissan-gtr-r35")],
|
|
1452
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "nissan gt-r", "r35", "pearl blue", "jdm", "premium"],
|
|
1453
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Premium" }],
|
|
1454
|
+
features: ["Pearl blue GT-R", "Real Riders tyres", "Aero kit detail"], shippingInfo: "Bubble wrapped.", returnPolicy: "10-day returns.",
|
|
1455
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1456
|
+
avgRating: 4.6, reviewCount: 17, createdAt: daysAgo(28), updatedAt: daysAgo(4),
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
id: "product-hw-bmw-m3-e30-white-sk-41",
|
|
1460
|
+
title: "Hot Wheels BMW M3 E30 — Car Culture (White DTM)",
|
|
1461
|
+
slug: "product-hw-bmw-m3-e30-white-dtm-car-culture",
|
|
1462
|
+
description: "<p>BMW M3 E30 in white DTM racing livery — Car Culture Touring Cars series. Real Riders, accurate DTM wing, and sponsor tampo. The original touring car legend.</p>",
|
|
1463
|
+
category: "category-hw-premium", subcategory: "Car Culture", brand: "Hot Wheels",
|
|
1464
|
+
price: 699, currency: _CURRENCY, stockQuantity: 15, availableQuantity: 12,
|
|
1465
|
+
mainImage: img("hw-bmw-m3-e30-white"), images: [img("hw-bmw-m3-e30-white")],
|
|
1466
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "bmw m3", "e30", "dtm", "white", "car culture", "touring"],
|
|
1467
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Car Culture Touring" }, { name: "Tyres", value: "Real Riders" }],
|
|
1468
|
+
features: ["DTM livery", "E30 wing detail", "Real Riders"], shippingInfo: "Blister pack.", returnPolicy: "10-day returns.",
|
|
1469
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1470
|
+
avgRating: 4.7, reviewCount: 21, createdAt: daysAgo(30), updatedAt: daysAgo(5),
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
id: "product-hw-mazda-rx7-fd-red-sk-42",
|
|
1474
|
+
title: "Hot Wheels Mazda RX-7 FD — Mainline (Red)",
|
|
1475
|
+
slug: "product-hw-mazda-rx7-fd-red-mainline",
|
|
1476
|
+
description: "<p>Mazda RX-7 FD in vivid red — the rotary icon in Hot Wheels scale. One of the most beloved JDM cars in the Hot Wheels lineup. Great for JDM collections and track play.</p>",
|
|
1477
|
+
category: "category-hw-basic-cars", subcategory: "JDM", brand: "Hot Wheels",
|
|
1478
|
+
price: 199, currency: _CURRENCY, stockQuantity: 30, availableQuantity: 26,
|
|
1479
|
+
mainImage: img("hw-rx7-fd-red"), images: [img("hw-rx7-fd-red")],
|
|
1480
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "mazda", "rx7", "fd", "red", "jdm", "mainline"],
|
|
1481
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Mainline" }],
|
|
1482
|
+
features: ["RX-7 FD body", "Red finish", "JDM classic"], shippingInfo: "Bubble wrapped.", returnPolicy: "10-day returns.",
|
|
1483
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1484
|
+
avgRating: 4.7, reviewCount: 34, createdAt: daysAgo(15), updatedAt: daysAgo(2),
|
|
1485
|
+
},
|
|
1486
|
+
{
|
|
1487
|
+
id: "product-hw-toyota-supra-a90-orange-sk-43",
|
|
1488
|
+
title: "Hot Wheels Toyota GR Supra A90 — Mainline (Orange)",
|
|
1489
|
+
slug: "product-hw-toyota-gr-supra-a90-orange-mainline",
|
|
1490
|
+
description: "<p>Toyota GR Supra A90 in vivid orange — the new-generation Supra in Hot Wheels. Mainline series with accurate body kit and twin exhaust detail. Perfect for modern JDM shelf.</p>",
|
|
1491
|
+
category: "category-hw-basic-cars", subcategory: "JDM", brand: "Hot Wheels",
|
|
1492
|
+
price: 199, currency: _CURRENCY, stockQuantity: 28, availableQuantity: 25,
|
|
1493
|
+
mainImage: img("hw-supra-a90-orange"), images: [img("hw-supra-a90-orange")],
|
|
1494
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "toyota", "supra", "a90", "gr supra", "orange", "jdm"],
|
|
1495
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Mainline" }],
|
|
1496
|
+
features: ["GR Supra A90 body", "Orange finish", "Twin exhaust detail"], shippingInfo: "Bubble wrapped.", returnPolicy: "10-day returns.",
|
|
1497
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1498
|
+
avgRating: 4.6, reviewCount: 26, createdAt: daysAgo(12), updatedAt: daysAgo(3),
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
id: "product-hw-f1-mercedes-w11-sk-44",
|
|
1502
|
+
title: "Hot Wheels Mercedes F1 W11 — Collector (2020 Lewis Hamilton Championship)",
|
|
1503
|
+
slug: "product-hw-f1-mercedes-w11-2020-hamilton",
|
|
1504
|
+
description: "<p>Mercedes F1 W11 from Lewis Hamilton's 2020 World Championship — 7-time champion's car in 1:64 premium. Silver arrows livery with BLM livery version. Detailed front wing and Halo. Limited collector edition.</p>",
|
|
1505
|
+
category: "category-hw-premium", subcategory: "F1", brand: "Hot Wheels",
|
|
1506
|
+
price: 899, currency: _CURRENCY, stockQuantity: 12, availableQuantity: 9,
|
|
1507
|
+
mainImage: img("hw-f1-mercedes-w11"), images: [img("hw-f1-mercedes-w11")],
|
|
1508
|
+
status: "published", ...SK, featured: true, tags: ["hot wheels", "f1", "mercedes", "w11", "lewis hamilton", "2020", "premium"],
|
|
1509
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Collector" }, { name: "Year", value: "2020" }],
|
|
1510
|
+
features: ["2020 Championship livery", "BLM black livery", "Halo detail", "Real Riders"], shippingInfo: "Blister pack protection.", returnPolicy: "10-day returns.",
|
|
1511
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1512
|
+
avgRating: 4.9, reviewCount: 45, createdAt: daysAgo(40), updatedAt: daysAgo(4),
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
id: "product-hw-batmobile-89-tim-burton-sk-45",
|
|
1516
|
+
title: "Hot Wheels Batman Batmobile 1989 — Tim Burton Film Car",
|
|
1517
|
+
slug: "product-hw-batmobile-1989-tim-burton-batman",
|
|
1518
|
+
description: "<p>Tim Burton's 1989 Batman Batmobile in Hot Wheels — the most iconic movie car ever. Die-cast body with jet afterburner and bat fin detail. Entertainment series. Black matte finish with chrome trim.</p>",
|
|
1519
|
+
category: "category-hw-entertainment", subcategory: "Movie Cars", brand: "Hot Wheels",
|
|
1520
|
+
price: 499, currency: _CURRENCY, stockQuantity: 20, availableQuantity: 16,
|
|
1521
|
+
mainImage: img("hw-batmobile-89"), images: [img("hw-batmobile-89")],
|
|
1522
|
+
status: "published", ...SK, featured: true, tags: ["hot wheels", "batman", "batmobile", "1989", "tim burton", "entertainment"],
|
|
1523
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Entertainment" }],
|
|
1524
|
+
features: ["1989 Burton Batmobile", "Black matte finish", "Bat fin detail", "Afterburner sculpt"], shippingInfo: "Bubble wrapped.", returnPolicy: "10-day returns.",
|
|
1525
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1526
|
+
avgRating: 4.8, reviewCount: 39, createdAt: daysAgo(35), updatedAt: daysAgo(3),
|
|
1527
|
+
},
|
|
1528
|
+
{
|
|
1529
|
+
id: "product-hw-dodge-viper-gts-r-sk-46",
|
|
1530
|
+
title: "Hot Wheels Dodge Viper GTS-R — Racing (Blue/White Stripe)",
|
|
1531
|
+
slug: "product-hw-dodge-viper-gts-r-racing-blue-white",
|
|
1532
|
+
description: "<p>Dodge Viper GTS-R in classic blue with white racing stripe — Car Culture track version. Real Riders with racing slick profile. GTS-R aero bodykit. The racing icon that conquered Le Mans GT class.</p>",
|
|
1533
|
+
category: "category-hw-premium", subcategory: "Car Culture", brand: "Hot Wheels",
|
|
1534
|
+
price: 699, currency: _CURRENCY, stockQuantity: 18, availableQuantity: 14,
|
|
1535
|
+
mainImage: img("hw-viper-gts-r"), images: [img("hw-viper-gts-r")],
|
|
1536
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "dodge viper", "gts-r", "racing", "blue white", "le mans"],
|
|
1537
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Car Culture" }, { name: "Tyres", value: "Real Riders" }],
|
|
1538
|
+
features: ["GTS-R blue/white livery", "Real Riders slicks", "GT racing aero"], shippingInfo: "Blister pack.", returnPolicy: "10-day returns.",
|
|
1539
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1540
|
+
avgRating: 4.6, reviewCount: 14, createdAt: daysAgo(28), updatedAt: daysAgo(5),
|
|
1541
|
+
},
|
|
1542
|
+
{
|
|
1543
|
+
id: "product-hw-mclaren-p1-yellow-sk-47",
|
|
1544
|
+
title: "Hot Wheels McLaren P1 — Mainline (Volcano Yellow)",
|
|
1545
|
+
slug: "product-hw-mclaren-p1-volcano-yellow-mainline",
|
|
1546
|
+
description: "<p>McLaren P1 in Volcano Yellow — the British hybrid hypercar in Hot Wheels. Mainline series with detailed front splitter and rear diffuser. One of the fastest-selling Hot Wheels in the supercar category.</p>",
|
|
1547
|
+
category: "category-hw-basic-cars", subcategory: "Supercars", brand: "Hot Wheels",
|
|
1548
|
+
price: 199, currency: _CURRENCY, stockQuantity: 25, availableQuantity: 20,
|
|
1549
|
+
mainImage: img("hw-mclaren-p1-yellow"), images: [img("hw-mclaren-p1-yellow")],
|
|
1550
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "mclaren p1", "yellow", "hypercar", "mainline"],
|
|
1551
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Mainline" }],
|
|
1552
|
+
features: ["P1 body", "Volcano Yellow", "Detailed diffuser"], shippingInfo: "Bubble wrapped.", returnPolicy: "10-day returns.",
|
|
1553
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1554
|
+
avgRating: 4.6, reviewCount: 22, createdAt: daysAgo(16), updatedAt: daysAgo(2),
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
id: "product-hw-subaru-impreza-wrc-sk-48",
|
|
1558
|
+
title: "Hot Wheels Subaru Impreza WRC — Rally (McRae 1997 Livery)",
|
|
1559
|
+
slug: "product-hw-subaru-impreza-wrc-mcrae-1997",
|
|
1560
|
+
description: "<p>Subaru Impreza WRC in Colin McRae's iconic 1997 livery — blue/gold Subaru rally legend. Car Culture Rally series with Real Riders. One of the most popular rally liveries of all time.</p>",
|
|
1561
|
+
category: "category-hw-premium", subcategory: "Rally", brand: "Hot Wheels",
|
|
1562
|
+
price: 699, currency: _CURRENCY, stockQuantity: 15, availableQuantity: 11,
|
|
1563
|
+
mainImage: img("hw-subaru-impreza-wrc"), images: [img("hw-subaru-impreza-wrc")],
|
|
1564
|
+
status: "published", ...SK, featured: true, tags: ["hot wheels", "subaru impreza", "wrc", "rally", "mcrae", "1997", "blue gold"],
|
|
1565
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Car Culture Rally" }, { name: "Tyres", value: "Real Riders" }],
|
|
1566
|
+
features: ["McRae 1997 livery", "Real Riders", "WRC bodykit detail"], shippingInfo: "Blister pack.", returnPolicy: "10-day returns.",
|
|
1567
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1568
|
+
avgRating: 4.8, reviewCount: 29, createdAt: daysAgo(32), updatedAt: daysAgo(4),
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
id: "product-hw-honda-nsx-type-r-sk-49",
|
|
1572
|
+
title: "Hot Wheels Honda NSX Type R — Premium (Championship White)",
|
|
1573
|
+
slug: "product-hw-honda-nsx-type-r-championship-white",
|
|
1574
|
+
description: "<p>Honda NSX Type R in Championship White — the lightweight Japanese sports car legend. Premium Hot Wheels with Real Riders and detailed Type R wing. Red tow hook and red badge detail.</p>",
|
|
1575
|
+
category: "category-hw-premium", subcategory: "JDM", brand: "Hot Wheels",
|
|
1576
|
+
price: 499, currency: _CURRENCY, stockQuantity: 18, availableQuantity: 14,
|
|
1577
|
+
mainImage: img("hw-honda-nsx-type-r"), images: [img("hw-honda-nsx-type-r")],
|
|
1578
|
+
status: "published", ...SK, featured: false, tags: ["hot wheels", "honda nsx", "type r", "championship white", "jdm", "premium"],
|
|
1579
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Premium" }],
|
|
1580
|
+
features: ["Type R white", "Real Riders", "Red tow hook detail"], shippingInfo: "Bubble wrapped.", returnPolicy: "10-day returns.",
|
|
1581
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1582
|
+
avgRating: 4.7, reviewCount: 19, createdAt: daysAgo(24), updatedAt: daysAgo(3),
|
|
1583
|
+
},
|
|
1584
|
+
{
|
|
1585
|
+
id: "product-hw-delorean-back-future-sk-50",
|
|
1586
|
+
title: "Hot Wheels DeLorean Time Machine — Back to the Future (2015 Hover Mode)",
|
|
1587
|
+
slug: "product-hw-delorean-back-to-future-2015-hover",
|
|
1588
|
+
description: "<p>DeLorean Time Machine in 2015 hover mode from Back to the Future Part II — Entertainment series. Deployed hover wheels, Mr Fusion, and flux capacitor detail. One of the most sought-after entertainment Hot Wheels. Includes display stand for hover effect.</p>",
|
|
1589
|
+
category: "category-hw-entertainment", subcategory: "Movie Cars", brand: "Hot Wheels",
|
|
1590
|
+
price: 599, currency: _CURRENCY, stockQuantity: 14, availableQuantity: 10,
|
|
1591
|
+
mainImage: img("hw-delorean-hover"), images: [img("hw-delorean-hover")],
|
|
1592
|
+
status: "published", ...SK, featured: true, tags: ["hot wheels", "delorean", "back to the future", "2015", "hover mode", "entertainment"],
|
|
1593
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Entertainment" }, { name: "Mode", value: "2015 Hover" }],
|
|
1594
|
+
features: ["2015 hover wheels deployed", "Mr Fusion detail", "Flux capacitor tampo", "Hover display stand"], shippingInfo: "Blister pack.", returnPolicy: "10-day returns.",
|
|
1595
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1596
|
+
avgRating: 4.9, reviewCount: 53, createdAt: daysAgo(45), updatedAt: daysAgo(3),
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
id: "product-hw-ferrari-sf90-spider-sk-51",
|
|
1600
|
+
title: "Hot Wheels Ferrari SF90 Spider — Premium Collector",
|
|
1601
|
+
slug: "product-hw-ferrari-sf90-spider-premium",
|
|
1602
|
+
description: "<p>Ferrari SF90 Spider in Ferrari rosso red — premium Hot Wheels with Real Riders and detailed PHEV hybrid components visible. One of the most powerful road Ferraris ever made in 1:64 scale.</p>",
|
|
1603
|
+
category: "category-hw-premium", subcategory: "Supercars", brand: "Hot Wheels",
|
|
1604
|
+
price: 799, currency: _CURRENCY, stockQuantity: 12, availableQuantity: 9,
|
|
1605
|
+
mainImage: img("hw-ferrari-sf90-spider"), images: [img("hw-ferrari-sf90-spider")],
|
|
1606
|
+
status: "published", ...SK, featured: true, tags: ["hot wheels", "ferrari", "sf90 spider", "premium", "rosso"],
|
|
1607
|
+
specifications: [{ name: "Scale", value: "1:64" }, { name: "Series", value: "Premium" }, { name: "Tyres", value: "Real Riders" }],
|
|
1608
|
+
features: ["SF90 hybrid detail", "Rosso Ferrari red", "Real Riders", "Spider open roof"], shippingInfo: "Blister pack.", returnPolicy: "10-day returns.",
|
|
1609
|
+
condition: "new", insurance: false, shippingPaidBy: "seller", isAuction: false, isPreOrder: false,
|
|
1610
|
+
avgRating: 4.8, reviewCount: 24, createdAt: daysAgo(20), updatedAt: daysAgo(2),
|
|
1611
|
+
},
|
|
1365
1612
|
];
|
package/dist/seed/index.d.ts
CHANGED
|
@@ -41,6 +41,7 @@ export { makePayout, makeFullPayout, PAYOUT_FIXTURES, } from "./factories/payout
|
|
|
41
41
|
export { DEFAULT_CATEGORIES } from "./defaults/categories";
|
|
42
42
|
export { DEFAULT_FAQS } from "./defaults/faqs";
|
|
43
43
|
export { DEFAULT_HOMEPAGE_SECTIONS } from "./defaults/homepage-sections";
|
|
44
|
+
export { brandsSeedData } from "./brands-seed-data";
|
|
44
45
|
export { usersSeedData } from "./users-seed-data";
|
|
45
46
|
export { sessionsSeedData, SESSION_COLLECTION } from "./sessions-seed-data";
|
|
46
47
|
export { addressesSeedData } from "./addresses-seed-data";
|
|
@@ -48,11 +49,16 @@ export { storesSeedData } from "./stores-seed-data";
|
|
|
48
49
|
export { storeAddressesSeedData } from "./store-addresses-seed-data";
|
|
49
50
|
export { categoriesSeedData } from "./categories-seed-data";
|
|
50
51
|
export { productsSeedData } from "./products-seed-data";
|
|
52
|
+
export { productsStandardSeedData } from "./products-standard-seed-data";
|
|
53
|
+
export { productsAuctionsSeedData } from "./products-auctions-seed-data";
|
|
54
|
+
export { productsPreOrdersSeedData } from "./products-preorders-seed-data";
|
|
51
55
|
export { ordersSeedData } from "./orders-seed-data";
|
|
52
56
|
export { reviewsSeedData } from "./reviews-seed-data";
|
|
53
57
|
export { cartsSeedData } from "./cart-seed-data";
|
|
54
58
|
export { bidsSeedData } from "./bids-seed-data";
|
|
55
59
|
export { couponsSeedData } from "./coupons-seed-data";
|
|
60
|
+
export type { CouponUsageSeedRecord } from "./coupon-usage-seed-data";
|
|
61
|
+
export { couponUsageSeedData } from "./coupon-usage-seed-data";
|
|
56
62
|
export { eventsSeedData, eventEntriesSeedData } from "./events-seed-data";
|
|
57
63
|
export { payoutsSeedData } from "./payouts-seed-data";
|
|
58
64
|
export { notificationsSeedData } from "./notifications-seed-data";
|
|
@@ -62,17 +68,12 @@ export { homepageSectionsSeedData } from "./homepage-sections-seed-data";
|
|
|
62
68
|
export { siteSettingsSeedData } from "./site-settings-seed-data";
|
|
63
69
|
export { carouselSlidesSeedData } from "./carousel-slides-seed-data";
|
|
64
70
|
export { wishlistsSeedData } from "./wishlists-seed-data";
|
|
65
|
-
export {
|
|
66
|
-
export {
|
|
67
|
-
export {
|
|
68
|
-
export {
|
|
69
|
-
export {
|
|
70
|
-
export {
|
|
71
|
-
export { allProductsSeedData } from "./pokemon-seed-bundle";
|
|
72
|
-
export { pokemonStoresSeedData } from "./pokemon-stores-seed-data";
|
|
73
|
-
export { pokemonCarouselSlidesSeedData } from "./pokemon-carousel-slides-seed-data";
|
|
74
|
-
export { pokemonHomepageSectionsSeedData } from "./pokemon-homepage-sections-seed-data";
|
|
75
|
-
export { pokemonCouponsSeedData } from "./pokemon-coupons-seed-data";
|
|
71
|
+
export { conversationsSeedData } from "./conversations-seed-data";
|
|
72
|
+
export { sublistingCategoriesSeedData } from "./sublisting-categories-seed-data";
|
|
73
|
+
export { groupedListingsSeedData } from "./grouped-listings-seed-data";
|
|
74
|
+
export { scammersSeedData } from "./scammers-seed-data";
|
|
75
|
+
export type { SeedManifest, SeedManifestEntry } from "./manifest";
|
|
76
|
+
export { SEED_MANIFEST } from "./manifest";
|
|
76
77
|
export type { FirestoreIndexConfig } from "./firestore-indexes";
|
|
77
78
|
export { mergeFirestoreIndices, generateMergedFirestoreIndexFile, } from "./firestore-indexes";
|
|
78
79
|
export { assertPiiRoundTrip, seedForTest } from "./test-utils";
|