@mohasinac/appkit 2.6.3 → 2.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_internal/server/features/account/data.js +2 -2
- package/dist/_internal/server/features/bundles/data.d.ts +26 -6
- package/dist/_internal/server/features/bundles/data.js +41 -6
- package/dist/_internal/server/features/bundles/index.d.ts +3 -2
- package/dist/_internal/server/features/bundles/index.js +4 -2
- package/dist/_internal/server/features/bundles/metadata.d.ts +20 -0
- package/dist/_internal/server/features/bundles/metadata.js +46 -0
- package/dist/_internal/server/features/bundles/og.d.ts +38 -0
- package/dist/_internal/server/features/bundles/og.js +122 -0
- package/dist/_internal/server/features/checkout/actions.js +192 -133
- package/dist/_internal/server/features/checkout/bundle-expansion.d.ts +57 -0
- package/dist/_internal/server/features/checkout/bundle-expansion.js +70 -0
- package/dist/_internal/server/features/checkout/prize-bundle-gates.d.ts +5 -15
- package/dist/_internal/server/features/checkout/prize-bundle-gates.js +5 -21
- package/dist/_internal/server/features/media/contextGuards.js +15 -1
- package/dist/_internal/server/features/payouts/actions.d.ts +19 -0
- package/dist/_internal/server/features/payouts/actions.js +38 -0
- package/dist/_internal/server/features/products/data.js +1 -2
- package/dist/_internal/server/features/raffle/actions.d.ts +11 -0
- package/dist/_internal/server/features/raffle/actions.js +31 -0
- package/dist/_internal/server/features/refunds/actions.d.ts +31 -0
- package/dist/_internal/server/features/refunds/actions.js +77 -0
- package/dist/_internal/server/jobs/core/adminAnalytics.d.ts +28 -0
- package/dist/_internal/server/jobs/core/adminAnalytics.js +98 -0
- package/dist/_internal/server/jobs/core/assignSpinPrize.d.ts +19 -0
- package/dist/_internal/server/jobs/core/assignSpinPrize.js +81 -0
- package/dist/_internal/server/jobs/core/auctionSettlement.d.ts +2 -0
- package/dist/_internal/server/jobs/core/auctionSettlement.js +70 -0
- package/dist/_internal/server/jobs/core/autoPayoutEligibility.d.ts +2 -0
- package/dist/_internal/server/jobs/core/autoPayoutEligibility.js +109 -0
- package/dist/_internal/server/jobs/core/bundleStockSync.d.ts +10 -0
- package/dist/_internal/server/jobs/core/bundleStockSync.js +71 -0
- package/dist/_internal/server/jobs/core/cartPrune.d.ts +2 -0
- package/dist/_internal/server/jobs/core/cartPrune.js +13 -0
- package/dist/_internal/server/jobs/core/cleanupRtdbEvents.d.ts +2 -0
- package/dist/_internal/server/jobs/core/cleanupRtdbEvents.js +45 -0
- package/dist/_internal/server/jobs/core/countersReconcile.d.ts +2 -0
- package/dist/_internal/server/jobs/core/countersReconcile.js +107 -0
- package/dist/_internal/server/jobs/core/couponExpiry.d.ts +2 -0
- package/dist/_internal/server/jobs/core/couponExpiry.js +13 -0
- package/dist/_internal/server/jobs/core/dailyDataCleanup.d.ts +2 -0
- package/dist/_internal/server/jobs/core/dailyDataCleanup.js +20 -0
- package/dist/_internal/server/jobs/core/index.d.ts +44 -0
- package/dist/_internal/server/jobs/core/index.js +47 -0
- package/dist/_internal/server/jobs/core/listingProcessor.d.ts +30 -0
- package/dist/_internal/server/jobs/core/listingProcessor.js +138 -0
- package/dist/_internal/server/jobs/core/mediaTmpCleanup.d.ts +14 -0
- package/dist/_internal/server/jobs/core/mediaTmpCleanup.js +68 -0
- package/dist/_internal/server/jobs/core/notificationPrune.d.ts +2 -0
- package/dist/_internal/server/jobs/core/notificationPrune.js +13 -0
- package/dist/_internal/server/jobs/core/offerExpiry.d.ts +2 -0
- package/dist/_internal/server/jobs/core/offerExpiry.js +50 -0
- package/dist/_internal/server/jobs/core/onBidPlaced.d.ts +15 -0
- package/dist/_internal/server/jobs/core/onBidPlaced.js +59 -0
- package/dist/_internal/server/jobs/core/onCategoryWrite.d.ts +14 -0
- package/dist/_internal/server/jobs/core/onCategoryWrite.js +134 -0
- package/dist/_internal/server/jobs/core/onOrderCreate.d.ts +18 -0
- package/dist/_internal/server/jobs/core/onOrderCreate.js +78 -0
- package/dist/_internal/server/jobs/core/onOrderStatusChange.d.ts +19 -0
- package/dist/_internal/server/jobs/core/onOrderStatusChange.js +139 -0
- package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +23 -0
- package/dist/_internal/server/jobs/core/onProductStockChange.js +130 -0
- package/dist/_internal/server/jobs/core/onProductWrite.d.ts +12 -0
- package/dist/_internal/server/jobs/core/onProductWrite.js +94 -0
- package/dist/_internal/server/jobs/core/onReviewWrite.d.ts +7 -0
- package/dist/_internal/server/jobs/core/onReviewWrite.js +49 -0
- package/dist/_internal/server/jobs/core/onStoreWrite.d.ts +12 -0
- package/dist/_internal/server/jobs/core/onStoreWrite.js +7 -0
- package/dist/_internal/server/jobs/core/payoutBatch.d.ts +8 -0
- package/dist/_internal/server/jobs/core/payoutBatch.js +102 -0
- package/dist/_internal/server/jobs/core/pendingOrderTimeout.d.ts +2 -0
- package/dist/_internal/server/jobs/core/pendingOrderTimeout.js +27 -0
- package/dist/_internal/server/jobs/core/positionsReconcile.d.ts +7 -0
- package/dist/_internal/server/jobs/core/positionsReconcile.js +87 -0
- package/dist/_internal/server/jobs/core/prizeRevealClose.d.ts +2 -0
- package/dist/_internal/server/jobs/core/prizeRevealClose.js +22 -0
- package/dist/_internal/server/jobs/core/prizeRevealExpiry.d.ts +2 -0
- package/dist/_internal/server/jobs/core/prizeRevealExpiry.js +50 -0
- package/dist/_internal/server/jobs/core/prizeRevealOpen.d.ts +2 -0
- package/dist/_internal/server/jobs/core/prizeRevealOpen.js +56 -0
- package/dist/_internal/server/jobs/core/prizeRevealReminder.d.ts +2 -0
- package/dist/_internal/server/jobs/core/prizeRevealReminder.js +38 -0
- package/dist/_internal/server/jobs/core/productStatsSync.d.ts +8 -0
- package/dist/_internal/server/jobs/core/productStatsSync.js +36 -0
- package/dist/_internal/server/jobs/core/promotions.d.ts +12 -0
- package/dist/_internal/server/jobs/core/promotions.js +43 -0
- package/dist/_internal/server/jobs/core/storeAnalytics.d.ts +30 -0
- package/dist/_internal/server/jobs/core/storeAnalytics.js +109 -0
- package/dist/_internal/server/jobs/core/triggerEventRaffle.d.ts +19 -0
- package/dist/_internal/server/jobs/core/triggerEventRaffle.js +86 -0
- package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.d.ts +6 -0
- package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.js +85 -0
- package/dist/_internal/server/jobs/handlers/adminAnalytics.d.ts +2 -26
- package/dist/_internal/server/jobs/handlers/adminAnalytics.js +2 -98
- package/dist/_internal/server/jobs/handlers/assignSpinPrize.d.ts +1 -22
- package/dist/_internal/server/jobs/handlers/assignSpinPrize.js +2 -86
- package/dist/_internal/server/jobs/handlers/auctionSettlement.js +2 -70
- package/dist/_internal/server/jobs/handlers/autoPayoutEligibility.js +2 -110
- package/dist/_internal/server/jobs/handlers/bundleStockSync.d.ts +0 -16
- package/dist/_internal/server/jobs/handlers/bundleStockSync.js +2 -80
- package/dist/_internal/server/jobs/handlers/cartPrune.js +2 -13
- package/dist/_internal/server/jobs/handlers/cleanupRtdbEvents.js +2 -45
- package/dist/_internal/server/jobs/handlers/countersReconcile.js +2 -109
- package/dist/_internal/server/jobs/handlers/couponExpiry.js +2 -13
- package/dist/_internal/server/jobs/handlers/dailyDataCleanup.js +2 -20
- package/dist/_internal/server/jobs/handlers/listingProcessor.d.ts +3 -28
- package/dist/_internal/server/jobs/handlers/listingProcessor.js +3 -138
- package/dist/_internal/server/jobs/handlers/mediaTmpCleanup.d.ts +0 -12
- package/dist/_internal/server/jobs/handlers/mediaTmpCleanup.js +2 -69
- package/dist/_internal/server/jobs/handlers/notificationPrune.js +2 -13
- package/dist/_internal/server/jobs/handlers/offerExpiry.js +2 -50
- package/dist/_internal/server/jobs/handlers/onBidPlaced.d.ts +1 -10
- package/dist/_internal/server/jobs/handlers/onBidPlaced.js +2 -56
- package/dist/_internal/server/jobs/handlers/onCategoryWrite.d.ts +1 -8
- package/dist/_internal/server/jobs/handlers/onCategoryWrite.js +6 -134
- package/dist/_internal/server/jobs/handlers/onOrderCreate.d.ts +1 -12
- package/dist/_internal/server/jobs/handlers/onOrderCreate.js +2 -76
- package/dist/_internal/server/jobs/handlers/onOrderStatusChange.d.ts +1 -12
- package/dist/_internal/server/jobs/handlers/onOrderStatusChange.js +2 -139
- package/dist/_internal/server/jobs/handlers/onProductStockChange.d.ts +0 -13
- package/dist/_internal/server/jobs/handlers/onProductStockChange.js +7 -134
- package/dist/_internal/server/jobs/handlers/onProductWrite.d.ts +1 -6
- package/dist/_internal/server/jobs/handlers/onProductWrite.js +6 -106
- package/dist/_internal/server/jobs/handlers/onReviewWrite.js +2 -49
- package/dist/_internal/server/jobs/handlers/onStoreWrite.d.ts +1 -8
- package/dist/_internal/server/jobs/handlers/onStoreWrite.js +7 -8
- package/dist/_internal/server/jobs/handlers/payoutBatch.d.ts +0 -9
- package/dist/_internal/server/jobs/handlers/payoutBatch.js +2 -104
- package/dist/_internal/server/jobs/handlers/pendingOrderTimeout.d.ts +0 -6
- package/dist/_internal/server/jobs/handlers/pendingOrderTimeout.js +2 -33
- package/dist/_internal/server/jobs/handlers/positionsReconcile.d.ts +0 -5
- package/dist/_internal/server/jobs/handlers/positionsReconcile.js +2 -87
- package/dist/_internal/server/jobs/handlers/prizeRevealClose.d.ts +0 -7
- package/dist/_internal/server/jobs/handlers/prizeRevealClose.js +2 -29
- package/dist/_internal/server/jobs/handlers/prizeRevealExpiry.d.ts +0 -8
- package/dist/_internal/server/jobs/handlers/prizeRevealExpiry.js +2 -58
- package/dist/_internal/server/jobs/handlers/prizeRevealOpen.d.ts +0 -8
- package/dist/_internal/server/jobs/handlers/prizeRevealOpen.js +2 -65
- package/dist/_internal/server/jobs/handlers/prizeRevealReminder.d.ts +0 -7
- package/dist/_internal/server/jobs/handlers/prizeRevealReminder.js +2 -45
- package/dist/_internal/server/jobs/handlers/productStatsSync.d.ts +0 -6
- package/dist/_internal/server/jobs/handlers/productStatsSync.js +2 -36
- package/dist/_internal/server/jobs/handlers/promotions.d.ts +2 -10
- package/dist/_internal/server/jobs/handlers/promotions.js +2 -43
- package/dist/_internal/server/jobs/handlers/storeAnalytics.d.ts +2 -28
- package/dist/_internal/server/jobs/handlers/storeAnalytics.js +2 -109
- package/dist/_internal/server/jobs/handlers/triggerEventRaffle.d.ts +1 -28
- package/dist/_internal/server/jobs/handlers/triggerEventRaffle.js +2 -94
- package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.d.ts +0 -6
- package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.js +2 -87
- package/dist/_internal/server/jobs/index.d.ts +1 -0
- package/dist/_internal/server/jobs/index.js +1 -0
- package/dist/_internal/server/jobs/runtime/adapters/firebase.js +21 -0
- package/dist/_internal/shared/actions/action-registry.d.ts +84 -0
- package/dist/_internal/shared/actions/action-registry.js +160 -0
- package/dist/_internal/shared/checkout/rules/_defaults.d.ts +3 -0
- package/dist/_internal/shared/checkout/rules/_defaults.js +22 -0
- package/dist/_internal/shared/checkout/rules/_limits.d.ts +19 -0
- package/dist/_internal/shared/checkout/rules/_limits.js +19 -0
- package/dist/_internal/shared/checkout/rules/_registry.d.ts +44 -0
- package/dist/_internal/shared/checkout/rules/_registry.js +87 -0
- package/dist/_internal/shared/checkout/rules/auction.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/auction.rule.js +10 -0
- package/dist/_internal/shared/checkout/rules/bundle.rule.d.ts +11 -0
- package/dist/_internal/shared/checkout/rules/bundle.rule.js +6 -0
- package/dist/_internal/shared/checkout/rules/classified.rule.d.ts +9 -0
- package/dist/_internal/shared/checkout/rules/classified.rule.js +9 -0
- package/dist/_internal/shared/checkout/rules/digital-code.rule.d.ts +8 -0
- package/dist/_internal/shared/checkout/rules/digital-code.rule.js +6 -0
- package/dist/_internal/shared/checkout/rules/index.d.ts +12 -0
- package/dist/_internal/shared/checkout/rules/index.js +12 -0
- package/dist/_internal/shared/checkout/rules/live.rule.d.ts +10 -0
- package/dist/_internal/shared/checkout/rules/live.rule.js +6 -0
- package/dist/_internal/shared/checkout/rules/offer.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/offer.rule.js +9 -0
- package/dist/_internal/shared/checkout/rules/preorder.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/preorder.rule.js +28 -0
- package/dist/_internal/shared/checkout/rules/prize-draw.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/prize-draw.rule.js +65 -0
- package/dist/_internal/shared/checkout/rules/standard.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/standard.rule.js +5 -0
- package/dist/_internal/shared/checkout/rules/types.d.ts +125 -0
- package/dist/_internal/shared/checkout/rules/types.js +13 -0
- package/dist/_internal/shared/features/cart/schema.d.ts +6 -6
- package/dist/_internal/shared/features/categories/bundle-copy.d.ts +123 -0
- package/dist/_internal/shared/features/categories/bundle-copy.js +134 -0
- package/dist/_internal/shared/features/categories/bundle-schemas.d.ts +318 -0
- package/dist/_internal/shared/features/categories/bundle-schemas.js +55 -0
- package/dist/_internal/shared/features/orders/refund-copy.d.ts +36 -0
- package/dist/_internal/shared/features/orders/refund-copy.js +40 -0
- package/dist/_internal/shared/features/orders/schema.d.ts +4 -4
- package/dist/_internal/shared/features/products/schema.d.ts +8 -8
- package/dist/_internal/shared/listing-types/_registry.d.ts +27 -0
- package/dist/_internal/shared/listing-types/_registry.js +8 -0
- package/dist/_internal/shared/listing-types/action-tracker.d.ts +41 -0
- package/dist/_internal/shared/listing-types/action-tracker.js +70 -0
- package/dist/_internal/shared/listing-types/capabilities.js +25 -0
- package/dist/_internal/shared/listing-types/cart-shipping.d.ts +37 -0
- package/dist/_internal/shared/listing-types/cart-shipping.js +46 -0
- package/dist/_internal/shared/listing-types/classified/config.d.ts +7 -0
- package/dist/_internal/shared/listing-types/classified/config.js +8 -0
- package/dist/_internal/shared/listing-types/classified/ctas.d.ts +1 -0
- package/dist/_internal/shared/listing-types/classified/ctas.js +3 -0
- package/dist/_internal/shared/listing-types/classified/og.d.ts +1 -0
- package/dist/_internal/shared/listing-types/classified/og.js +1 -0
- package/dist/_internal/shared/listing-types/classified/schema.d.ts +1 -0
- package/dist/_internal/shared/listing-types/classified/schema.js +1 -0
- package/dist/_internal/shared/listing-types/classified/seed-factory.d.ts +1 -0
- package/dist/_internal/shared/listing-types/classified/seed-factory.js +1 -0
- package/dist/_internal/shared/listing-types/digital-code/config.d.ts +7 -0
- package/dist/_internal/shared/listing-types/digital-code/config.js +8 -0
- package/dist/_internal/shared/listing-types/digital-code/ctas.d.ts +1 -0
- package/dist/_internal/shared/listing-types/digital-code/ctas.js +3 -0
- package/dist/_internal/shared/listing-types/digital-code/og.d.ts +1 -0
- package/dist/_internal/shared/listing-types/digital-code/og.js +1 -0
- package/dist/_internal/shared/listing-types/digital-code/schema.d.ts +1 -0
- package/dist/_internal/shared/listing-types/digital-code/schema.js +1 -0
- package/dist/_internal/shared/listing-types/digital-code/seed-factory.d.ts +1 -0
- package/dist/_internal/shared/listing-types/digital-code/seed-factory.js +1 -0
- package/dist/_internal/shared/listing-types/feature-flags.d.ts +34 -0
- package/dist/_internal/shared/listing-types/feature-flags.js +45 -0
- package/dist/_internal/shared/listing-types/live/config.d.ts +7 -0
- package/dist/_internal/shared/listing-types/live/config.js +8 -0
- package/dist/_internal/shared/listing-types/live/ctas.d.ts +1 -0
- package/dist/_internal/shared/listing-types/live/ctas.js +3 -0
- package/dist/_internal/shared/listing-types/live/og.d.ts +1 -0
- package/dist/_internal/shared/listing-types/live/og.js +1 -0
- package/dist/_internal/shared/listing-types/live/schema.d.ts +1 -0
- package/dist/_internal/shared/listing-types/live/schema.js +1 -0
- package/dist/_internal/shared/listing-types/live/seed-factory.d.ts +1 -0
- package/dist/_internal/shared/listing-types/live/seed-factory.js +1 -0
- package/dist/_internal/shared/media/limits.js +8 -0
- package/dist/client.d.ts +6 -1
- package/dist/client.js +14 -1
- package/dist/configs/next.js +7 -0
- package/dist/constants/api-endpoints.d.ts +6 -0
- package/dist/constants/api-endpoints.js +4 -0
- package/dist/core/hooks/useSyncManager.js +13 -1
- package/dist/core/unit-of-work.d.ts +1 -1
- package/dist/core/unit-of-work.js +2 -2
- package/dist/features/account/actions/address-actions.d.ts +1 -1
- package/dist/features/account/actions/address-actions.js +15 -7
- package/dist/features/account/schemas/firestore.d.ts +8 -43
- package/dist/features/account/schemas/firestore.js +8 -54
- package/dist/features/account/schemas/index.d.ts +6 -6
- package/dist/features/account/server.d.ts +1 -1
- package/dist/features/account/server.js +3 -1
- package/dist/features/addresses/index.d.ts +2 -0
- package/dist/features/addresses/index.js +2 -0
- package/dist/features/addresses/repository/addresses.repository.d.ts +29 -0
- package/dist/features/addresses/repository/addresses.repository.js +157 -0
- package/dist/features/addresses/schemas/firestore.d.ts +53 -0
- package/dist/features/addresses/schemas/firestore.js +68 -0
- package/dist/features/{bundles → addresses}/schemas/index.d.ts +0 -1
- package/dist/features/{bundles → addresses}/schemas/index.js +0 -1
- package/dist/features/addresses/server.d.ts +2 -0
- package/dist/features/addresses/server.js +2 -0
- package/dist/features/admin/components/AdminAllEventEntriesView.js +4 -3
- package/dist/features/admin/components/AdminBidsView.js +4 -3
- package/dist/features/admin/components/AdminBlogView.js +8 -3
- package/dist/features/admin/components/AdminBundleEditorView.d.ts +9 -0
- package/dist/features/admin/components/AdminBundleEditorView.js +209 -0
- package/dist/features/admin/components/AdminBundlesView.d.ts +9 -0
- package/dist/features/admin/components/AdminBundlesView.js +59 -0
- package/dist/features/admin/components/AdminCartsView.js +13 -3
- package/dist/features/admin/components/AdminContactView.js +4 -3
- package/dist/features/admin/components/AdminCouponsView.js +32 -13
- package/dist/features/admin/components/AdminNewsletterView.js +4 -3
- package/dist/features/admin/components/AdminOrdersView.js +15 -7
- package/dist/features/admin/components/AdminPayoutsView.js +4 -3
- package/dist/features/admin/components/AdminProductsView.js +6 -5
- package/dist/features/admin/components/AdminReviewsView.js +5 -4
- package/dist/features/admin/components/AdminStoresView.js +4 -3
- package/dist/features/admin/components/AdminUsersView.js +15 -5
- package/dist/features/admin/components/AdminWishlistsView.js +10 -1
- package/dist/features/admin/components/DataTable.d.ts +5 -1
- package/dist/features/admin/components/DataTable.js +24 -20
- package/dist/features/admin/components/index.d.ts +4 -0
- package/dist/features/admin/components/index.js +3 -0
- package/dist/features/admin/constants/filter-tabs.d.ts +401 -0
- package/dist/features/admin/constants/filter-tabs.js +200 -0
- package/dist/features/admin/hooks/useAdminListingData.d.ts +1 -0
- package/dist/features/admin/hooks/useAdminListingData.js +1 -0
- package/dist/features/admin/schemas/firestore.d.ts +15 -0
- package/dist/features/admin/schemas/firestore.js +18 -0
- package/dist/features/admin/types/product.types.d.ts +2 -2
- package/dist/features/auctions/components/AuctionCard.d.ts +4 -1
- package/dist/features/auctions/components/AuctionCard.js +5 -3
- package/dist/features/auctions/components/AuctionDetailPageView.js +1 -1
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +2 -2
- package/dist/features/auctions/components/PlaceBidFormClient.js +12 -2
- package/dist/features/auctions/schemas/index.d.ts +2 -2
- package/dist/features/auth/index.d.ts +1 -0
- package/dist/features/auth/index.js +1 -0
- package/dist/features/auth/role-predicates.d.ts +16 -0
- package/dist/features/auth/role-predicates.js +15 -0
- package/dist/features/blog/components/BlogFeaturedCard.d.ts +4 -1
- package/dist/features/blog/components/BlogFeaturedCard.js +5 -3
- package/dist/features/cart/actions/cart-actions.d.ts +1 -0
- package/dist/features/cart/actions/cart-actions.js +16 -0
- package/dist/features/cart/components/CartView.d.ts +19 -1
- package/dist/features/cart/components/CartView.js +2 -2
- package/dist/features/cart/components/ShippingPicker.d.ts +13 -0
- package/dist/features/cart/components/ShippingPicker.js +48 -0
- package/dist/features/cart/components/index.d.ts +3 -1
- package/dist/features/cart/components/index.js +1 -0
- package/dist/features/cart/hooks/useCartCount.js +7 -1
- package/dist/features/cart/repository/cart.repository.d.ts +1 -0
- package/dist/features/cart/repository/cart.repository.js +35 -0
- package/dist/features/cart/schemas/firestore.d.ts +27 -2
- package/dist/features/categories/components/BundleAddToCartCta.d.ts +16 -0
- package/dist/features/categories/components/BundleAddToCartCta.js +54 -0
- package/dist/features/categories/components/BundleBuyNowCta.d.ts +8 -0
- package/dist/features/categories/components/BundleBuyNowCta.js +37 -0
- package/dist/features/categories/components/BundleDetailView.d.ts +22 -0
- package/dist/features/categories/components/BundleDetailView.js +31 -0
- package/dist/features/categories/components/BundleDynamicRuleEditor.d.ts +18 -0
- package/dist/features/categories/components/BundleDynamicRuleEditor.js +60 -0
- package/dist/features/categories/components/BundleItemsPicker.d.ts +26 -0
- package/dist/features/categories/components/BundleItemsPicker.js +135 -0
- package/dist/features/categories/components/BundlesListView.d.ts +13 -0
- package/dist/features/categories/components/BundlesListView.js +27 -0
- package/dist/features/categories/components/index.d.ts +12 -0
- package/dist/features/categories/components/index.js +9 -0
- package/dist/features/checkout/actions/checkout-actions.js +10 -3
- package/dist/features/events/components/AdminEventEditorView.js +108 -2
- package/dist/features/events/components/AdminEventsView.js +16 -4
- package/dist/features/events/components/EventCard.d.ts +4 -1
- package/dist/features/events/components/EventCard.js +7 -3
- package/dist/features/events/components/EventRaffleWinnerView.d.ts +21 -0
- package/dist/features/events/components/EventRaffleWinnerView.js +18 -0
- package/dist/features/events/components/SpinWheelView.d.ts +27 -0
- package/dist/features/events/components/SpinWheelView.js +64 -0
- package/dist/features/events/components/index.d.ts +4 -0
- package/dist/features/events/components/index.js +2 -0
- package/dist/features/events/schemas/firestore.d.ts +27 -1
- package/dist/features/events/schemas/firestore.js +7 -0
- package/dist/features/events/types/index.d.ts +27 -1
- package/dist/features/homepage/components/FeaturedBundlesSection.d.ts +16 -0
- package/dist/features/homepage/components/FeaturedBundlesSection.js +24 -0
- package/dist/features/homepage/components/MarketplaceHomepageView.js +4 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.js +2 -2
- package/dist/features/homepage/lib/section-renderer.d.ts +2 -0
- package/dist/features/homepage/lib/section-renderer.js +5 -5
- package/dist/features/layout/NavbarLayout.d.ts +3 -1
- package/dist/features/layout/NavbarLayout.js +32 -3
- package/dist/features/layout/TitleBarLayout.d.ts +6 -3
- package/dist/features/layout/TitleBarLayout.js +22 -7
- package/dist/features/media/upload/MediaUploadField.d.ts +15 -1
- package/dist/features/media/upload/MediaUploadField.js +22 -1
- package/dist/features/orders/components/MarketplaceOrderCard.js +4 -2
- package/dist/features/orders/components/OrderSiblingPayments.d.ts +8 -0
- package/dist/features/orders/components/OrderSiblingPayments.js +16 -0
- package/dist/features/orders/components/RefundHistoryTable.d.ts +6 -0
- package/dist/features/orders/components/RefundHistoryTable.js +23 -0
- package/dist/features/orders/components/RefundRequestView.d.ts +8 -0
- package/dist/features/orders/components/RefundRequestView.js +42 -0
- package/dist/features/orders/components/index.d.ts +6 -0
- package/dist/features/orders/components/index.js +3 -0
- package/dist/features/orders/index.d.ts +1 -0
- package/dist/features/orders/index.js +2 -0
- package/dist/features/orders/repository/orders.repository.d.ts +20 -1
- package/dist/features/orders/repository/orders.repository.js +30 -1
- package/dist/features/orders/schemas/firestore.d.ts +63 -13
- package/dist/features/orders/schemas/firestore.js +5 -5
- package/dist/features/orders/schemas/index.d.ts +4 -4
- package/dist/features/orders/types/index.d.ts +12 -2
- package/dist/features/orders/utils/bundle-grouping.d.ts +48 -0
- package/dist/features/orders/utils/bundle-grouping.js +54 -0
- package/dist/features/orders/utils/order-splitter.d.ts +9 -10
- package/dist/features/orders/utils/order-splitter.js +24 -30
- package/dist/features/payments/repository/payout.repository.d.ts +17 -1
- package/dist/features/payments/repository/payout.repository.js +47 -0
- package/dist/features/payments/schemas/firestore.d.ts +26 -0
- package/dist/features/pre-orders/components/PreorderCard.d.ts +4 -1
- package/dist/features/pre-orders/components/PreorderCard.js +8 -6
- package/dist/features/products/actions/product-actions.d.ts +1 -1
- package/dist/features/products/actions/product-actions.js +1 -1
- package/dist/features/products/components/CompareOverlay.d.ts +2 -2
- package/dist/features/products/components/CompareOverlay.js +4 -4
- package/dist/features/products/components/InteractiveProductCard.js +7 -12
- package/dist/features/products/components/NonRefundableConsentModal.d.ts +1 -1
- package/dist/features/products/components/NonRefundableConsentModal.js +0 -10
- package/dist/features/products/components/ProductGrid.js +28 -12
- package/dist/features/products/components/ShowGroupSection.js +3 -3
- package/dist/features/products/components/SublistingCarouselSection.js +2 -2
- package/dist/features/products/components/index.d.ts +0 -4
- package/dist/features/products/components/index.js +5 -2
- package/dist/features/products/index.d.ts +1 -1
- package/dist/features/products/index.js +3 -1
- package/dist/features/products/repository/products.repository.js +4 -0
- package/dist/features/products/schemas/catalog-product.d.ts +70 -0
- package/dist/features/products/schemas/catalog-product.js +50 -0
- package/dist/features/products/schemas/firestore.d.ts +110 -2
- package/dist/features/products/schemas/firestore.js +30 -0
- package/dist/features/products/schemas/index.d.ts +8 -8
- package/dist/features/products/types/index.d.ts +1 -1
- package/dist/features/products/utils/listing-type.d.ts +9 -0
- package/dist/features/products/utils/listing-type.js +4 -0
- 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/components/CouponCard.d.ts +28 -10
- package/dist/features/promotions/components/CouponCard.js +116 -14
- package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
- package/dist/features/promotions/repository/coupons.repository.d.ts +1 -1
- package/dist/features/reviews/schemas/index.d.ts +2 -2
- package/dist/features/search/schemas/index.d.ts +2 -2
- package/dist/features/search/types/index.d.ts +2 -2
- package/dist/features/seller/components/SellerAuctionsView.js +4 -5
- package/dist/features/seller/components/SellerBidsView.js +5 -13
- package/dist/features/seller/components/SellerCouponsView.js +31 -67
- package/dist/features/seller/components/SellerOffersView.js +4 -5
- package/dist/features/seller/components/SellerOrdersView.js +4 -5
- package/dist/features/seller/components/SellerPayoutsView.js +4 -5
- package/dist/features/seller/components/SellerProductsView.js +4 -8
- package/dist/features/seller/schemas/index.d.ts +2 -2
- package/dist/features/stores/actions/store-address-actions.d.ts +10 -6
- package/dist/features/stores/actions/store-address-actions.js +8 -7
- package/dist/features/stores/components/InteractiveStoreCard.js +3 -10
- package/dist/features/stores/components/StoreDetailLayoutView.js +20 -5
- package/dist/features/stores/schemas/firestore.d.ts +45 -38
- package/dist/features/stores/schemas/firestore.js +2 -49
- package/dist/features/stores/server.d.ts +0 -1
- package/dist/features/stores/server.js +2 -1
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -9
- package/dist/features/wishlist/hooks/useWishlistCount.js +67 -86
- package/dist/features/wishlist/types/index.d.ts +1 -1
- package/dist/index.d.ts +50 -9
- package/dist/index.js +57 -11
- package/dist/next/routing/route-map.d.ts +6 -0
- package/dist/next/routing/route-map.js +4 -0
- package/dist/providers/db-firebase/admin.d.ts +6 -2
- package/dist/providers/db-firebase/admin.js +23 -0
- package/dist/repositories/index.d.ts +1 -2
- package/dist/repositories/index.js +5 -2
- package/dist/security/authorization.d.ts +2 -1
- package/dist/security/authorization.js +3 -2
- package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
- package/dist/seed/bids-seed-data.d.ts +2 -2
- package/dist/seed/bids-seed-data.js +77 -2
- package/dist/seed/cart-seed-data.d.ts +10 -10
- package/dist/seed/cart-seed-data.js +15 -15
- package/dist/seed/events-seed-data.js +77 -0
- package/dist/seed/manifest.js +16 -8
- package/dist/seed/orders-seed-data.js +41 -2
- package/dist/seed/payouts-seed-data.js +18 -2
- package/dist/seed/stores-seed-data.js +55 -0
- package/dist/server-entry.d.ts +1 -0
- package/dist/server-entry.js +2 -0
- package/dist/server.d.ts +4 -0
- package/dist/server.js +8 -0
- package/dist/tailwind-utilities.css +1 -1
- package/dist/ui/components/FilterChipGroup.d.ts +39 -0
- package/dist/ui/components/FilterChipGroup.js +15 -0
- package/dist/ui/components/HorizontalScroller.js +32 -7
- package/dist/ui/components/HorizontalScroller.style.css +6 -0
- package/dist/ui/components/SiteLogo.js +1 -1
- package/dist/ui/index.d.ts +2 -0
- package/dist/ui/index.js +2 -0
- package/dist/utils/id-generators.d.ts +11 -0
- package/dist/utils/id-generators.js +16 -0
- package/package.json +1 -1
- package/dist/_internal/shared/features/bundles/config.d.ts +0 -6
- package/dist/_internal/shared/features/bundles/config.js +0 -6
- package/dist/_internal/shared/schema-versions.d.ts +0 -76
- package/dist/_internal/shared/schema-versions.js +0 -82
- package/dist/features/account/migrations.d.ts +0 -2
- package/dist/features/account/migrations.js +0 -10
- package/dist/features/admin/migrations.d.ts +0 -2
- package/dist/features/admin/migrations.js +0 -10
- package/dist/features/auctions/migrations.d.ts +0 -2
- package/dist/features/auctions/migrations.js +0 -10
- package/dist/features/auth/migrations.d.ts +0 -2
- package/dist/features/auth/migrations.js +0 -10
- package/dist/features/blog/migrations.d.ts +0 -2
- package/dist/features/blog/migrations.js +0 -10
- package/dist/features/brands/actions/brand-actions.d.ts +0 -2
- package/dist/features/brands/actions/brand-actions.js +0 -5
- package/dist/features/brands/index.d.ts +0 -3
- package/dist/features/brands/index.js +0 -3
- package/dist/features/brands/migrations.d.ts +0 -2
- package/dist/features/brands/migrations.js +0 -10
- package/dist/features/brands/repository/brands.repository.d.ts +0 -13
- package/dist/features/brands/repository/brands.repository.js +0 -60
- package/dist/features/brands/schemas/index.d.ts +0 -33
- package/dist/features/brands/schemas/index.js +0 -15
- package/dist/features/brands/server.d.ts +0 -7
- package/dist/features/brands/server.js +0 -7
- package/dist/features/bundles/components/AdminBundleEditorView.d.ts +0 -8
- package/dist/features/bundles/components/AdminBundleEditorView.js +0 -7
- package/dist/features/bundles/components/BundleDetailPageView.d.ts +0 -9
- package/dist/features/bundles/components/BundleDetailPageView.js +0 -45
- package/dist/features/bundles/components/BundleForm.d.ts +0 -12
- package/dist/features/bundles/components/BundleForm.js +0 -126
- package/dist/features/bundles/components/BundleItemsPicker.d.ts +0 -9
- package/dist/features/bundles/components/BundleItemsPicker.js +0 -77
- package/dist/features/bundles/components/BundlesByCategoryListing.d.ts +0 -6
- package/dist/features/bundles/components/BundlesByCategoryListing.js +0 -50
- package/dist/features/bundles/components/BundlesListingView.d.ts +0 -17
- package/dist/features/bundles/components/BundlesListingView.js +0 -50
- package/dist/features/bundles/components/FeaturedBundlesSection.d.ts +0 -5
- package/dist/features/bundles/components/FeaturedBundlesSection.js +0 -55
- package/dist/features/bundles/components/SellerBundleCreateView.d.ts +0 -8
- package/dist/features/bundles/components/SellerBundleCreateView.js +0 -7
- package/dist/features/bundles/components/SellerBundleEditView.d.ts +0 -9
- package/dist/features/bundles/components/SellerBundleEditView.js +0 -7
- package/dist/features/bundles/components/index.d.ts +0 -18
- package/dist/features/bundles/components/index.js +0 -9
- package/dist/features/bundles/constants/index.d.ts +0 -32
- package/dist/features/bundles/constants/index.js +0 -35
- package/dist/features/bundles/index.d.ts +0 -2
- package/dist/features/bundles/index.js +0 -2
- package/dist/features/bundles/migrations.d.ts +0 -2
- package/dist/features/bundles/migrations.js +0 -10
- package/dist/features/bundles/repository/bundles.repository.d.ts +0 -36
- package/dist/features/bundles/repository/bundles.repository.js +0 -148
- package/dist/features/bundles/repository/index.d.ts +0 -1
- package/dist/features/bundles/repository/index.js +0 -1
- package/dist/features/bundles/schemas/firestore.d.ts +0 -88
- package/dist/features/bundles/schemas/firestore.js +0 -29
- package/dist/features/bundles/schemas/zod.d.ts +0 -377
- package/dist/features/bundles/schemas/zod.js +0 -71
- package/dist/features/cart/migrations.d.ts +0 -2
- package/dist/features/cart/migrations.js +0 -10
- package/dist/features/categories/migrations.d.ts +0 -2
- package/dist/features/categories/migrations.js +0 -10
- package/dist/features/events/migrations.d.ts +0 -2
- package/dist/features/events/migrations.js +0 -10
- package/dist/features/faq/migrations.d.ts +0 -2
- package/dist/features/faq/migrations.js +0 -10
- package/dist/features/grouped/migrations.d.ts +0 -2
- package/dist/features/grouped/migrations.js +0 -10
- package/dist/features/history/migrations.d.ts +0 -2
- package/dist/features/history/migrations.js +0 -10
- package/dist/features/messages/migrations.d.ts +0 -2
- package/dist/features/messages/migrations.js +0 -10
- package/dist/features/orders/migrations.d.ts +0 -2
- package/dist/features/orders/migrations.js +0 -10
- package/dist/features/payments/migrations.d.ts +0 -2
- package/dist/features/payments/migrations.js +0 -10
- package/dist/features/products/migrations.d.ts +0 -2
- package/dist/features/products/migrations.js +0 -10
- package/dist/features/products/repository/sublisting-categories.repository.d.ts +0 -16
- package/dist/features/products/repository/sublisting-categories.repository.js +0 -126
- package/dist/features/products/schemas/sublisting-categories.d.ts +0 -45
- package/dist/features/products/schemas/sublisting-categories.js +0 -16
- package/dist/features/promotions/migrations.d.ts +0 -2
- package/dist/features/promotions/migrations.js +0 -10
- package/dist/features/reviews/migrations.d.ts +0 -2
- package/dist/features/reviews/migrations.js +0 -10
- package/dist/features/scams/migrations.d.ts +0 -2
- package/dist/features/scams/migrations.js +0 -10
- package/dist/features/seller/migrations.d.ts +0 -2
- package/dist/features/seller/migrations.js +0 -10
- package/dist/features/stores/migrations.d.ts +0 -2
- package/dist/features/stores/migrations.js +0 -10
- package/dist/features/sublisting/migrations.d.ts +0 -2
- package/dist/features/sublisting/migrations.js +0 -10
- package/dist/features/sublisting/schemas/firestore.d.ts +0 -32
- package/dist/features/sublisting/schemas/firestore.js +0 -19
- package/dist/features/support/migrations.d.ts +0 -2
- package/dist/features/support/migrations.js +0 -10
- package/dist/features/wishlist/migrations.d.ts +0 -2
- package/dist/features/wishlist/migrations.js +0 -10
- package/dist/seed/_bundle-constants.d.ts +0 -14
- package/dist/seed/_bundle-constants.js +0 -14
- package/dist/seed/anime-figures-seed-data.d.ts +0 -8
- package/dist/seed/anime-figures-seed-data.js +0 -1033
- package/dist/seed/beyblade-seed-data.d.ts +0 -7
- package/dist/seed/beyblade-seed-data.js +0 -1129
- package/dist/seed/brands-seed-data.d.ts +0 -7
- package/dist/seed/brands-seed-data.js +0 -410
- package/dist/seed/bundles-seed-data.d.ts +0 -13
- package/dist/seed/bundles-seed-data.js +0 -229
- package/dist/seed/cosplay-accessories-seed-data.d.ts +0 -8
- package/dist/seed/cosplay-accessories-seed-data.js +0 -647
- package/dist/seed/hot-wheels-seed-data.d.ts +0 -7
- package/dist/seed/hot-wheels-seed-data.js +0 -1612
- package/dist/seed/letitrip-official-seed-data.d.ts +0 -8
- package/dist/seed/letitrip-official-seed-data.js +0 -399
- package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +0 -8
- package/dist/seed/pokemon-carousel-slides-seed-data.js +0 -322
- package/dist/seed/pokemon-categories-seed-data.d.ts +0 -24
- package/dist/seed/pokemon-categories-seed-data.js +0 -547
- package/dist/seed/pokemon-coupons-seed-data.d.ts +0 -6
- package/dist/seed/pokemon-coupons-seed-data.js +0 -465
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +0 -7
- package/dist/seed/pokemon-homepage-sections-seed-data.js +0 -241
- package/dist/seed/pokemon-products-seed-data.d.ts +0 -9
- package/dist/seed/pokemon-products-seed-data.js +0 -1791
- package/dist/seed/pokemon-seed-bundle.d.ts +0 -47
- package/dist/seed/pokemon-seed-bundle.js +0 -71
- package/dist/seed/pokemon-stores-seed-data.d.ts +0 -6
- package/dist/seed/pokemon-stores-seed-data.js +0 -179
- package/dist/seed/pokemon-users-seed-data.d.ts +0 -6
- package/dist/seed/pokemon-users-seed-data.js +0 -521
- package/dist/seed/products-seed-data.d.ts +0 -6
- package/dist/seed/products-seed-data.js +0 -2530
- package/dist/seed/retro-gaming-seed-data.d.ts +0 -8
- package/dist/seed/retro-gaming-seed-data.js +0 -801
- package/dist/seed/server.d.ts +0 -2
- package/dist/seed/server.js +0 -7
- package/dist/seed/sublisting-categories-seed-data.d.ts +0 -7
- package/dist/seed/sublisting-categories-seed-data.js +0 -159
- package/dist/seed/transformers-seed-data.d.ts +0 -7
- package/dist/seed/transformers-seed-data.js +0 -530
|
@@ -1,1612 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Hot Wheels — Products Seed Data
|
|
3
|
-
* 30 general · 3 auctions · 2 pre-orders = 35 total
|
|
4
|
-
* Seller: Speed King Diecast (store-speed-king-diecast)
|
|
5
|
-
*/
|
|
6
|
-
import { getDefaultCurrency } from "./seed-market-config";
|
|
7
|
-
const _CURRENCY = getDefaultCurrency();
|
|
8
|
-
const NOW = new Date();
|
|
9
|
-
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
10
|
-
const daysAhead = (n) => new Date(NOW.getTime() + n * 86400000);
|
|
11
|
-
const SK = {
|
|
12
|
-
storeId: "store-speed-king-diecast",
|
|
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];
|
|
34
|
-
};
|
|
35
|
-
export const hotWheelsProductsSeedData = [
|
|
36
|
-
// ── BASIC MAINLINE CARS (15) ──────────────────────────────────────────────
|
|
37
|
-
{
|
|
38
|
-
id: "product-hw-corvette-zr1-2019-basic-sk-1",
|
|
39
|
-
title: "Hot Wheels 2019 Corvette ZR1 — Mainline (Red)",
|
|
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>",
|
|
41
|
-
slug: "product-hw-2019-corvette-zr1-red-mainline",
|
|
42
|
-
category: "category-hw-basic-cars",
|
|
43
|
-
subcategory: "American Muscle",
|
|
44
|
-
brand: "Hot Wheels",
|
|
45
|
-
price: 199,
|
|
46
|
-
currency: _CURRENCY,
|
|
47
|
-
stockQuantity: 30,
|
|
48
|
-
availableQuantity: 24,
|
|
49
|
-
mainImage: img("hw-corvette-zr1"),
|
|
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
|
-
},
|
|
56
|
-
status: "published",
|
|
57
|
-
...SK,
|
|
58
|
-
featured: true,
|
|
59
|
-
tags: ["hot wheels", "corvette", "mainline", "american muscle", "red"],
|
|
60
|
-
specifications: [
|
|
61
|
-
{ name: "Scale", value: "1:64" },
|
|
62
|
-
{ name: "Series", value: "Mainline 2024" },
|
|
63
|
-
{ name: "Material", value: "Die-cast zinc alloy" },
|
|
64
|
-
{ name: "Tyre", value: "Plastic" },
|
|
65
|
-
{ name: "Colour", value: "Red with Black Tampo" },
|
|
66
|
-
],
|
|
67
|
-
features: ["Opening hood detail", "Free-rolling plastic wheels", "Blister-card packaged"],
|
|
68
|
-
shippingInfo: "Bubble-packed in rigid box. PAN India delivery.",
|
|
69
|
-
returnPolicy: "10-day returns for damaged or wrong item.",
|
|
70
|
-
condition: "new",
|
|
71
|
-
insurance: false,
|
|
72
|
-
shippingPaidBy: "seller",
|
|
73
|
-
isAuction: false,
|
|
74
|
-
isPreOrder: false,
|
|
75
|
-
isPromoted: true,
|
|
76
|
-
promotionEndDate: daysAhead(30),
|
|
77
|
-
avgRating: 4.6,
|
|
78
|
-
reviewCount: 14,
|
|
79
|
-
createdAt: daysAgo(45),
|
|
80
|
-
updatedAt: daysAgo(3),
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
id: "product-hw-67-camaro-blue-basic-sk-2",
|
|
84
|
-
title: "Hot Wheels '67 Camaro — Mainline (Metallic Blue)",
|
|
85
|
-
description: "<p>Classic 1967 Chevrolet Camaro in Hot Wheels 1:64 scale. Striking metallic blue finish with chrome bumpers.</p>",
|
|
86
|
-
slug: "product-hw-67-camaro-metallic-blue",
|
|
87
|
-
category: "category-hw-basic-cars",
|
|
88
|
-
subcategory: "Classic American",
|
|
89
|
-
brand: "Hot Wheels",
|
|
90
|
-
price: 179,
|
|
91
|
-
currency: _CURRENCY,
|
|
92
|
-
stockQuantity: 20,
|
|
93
|
-
availableQuantity: 18,
|
|
94
|
-
mainImage: img("hw-67-camaro"),
|
|
95
|
-
images: [img("hw-67-camaro")],
|
|
96
|
-
status: "published",
|
|
97
|
-
...SK,
|
|
98
|
-
featured: false,
|
|
99
|
-
tags: ["hot wheels", "camaro", "67", "classic", "muscle car"],
|
|
100
|
-
specifications: [
|
|
101
|
-
{ name: "Scale", value: "1:64" },
|
|
102
|
-
{ name: "Year", value: "1967" },
|
|
103
|
-
{ name: "Material", value: "Die-cast zinc alloy" },
|
|
104
|
-
],
|
|
105
|
-
features: ["Detailed interior", "Chrome accents"],
|
|
106
|
-
shippingInfo: "Bubble-packed. Nationwide delivery.",
|
|
107
|
-
returnPolicy: "10-day returns.",
|
|
108
|
-
condition: "new",
|
|
109
|
-
insurance: false,
|
|
110
|
-
shippingPaidBy: "seller",
|
|
111
|
-
isAuction: false,
|
|
112
|
-
isPreOrder: false,
|
|
113
|
-
avgRating: 4.5,
|
|
114
|
-
reviewCount: 9,
|
|
115
|
-
createdAt: daysAgo(40),
|
|
116
|
-
updatedAt: daysAgo(5),
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
id: "product-hw-twin-mill-classic-basic-sk-3",
|
|
120
|
-
title: "Hot Wheels Twin Mill — Classic Redline Replica",
|
|
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>",
|
|
122
|
-
slug: "product-hw-twin-mill-classic-redline",
|
|
123
|
-
category: "category-hw-basic-cars",
|
|
124
|
-
subcategory: "Originals",
|
|
125
|
-
brand: "Hot Wheels",
|
|
126
|
-
price: 249,
|
|
127
|
-
currency: _CURRENCY,
|
|
128
|
-
stockQuantity: 15,
|
|
129
|
-
availableQuantity: 11,
|
|
130
|
-
mainImage: img("hw-twin-mill"),
|
|
131
|
-
images: [img("hw-twin-mill")],
|
|
132
|
-
status: "published",
|
|
133
|
-
...SK,
|
|
134
|
-
featured: true,
|
|
135
|
-
tags: ["hot wheels", "twin mill", "classic", "original", "iconic"],
|
|
136
|
-
specifications: [
|
|
137
|
-
{ name: "Scale", value: "1:64" },
|
|
138
|
-
{ name: "Design", value: "Original Hot Wheels Design" },
|
|
139
|
-
{ name: "Series", value: "Nostalgia Collection" },
|
|
140
|
-
],
|
|
141
|
-
features: ["Twin engine design", "Iconic stripe tampo", "Collector packaging"],
|
|
142
|
-
shippingInfo: "Collector-grade packaging. Nationwide delivery.",
|
|
143
|
-
returnPolicy: "10-day returns.",
|
|
144
|
-
condition: "new",
|
|
145
|
-
insurance: false,
|
|
146
|
-
shippingPaidBy: "seller",
|
|
147
|
-
isAuction: false,
|
|
148
|
-
isPreOrder: false,
|
|
149
|
-
isPromoted: true,
|
|
150
|
-
promotionEndDate: daysAhead(20),
|
|
151
|
-
avgRating: 4.8,
|
|
152
|
-
reviewCount: 22,
|
|
153
|
-
createdAt: daysAgo(35),
|
|
154
|
-
updatedAt: daysAgo(2),
|
|
155
|
-
},
|
|
156
|
-
{
|
|
157
|
-
id: "product-hw-bone-shaker-skull-basic-sk-4",
|
|
158
|
-
title: "Hot Wheels Bone Shaker — Skull Edition (Black)",
|
|
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>",
|
|
160
|
-
slug: "product-hw-bone-shaker-skull-black",
|
|
161
|
-
category: "category-hw-basic-cars",
|
|
162
|
-
subcategory: "Originals",
|
|
163
|
-
brand: "Hot Wheels",
|
|
164
|
-
price: 199,
|
|
165
|
-
currency: _CURRENCY,
|
|
166
|
-
stockQuantity: 25,
|
|
167
|
-
availableQuantity: 20,
|
|
168
|
-
mainImage: img("hw-bone-shaker"),
|
|
169
|
-
images: [img("hw-bone-shaker")],
|
|
170
|
-
status: "published",
|
|
171
|
-
...SK,
|
|
172
|
-
featured: false,
|
|
173
|
-
tags: ["hot wheels", "bone shaker", "skull", "original design"],
|
|
174
|
-
specifications: [
|
|
175
|
-
{ name: "Scale", value: "1:64" },
|
|
176
|
-
{ name: "Type", value: "Original Design" },
|
|
177
|
-
],
|
|
178
|
-
features: ["Skull front detail", "Exposed hot rod engine"],
|
|
179
|
-
shippingInfo: "Nationwide delivery with tracking.",
|
|
180
|
-
returnPolicy: "10-day returns.",
|
|
181
|
-
condition: "new",
|
|
182
|
-
insurance: false,
|
|
183
|
-
shippingPaidBy: "seller",
|
|
184
|
-
isAuction: false,
|
|
185
|
-
isPreOrder: false,
|
|
186
|
-
avgRating: 4.4,
|
|
187
|
-
reviewCount: 7,
|
|
188
|
-
createdAt: daysAgo(30),
|
|
189
|
-
updatedAt: daysAgo(4),
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
id: "product-hw-toyota-ae86-jdm-basic-sk-5",
|
|
193
|
-
title: "Hot Wheels Toyota AE86 Corolla — JDM Edition (White)",
|
|
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>",
|
|
195
|
-
slug: "product-hw-toyota-ae86-corolla-jdm-white",
|
|
196
|
-
category: "category-hw-basic-cars",
|
|
197
|
-
subcategory: "JDM",
|
|
198
|
-
brand: "Hot Wheels",
|
|
199
|
-
price: 299,
|
|
200
|
-
currency: _CURRENCY,
|
|
201
|
-
stockQuantity: 10,
|
|
202
|
-
availableQuantity: 7,
|
|
203
|
-
mainImage: img("hw-ae86"),
|
|
204
|
-
images: [img("hw-ae86"), img("hw-ae86-2")],
|
|
205
|
-
status: "published",
|
|
206
|
-
...SK,
|
|
207
|
-
featured: true,
|
|
208
|
-
tags: ["hot wheels", "ae86", "toyota", "jdm", "initial d", "trueno"],
|
|
209
|
-
specifications: [
|
|
210
|
-
{ name: "Scale", value: "1:64" },
|
|
211
|
-
{ name: "Origin", value: "Japan" },
|
|
212
|
-
{ name: "Series", value: "JDM Masters" },
|
|
213
|
-
],
|
|
214
|
-
features: ["Iconic panda white paint", "JDM hood script tampo", "Real rubber tyres"],
|
|
215
|
-
shippingInfo: "Premium padded packaging.",
|
|
216
|
-
returnPolicy: "10-day returns.",
|
|
217
|
-
condition: "new",
|
|
218
|
-
insurance: false,
|
|
219
|
-
shippingPaidBy: "seller",
|
|
220
|
-
isAuction: false,
|
|
221
|
-
isPreOrder: false,
|
|
222
|
-
isPromoted: true,
|
|
223
|
-
promotionEndDate: daysAhead(15),
|
|
224
|
-
avgRating: 4.9,
|
|
225
|
-
reviewCount: 31,
|
|
226
|
-
createdAt: daysAgo(25),
|
|
227
|
-
updatedAt: daysAgo(1),
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
id: "product-hw-ford-gt-lm-racing-basic-sk-6",
|
|
231
|
-
title: "Hot Wheels Ford GT Le Mans — Racing Livery",
|
|
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>",
|
|
233
|
-
slug: "product-hw-ford-gt-le-mans-racing",
|
|
234
|
-
category: "category-hw-basic-cars",
|
|
235
|
-
subcategory: "Racing",
|
|
236
|
-
brand: "Hot Wheels",
|
|
237
|
-
price: 229,
|
|
238
|
-
currency: _CURRENCY,
|
|
239
|
-
stockQuantity: 18,
|
|
240
|
-
availableQuantity: 15,
|
|
241
|
-
mainImage: img("hw-ford-gt-lm"),
|
|
242
|
-
images: [img("hw-ford-gt-lm")],
|
|
243
|
-
status: "published",
|
|
244
|
-
...SK,
|
|
245
|
-
featured: false,
|
|
246
|
-
tags: ["hot wheels", "ford gt", "le mans", "racing", "gulf"],
|
|
247
|
-
specifications: [
|
|
248
|
-
{ name: "Scale", value: "1:64" },
|
|
249
|
-
{ name: "Series", value: "Racing Circuit" },
|
|
250
|
-
{ name: "Livery", value: "Gulf Oil Le Mans" },
|
|
251
|
-
],
|
|
252
|
-
features: ["Race number tampo", "Gulf Oil blue and orange"],
|
|
253
|
-
shippingInfo: "Bubble-packed nationwide.",
|
|
254
|
-
returnPolicy: "10-day returns.",
|
|
255
|
-
condition: "new",
|
|
256
|
-
insurance: false,
|
|
257
|
-
shippingPaidBy: "seller",
|
|
258
|
-
isAuction: false,
|
|
259
|
-
isPreOrder: false,
|
|
260
|
-
avgRating: 4.7,
|
|
261
|
-
reviewCount: 11,
|
|
262
|
-
createdAt: daysAgo(28),
|
|
263
|
-
updatedAt: daysAgo(6),
|
|
264
|
-
},
|
|
265
|
-
{
|
|
266
|
-
id: "product-hw-lamborghini-huracan-yellow-basic-sk-7",
|
|
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",
|
|
270
|
-
category: "category-hw-basic-cars",
|
|
271
|
-
subcategory: "Supercars",
|
|
272
|
-
brand: "Hot Wheels",
|
|
273
|
-
price: 249,
|
|
274
|
-
currency: _CURRENCY,
|
|
275
|
-
stockQuantity: 12,
|
|
276
|
-
availableQuantity: 10,
|
|
277
|
-
mainImage: img("hw-huracan"),
|
|
278
|
-
images: [img("hw-huracan")],
|
|
279
|
-
status: "published",
|
|
280
|
-
...SK,
|
|
281
|
-
featured: false,
|
|
282
|
-
tags: ["hot wheels", "lamborghini", "huracan", "supercar", "yellow"],
|
|
283
|
-
specifications: [
|
|
284
|
-
{ name: "Scale", value: "1:64" },
|
|
285
|
-
{ name: "Brand", value: "Lamborghini" },
|
|
286
|
-
{ name: "Model", value: "Huracán LP 610-4" },
|
|
287
|
-
],
|
|
288
|
-
features: ["Official Lamborghini licensing", "Detailed interior"],
|
|
289
|
-
shippingInfo: "Padded box nationwide.",
|
|
290
|
-
returnPolicy: "10-day returns.",
|
|
291
|
-
condition: "new",
|
|
292
|
-
insurance: false,
|
|
293
|
-
shippingPaidBy: "seller",
|
|
294
|
-
isAuction: false,
|
|
295
|
-
isPreOrder: false,
|
|
296
|
-
avgRating: 4.6,
|
|
297
|
-
reviewCount: 8,
|
|
298
|
-
createdAt: daysAgo(22),
|
|
299
|
-
updatedAt: daysAgo(7),
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
id: "product-hw-dodge-challenger-hellcat-basic-sk-8",
|
|
303
|
-
title: "Hot Wheels Dodge Challenger SRT Hellcat (Dark Purple)",
|
|
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>",
|
|
305
|
-
slug: "product-hw-dodge-challenger-hellcat-purple",
|
|
306
|
-
category: "category-hw-basic-cars",
|
|
307
|
-
subcategory: "American Muscle",
|
|
308
|
-
brand: "Hot Wheels",
|
|
309
|
-
price: 199,
|
|
310
|
-
currency: _CURRENCY,
|
|
311
|
-
stockQuantity: 22,
|
|
312
|
-
availableQuantity: 19,
|
|
313
|
-
mainImage: img("hw-challenger"),
|
|
314
|
-
images: [img("hw-challenger")],
|
|
315
|
-
status: "published",
|
|
316
|
-
...SK,
|
|
317
|
-
featured: false,
|
|
318
|
-
tags: ["hot wheels", "dodge", "challenger", "hellcat", "muscle car"],
|
|
319
|
-
specifications: [
|
|
320
|
-
{ name: "Scale", value: "1:64" },
|
|
321
|
-
{ name: "Engine", value: "Supercharged 6.2L Hemi" },
|
|
322
|
-
],
|
|
323
|
-
features: ["Chrome wheels", "SRT badging"],
|
|
324
|
-
shippingInfo: "Nationwide delivery.",
|
|
325
|
-
returnPolicy: "10-day returns.",
|
|
326
|
-
condition: "new",
|
|
327
|
-
insurance: false,
|
|
328
|
-
shippingPaidBy: "seller",
|
|
329
|
-
isAuction: false,
|
|
330
|
-
isPreOrder: false,
|
|
331
|
-
avgRating: 4.5,
|
|
332
|
-
reviewCount: 6,
|
|
333
|
-
createdAt: daysAgo(20),
|
|
334
|
-
updatedAt: daysAgo(8),
|
|
335
|
-
},
|
|
336
|
-
{
|
|
337
|
-
id: "product-hw-deora-iii-surf-basic-sk-9",
|
|
338
|
-
title: "Hot Wheels Deora III — Surf Van (Teal)",
|
|
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>",
|
|
340
|
-
slug: "product-hw-deora-iii-surf-van-teal",
|
|
341
|
-
category: "category-hw-basic-cars",
|
|
342
|
-
subcategory: "Originals",
|
|
343
|
-
brand: "Hot Wheels",
|
|
344
|
-
price: 229,
|
|
345
|
-
currency: _CURRENCY,
|
|
346
|
-
stockQuantity: 14,
|
|
347
|
-
availableQuantity: 12,
|
|
348
|
-
mainImage: img("hw-deora-iii"),
|
|
349
|
-
images: [img("hw-deora-iii")],
|
|
350
|
-
status: "published",
|
|
351
|
-
...SK,
|
|
352
|
-
featured: false,
|
|
353
|
-
tags: ["hot wheels", "deora", "surf van", "original", "cool"],
|
|
354
|
-
specifications: [
|
|
355
|
-
{ name: "Scale", value: "1:64" },
|
|
356
|
-
{ name: "Series", value: "Originals" },
|
|
357
|
-
],
|
|
358
|
-
features: ["Surfboard side detail", "Teal metal-flake finish"],
|
|
359
|
-
shippingInfo: "Nationwide delivery.",
|
|
360
|
-
returnPolicy: "10-day returns.",
|
|
361
|
-
condition: "new",
|
|
362
|
-
insurance: false,
|
|
363
|
-
shippingPaidBy: "seller",
|
|
364
|
-
isAuction: false,
|
|
365
|
-
isPreOrder: false,
|
|
366
|
-
avgRating: 4.4,
|
|
367
|
-
reviewCount: 5,
|
|
368
|
-
createdAt: daysAgo(18),
|
|
369
|
-
updatedAt: daysAgo(9),
|
|
370
|
-
},
|
|
371
|
-
{
|
|
372
|
-
id: "product-hw-nissan-gtr-r35-basic-sk-10",
|
|
373
|
-
title: "Hot Wheels Nissan GT-R R35 (Midnight Purple)",
|
|
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>",
|
|
375
|
-
slug: "product-hw-nissan-gtr-r35-midnight-purple",
|
|
376
|
-
category: "category-hw-basic-cars",
|
|
377
|
-
subcategory: "JDM",
|
|
378
|
-
brand: "Hot Wheels",
|
|
379
|
-
price: 249,
|
|
380
|
-
currency: _CURRENCY,
|
|
381
|
-
stockQuantity: 16,
|
|
382
|
-
availableQuantity: 13,
|
|
383
|
-
mainImage: img("hw-gtr"),
|
|
384
|
-
images: [img("hw-gtr")],
|
|
385
|
-
status: "published",
|
|
386
|
-
...SK,
|
|
387
|
-
featured: true,
|
|
388
|
-
tags: ["hot wheels", "nissan", "gtr", "r35", "godzilla", "jdm"],
|
|
389
|
-
specifications: [
|
|
390
|
-
{ name: "Scale", value: "1:64" },
|
|
391
|
-
{ name: "Engine", value: "3.8L Twin Turbo V6" },
|
|
392
|
-
{ name: "Origin", value: "Japan" },
|
|
393
|
-
],
|
|
394
|
-
features: ["GT-R script tampo", "Detailed interior"],
|
|
395
|
-
shippingInfo: "Padded nationwide.",
|
|
396
|
-
returnPolicy: "10-day returns.",
|
|
397
|
-
condition: "new",
|
|
398
|
-
insurance: false,
|
|
399
|
-
shippingPaidBy: "seller",
|
|
400
|
-
isAuction: false,
|
|
401
|
-
isPreOrder: false,
|
|
402
|
-
avgRating: 4.7,
|
|
403
|
-
reviewCount: 13,
|
|
404
|
-
createdAt: daysAgo(15),
|
|
405
|
-
updatedAt: daysAgo(2),
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
id: "product-hw-ferrari-488-gt3-basic-sk-11",
|
|
409
|
-
title: "Hot Wheels Ferrari 488 GT3 — Race Edition",
|
|
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>",
|
|
411
|
-
slug: "product-hw-ferrari-488-gt3-race",
|
|
412
|
-
category: "category-hw-basic-cars",
|
|
413
|
-
subcategory: "Supercars",
|
|
414
|
-
brand: "Hot Wheels",
|
|
415
|
-
price: 299,
|
|
416
|
-
currency: _CURRENCY,
|
|
417
|
-
stockQuantity: 8,
|
|
418
|
-
availableQuantity: 6,
|
|
419
|
-
mainImage: img("hw-ferrari-488"),
|
|
420
|
-
images: [img("hw-ferrari-488")],
|
|
421
|
-
status: "published",
|
|
422
|
-
...SK,
|
|
423
|
-
featured: false,
|
|
424
|
-
tags: ["hot wheels", "ferrari", "488", "gt3", "racing"],
|
|
425
|
-
specifications: [
|
|
426
|
-
{ name: "Scale", value: "1:64" },
|
|
427
|
-
{ name: "Brand", value: "Ferrari" },
|
|
428
|
-
{ name: "Series", value: "Speed Machines" },
|
|
429
|
-
],
|
|
430
|
-
features: ["Official Ferrari licensing", "Race livery tampo"],
|
|
431
|
-
shippingInfo: "Premium padded packaging.",
|
|
432
|
-
returnPolicy: "10-day returns.",
|
|
433
|
-
condition: "new",
|
|
434
|
-
insurance: false,
|
|
435
|
-
shippingPaidBy: "seller",
|
|
436
|
-
isAuction: false,
|
|
437
|
-
isPreOrder: false,
|
|
438
|
-
avgRating: 4.8,
|
|
439
|
-
reviewCount: 19,
|
|
440
|
-
createdAt: daysAgo(12),
|
|
441
|
-
updatedAt: daysAgo(3),
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
id: "product-hw-porsche-911-gt3-basic-sk-12",
|
|
445
|
-
title: "Hot Wheels Porsche 911 GT3 RS — White",
|
|
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>",
|
|
447
|
-
slug: "product-hw-porsche-911-gt3-rs-white",
|
|
448
|
-
category: "category-hw-basic-cars",
|
|
449
|
-
subcategory: "Supercars",
|
|
450
|
-
brand: "Hot Wheels",
|
|
451
|
-
price: 279,
|
|
452
|
-
currency: _CURRENCY,
|
|
453
|
-
stockQuantity: 12,
|
|
454
|
-
availableQuantity: 10,
|
|
455
|
-
mainImage: img("hw-porsche-911"),
|
|
456
|
-
images: [img("hw-porsche-911")],
|
|
457
|
-
status: "published",
|
|
458
|
-
...SK,
|
|
459
|
-
featured: false,
|
|
460
|
-
tags: ["hot wheels", "porsche", "911", "gt3", "rs"],
|
|
461
|
-
specifications: [
|
|
462
|
-
{ name: "Scale", value: "1:64" },
|
|
463
|
-
{ name: "Brand", value: "Porsche" },
|
|
464
|
-
],
|
|
465
|
-
features: ["Giant rear wing", "GT3 RS badging"],
|
|
466
|
-
shippingInfo: "Nationwide delivery.",
|
|
467
|
-
returnPolicy: "10-day returns.",
|
|
468
|
-
condition: "new",
|
|
469
|
-
insurance: false,
|
|
470
|
-
shippingPaidBy: "seller",
|
|
471
|
-
isAuction: false,
|
|
472
|
-
isPreOrder: false,
|
|
473
|
-
avgRating: 4.7,
|
|
474
|
-
reviewCount: 10,
|
|
475
|
-
createdAt: daysAgo(10),
|
|
476
|
-
updatedAt: daysAgo(4),
|
|
477
|
-
},
|
|
478
|
-
{
|
|
479
|
-
id: "product-hw-bmw-m3-e30-basic-sk-13",
|
|
480
|
-
title: "Hot Wheels BMW M3 E30 — Touring Car (Red)",
|
|
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>",
|
|
482
|
-
slug: "product-hw-bmw-m3-e30-touring-red",
|
|
483
|
-
category: "category-hw-basic-cars",
|
|
484
|
-
subcategory: "Euro",
|
|
485
|
-
brand: "Hot Wheels",
|
|
486
|
-
price: 279,
|
|
487
|
-
currency: _CURRENCY,
|
|
488
|
-
stockQuantity: 9,
|
|
489
|
-
availableQuantity: 7,
|
|
490
|
-
mainImage: img("hw-bmw-e30"),
|
|
491
|
-
images: [img("hw-bmw-e30")],
|
|
492
|
-
status: "published",
|
|
493
|
-
...SK,
|
|
494
|
-
featured: true,
|
|
495
|
-
tags: ["hot wheels", "bmw", "m3", "e30", "touring", "euro"],
|
|
496
|
-
specifications: [
|
|
497
|
-
{ name: "Scale", value: "1:64" },
|
|
498
|
-
{ name: "Year", value: "1987" },
|
|
499
|
-
{ name: "Series", value: "Car Culture Boulevard" },
|
|
500
|
-
],
|
|
501
|
-
features: ["BBS-style wheels", "Race livery tampo"],
|
|
502
|
-
shippingInfo: "Premium padded box.",
|
|
503
|
-
returnPolicy: "10-day returns.",
|
|
504
|
-
condition: "new",
|
|
505
|
-
insurance: false,
|
|
506
|
-
shippingPaidBy: "seller",
|
|
507
|
-
isAuction: false,
|
|
508
|
-
isPreOrder: false,
|
|
509
|
-
isPromoted: true,
|
|
510
|
-
promotionEndDate: daysAhead(25),
|
|
511
|
-
avgRating: 4.9,
|
|
512
|
-
reviewCount: 27,
|
|
513
|
-
createdAt: daysAgo(8),
|
|
514
|
-
updatedAt: daysAgo(1),
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
id: "product-hw-subaru-wrx-sti-basic-sk-14",
|
|
518
|
-
title: "Hot Wheels Subaru WRX STI — Rally Edition (Blue)",
|
|
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>",
|
|
520
|
-
slug: "product-hw-subaru-wrx-sti-rally-blue",
|
|
521
|
-
category: "category-hw-basic-cars",
|
|
522
|
-
subcategory: "JDM",
|
|
523
|
-
brand: "Hot Wheels",
|
|
524
|
-
price: 319,
|
|
525
|
-
currency: _CURRENCY,
|
|
526
|
-
stockQuantity: 11,
|
|
527
|
-
availableQuantity: 9,
|
|
528
|
-
mainImage: img("hw-subaru-wrx"),
|
|
529
|
-
images: [img("hw-subaru-wrx")],
|
|
530
|
-
status: "published",
|
|
531
|
-
...SK,
|
|
532
|
-
featured: false,
|
|
533
|
-
tags: ["hot wheels", "subaru", "wrx", "sti", "rally", "wrc"],
|
|
534
|
-
specifications: [
|
|
535
|
-
{ name: "Scale", value: "1:64" },
|
|
536
|
-
{ name: "Series", value: "Car Culture Rally Legends" },
|
|
537
|
-
{ name: "Wheels", value: "Real Riders rubber" },
|
|
538
|
-
],
|
|
539
|
-
features: ["Full rally livery tampo", "Real rubber tyres"],
|
|
540
|
-
shippingInfo: "Premium padded shipping.",
|
|
541
|
-
returnPolicy: "10-day returns.",
|
|
542
|
-
condition: "new",
|
|
543
|
-
insurance: false,
|
|
544
|
-
shippingPaidBy: "seller",
|
|
545
|
-
isAuction: false,
|
|
546
|
-
isPreOrder: false,
|
|
547
|
-
avgRating: 4.8,
|
|
548
|
-
reviewCount: 16,
|
|
549
|
-
createdAt: daysAgo(7),
|
|
550
|
-
updatedAt: daysAgo(2),
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
id: "product-hw-datsun-240z-classic-basic-sk-15",
|
|
554
|
-
title: "Hot Wheels Datsun 240Z — JDM Classic (Orange)",
|
|
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>",
|
|
556
|
-
slug: "product-hw-datsun-240z-jdm-orange",
|
|
557
|
-
category: "category-hw-basic-cars",
|
|
558
|
-
subcategory: "JDM",
|
|
559
|
-
brand: "Hot Wheels",
|
|
560
|
-
price: 249,
|
|
561
|
-
currency: _CURRENCY,
|
|
562
|
-
stockQuantity: 15,
|
|
563
|
-
availableQuantity: 13,
|
|
564
|
-
mainImage: img("hw-datsun-240z"),
|
|
565
|
-
images: [img("hw-datsun-240z")],
|
|
566
|
-
status: "published",
|
|
567
|
-
...SK,
|
|
568
|
-
featured: false,
|
|
569
|
-
tags: ["hot wheels", "datsun", "240z", "jdm", "classic", "s30"],
|
|
570
|
-
specifications: [
|
|
571
|
-
{ name: "Scale", value: "1:64" },
|
|
572
|
-
{ name: "Year", value: "1970" },
|
|
573
|
-
{ name: "Origin", value: "Japan" },
|
|
574
|
-
],
|
|
575
|
-
features: ["Classic Z profile", "Period-correct tampo"],
|
|
576
|
-
shippingInfo: "Nationwide delivery.",
|
|
577
|
-
returnPolicy: "10-day returns.",
|
|
578
|
-
condition: "new",
|
|
579
|
-
insurance: false,
|
|
580
|
-
shippingPaidBy: "seller",
|
|
581
|
-
isAuction: false,
|
|
582
|
-
isPreOrder: false,
|
|
583
|
-
avgRating: 4.7,
|
|
584
|
-
reviewCount: 12,
|
|
585
|
-
createdAt: daysAgo(6),
|
|
586
|
-
updatedAt: daysAgo(3),
|
|
587
|
-
},
|
|
588
|
-
// ── PREMIUM CARS (10) ─────────────────────────────────────────────────────
|
|
589
|
-
{
|
|
590
|
-
id: "product-hw-car-culture-boulevard-pack-premium-sk-16",
|
|
591
|
-
title: "Hot Wheels Car Culture Boulevard — Wave 5 (5-pack)",
|
|
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>",
|
|
593
|
-
slug: "product-hw-car-culture-boulevard-wave5-5pack",
|
|
594
|
-
category: "category-hw-premium",
|
|
595
|
-
subcategory: "Car Culture",
|
|
596
|
-
brand: "Hot Wheels",
|
|
597
|
-
price: 2499,
|
|
598
|
-
currency: _CURRENCY,
|
|
599
|
-
stockQuantity: 8,
|
|
600
|
-
availableQuantity: 6,
|
|
601
|
-
mainImage: img("hw-boulevard-5pack"),
|
|
602
|
-
images: [img("hw-boulevard-5pack"), img("hw-boulevard-2")],
|
|
603
|
-
status: "published",
|
|
604
|
-
...SK,
|
|
605
|
-
featured: true,
|
|
606
|
-
tags: ["hot wheels", "car culture", "boulevard", "premium", "5-pack", "real riders"],
|
|
607
|
-
specifications: [
|
|
608
|
-
{ name: "Scale", value: "1:64" },
|
|
609
|
-
{ name: "Series", value: "Car Culture Boulevard" },
|
|
610
|
-
{ name: "Wheels", value: "Real Riders rubber" },
|
|
611
|
-
{ name: "Count", value: "5 cars" },
|
|
612
|
-
],
|
|
613
|
-
features: ["Real rubber tyres on all 5 cars", "Premium card packaging", "Collector-grade details"],
|
|
614
|
-
shippingInfo: "Boxed in rigid carton for protection.",
|
|
615
|
-
returnPolicy: "10-day returns for sealed items.",
|
|
616
|
-
condition: "new",
|
|
617
|
-
insurance: true,
|
|
618
|
-
insuranceCost: 99,
|
|
619
|
-
shippingPaidBy: "seller",
|
|
620
|
-
isAuction: false,
|
|
621
|
-
isPreOrder: false,
|
|
622
|
-
isPromoted: true,
|
|
623
|
-
promotionEndDate: daysAhead(30),
|
|
624
|
-
avgRating: 4.9,
|
|
625
|
-
reviewCount: 38,
|
|
626
|
-
createdAt: daysAgo(50),
|
|
627
|
-
updatedAt: daysAgo(2),
|
|
628
|
-
},
|
|
629
|
-
{
|
|
630
|
-
id: "product-hw-japan-historics-3-premium-sk-17",
|
|
631
|
-
title: "Hot Wheels Car Culture Japan Historics 3 (5-pack)",
|
|
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>",
|
|
633
|
-
slug: "product-hw-car-culture-japan-historics-3-5pack",
|
|
634
|
-
category: "category-hw-premium",
|
|
635
|
-
subcategory: "Car Culture",
|
|
636
|
-
brand: "Hot Wheels",
|
|
637
|
-
price: 2799,
|
|
638
|
-
currency: _CURRENCY,
|
|
639
|
-
stockQuantity: 5,
|
|
640
|
-
availableQuantity: 4,
|
|
641
|
-
mainImage: img("hw-japan-historics"),
|
|
642
|
-
images: [img("hw-japan-historics")],
|
|
643
|
-
status: "published",
|
|
644
|
-
...SK,
|
|
645
|
-
featured: true,
|
|
646
|
-
tags: ["hot wheels", "car culture", "japan historics", "jdm", "premium"],
|
|
647
|
-
specifications: [
|
|
648
|
-
{ name: "Scale", value: "1:64" },
|
|
649
|
-
{ name: "Series", value: "Car Culture Japan Historics 3" },
|
|
650
|
-
{ name: "Wheels", value: "Real Riders" },
|
|
651
|
-
{ name: "Count", value: "5 cars" },
|
|
652
|
-
],
|
|
653
|
-
features: ["5 iconic JDM models", "Real Riders tyres", "Premium sealed packaging"],
|
|
654
|
-
shippingInfo: "Rigid box, premium shipping.",
|
|
655
|
-
returnPolicy: "10-day sealed returns.",
|
|
656
|
-
condition: "new",
|
|
657
|
-
insurance: true,
|
|
658
|
-
insuranceCost: 99,
|
|
659
|
-
shippingPaidBy: "seller",
|
|
660
|
-
isAuction: false,
|
|
661
|
-
isPreOrder: false,
|
|
662
|
-
avgRating: 4.9,
|
|
663
|
-
reviewCount: 45,
|
|
664
|
-
createdAt: daysAgo(40),
|
|
665
|
-
updatedAt: daysAgo(4),
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
id: "product-hw-pop-culture-tmnt-5pack-premium-sk-18",
|
|
669
|
-
title: "Hot Wheels Pop Culture TMNT Ninja Turtles 5-pack",
|
|
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>",
|
|
671
|
-
slug: "product-hw-pop-culture-tmnt-5pack",
|
|
672
|
-
category: "category-hw-premium",
|
|
673
|
-
subcategory: "Pop Culture",
|
|
674
|
-
brand: "Hot Wheels",
|
|
675
|
-
price: 2999,
|
|
676
|
-
currency: _CURRENCY,
|
|
677
|
-
stockQuantity: 7,
|
|
678
|
-
availableQuantity: 5,
|
|
679
|
-
mainImage: img("hw-tmnt-pack"),
|
|
680
|
-
images: [img("hw-tmnt-pack")],
|
|
681
|
-
status: "published",
|
|
682
|
-
...SK,
|
|
683
|
-
featured: true,
|
|
684
|
-
tags: ["hot wheels", "tmnt", "ninja turtles", "pop culture", "collector"],
|
|
685
|
-
specifications: [
|
|
686
|
-
{ name: "Scale", value: "1:64" },
|
|
687
|
-
{ name: "Series", value: "Pop Culture TMNT" },
|
|
688
|
-
{ name: "Count", value: "5 cars" },
|
|
689
|
-
],
|
|
690
|
-
features: ["Themed TMNT graphics", "5 unique character cars", "Gift-ready packaging"],
|
|
691
|
-
shippingInfo: "Gift-boxed packaging.",
|
|
692
|
-
returnPolicy: "10-day returns for sealed items.",
|
|
693
|
-
condition: "new",
|
|
694
|
-
insurance: false,
|
|
695
|
-
shippingPaidBy: "seller",
|
|
696
|
-
isAuction: false,
|
|
697
|
-
isPreOrder: false,
|
|
698
|
-
avgRating: 4.7,
|
|
699
|
-
reviewCount: 29,
|
|
700
|
-
createdAt: daysAgo(35),
|
|
701
|
-
updatedAt: daysAgo(5),
|
|
702
|
-
},
|
|
703
|
-
{
|
|
704
|
-
id: "product-hw-nostalgia-mcdonalds-5pack-premium-sk-19",
|
|
705
|
-
title: "Hot Wheels Pop Culture McDonald's 5-pack",
|
|
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",
|
|
708
|
-
category: "category-hw-premium",
|
|
709
|
-
subcategory: "Pop Culture",
|
|
710
|
-
brand: "Hot Wheels",
|
|
711
|
-
price: 2799,
|
|
712
|
-
currency: _CURRENCY,
|
|
713
|
-
stockQuantity: 6,
|
|
714
|
-
availableQuantity: 4,
|
|
715
|
-
mainImage: img("hw-mcdonalds-pack"),
|
|
716
|
-
images: [img("hw-mcdonalds-pack")],
|
|
717
|
-
status: "published",
|
|
718
|
-
...SK,
|
|
719
|
-
featured: false,
|
|
720
|
-
tags: ["hot wheels", "mcdonalds", "pop culture", "nostalgia", "collector pack"],
|
|
721
|
-
specifications: [
|
|
722
|
-
{ name: "Scale", value: "1:64" },
|
|
723
|
-
{ name: "Series", value: "Pop Culture McDonald's" },
|
|
724
|
-
{ name: "Count", value: "5 cars" },
|
|
725
|
-
],
|
|
726
|
-
features: ["Official McDonald's licensing", "5 unique liveries"],
|
|
727
|
-
shippingInfo: "Gift-boxed.",
|
|
728
|
-
returnPolicy: "10-day returns.",
|
|
729
|
-
condition: "new",
|
|
730
|
-
insurance: false,
|
|
731
|
-
shippingPaidBy: "seller",
|
|
732
|
-
isAuction: false,
|
|
733
|
-
isPreOrder: false,
|
|
734
|
-
avgRating: 4.5,
|
|
735
|
-
reviewCount: 17,
|
|
736
|
-
createdAt: daysAgo(30),
|
|
737
|
-
updatedAt: daysAgo(6),
|
|
738
|
-
},
|
|
739
|
-
{
|
|
740
|
-
id: "product-hw-real-riders-trucks-pack-premium-sk-20",
|
|
741
|
-
title: "Hot Wheels Real Riders Trucks Series — Wave 1 (5-pack)",
|
|
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>",
|
|
743
|
-
slug: "product-hw-real-riders-trucks-series-wave1",
|
|
744
|
-
category: "category-hw-premium",
|
|
745
|
-
subcategory: "Real Riders",
|
|
746
|
-
brand: "Hot Wheels",
|
|
747
|
-
price: 3299,
|
|
748
|
-
currency: _CURRENCY,
|
|
749
|
-
stockQuantity: 5,
|
|
750
|
-
availableQuantity: 3,
|
|
751
|
-
mainImage: img("hw-trucks-pack"),
|
|
752
|
-
images: [img("hw-trucks-pack")],
|
|
753
|
-
status: "published",
|
|
754
|
-
...SK,
|
|
755
|
-
featured: false,
|
|
756
|
-
tags: ["hot wheels", "trucks", "real riders", "off-road", "premium"],
|
|
757
|
-
specifications: [
|
|
758
|
-
{ name: "Scale", value: "1:64" },
|
|
759
|
-
{ name: "Series", value: "Real Riders Trucks" },
|
|
760
|
-
{ name: "Wheels", value: "Real Riders" },
|
|
761
|
-
],
|
|
762
|
-
features: ["5 premium truck castings", "Real Riders rubber tyres", "Off-road detail tampos"],
|
|
763
|
-
shippingInfo: "Rigid box nationwide.",
|
|
764
|
-
returnPolicy: "10-day returns.",
|
|
765
|
-
condition: "new",
|
|
766
|
-
insurance: false,
|
|
767
|
-
shippingPaidBy: "seller",
|
|
768
|
-
isAuction: false,
|
|
769
|
-
isPreOrder: false,
|
|
770
|
-
avgRating: 4.8,
|
|
771
|
-
reviewCount: 21,
|
|
772
|
-
createdAt: daysAgo(25),
|
|
773
|
-
updatedAt: daysAgo(7),
|
|
774
|
-
},
|
|
775
|
-
// ── TRACK SETS (5) ────────────────────────────────────────────────────────
|
|
776
|
-
{
|
|
777
|
-
id: "product-hw-loop-launch-track-set-sk-21",
|
|
778
|
-
title: "Hot Wheels Loop & Launch Track Set — Triple Loop",
|
|
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>",
|
|
780
|
-
slug: "product-hw-loop-launch-triple-loop-track-set",
|
|
781
|
-
category: "category-hw-track-sets",
|
|
782
|
-
subcategory: "Track Sets",
|
|
783
|
-
brand: "Hot Wheels",
|
|
784
|
-
price: 1799,
|
|
785
|
-
currency: _CURRENCY,
|
|
786
|
-
stockQuantity: 12,
|
|
787
|
-
availableQuantity: 10,
|
|
788
|
-
mainImage: img("hw-loop-track"),
|
|
789
|
-
images: [img("hw-loop-track"), img("hw-loop-track-2")],
|
|
790
|
-
status: "published",
|
|
791
|
-
...SK,
|
|
792
|
-
featured: true,
|
|
793
|
-
tags: ["hot wheels", "track set", "loop", "triple loop", "playset"],
|
|
794
|
-
specifications: [
|
|
795
|
-
{ name: "Track Length", value: "~3.5 m" },
|
|
796
|
-
{ name: "Loops", value: "3" },
|
|
797
|
-
{ name: "Compatible Cars", value: "All standard Hot Wheels 1:64" },
|
|
798
|
-
{ name: "Includes", value: "1 car" },
|
|
799
|
-
{ name: "Age", value: "5+" },
|
|
800
|
-
],
|
|
801
|
-
features: ["Triple loop system", "Speed launcher included", "Crash-zone finale"],
|
|
802
|
-
shippingInfo: "Boxed in manufacturer packaging.",
|
|
803
|
-
returnPolicy: "10-day returns for damaged/defective items.",
|
|
804
|
-
condition: "new",
|
|
805
|
-
insurance: false,
|
|
806
|
-
shippingPaidBy: "seller",
|
|
807
|
-
isAuction: false,
|
|
808
|
-
isPreOrder: false,
|
|
809
|
-
avgRating: 4.5,
|
|
810
|
-
reviewCount: 33,
|
|
811
|
-
createdAt: daysAgo(60),
|
|
812
|
-
updatedAt: daysAgo(8),
|
|
813
|
-
},
|
|
814
|
-
{
|
|
815
|
-
id: "product-hw-city-ultimate-garage-track-sk-22",
|
|
816
|
-
title: "Hot Wheels City Ultimate Garage — 5-Level Playset",
|
|
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>",
|
|
818
|
-
slug: "product-hw-city-ultimate-garage-5-level",
|
|
819
|
-
category: "category-hw-track-sets",
|
|
820
|
-
subcategory: "Playsets",
|
|
821
|
-
brand: "Hot Wheels",
|
|
822
|
-
price: 4999,
|
|
823
|
-
currency: _CURRENCY,
|
|
824
|
-
stockQuantity: 5,
|
|
825
|
-
availableQuantity: 4,
|
|
826
|
-
mainImage: img("hw-ultimate-garage"),
|
|
827
|
-
images: [img("hw-ultimate-garage")],
|
|
828
|
-
status: "published",
|
|
829
|
-
...SK,
|
|
830
|
-
featured: true,
|
|
831
|
-
tags: ["hot wheels", "garage", "playset", "city", "ultimate garage"],
|
|
832
|
-
specifications: [
|
|
833
|
-
{ name: "Levels", value: "5" },
|
|
834
|
-
{ name: "Car Capacity", value: "90+ cars" },
|
|
835
|
-
{ name: "Height", value: "~60 cm" },
|
|
836
|
-
{ name: "Includes", value: "2 cars + accessories" },
|
|
837
|
-
],
|
|
838
|
-
features: ["5-level structure", "Working elevator", "Car wash feature", "Gas station"],
|
|
839
|
-
shippingInfo: "Large box. Nationwide delivery.",
|
|
840
|
-
returnPolicy: "7-day returns for sealed items.",
|
|
841
|
-
condition: "new",
|
|
842
|
-
insurance: true,
|
|
843
|
-
insuranceCost: 149,
|
|
844
|
-
shippingPaidBy: "seller",
|
|
845
|
-
isAuction: false,
|
|
846
|
-
isPreOrder: false,
|
|
847
|
-
isPromoted: true,
|
|
848
|
-
promotionEndDate: daysAhead(20),
|
|
849
|
-
avgRating: 4.7,
|
|
850
|
-
reviewCount: 42,
|
|
851
|
-
createdAt: daysAgo(55),
|
|
852
|
-
updatedAt: daysAgo(5),
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
id: "product-hw-monster-trucks-jump-track-sk-23",
|
|
856
|
-
title: "Hot Wheels Monster Trucks Jump Track — Epic Crash",
|
|
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>",
|
|
858
|
-
slug: "product-hw-monster-trucks-jump-crash-track",
|
|
859
|
-
category: "category-hw-track-sets",
|
|
860
|
-
subcategory: "Monster Trucks",
|
|
861
|
-
brand: "Hot Wheels",
|
|
862
|
-
price: 2499,
|
|
863
|
-
currency: _CURRENCY,
|
|
864
|
-
stockQuantity: 8,
|
|
865
|
-
availableQuantity: 7,
|
|
866
|
-
mainImage: img("hw-monster-jump"),
|
|
867
|
-
images: [img("hw-monster-jump")],
|
|
868
|
-
status: "published",
|
|
869
|
-
...SK,
|
|
870
|
-
featured: false,
|
|
871
|
-
tags: ["hot wheels", "monster trucks", "jump", "crash", "track"],
|
|
872
|
-
specifications: [
|
|
873
|
-
{ name: "Compatible", value: "Hot Wheels Monster Trucks 1:64" },
|
|
874
|
-
{ name: "Includes", value: "1 Monster Truck + 2 cars" },
|
|
875
|
-
],
|
|
876
|
-
features: ["Jump ramp", "Crash zone", "Monster Truck included"],
|
|
877
|
-
shippingInfo: "Boxed with padding.",
|
|
878
|
-
returnPolicy: "10-day returns.",
|
|
879
|
-
condition: "new",
|
|
880
|
-
insurance: false,
|
|
881
|
-
shippingPaidBy: "seller",
|
|
882
|
-
isAuction: false,
|
|
883
|
-
isPreOrder: false,
|
|
884
|
-
avgRating: 4.4,
|
|
885
|
-
reviewCount: 18,
|
|
886
|
-
createdAt: daysAgo(45),
|
|
887
|
-
updatedAt: daysAgo(9),
|
|
888
|
-
},
|
|
889
|
-
{
|
|
890
|
-
id: "product-hw-mega-hauler-truck-track-sk-24",
|
|
891
|
-
title: "Hot Wheels Mega Hauler Transport Truck",
|
|
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>",
|
|
893
|
-
slug: "product-hw-mega-hauler-transport-truck",
|
|
894
|
-
category: "category-hw-track-sets",
|
|
895
|
-
subcategory: "Playsets",
|
|
896
|
-
brand: "Hot Wheels",
|
|
897
|
-
price: 1999,
|
|
898
|
-
currency: _CURRENCY,
|
|
899
|
-
stockQuantity: 10,
|
|
900
|
-
availableQuantity: 8,
|
|
901
|
-
mainImage: img("hw-mega-hauler"),
|
|
902
|
-
images: [img("hw-mega-hauler")],
|
|
903
|
-
status: "published",
|
|
904
|
-
...SK,
|
|
905
|
-
featured: false,
|
|
906
|
-
tags: ["hot wheels", "hauler", "truck", "transport", "storage"],
|
|
907
|
-
specifications: [
|
|
908
|
-
{ name: "Car Capacity", value: "25 cars" },
|
|
909
|
-
{ name: "Includes", value: "1 car" },
|
|
910
|
-
],
|
|
911
|
-
features: ["25-car capacity", "Loading ramp", "Die-cast cab"],
|
|
912
|
-
shippingInfo: "Nationwide delivery.",
|
|
913
|
-
returnPolicy: "10-day returns.",
|
|
914
|
-
condition: "new",
|
|
915
|
-
insurance: false,
|
|
916
|
-
shippingPaidBy: "seller",
|
|
917
|
-
isAuction: false,
|
|
918
|
-
isPreOrder: false,
|
|
919
|
-
avgRating: 4.5,
|
|
920
|
-
reviewCount: 25,
|
|
921
|
-
createdAt: daysAgo(40),
|
|
922
|
-
updatedAt: daysAgo(10),
|
|
923
|
-
},
|
|
924
|
-
{
|
|
925
|
-
id: "product-hw-racing-circuit-10pack-sk-25",
|
|
926
|
-
title: "Hot Wheels Racing Circuit — 10-car Collector Pack",
|
|
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>",
|
|
928
|
-
slug: "product-hw-racing-circuit-10car-pack",
|
|
929
|
-
category: "category-hw-track-sets",
|
|
930
|
-
subcategory: "Collector Sets",
|
|
931
|
-
brand: "Hot Wheels",
|
|
932
|
-
price: 1599,
|
|
933
|
-
currency: _CURRENCY,
|
|
934
|
-
stockQuantity: 10,
|
|
935
|
-
availableQuantity: 8,
|
|
936
|
-
mainImage: img("hw-racing-10pack"),
|
|
937
|
-
images: [img("hw-racing-10pack")],
|
|
938
|
-
status: "published",
|
|
939
|
-
...SK,
|
|
940
|
-
featured: false,
|
|
941
|
-
tags: ["hot wheels", "racing", "10-pack", "collector", "assorted"],
|
|
942
|
-
specifications: [
|
|
943
|
-
{ name: "Scale", value: "1:64" },
|
|
944
|
-
{ name: "Count", value: "10 cars" },
|
|
945
|
-
{ name: "Series", value: "Racing Circuit" },
|
|
946
|
-
],
|
|
947
|
-
features: ["10 racing-livery cars", "Collector blister packaging"],
|
|
948
|
-
shippingInfo: "Boxed for protection.",
|
|
949
|
-
returnPolicy: "10-day returns.",
|
|
950
|
-
condition: "new",
|
|
951
|
-
insurance: false,
|
|
952
|
-
shippingPaidBy: "seller",
|
|
953
|
-
isAuction: false,
|
|
954
|
-
isPreOrder: false,
|
|
955
|
-
avgRating: 4.3,
|
|
956
|
-
reviewCount: 14,
|
|
957
|
-
createdAt: daysAgo(35),
|
|
958
|
-
updatedAt: daysAgo(11),
|
|
959
|
-
},
|
|
960
|
-
// ── TREASURE HUNT (5) ─────────────────────────────────────────────────────
|
|
961
|
-
{
|
|
962
|
-
id: "product-hw-th-charger-orange-th-sk-26",
|
|
963
|
-
title: "Hot Wheels Treasure Hunt Dodge Charger R/T (2024 #TH1)",
|
|
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>",
|
|
965
|
-
slug: "product-hw-treasure-hunt-dodge-charger-rt-2024",
|
|
966
|
-
category: "category-hw-treasure-hunt",
|
|
967
|
-
subcategory: "Treasure Hunt",
|
|
968
|
-
brand: "Hot Wheels",
|
|
969
|
-
price: 1299,
|
|
970
|
-
currency: _CURRENCY,
|
|
971
|
-
stockQuantity: 3,
|
|
972
|
-
availableQuantity: 2,
|
|
973
|
-
mainImage: img("hw-th-charger"),
|
|
974
|
-
images: [img("hw-th-charger")],
|
|
975
|
-
status: "published",
|
|
976
|
-
...SK,
|
|
977
|
-
featured: true,
|
|
978
|
-
tags: ["hot wheels", "treasure hunt", "dodge charger", "th", "rare"],
|
|
979
|
-
specifications: [
|
|
980
|
-
{ name: "Scale", value: "1:64" },
|
|
981
|
-
{ name: "Series", value: "2024 Treasure Hunt" },
|
|
982
|
-
{ name: "Wheels", value: "Real Riders" },
|
|
983
|
-
{ name: "Condition", value: "Sealed card" },
|
|
984
|
-
],
|
|
985
|
-
features: ["Official TH marking", "Green flame tampo", "Real Riders rubber tyres"],
|
|
986
|
-
shippingInfo: "Hard case protected shipping.",
|
|
987
|
-
returnPolicy: "No returns on sealed collectibles.",
|
|
988
|
-
condition: "new",
|
|
989
|
-
insurance: true,
|
|
990
|
-
insuranceCost: 49,
|
|
991
|
-
shippingPaidBy: "buyer",
|
|
992
|
-
isAuction: false,
|
|
993
|
-
isPreOrder: false,
|
|
994
|
-
isPromoted: true,
|
|
995
|
-
promotionEndDate: daysAhead(14),
|
|
996
|
-
avgRating: 4.8,
|
|
997
|
-
reviewCount: 9,
|
|
998
|
-
createdAt: daysAgo(20),
|
|
999
|
-
updatedAt: daysAgo(2),
|
|
1000
|
-
},
|
|
1001
|
-
{
|
|
1002
|
-
id: "product-hw-th-shelby-gt500-th-sk-27",
|
|
1003
|
-
title: "Hot Wheels Treasure Hunt Ford Shelby GT500 (2024 #TH7)",
|
|
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>",
|
|
1005
|
-
slug: "product-hw-treasure-hunt-shelby-gt500-2024",
|
|
1006
|
-
category: "category-hw-treasure-hunt",
|
|
1007
|
-
subcategory: "Treasure Hunt",
|
|
1008
|
-
brand: "Hot Wheels",
|
|
1009
|
-
price: 1499,
|
|
1010
|
-
currency: _CURRENCY,
|
|
1011
|
-
stockQuantity: 2,
|
|
1012
|
-
availableQuantity: 2,
|
|
1013
|
-
mainImage: img("hw-th-gt500"),
|
|
1014
|
-
images: [img("hw-th-gt500")],
|
|
1015
|
-
status: "published",
|
|
1016
|
-
...SK,
|
|
1017
|
-
featured: true,
|
|
1018
|
-
tags: ["hot wheels", "treasure hunt", "shelby", "gt500", "th", "rare"],
|
|
1019
|
-
specifications: [
|
|
1020
|
-
{ name: "Scale", value: "1:64" },
|
|
1021
|
-
{ name: "Series", value: "2024 Treasure Hunt" },
|
|
1022
|
-
],
|
|
1023
|
-
features: ["TH marking with Shelby branding", "Specialised wheels"],
|
|
1024
|
-
shippingInfo: "Rigid protective packaging.",
|
|
1025
|
-
returnPolicy: "No returns on sealed collectibles.",
|
|
1026
|
-
condition: "new",
|
|
1027
|
-
insurance: true,
|
|
1028
|
-
insuranceCost: 49,
|
|
1029
|
-
shippingPaidBy: "buyer",
|
|
1030
|
-
isAuction: false,
|
|
1031
|
-
isPreOrder: false,
|
|
1032
|
-
avgRating: 4.9,
|
|
1033
|
-
reviewCount: 7,
|
|
1034
|
-
createdAt: daysAgo(18),
|
|
1035
|
-
updatedAt: daysAgo(3),
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
id: "product-hw-th-bmw-m5-th-sk-28",
|
|
1039
|
-
title: "Hot Wheels Treasure Hunt BMW M5 E60 (2024 #TH12)",
|
|
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>",
|
|
1041
|
-
slug: "product-hw-treasure-hunt-bmw-m5-e60-2024",
|
|
1042
|
-
category: "category-hw-treasure-hunt",
|
|
1043
|
-
subcategory: "Treasure Hunt",
|
|
1044
|
-
brand: "Hot Wheels",
|
|
1045
|
-
price: 1799,
|
|
1046
|
-
currency: _CURRENCY,
|
|
1047
|
-
stockQuantity: 2,
|
|
1048
|
-
availableQuantity: 1,
|
|
1049
|
-
mainImage: img("hw-th-bmw-m5"),
|
|
1050
|
-
images: [img("hw-th-bmw-m5")],
|
|
1051
|
-
status: "published",
|
|
1052
|
-
...SK,
|
|
1053
|
-
featured: true,
|
|
1054
|
-
tags: ["hot wheels", "treasure hunt", "bmw", "m5", "e60", "th"],
|
|
1055
|
-
specifications: [
|
|
1056
|
-
{ name: "Scale", value: "1:64" },
|
|
1057
|
-
{ name: "Series", value: "2024 Treasure Hunt" },
|
|
1058
|
-
{ name: "Wheels", value: "Real Riders" },
|
|
1059
|
-
],
|
|
1060
|
-
features: ["TH marking", "M stripe livery", "Real Riders"],
|
|
1061
|
-
shippingInfo: "Hard case + bubble wrap.",
|
|
1062
|
-
returnPolicy: "No returns.",
|
|
1063
|
-
condition: "new",
|
|
1064
|
-
insurance: true,
|
|
1065
|
-
insuranceCost: 59,
|
|
1066
|
-
shippingPaidBy: "buyer",
|
|
1067
|
-
isAuction: false,
|
|
1068
|
-
isPreOrder: false,
|
|
1069
|
-
avgRating: 5.0,
|
|
1070
|
-
reviewCount: 5,
|
|
1071
|
-
createdAt: daysAgo(14),
|
|
1072
|
-
updatedAt: daysAgo(1),
|
|
1073
|
-
},
|
|
1074
|
-
{
|
|
1075
|
-
id: "product-hw-th-acura-nsx-th-sk-29",
|
|
1076
|
-
title: "Hot Wheels Treasure Hunt Acura NSX GT3 (2024 #TH15)",
|
|
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>",
|
|
1078
|
-
slug: "product-hw-treasure-hunt-acura-nsx-gt3-2024",
|
|
1079
|
-
category: "category-hw-treasure-hunt",
|
|
1080
|
-
subcategory: "Treasure Hunt",
|
|
1081
|
-
brand: "Hot Wheels",
|
|
1082
|
-
price: 1599,
|
|
1083
|
-
currency: _CURRENCY,
|
|
1084
|
-
stockQuantity: 1,
|
|
1085
|
-
availableQuantity: 1,
|
|
1086
|
-
mainImage: img("hw-th-nsx"),
|
|
1087
|
-
images: [img("hw-th-nsx")],
|
|
1088
|
-
status: "published",
|
|
1089
|
-
...SK,
|
|
1090
|
-
featured: false,
|
|
1091
|
-
tags: ["hot wheels", "treasure hunt", "acura", "nsx", "gt3", "th"],
|
|
1092
|
-
specifications: [
|
|
1093
|
-
{ name: "Scale", value: "1:64" },
|
|
1094
|
-
{ name: "Series", value: "2024 Treasure Hunt" },
|
|
1095
|
-
],
|
|
1096
|
-
features: ["TH designation", "NSX GT3 body kit"],
|
|
1097
|
-
shippingInfo: "Protected hard case.",
|
|
1098
|
-
returnPolicy: "No returns.",
|
|
1099
|
-
condition: "new",
|
|
1100
|
-
insurance: true,
|
|
1101
|
-
insuranceCost: 49,
|
|
1102
|
-
shippingPaidBy: "buyer",
|
|
1103
|
-
isAuction: false,
|
|
1104
|
-
isPreOrder: false,
|
|
1105
|
-
avgRating: 4.9,
|
|
1106
|
-
reviewCount: 4,
|
|
1107
|
-
createdAt: daysAgo(12),
|
|
1108
|
-
updatedAt: daysAgo(2),
|
|
1109
|
-
},
|
|
1110
|
-
{
|
|
1111
|
-
id: "product-hw-th-porsche-914-th-sk-30",
|
|
1112
|
-
title: "Hot Wheels Treasure Hunt Porsche 914 (2024 #TH18)",
|
|
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>",
|
|
1114
|
-
slug: "product-hw-treasure-hunt-porsche-914-2024",
|
|
1115
|
-
category: "category-hw-treasure-hunt",
|
|
1116
|
-
subcategory: "Treasure Hunt",
|
|
1117
|
-
brand: "Hot Wheels",
|
|
1118
|
-
price: 1399,
|
|
1119
|
-
currency: _CURRENCY,
|
|
1120
|
-
stockQuantity: 2,
|
|
1121
|
-
availableQuantity: 1,
|
|
1122
|
-
mainImage: img("hw-th-porsche914"),
|
|
1123
|
-
images: [img("hw-th-porsche914")],
|
|
1124
|
-
status: "published",
|
|
1125
|
-
...SK,
|
|
1126
|
-
featured: false,
|
|
1127
|
-
tags: ["hot wheels", "treasure hunt", "porsche", "914", "vintage"],
|
|
1128
|
-
specifications: [
|
|
1129
|
-
{ name: "Scale", value: "1:64" },
|
|
1130
|
-
{ name: "Series", value: "2024 Treasure Hunt" },
|
|
1131
|
-
],
|
|
1132
|
-
features: ["TH flame graphics", "Real Riders"],
|
|
1133
|
-
shippingInfo: "Hard case protected.",
|
|
1134
|
-
returnPolicy: "No returns.",
|
|
1135
|
-
condition: "new",
|
|
1136
|
-
insurance: true,
|
|
1137
|
-
insuranceCost: 49,
|
|
1138
|
-
shippingPaidBy: "buyer",
|
|
1139
|
-
isAuction: false,
|
|
1140
|
-
isPreOrder: false,
|
|
1141
|
-
avgRating: 4.8,
|
|
1142
|
-
reviewCount: 3,
|
|
1143
|
-
createdAt: daysAgo(10),
|
|
1144
|
-
updatedAt: daysAgo(3),
|
|
1145
|
-
},
|
|
1146
|
-
// ── AUCTIONS (3) ─────────────────────────────────────────────────────────
|
|
1147
|
-
{
|
|
1148
|
-
id: "auction-hw-sth-gto-judge-70-auction-sk-1",
|
|
1149
|
-
title: "AUCTION — Hot Wheels Super Treasure Hunt '70 Pontiac GTO 'The Judge'",
|
|
1150
|
-
description: "<p>Extremely rare 2022 Super Treasure Hunt '70 Pontiac GTO The Judge. Spectraflame orange paint, Real Riders premium rubber tyres, and the coveted $TH designation. Only found in 1 of every 72 cases worldwide. Stored sealed since case opening — perfect for grading.</p>",
|
|
1151
|
-
slug: "auction-hw-sth-pontiac-gto-judge-2022",
|
|
1152
|
-
category: "category-hw-treasure-hunt",
|
|
1153
|
-
subcategory: "Super Treasure Hunt",
|
|
1154
|
-
brand: "Hot Wheels",
|
|
1155
|
-
price: 0,
|
|
1156
|
-
currency: _CURRENCY,
|
|
1157
|
-
stockQuantity: 1,
|
|
1158
|
-
availableQuantity: 1,
|
|
1159
|
-
mainImage: img("hw-sth-gto-judge"),
|
|
1160
|
-
images: [img("hw-sth-gto-judge"), img("hw-sth-gto-back")],
|
|
1161
|
-
status: "published",
|
|
1162
|
-
...SK,
|
|
1163
|
-
featured: true,
|
|
1164
|
-
tags: ["hot wheels", "super treasure hunt", "sth", "pontiac", "gto", "the judge", "rare", "auction"],
|
|
1165
|
-
specifications: [
|
|
1166
|
-
{ name: "Scale", value: "1:64" },
|
|
1167
|
-
{ name: "Type", value: "Super Treasure Hunt ($TH)" },
|
|
1168
|
-
{ name: "Finish", value: "Spectraflame Orange" },
|
|
1169
|
-
{ name: "Wheels", value: "Real Riders Premium" },
|
|
1170
|
-
{ name: "Condition", value: "Sealed Card — Near Mint" },
|
|
1171
|
-
{ name: "Year", value: "2022 Series" },
|
|
1172
|
-
],
|
|
1173
|
-
features: ["Spectraflame metallic finish", "Premium Real Riders rubber tyres", "$TH Super designation", "1 in 72 case rarity"],
|
|
1174
|
-
shippingInfo: "Hard acrylic case + insured courier.",
|
|
1175
|
-
returnPolicy: "No returns on auction wins.",
|
|
1176
|
-
condition: "new",
|
|
1177
|
-
insurance: true,
|
|
1178
|
-
insuranceCost: 299,
|
|
1179
|
-
shippingPaidBy: "buyer",
|
|
1180
|
-
isAuction: true,
|
|
1181
|
-
auctionEndDate: daysAhead(8),
|
|
1182
|
-
startingBid: 4999,
|
|
1183
|
-
currentBid: 6500,
|
|
1184
|
-
bidCount: 11,
|
|
1185
|
-
reservePrice: 7000,
|
|
1186
|
-
buyNowPrice: 14999,
|
|
1187
|
-
minBidIncrement: 500,
|
|
1188
|
-
autoExtendable: true,
|
|
1189
|
-
auctionExtensionMinutes: 5,
|
|
1190
|
-
auctionOriginalEndDate: daysAhead(8),
|
|
1191
|
-
auctionShippingPaidBy: "winner",
|
|
1192
|
-
isPreOrder: false,
|
|
1193
|
-
isPromoted: true,
|
|
1194
|
-
promotionEndDate: daysAhead(8),
|
|
1195
|
-
avgRating: 0,
|
|
1196
|
-
reviewCount: 0,
|
|
1197
|
-
createdAt: daysAgo(2),
|
|
1198
|
-
updatedAt: daysAgo(0),
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
id: "auction-hw-rlc-twin-mill-redline-auction-sk-2",
|
|
1202
|
-
title: "AUCTION — Hot Wheels RLC Exclusive Twin Mill Redline Club",
|
|
1203
|
-
description: "<p>Hot Wheels Redline Club (RLC) exclusive Twin Mill — only available to RLC members for a limited window. Red enamel paint with authentic redline wire wheels, metal base, and collector tin packaging. Never opened — original shrink wrap intact.</p>",
|
|
1204
|
-
slug: "auction-hw-rlc-twin-mill-redline-club",
|
|
1205
|
-
category: "category-hw-premium",
|
|
1206
|
-
subcategory: "RLC Exclusive",
|
|
1207
|
-
brand: "Hot Wheels",
|
|
1208
|
-
price: 0,
|
|
1209
|
-
currency: _CURRENCY,
|
|
1210
|
-
stockQuantity: 1,
|
|
1211
|
-
availableQuantity: 1,
|
|
1212
|
-
mainImage: img("hw-rlc-twin-mill"),
|
|
1213
|
-
images: [img("hw-rlc-twin-mill")],
|
|
1214
|
-
status: "published",
|
|
1215
|
-
...SK,
|
|
1216
|
-
featured: true,
|
|
1217
|
-
tags: ["hot wheels", "rlc", "redline club", "twin mill", "exclusive", "auction"],
|
|
1218
|
-
specifications: [
|
|
1219
|
-
{ name: "Scale", value: "1:64" },
|
|
1220
|
-
{ name: "Series", value: "Redline Club (RLC) Exclusive" },
|
|
1221
|
-
{ name: "Wheels", value: "Authentic Wire Redlines" },
|
|
1222
|
-
{ name: "Condition", value: "Factory sealed in tin" },
|
|
1223
|
-
],
|
|
1224
|
-
features: ["RLC members-only model", "Authentic redline wire wheels", "Metal base", "Original collector tin"],
|
|
1225
|
-
shippingInfo: "Insured courier. Hard case + padded box.",
|
|
1226
|
-
returnPolicy: "No returns on auction wins.",
|
|
1227
|
-
condition: "new",
|
|
1228
|
-
insurance: true,
|
|
1229
|
-
insuranceCost: 499,
|
|
1230
|
-
shippingPaidBy: "buyer",
|
|
1231
|
-
isAuction: true,
|
|
1232
|
-
auctionEndDate: daysAhead(5),
|
|
1233
|
-
startingBid: 7999,
|
|
1234
|
-
currentBid: 9500,
|
|
1235
|
-
bidCount: 8,
|
|
1236
|
-
reservePrice: 10000,
|
|
1237
|
-
buyNowPrice: 19999,
|
|
1238
|
-
minBidIncrement: 500,
|
|
1239
|
-
autoExtendable: true,
|
|
1240
|
-
auctionExtensionMinutes: 5,
|
|
1241
|
-
auctionOriginalEndDate: daysAhead(5),
|
|
1242
|
-
auctionShippingPaidBy: "winner",
|
|
1243
|
-
isPreOrder: false,
|
|
1244
|
-
isPromoted: true,
|
|
1245
|
-
promotionEndDate: daysAhead(5),
|
|
1246
|
-
avgRating: 0,
|
|
1247
|
-
reviewCount: 0,
|
|
1248
|
-
createdAt: daysAgo(3),
|
|
1249
|
-
updatedAt: daysAgo(0),
|
|
1250
|
-
},
|
|
1251
|
-
{
|
|
1252
|
-
id: "auction-hw-countach-118-scale-auction-sk-3",
|
|
1253
|
-
title: "AUCTION — Hot Wheels Lamborghini Countach 1:18 Elite Edition",
|
|
1254
|
-
description: "<p>Ultra-rare Hot Wheels 1:18 Elite Edition Lamborghini Countach LP5000S QV in Bianco Polo White. Full die-cast metal body with opening doors, hood, and engine cover. Limited to 2,500 units worldwide. Certificate of authenticity included.</p>",
|
|
1255
|
-
slug: "auction-hw-lamborghini-countach-118-elite",
|
|
1256
|
-
category: "category-hw-premium",
|
|
1257
|
-
subcategory: "Elite 1:18",
|
|
1258
|
-
brand: "Hot Wheels",
|
|
1259
|
-
price: 0,
|
|
1260
|
-
currency: _CURRENCY,
|
|
1261
|
-
stockQuantity: 1,
|
|
1262
|
-
availableQuantity: 1,
|
|
1263
|
-
mainImage: img("hw-countach-118"),
|
|
1264
|
-
images: [img("hw-countach-118")],
|
|
1265
|
-
status: "published",
|
|
1266
|
-
...SK,
|
|
1267
|
-
featured: true,
|
|
1268
|
-
tags: ["hot wheels", "lamborghini", "countach", "1:18", "elite", "auction", "limited"],
|
|
1269
|
-
specifications: [
|
|
1270
|
-
{ name: "Scale", value: "1:18" },
|
|
1271
|
-
{ name: "Series", value: "Elite Edition" },
|
|
1272
|
-
{ name: "Material", value: "Full die-cast metal" },
|
|
1273
|
-
{ name: "Limited Edition", value: "2,500 units worldwide" },
|
|
1274
|
-
{ name: "Opening Parts", value: "Doors, Hood, Engine Cover" },
|
|
1275
|
-
],
|
|
1276
|
-
features: ["Full die-cast 1:18 scale", "Opening doors, hood and engine cover", "Certificate of authenticity", "Display base included"],
|
|
1277
|
-
shippingInfo: "Insured heavyweight courier. Rigid outer box + foam interior.",
|
|
1278
|
-
returnPolicy: "No returns on auction wins.",
|
|
1279
|
-
condition: "new",
|
|
1280
|
-
insurance: true,
|
|
1281
|
-
insuranceCost: 799,
|
|
1282
|
-
shippingPaidBy: "buyer",
|
|
1283
|
-
isAuction: true,
|
|
1284
|
-
auctionEndDate: daysAhead(10),
|
|
1285
|
-
startingBid: 14999,
|
|
1286
|
-
currentBid: 18500,
|
|
1287
|
-
bidCount: 15,
|
|
1288
|
-
reservePrice: 20000,
|
|
1289
|
-
buyNowPrice: 34999,
|
|
1290
|
-
minBidIncrement: 1000,
|
|
1291
|
-
autoExtendable: true,
|
|
1292
|
-
auctionExtensionMinutes: 5,
|
|
1293
|
-
auctionOriginalEndDate: daysAhead(10),
|
|
1294
|
-
auctionShippingPaidBy: "winner",
|
|
1295
|
-
isPreOrder: false,
|
|
1296
|
-
isPromoted: true,
|
|
1297
|
-
promotionEndDate: daysAhead(10),
|
|
1298
|
-
avgRating: 0,
|
|
1299
|
-
reviewCount: 0,
|
|
1300
|
-
createdAt: daysAgo(1),
|
|
1301
|
-
updatedAt: daysAgo(0),
|
|
1302
|
-
},
|
|
1303
|
-
// ── PRE-ORDERS (2) ───────────────────────────────────────────────────────
|
|
1304
|
-
{
|
|
1305
|
-
id: "preorder-hw-car-culture-wave4-2026-sk-1",
|
|
1306
|
-
title: "PRE-ORDER — Hot Wheels Car Culture Wave 4 2026 (5-pack)",
|
|
1307
|
-
description: "<p>Reserve the highly anticipated Car Culture Wave 4 2026 — featuring 5 premium cars with Real Riders and premium detailing. Exact models TBA; historically Wave 4 features European grand tourers and JDM icons. Pre-order now to guarantee your set at launch price.</p>",
|
|
1308
|
-
slug: "preorder-hw-car-culture-wave4-2026",
|
|
1309
|
-
category: "category-hw-premium",
|
|
1310
|
-
subcategory: "Car Culture",
|
|
1311
|
-
brand: "Hot Wheels",
|
|
1312
|
-
price: 2999,
|
|
1313
|
-
currency: _CURRENCY,
|
|
1314
|
-
stockQuantity: 50,
|
|
1315
|
-
availableQuantity: 43,
|
|
1316
|
-
mainImage: img("hw-cc-wave4-preorder"),
|
|
1317
|
-
images: [img("hw-cc-wave4-preorder")],
|
|
1318
|
-
status: "published",
|
|
1319
|
-
...SK,
|
|
1320
|
-
featured: true,
|
|
1321
|
-
tags: ["hot wheels", "car culture", "pre-order", "2026", "premium", "real riders"],
|
|
1322
|
-
specifications: [
|
|
1323
|
-
{ name: "Scale", value: "1:64" },
|
|
1324
|
-
{ name: "Series", value: "Car Culture Wave 4 2026" },
|
|
1325
|
-
{ name: "Wheels", value: "Real Riders (expected)" },
|
|
1326
|
-
{ name: "Count", value: "5 cars" },
|
|
1327
|
-
{ name: "Expected Delivery", value: "Q3 2026" },
|
|
1328
|
-
],
|
|
1329
|
-
features: ["5 premium cars", "Real Riders rubber tyres", "Pre-order launch price guarantee"],
|
|
1330
|
-
shippingInfo: "Dispatched on release day. Tracking provided.",
|
|
1331
|
-
returnPolicy: "Pre-orders: cancel anytime before dispatch.",
|
|
1332
|
-
condition: "new",
|
|
1333
|
-
insurance: false,
|
|
1334
|
-
shippingPaidBy: "seller",
|
|
1335
|
-
isAuction: false,
|
|
1336
|
-
isPreOrder: true,
|
|
1337
|
-
preOrderDeliveryDate: daysAhead(120),
|
|
1338
|
-
preOrderProductionStatus: "upcoming",
|
|
1339
|
-
isPromoted: true,
|
|
1340
|
-
promotionEndDate: daysAhead(60),
|
|
1341
|
-
avgRating: 0,
|
|
1342
|
-
reviewCount: 0,
|
|
1343
|
-
createdAt: daysAgo(7),
|
|
1344
|
-
updatedAt: daysAgo(1),
|
|
1345
|
-
},
|
|
1346
|
-
{
|
|
1347
|
-
id: "preorder-hw-legends-tour-winner-2026-sk-2",
|
|
1348
|
-
title: "PRE-ORDER — Hot Wheels Legends Tour 2026 Winner Edition",
|
|
1349
|
-
description: "<p>The Hot Wheels Legends Tour crowns the best modified car in India each year and immortalises it as a 1:64 die-cast. Pre-order the 2026 Indian Legends Tour winner — model to be announced after the tour finale. Previous winners have been Bajaj, Ambassador, and Premier Padmini customs.</p>",
|
|
1350
|
-
slug: "preorder-hw-legends-tour-india-winner-2026",
|
|
1351
|
-
category: "category-hw-premium",
|
|
1352
|
-
subcategory: "Legends Tour",
|
|
1353
|
-
brand: "Hot Wheels",
|
|
1354
|
-
price: 3499,
|
|
1355
|
-
currency: _CURRENCY,
|
|
1356
|
-
stockQuantity: 100,
|
|
1357
|
-
availableQuantity: 87,
|
|
1358
|
-
mainImage: img("hw-legends-tour"),
|
|
1359
|
-
images: [img("hw-legends-tour")],
|
|
1360
|
-
status: "published",
|
|
1361
|
-
...SK,
|
|
1362
|
-
featured: true,
|
|
1363
|
-
tags: ["hot wheels", "legends tour", "india", "pre-order", "custom", "winner"],
|
|
1364
|
-
specifications: [
|
|
1365
|
-
{ name: "Scale", value: "1:64" },
|
|
1366
|
-
{ name: "Series", value: "Legends Tour India 2026" },
|
|
1367
|
-
{ name: "Model", value: "TBA — 2026 Tour Winner" },
|
|
1368
|
-
{ name: "Certificate", value: "Included" },
|
|
1369
|
-
],
|
|
1370
|
-
features: ["Limited to 5,000 units", "Certificate of authenticity", "Tour winner story booklet"],
|
|
1371
|
-
shippingInfo: "Special edition packaging. Dispatched upon release.",
|
|
1372
|
-
returnPolicy: "Pre-orders: cancel before dispatch.",
|
|
1373
|
-
condition: "new",
|
|
1374
|
-
insurance: false,
|
|
1375
|
-
shippingPaidBy: "seller",
|
|
1376
|
-
isAuction: false,
|
|
1377
|
-
isPreOrder: true,
|
|
1378
|
-
preOrderDeliveryDate: daysAhead(180),
|
|
1379
|
-
preOrderProductionStatus: "upcoming",
|
|
1380
|
-
isPromoted: true,
|
|
1381
|
-
promotionEndDate: daysAhead(90),
|
|
1382
|
-
avgRating: 0,
|
|
1383
|
-
reviewCount: 0,
|
|
1384
|
-
createdAt: daysAgo(5),
|
|
1385
|
-
updatedAt: daysAgo(1),
|
|
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
|
-
},
|
|
1612
|
-
];
|