@mohasinac/appkit 2.6.3 → 2.6.5
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/events/schema.d.ts +4 -4
- 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 +10 -5
- package/dist/client.js +16 -3
- 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/AdminPrizeDrawsView.d.ts +4 -0
- package/dist/features/admin/components/AdminPrizeDrawsView.js +135 -0
- 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 +6 -0
- package/dist/features/admin/components/index.js +5 -0
- package/dist/features/admin/constants/filter-tabs.d.ts +435 -0
- package/dist/features/admin/constants/filter-tabs.js +216 -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/SellerPreOrdersView.d.ts +4 -0
- package/dist/features/seller/components/SellerPreOrdersView.js +141 -0
- package/dist/features/seller/components/SellerPrizeDrawsView.d.ts +4 -0
- package/dist/features/seller/components/SellerPrizeDrawsView.js +138 -0
- package/dist/features/seller/components/SellerProductsView.js +4 -8
- package/dist/features/seller/components/index.d.ts +4 -0
- package/dist/features/seller/components/index.js +2 -0
- 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 +56 -9
- package/dist/index.js +66 -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,801 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Retro Gaming & Vintage Diecast — Products Seed Data
|
|
3
|
-
* Nintendo · SEGA · Vintage Diecast Cars
|
|
4
|
-
* 18 general · 1 auction · 1 pre-order = 20 total
|
|
5
|
-
* Seller: Retro Vault India (store-retro-vault-india)
|
|
6
|
-
*/
|
|
7
|
-
import { getDefaultCurrency } from "./seed-market-config";
|
|
8
|
-
const _CURRENCY = getDefaultCurrency();
|
|
9
|
-
const NOW = new Date();
|
|
10
|
-
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
11
|
-
const daysAhead = (n) => new Date(NOW.getTime() + n * 86400000);
|
|
12
|
-
const RV = {
|
|
13
|
-
storeId: "store-retro-vault-india",
|
|
14
|
-
storeName: "Retro Vault India",
|
|
15
|
-
};
|
|
16
|
-
const RG_IMGS = [
|
|
17
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Nintendo_Entertainment_System.jpg?width=640",
|
|
18
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Super_Nintendo_Entertainment_System.jpg?width=640",
|
|
19
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Game_Boy_original.jpg?width=640",
|
|
20
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Nintendo_64.jpg?width=640",
|
|
21
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Sega_Mega_Drive_PAL_version.jpg?width=640",
|
|
22
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Game_Boy_Advance.jpg?width=640",
|
|
23
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Game_Boy_Color.jpg?width=640",
|
|
24
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Atari_2600.jpg?width=640",
|
|
25
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Neo_Geo_AES.jpg?width=640",
|
|
26
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/PlayStation_(console).jpg?width=640",
|
|
27
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Sega_Saturn.jpg?width=640",
|
|
28
|
-
"https://commons.wikimedia.org/wiki/Special:Redirect/file/Game_cartridge.jpg?width=640",
|
|
29
|
-
];
|
|
30
|
-
const img = (seed) => {
|
|
31
|
-
let h = 0;
|
|
32
|
-
for (const c of seed)
|
|
33
|
-
h = (h * 31 + c.charCodeAt(0)) & 0x7fff;
|
|
34
|
-
return RG_IMGS[h % RG_IMGS.length];
|
|
35
|
-
};
|
|
36
|
-
export const retroGamingSeedData = [
|
|
37
|
-
// ── NINTENDO (6) ─────────────────────────────────────────────────────────
|
|
38
|
-
{
|
|
39
|
-
id: "product-rg-nes-console-boxed-rg-1",
|
|
40
|
-
title: "Nintendo NES Console — Complete In Box (1985 Original)",
|
|
41
|
-
description: "<p>Original 1985 Nintendo Entertainment System — complete in box with original cables, controller, zapper, and Super Mario Bros/Duck Hunt cartridge. Box has moderate shelf wear, console and accessories are in excellent working condition. HDMI mod available on request.</p>",
|
|
42
|
-
slug: "product-nintendo-nes-console-complete-in-box-1985",
|
|
43
|
-
category: "category-retro-nintendo",
|
|
44
|
-
subcategory: "Consoles",
|
|
45
|
-
brand: "Nintendo",
|
|
46
|
-
price: 8999,
|
|
47
|
-
currency: _CURRENCY,
|
|
48
|
-
stockQuantity: 4,
|
|
49
|
-
availableQuantity: 3,
|
|
50
|
-
mainImage: img("nintendo-nes-console"),
|
|
51
|
-
images: [img("nintendo-nes-console"), img("nintendo-nes-box"), img("nintendo-nes-contents")],
|
|
52
|
-
video: {
|
|
53
|
-
url: "https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/SubaruOutbackOnStreetAndDirt.mp4",
|
|
54
|
-
thumbnailUrl: "https://commons.wikimedia.org/wiki/Special:Redirect/file/Nintendo_Entertainment_System.jpg?width=640",
|
|
55
|
-
duration: 30,
|
|
56
|
-
},
|
|
57
|
-
status: "published",
|
|
58
|
-
...RV,
|
|
59
|
-
featured: true,
|
|
60
|
-
tags: ["nintendo", "nes", "retro", "console", "1985", "complete in box", "vintage"],
|
|
61
|
-
specifications: [
|
|
62
|
-
{ name: "Year", value: "1985 (Original)" },
|
|
63
|
-
{ name: "Condition", value: "Working — excellent" },
|
|
64
|
-
{ name: "Contents", value: "Console + 2 controllers + zapper + cables + 2 games" },
|
|
65
|
-
],
|
|
66
|
-
features: ["Fully working console", "Original zapper gun", "Super Mario Bros + Duck Hunt", "Complete original box"],
|
|
67
|
-
shippingInfo: "Padded rigid box. Insured nationwide.",
|
|
68
|
-
returnPolicy: "10-day returns. Must be as described.",
|
|
69
|
-
condition: "used",
|
|
70
|
-
insurance: true,
|
|
71
|
-
insuranceCost: 299,
|
|
72
|
-
shippingPaidBy: "seller",
|
|
73
|
-
isAuction: false,
|
|
74
|
-
isPreOrder: false,
|
|
75
|
-
isPromoted: true,
|
|
76
|
-
promotionEndDate: daysAhead(20),
|
|
77
|
-
avgRating: 4.9,
|
|
78
|
-
reviewCount: 12,
|
|
79
|
-
createdAt: daysAgo(120),
|
|
80
|
-
updatedAt: daysAgo(5),
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
id: "product-rg-snes-console-boxed-rg-2",
|
|
84
|
-
title: "Nintendo SNES Super Console — Complete In Box (1991)",
|
|
85
|
-
description: "<p>Super Nintendo Entertainment System from 1991 — complete with box, console, 2 controllers, and Super Mario World cartridge. Controller buttons have normal wear. Console outputs composite video cleanly. A nostalgia centrepiece that still plays perfectly after 30+ years.</p>",
|
|
86
|
-
slug: "product-nintendo-snes-console-complete-in-box-1991",
|
|
87
|
-
category: "category-retro-nintendo",
|
|
88
|
-
subcategory: "Consoles",
|
|
89
|
-
brand: "Nintendo",
|
|
90
|
-
price: 11999,
|
|
91
|
-
currency: _CURRENCY,
|
|
92
|
-
stockQuantity: 3,
|
|
93
|
-
availableQuantity: 2,
|
|
94
|
-
mainImage: img("nintendo-snes-console"),
|
|
95
|
-
images: [img("nintendo-snes-console"), img("nintendo-snes-controllers")],
|
|
96
|
-
status: "published",
|
|
97
|
-
...RV,
|
|
98
|
-
featured: true,
|
|
99
|
-
tags: ["nintendo", "snes", "super nintendo", "retro", "1991", "complete in box"],
|
|
100
|
-
specifications: [
|
|
101
|
-
{ name: "Year", value: "1991 (Original)" },
|
|
102
|
-
{ name: "Contents", value: "Console + 2 controllers + cables + Super Mario World" },
|
|
103
|
-
],
|
|
104
|
-
features: ["Fully working SNES", "Super Mario World included", "Original SNES box", "Normal controller wear"],
|
|
105
|
-
shippingInfo: "Padded box. Insured nationwide.",
|
|
106
|
-
returnPolicy: "10-day returns.",
|
|
107
|
-
condition: "used",
|
|
108
|
-
insurance: true,
|
|
109
|
-
insuranceCost: 349,
|
|
110
|
-
shippingPaidBy: "seller",
|
|
111
|
-
isAuction: false,
|
|
112
|
-
isPreOrder: false,
|
|
113
|
-
avgRating: 4.8,
|
|
114
|
-
reviewCount: 8,
|
|
115
|
-
createdAt: daysAgo(100),
|
|
116
|
-
updatedAt: daysAgo(7),
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
id: "product-rg-gameboy-original-dmg-rg-3",
|
|
120
|
-
title: "Nintendo Game Boy DMG-01 — Original Grey Brick (1989)",
|
|
121
|
-
description: "<p>The original Game Boy DMG-01 in working condition — the grey brick that started it all. Screen has light scratch (still clear display). Includes battery cover and Tetris cartridge. Authentic 1989 Japanese unit. Yellowing is minimal for age. A true gaming history artefact.</p>",
|
|
122
|
-
slug: "product-nintendo-gameboy-dmg-01-original-1989",
|
|
123
|
-
category: "category-retro-nintendo",
|
|
124
|
-
subcategory: "Handhelds",
|
|
125
|
-
brand: "Nintendo",
|
|
126
|
-
price: 5999,
|
|
127
|
-
currency: _CURRENCY,
|
|
128
|
-
stockQuantity: 6,
|
|
129
|
-
availableQuantity: 5,
|
|
130
|
-
mainImage: img("nintendo-gameboy-dmg"),
|
|
131
|
-
images: [img("nintendo-gameboy-dmg"), img("nintendo-gameboy-tetris")],
|
|
132
|
-
status: "published",
|
|
133
|
-
...RV,
|
|
134
|
-
featured: false,
|
|
135
|
-
tags: ["nintendo", "game boy", "dmg-01", "1989", "original", "retro", "handheld"],
|
|
136
|
-
specifications: [
|
|
137
|
-
{ name: "Year", value: "1989" },
|
|
138
|
-
{ name: "Model", value: "DMG-01" },
|
|
139
|
-
{ name: "Includes", value: "Battery cover + Tetris cartridge" },
|
|
140
|
-
],
|
|
141
|
-
features: ["Original 1989 DMG-01", "Includes Tetris", "Minimal yellowing", "Working speaker and controls"],
|
|
142
|
-
shippingInfo: "Padded protective case. Nationwide.",
|
|
143
|
-
returnPolicy: "10-day returns.",
|
|
144
|
-
condition: "used",
|
|
145
|
-
insurance: false,
|
|
146
|
-
shippingPaidBy: "seller",
|
|
147
|
-
isAuction: false,
|
|
148
|
-
isPreOrder: false,
|
|
149
|
-
avgRating: 4.7,
|
|
150
|
-
reviewCount: 15,
|
|
151
|
-
createdAt: daysAgo(90),
|
|
152
|
-
updatedAt: daysAgo(8),
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
id: "product-rg-n64-console-rg-4",
|
|
156
|
-
title: "Nintendo 64 Console — Charcoal Grey (1997) with Mario Kart 64",
|
|
157
|
-
description: "<p>Nintendo 64 in charcoal grey — working perfectly with 1 original controller and Mario Kart 64 cartridge. Expansion pak slot covered. Analogue stick has typical N64 wear but works well. NTSC-J version (Japan). Plays all region games with adapter (not included).</p>",
|
|
158
|
-
slug: "product-nintendo-64-console-charcoal-mario-kart-1997",
|
|
159
|
-
category: "category-retro-nintendo",
|
|
160
|
-
subcategory: "Consoles",
|
|
161
|
-
brand: "Nintendo",
|
|
162
|
-
price: 7499,
|
|
163
|
-
currency: _CURRENCY,
|
|
164
|
-
stockQuantity: 4,
|
|
165
|
-
availableQuantity: 3,
|
|
166
|
-
mainImage: img("nintendo-n64-console"),
|
|
167
|
-
images: [img("nintendo-n64-console"), img("nintendo-n64-mk64")],
|
|
168
|
-
status: "published",
|
|
169
|
-
...RV,
|
|
170
|
-
featured: false,
|
|
171
|
-
tags: ["nintendo", "n64", "nintendo 64", "1997", "mario kart", "retro"],
|
|
172
|
-
specifications: [
|
|
173
|
-
{ name: "Year", value: "1997" },
|
|
174
|
-
{ name: "Region", value: "NTSC-J" },
|
|
175
|
-
{ name: "Contents", value: "Console + 1 controller + Mario Kart 64" },
|
|
176
|
-
],
|
|
177
|
-
features: ["Working N64 console", "Mario Kart 64 included", "Original controller", "NTSC-J region"],
|
|
178
|
-
shippingInfo: "Padded box. Insured nationwide.",
|
|
179
|
-
returnPolicy: "10-day returns.",
|
|
180
|
-
condition: "used",
|
|
181
|
-
insurance: true,
|
|
182
|
-
insuranceCost: 249,
|
|
183
|
-
shippingPaidBy: "seller",
|
|
184
|
-
isAuction: false,
|
|
185
|
-
isPreOrder: false,
|
|
186
|
-
avgRating: 4.7,
|
|
187
|
-
reviewCount: 9,
|
|
188
|
-
createdAt: daysAgo(80),
|
|
189
|
-
updatedAt: daysAgo(10),
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
id: "product-rg-super-mario-64-sealed-rg-5",
|
|
193
|
-
title: "Super Mario 64 — Factory Sealed NTSC-J Cartridge (1996)",
|
|
194
|
-
description: "<p>Factory-sealed Super Mario 64 N64 cartridge — original 1996 NTSC-J release. Never opened. Seal intact with no tears. The game that defined 3D platforming forever. VGA-comparable seal freshness. Extremely rare to find sealed after 30 years.</p>",
|
|
195
|
-
slug: "product-super-mario-64-factory-sealed-ntscj-1996",
|
|
196
|
-
category: "category-retro-nintendo",
|
|
197
|
-
subcategory: "Cartridges",
|
|
198
|
-
brand: "Nintendo",
|
|
199
|
-
price: 14999,
|
|
200
|
-
currency: _CURRENCY,
|
|
201
|
-
stockQuantity: 1,
|
|
202
|
-
availableQuantity: 1,
|
|
203
|
-
mainImage: img("supermario64-sealed"),
|
|
204
|
-
images: [img("supermario64-sealed"), img("supermario64-seal-close")],
|
|
205
|
-
status: "published",
|
|
206
|
-
...RV,
|
|
207
|
-
featured: true,
|
|
208
|
-
tags: ["nintendo", "super mario 64", "sealed", "ntsc-j", "1996", "n64", "rare"],
|
|
209
|
-
specifications: [
|
|
210
|
-
{ name: "Year", value: "1996 (Original Release)" },
|
|
211
|
-
{ name: "Region", value: "NTSC-J" },
|
|
212
|
-
{ name: "Seal Condition", value: "Intact — no tears" },
|
|
213
|
-
],
|
|
214
|
-
features: ["Factory sealed original", "1996 first printing", "Seal fully intact", "Extremely rare find"],
|
|
215
|
-
shippingInfo: "Protective sleeved box. Insured nationwide.",
|
|
216
|
-
returnPolicy: "10-day returns for factory-sealed items.",
|
|
217
|
-
condition: "new",
|
|
218
|
-
insurance: true,
|
|
219
|
-
insuranceCost: 499,
|
|
220
|
-
shippingPaidBy: "seller",
|
|
221
|
-
isAuction: false,
|
|
222
|
-
isPreOrder: false,
|
|
223
|
-
isPromoted: true,
|
|
224
|
-
promotionEndDate: daysAhead(30),
|
|
225
|
-
avgRating: 0,
|
|
226
|
-
reviewCount: 0,
|
|
227
|
-
createdAt: daysAgo(30),
|
|
228
|
-
updatedAt: daysAgo(3),
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
id: "product-rg-gameboy-color-purple-rg-6",
|
|
232
|
-
title: "Nintendo Game Boy Color — Atomic Purple (GBC, 1998)",
|
|
233
|
-
description: "<p>Game Boy Color in Atomic Purple — transparent chassis showing internal PCB. Near-mint condition, light scratching on back only. Works perfectly with all GBC and original GB games. Comes with Pokemon Gold cartridge. Iconic late-90s design that still looks futuristic today.</p>",
|
|
234
|
-
slug: "product-nintendo-gameboy-color-atomic-purple-1998",
|
|
235
|
-
category: "category-retro-nintendo",
|
|
236
|
-
subcategory: "Handhelds",
|
|
237
|
-
brand: "Nintendo",
|
|
238
|
-
price: 6499,
|
|
239
|
-
currency: _CURRENCY,
|
|
240
|
-
stockQuantity: 5,
|
|
241
|
-
availableQuantity: 4,
|
|
242
|
-
mainImage: img("gameboy-color-purple"),
|
|
243
|
-
images: [img("gameboy-color-purple"), img("gameboy-color-pokemon-gold")],
|
|
244
|
-
status: "published",
|
|
245
|
-
...RV,
|
|
246
|
-
featured: false,
|
|
247
|
-
tags: ["nintendo", "game boy color", "gbc", "atomic purple", "1998", "retro"],
|
|
248
|
-
specifications: [
|
|
249
|
-
{ name: "Year", value: "1998" },
|
|
250
|
-
{ name: "Colour", value: "Atomic Purple (transparent)" },
|
|
251
|
-
{ name: "Includes", value: "Pokemon Gold cartridge" },
|
|
252
|
-
],
|
|
253
|
-
features: ["Transparent atomic purple chassis", "Near-mint condition", "Pokemon Gold included", "Plays GBC + GB games"],
|
|
254
|
-
shippingInfo: "Padded protective case. Nationwide.",
|
|
255
|
-
returnPolicy: "10-day returns.",
|
|
256
|
-
condition: "used",
|
|
257
|
-
insurance: false,
|
|
258
|
-
shippingPaidBy: "seller",
|
|
259
|
-
isAuction: false,
|
|
260
|
-
isPreOrder: false,
|
|
261
|
-
avgRating: 4.8,
|
|
262
|
-
reviewCount: 11,
|
|
263
|
-
createdAt: daysAgo(70),
|
|
264
|
-
updatedAt: daysAgo(6),
|
|
265
|
-
},
|
|
266
|
-
// ── SEGA (5) ─────────────────────────────────────────────────────────────
|
|
267
|
-
{
|
|
268
|
-
id: "product-rg-sega-genesis-model1-rg-7",
|
|
269
|
-
title: "Sega Genesis Model 1 — High Definition Compatible (1989)",
|
|
270
|
-
description: "<p>Original Sega Genesis Model 1 with HDMI upscaler board pre-installed. VA3 motherboard revision — best audio output. Includes Sonic the Hedgehog cartridge. Controller is near mint. The definitive vintage SEGA setup for modern TVs.</p>",
|
|
271
|
-
slug: "product-sega-genesis-model1-hdmi-mod-1989",
|
|
272
|
-
category: "category-retro-sega",
|
|
273
|
-
subcategory: "Consoles",
|
|
274
|
-
brand: "SEGA",
|
|
275
|
-
price: 9999,
|
|
276
|
-
currency: _CURRENCY,
|
|
277
|
-
stockQuantity: 3,
|
|
278
|
-
availableQuantity: 2,
|
|
279
|
-
mainImage: img("sega-genesis-model1"),
|
|
280
|
-
images: [img("sega-genesis-model1"), img("sega-genesis-sonic")],
|
|
281
|
-
status: "published",
|
|
282
|
-
...RV,
|
|
283
|
-
featured: true,
|
|
284
|
-
tags: ["sega", "genesis", "mega drive", "model 1", "hdmi", "1989", "retro"],
|
|
285
|
-
specifications: [
|
|
286
|
-
{ name: "Year", value: "1989 (Original)" },
|
|
287
|
-
{ name: "Mod", value: "HDMI upscaler pre-installed" },
|
|
288
|
-
{ name: "Revision", value: "VA3 (best audio)" },
|
|
289
|
-
{ name: "Includes", value: "Sonic the Hedgehog" },
|
|
290
|
-
],
|
|
291
|
-
features: ["HDMI upscaler mod", "VA3 best audio revision", "Sonic included", "Modern TV compatible"],
|
|
292
|
-
shippingInfo: "Padded box. Insured nationwide.",
|
|
293
|
-
returnPolicy: "10-day returns.",
|
|
294
|
-
condition: "used",
|
|
295
|
-
insurance: true,
|
|
296
|
-
insuranceCost: 299,
|
|
297
|
-
shippingPaidBy: "seller",
|
|
298
|
-
isAuction: false,
|
|
299
|
-
isPreOrder: false,
|
|
300
|
-
avgRating: 4.9,
|
|
301
|
-
reviewCount: 7,
|
|
302
|
-
createdAt: daysAgo(110),
|
|
303
|
-
updatedAt: daysAgo(9),
|
|
304
|
-
},
|
|
305
|
-
{
|
|
306
|
-
id: "product-rg-sega-dreamcast-console-rg-8",
|
|
307
|
-
title: "Sega Dreamcast — White Console with Controller (1998)",
|
|
308
|
-
description: "<p>Sega Dreamcast in white — SEGA's final console and arguably their finest. Includes one VMU memory card, original controller, and Sonic Adventure 2 disc. GD-ROM drive reads well. A legendary console that died too young. Perfect for collectors and those new to retro gaming.</p>",
|
|
309
|
-
slug: "product-sega-dreamcast-console-white-1998",
|
|
310
|
-
category: "category-retro-sega",
|
|
311
|
-
subcategory: "Consoles",
|
|
312
|
-
brand: "SEGA",
|
|
313
|
-
price: 7999,
|
|
314
|
-
currency: _CURRENCY,
|
|
315
|
-
stockQuantity: 4,
|
|
316
|
-
availableQuantity: 3,
|
|
317
|
-
mainImage: img("sega-dreamcast"),
|
|
318
|
-
images: [img("sega-dreamcast"), img("sega-dreamcast-vmu")],
|
|
319
|
-
status: "published",
|
|
320
|
-
...RV,
|
|
321
|
-
featured: false,
|
|
322
|
-
tags: ["sega", "dreamcast", "white", "1998", "retro", "console", "sonic adventure"],
|
|
323
|
-
specifications: [
|
|
324
|
-
{ name: "Year", value: "1998 (Japanese release)" },
|
|
325
|
-
{ name: "Contents", value: "Console + VMU + controller + Sonic Adventure 2" },
|
|
326
|
-
],
|
|
327
|
-
features: ["GD-ROM drive working", "VMU memory card included", "Sonic Adventure 2", "Original controller"],
|
|
328
|
-
shippingInfo: "Padded box. Nationwide.",
|
|
329
|
-
returnPolicy: "10-day returns.",
|
|
330
|
-
condition: "used",
|
|
331
|
-
insurance: true,
|
|
332
|
-
insuranceCost: 249,
|
|
333
|
-
shippingPaidBy: "seller",
|
|
334
|
-
isAuction: false,
|
|
335
|
-
isPreOrder: false,
|
|
336
|
-
avgRating: 4.7,
|
|
337
|
-
reviewCount: 6,
|
|
338
|
-
createdAt: daysAgo(95),
|
|
339
|
-
updatedAt: daysAgo(12),
|
|
340
|
-
},
|
|
341
|
-
{
|
|
342
|
-
id: "product-rg-sega-master-system-rg-9",
|
|
343
|
-
title: "Sega Master System II — Working Console (1986)",
|
|
344
|
-
description: "<p>Sega Master System II — the European/Brazilian blockbuster SEGA console. Includes built-in Alex Kidd in Miracle World game, 2 standard controllers, and 3 cartridges: Sonic the Hedgehog, Wonder Boy, and Fantasy Zone. Composite output tested.</p>",
|
|
345
|
-
slug: "product-sega-master-system-ii-console-1986",
|
|
346
|
-
category: "category-retro-sega",
|
|
347
|
-
subcategory: "Consoles",
|
|
348
|
-
brand: "SEGA",
|
|
349
|
-
price: 4999,
|
|
350
|
-
currency: _CURRENCY,
|
|
351
|
-
stockQuantity: 5,
|
|
352
|
-
availableQuantity: 4,
|
|
353
|
-
mainImage: img("sega-master-system-2"),
|
|
354
|
-
images: [img("sega-master-system-2")],
|
|
355
|
-
status: "published",
|
|
356
|
-
...RV,
|
|
357
|
-
featured: false,
|
|
358
|
-
tags: ["sega", "master system", "sms", "1986", "retro", "alex kidd"],
|
|
359
|
-
specifications: [
|
|
360
|
-
{ name: "Built-in Game", value: "Alex Kidd in Miracle World" },
|
|
361
|
-
{ name: "Includes", value: "2 controllers + 3 cartridges" },
|
|
362
|
-
],
|
|
363
|
-
features: ["Built-in Alex Kidd", "3 extra cartridges", "2 controllers", "Composite tested"],
|
|
364
|
-
shippingInfo: "Padded box. Nationwide.",
|
|
365
|
-
returnPolicy: "10-day returns.",
|
|
366
|
-
condition: "used",
|
|
367
|
-
insurance: false,
|
|
368
|
-
shippingPaidBy: "seller",
|
|
369
|
-
isAuction: false,
|
|
370
|
-
isPreOrder: false,
|
|
371
|
-
avgRating: 4.6,
|
|
372
|
-
reviewCount: 4,
|
|
373
|
-
createdAt: daysAgo(130),
|
|
374
|
-
updatedAt: daysAgo(15),
|
|
375
|
-
},
|
|
376
|
-
{
|
|
377
|
-
id: "product-rg-sonic-hedgehog-genesis-cib-rg-10",
|
|
378
|
-
title: "Sonic the Hedgehog — Genesis Complete In Box (1991 US Release)",
|
|
379
|
-
description: "<p>Original 1991 Sonic the Hedgehog for Sega Genesis in complete-in-box condition. Box has light shelf wear. Manual complete with registration card. Cartridge tested working. The game that put SEGA on the map — an iconic piece of gaming history.</p>",
|
|
380
|
-
slug: "product-sonic-hedgehog-sega-genesis-cib-1991",
|
|
381
|
-
category: "category-retro-sega",
|
|
382
|
-
subcategory: "Cartridges",
|
|
383
|
-
brand: "SEGA",
|
|
384
|
-
price: 3999,
|
|
385
|
-
currency: _CURRENCY,
|
|
386
|
-
stockQuantity: 6,
|
|
387
|
-
availableQuantity: 5,
|
|
388
|
-
mainImage: img("sonic-genesis-cib"),
|
|
389
|
-
images: [img("sonic-genesis-cib"), img("sonic-genesis-manual")],
|
|
390
|
-
status: "published",
|
|
391
|
-
...RV,
|
|
392
|
-
featured: false,
|
|
393
|
-
tags: ["sega", "sonic", "genesis", "mega drive", "1991", "complete in box", "cib"],
|
|
394
|
-
specifications: [
|
|
395
|
-
{ name: "Year", value: "1991" },
|
|
396
|
-
{ name: "Region", value: "NTSC-US" },
|
|
397
|
-
{ name: "Condition", value: "CIB — light shelf wear on box" },
|
|
398
|
-
],
|
|
399
|
-
features: ["Complete in box", "Manual with registration card", "Cartridge tested", "1991 first print"],
|
|
400
|
-
shippingInfo: "Protective sleeve and padded box. Nationwide.",
|
|
401
|
-
returnPolicy: "10-day returns.",
|
|
402
|
-
condition: "used",
|
|
403
|
-
insurance: false,
|
|
404
|
-
shippingPaidBy: "seller",
|
|
405
|
-
isAuction: false,
|
|
406
|
-
isPreOrder: false,
|
|
407
|
-
avgRating: 4.7,
|
|
408
|
-
reviewCount: 10,
|
|
409
|
-
createdAt: daysAgo(75),
|
|
410
|
-
updatedAt: daysAgo(6),
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
id: "product-rg-sega-saturn-console-rg-11",
|
|
414
|
-
title: "Sega Saturn — Grey Console with Nights into Dreams (1994 JP)",
|
|
415
|
-
description: "<p>Sega Saturn in original grey — Japanese 1994 release. Includes Nights Into Dreams disc, one original control pad. Disc tray mechanism tested smooth. NTSC-J region, plays all import titles. A beloved collector's console with exceptional 2D performance and a great library.</p>",
|
|
416
|
-
slug: "product-sega-saturn-console-grey-nights-dreams-jp",
|
|
417
|
-
category: "category-retro-sega",
|
|
418
|
-
subcategory: "Consoles",
|
|
419
|
-
brand: "SEGA",
|
|
420
|
-
price: 8499,
|
|
421
|
-
currency: _CURRENCY,
|
|
422
|
-
stockQuantity: 3,
|
|
423
|
-
availableQuantity: 2,
|
|
424
|
-
mainImage: img("sega-saturn-grey"),
|
|
425
|
-
images: [img("sega-saturn-grey"), img("sega-saturn-nights")],
|
|
426
|
-
status: "published",
|
|
427
|
-
...RV,
|
|
428
|
-
featured: false,
|
|
429
|
-
tags: ["sega", "saturn", "grey", "1994", "nights into dreams", "japanese", "retro"],
|
|
430
|
-
specifications: [
|
|
431
|
-
{ name: "Year", value: "1994 (JP release)" },
|
|
432
|
-
{ name: "Region", value: "NTSC-J" },
|
|
433
|
-
{ name: "Includes", value: "Console + controller + Nights Into Dreams" },
|
|
434
|
-
],
|
|
435
|
-
features: ["NTSC-J original", "Nights Into Dreams included", "Tested disc tray", "Great 2D library"],
|
|
436
|
-
shippingInfo: "Padded box. Insured nationwide.",
|
|
437
|
-
returnPolicy: "10-day returns.",
|
|
438
|
-
condition: "used",
|
|
439
|
-
insurance: true,
|
|
440
|
-
insuranceCost: 249,
|
|
441
|
-
shippingPaidBy: "seller",
|
|
442
|
-
isAuction: false,
|
|
443
|
-
isPreOrder: false,
|
|
444
|
-
avgRating: 4.8,
|
|
445
|
-
reviewCount: 5,
|
|
446
|
-
createdAt: daysAgo(105),
|
|
447
|
-
updatedAt: daysAgo(11),
|
|
448
|
-
},
|
|
449
|
-
// ── VINTAGE DIECAST (7) ───────────────────────────────────────────────────
|
|
450
|
-
{
|
|
451
|
-
id: "product-rg-matchbox-ferrari-250-1960s-rg-12",
|
|
452
|
-
title: "Matchbox Ferrari 250 GTO — 1960s Original Lesney (Loose, EX)",
|
|
453
|
-
description: "<p>Original 1960s Matchbox Ferrari 250 GTO by Lesney — red body, smooth wheels, grey plastic base. Excellent condition for age with minimal paint wear. A true vintage die-cast from when Matchbox was the undisputed king of 1:64 scale. No box but figure is in excellent shape.</p>",
|
|
454
|
-
slug: "product-matchbox-ferrari-250-gto-1960s-lesney-loose",
|
|
455
|
-
category: "category-vintage-diecast",
|
|
456
|
-
subcategory: "Matchbox Lesney",
|
|
457
|
-
brand: "Matchbox",
|
|
458
|
-
price: 1999,
|
|
459
|
-
currency: _CURRENCY,
|
|
460
|
-
stockQuantity: 8,
|
|
461
|
-
availableQuantity: 7,
|
|
462
|
-
mainImage: img("matchbox-ferrari-1960s"),
|
|
463
|
-
images: [img("matchbox-ferrari-1960s"), img("matchbox-ferrari-bottom")],
|
|
464
|
-
status: "published",
|
|
465
|
-
...RV,
|
|
466
|
-
featured: false,
|
|
467
|
-
tags: ["matchbox", "lesney", "ferrari", "250 gto", "1960s", "vintage", "diecast"],
|
|
468
|
-
specifications: [
|
|
469
|
-
{ name: "Era", value: "1960s (Original Lesney)" },
|
|
470
|
-
{ name: "Scale", value: "1:64 approximate" },
|
|
471
|
-
{ name: "Condition", value: "Excellent — minimal paint wear" },
|
|
472
|
-
],
|
|
473
|
-
features: ["1960s Lesney original", "Red Ferrari body", "Smooth wheels", "Minimal wear"],
|
|
474
|
-
shippingInfo: "Bubble wrapped protective box. Nationwide.",
|
|
475
|
-
returnPolicy: "10-day returns.",
|
|
476
|
-
condition: "used",
|
|
477
|
-
insurance: false,
|
|
478
|
-
shippingPaidBy: "seller",
|
|
479
|
-
isAuction: false,
|
|
480
|
-
isPreOrder: false,
|
|
481
|
-
avgRating: 4.6,
|
|
482
|
-
reviewCount: 6,
|
|
483
|
-
createdAt: daysAgo(150),
|
|
484
|
-
updatedAt: daysAgo(14),
|
|
485
|
-
},
|
|
486
|
-
{
|
|
487
|
-
id: "product-rg-corgi-aston-martin-db5-rg-13",
|
|
488
|
-
title: "Corgi James Bond Aston Martin DB5 — 1965 Original (Boxed)",
|
|
489
|
-
description: "<p>Original 1965 Corgi James Bond Aston Martin DB5 with ejector seat function — the most famous toy car ever made. Original box with wear, car in VG condition. Ejector seat mechanism works. Passenger figures present. Roof-mounted machine gun covers intact. Numbered 261.</p>",
|
|
490
|
-
slug: "product-corgi-james-bond-aston-martin-db5-1965-boxed",
|
|
491
|
-
category: "category-vintage-diecast",
|
|
492
|
-
subcategory: "Corgi",
|
|
493
|
-
brand: "Corgi",
|
|
494
|
-
price: 12999,
|
|
495
|
-
currency: _CURRENCY,
|
|
496
|
-
stockQuantity: 2,
|
|
497
|
-
availableQuantity: 1,
|
|
498
|
-
mainImage: img("corgi-aston-db5-bond"),
|
|
499
|
-
images: [img("corgi-aston-db5-bond"), img("corgi-aston-db5-box"), img("corgi-aston-db5-ejector")],
|
|
500
|
-
status: "published",
|
|
501
|
-
...RV,
|
|
502
|
-
featured: true,
|
|
503
|
-
tags: ["corgi", "james bond", "aston martin", "db5", "1965", "original", "boxed", "vintage"],
|
|
504
|
-
specifications: [
|
|
505
|
-
{ name: "Year", value: "1965 (Original Corgi 261)" },
|
|
506
|
-
{ name: "Model No.", value: "261" },
|
|
507
|
-
{ name: "Car Condition", value: "Very Good" },
|
|
508
|
-
{ name: "Box Condition", value: "Good — wear" },
|
|
509
|
-
{ name: "Ejector Seat", value: "Working" },
|
|
510
|
-
],
|
|
511
|
-
features: ["Working ejector seat", "Passenger figures included", "Machine gun covers intact", "Original 1965 261 release"],
|
|
512
|
-
shippingInfo: "Protected collector box. Insured nationwide.",
|
|
513
|
-
returnPolicy: "10-day returns for as-described condition.",
|
|
514
|
-
condition: "used",
|
|
515
|
-
insurance: true,
|
|
516
|
-
insuranceCost: 399,
|
|
517
|
-
shippingPaidBy: "seller",
|
|
518
|
-
isAuction: false,
|
|
519
|
-
isPreOrder: false,
|
|
520
|
-
isPromoted: true,
|
|
521
|
-
promotionEndDate: daysAhead(15),
|
|
522
|
-
avgRating: 5.0,
|
|
523
|
-
reviewCount: 3,
|
|
524
|
-
createdAt: daysAgo(60),
|
|
525
|
-
updatedAt: daysAgo(4),
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
id: "product-rg-dinky-spitfire-ww2-rg-14",
|
|
529
|
-
title: "Dinky Toys Spitfire — WWII 1/72 Scale Original (1970s)",
|
|
530
|
-
description: "<p>Dinky Toys Spitfire in 1/72 scale — WWII fighter plane from the 1970s Dinky military aircraft range. Die-cast with fabric-printed transfer roundel markings. Retractable undercarriage. Original box shows moderate wear, plane in very good condition with all decals.</p>",
|
|
531
|
-
slug: "product-dinky-toys-spitfire-ww2-1970s-original",
|
|
532
|
-
category: "category-vintage-diecast",
|
|
533
|
-
subcategory: "Dinky Toys",
|
|
534
|
-
brand: "Dinky",
|
|
535
|
-
price: 3499,
|
|
536
|
-
currency: _CURRENCY,
|
|
537
|
-
stockQuantity: 5,
|
|
538
|
-
availableQuantity: 4,
|
|
539
|
-
mainImage: img("dinky-spitfire-ww2"),
|
|
540
|
-
images: [img("dinky-spitfire-ww2"), img("dinky-spitfire-box")],
|
|
541
|
-
status: "published",
|
|
542
|
-
...RV,
|
|
543
|
-
featured: false,
|
|
544
|
-
tags: ["dinky", "spitfire", "ww2", "military", "aircraft", "1970s", "vintage", "diecast"],
|
|
545
|
-
specifications: [
|
|
546
|
-
{ name: "Scale", value: "1:72" },
|
|
547
|
-
{ name: "Era", value: "1970s" },
|
|
548
|
-
{ name: "Type", value: "WWII Military Aircraft" },
|
|
549
|
-
],
|
|
550
|
-
features: ["Retractable undercarriage", "Roundel transfer decals", "1970s original", "WWII military deco"],
|
|
551
|
-
shippingInfo: "Padded box. Nationwide.",
|
|
552
|
-
returnPolicy: "10-day returns.",
|
|
553
|
-
condition: "used",
|
|
554
|
-
insurance: false,
|
|
555
|
-
shippingPaidBy: "seller",
|
|
556
|
-
isAuction: false,
|
|
557
|
-
isPreOrder: false,
|
|
558
|
-
avgRating: 4.5,
|
|
559
|
-
reviewCount: 5,
|
|
560
|
-
createdAt: daysAgo(140),
|
|
561
|
-
updatedAt: daysAgo(18),
|
|
562
|
-
},
|
|
563
|
-
{
|
|
564
|
-
id: "product-rg-britains-soldiers-set-rg-15",
|
|
565
|
-
title: "Britain's Diecast Soldiers — Cold War Era Set (1960s, Boxed)",
|
|
566
|
-
description: "<p>Britain's Diecast Toy Soldiers in original box — Cold War era infantry set from the 1960s. 12 figures in khaki with full complement of rifles, machine guns, and mortar. Box is complete but worn. Figures are in excellent marching and firing poses. Rare complete set.</p>",
|
|
567
|
-
slug: "product-britains-toy-soldiers-cold-war-1960s-set",
|
|
568
|
-
category: "category-vintage-diecast",
|
|
569
|
-
subcategory: "Britain's",
|
|
570
|
-
brand: "Britain's",
|
|
571
|
-
price: 4999,
|
|
572
|
-
currency: _CURRENCY,
|
|
573
|
-
stockQuantity: 3,
|
|
574
|
-
availableQuantity: 2,
|
|
575
|
-
mainImage: img("britains-soldiers-1960s"),
|
|
576
|
-
images: [img("britains-soldiers-1960s"), img("britains-soldiers-box")],
|
|
577
|
-
status: "published",
|
|
578
|
-
...RV,
|
|
579
|
-
featured: false,
|
|
580
|
-
tags: ["britains", "toy soldiers", "diecast", "cold war", "1960s", "vintage", "boxed"],
|
|
581
|
-
specifications: [
|
|
582
|
-
{ name: "Era", value: "1960s Cold War" },
|
|
583
|
-
{ name: "Contents", value: "12 infantry figures + weapons" },
|
|
584
|
-
],
|
|
585
|
-
features: ["12 figure complete set", "Rifles + mortar accessories", "Cold War khaki uniforms", "Original Britain's box"],
|
|
586
|
-
shippingInfo: "Padded rigid box. Nationwide.",
|
|
587
|
-
returnPolicy: "10-day returns.",
|
|
588
|
-
condition: "used",
|
|
589
|
-
insurance: false,
|
|
590
|
-
shippingPaidBy: "seller",
|
|
591
|
-
isAuction: false,
|
|
592
|
-
isPreOrder: false,
|
|
593
|
-
avgRating: 4.6,
|
|
594
|
-
reviewCount: 4,
|
|
595
|
-
createdAt: daysAgo(160),
|
|
596
|
-
updatedAt: daysAgo(20),
|
|
597
|
-
},
|
|
598
|
-
{
|
|
599
|
-
id: "product-rg-hot-wheels-redline-camaro-rg-16",
|
|
600
|
-
title: "Hot Wheels Redline Camaro — 1968 Original Spectraflame (Rare)",
|
|
601
|
-
description: "<p>Original 1968 Hot Wheels Redline Camaro in Spectraflame red — the very first generation of Hot Wheels cars. Redline wheels (the rare original rubber tires) intact on all four corners. Minimal paint wear for a 55-year-old toy. This is what started the Hot Wheels legend.</p>",
|
|
602
|
-
slug: "product-hot-wheels-redline-camaro-1968-spectraflame-original",
|
|
603
|
-
category: "category-vintage-diecast",
|
|
604
|
-
subcategory: "Hot Wheels Redlines",
|
|
605
|
-
brand: "Hot Wheels",
|
|
606
|
-
price: 8999,
|
|
607
|
-
currency: _CURRENCY,
|
|
608
|
-
stockQuantity: 3,
|
|
609
|
-
availableQuantity: 2,
|
|
610
|
-
mainImage: img("hw-redline-camaro-1968"),
|
|
611
|
-
images: [img("hw-redline-camaro-1968"), img("hw-redline-camaro-wheels")],
|
|
612
|
-
status: "published",
|
|
613
|
-
...RV,
|
|
614
|
-
featured: true,
|
|
615
|
-
tags: ["hot wheels", "redline", "camaro", "1968", "spectraflame", "original", "vintage", "rare"],
|
|
616
|
-
specifications: [
|
|
617
|
-
{ name: "Year", value: "1968 (First Generation)" },
|
|
618
|
-
{ name: "Wheels", value: "Original Redline" },
|
|
619
|
-
{ name: "Finish", value: "Spectraflame Red" },
|
|
620
|
-
],
|
|
621
|
-
features: ["Original 1968 first-gen Hot Wheels", "All-four Redline wheels intact", "Spectraflame metallic finish", "55+ year old toy in great shape"],
|
|
622
|
-
shippingInfo: "Collector sleeve and padded box. Insured nationwide.",
|
|
623
|
-
returnPolicy: "10-day returns.",
|
|
624
|
-
condition: "used",
|
|
625
|
-
insurance: true,
|
|
626
|
-
insuranceCost: 299,
|
|
627
|
-
shippingPaidBy: "seller",
|
|
628
|
-
isAuction: false,
|
|
629
|
-
isPreOrder: false,
|
|
630
|
-
isPromoted: true,
|
|
631
|
-
promotionEndDate: daysAhead(25),
|
|
632
|
-
avgRating: 5.0,
|
|
633
|
-
reviewCount: 2,
|
|
634
|
-
createdAt: daysAgo(50),
|
|
635
|
-
updatedAt: daysAgo(3),
|
|
636
|
-
},
|
|
637
|
-
{
|
|
638
|
-
id: "product-rg-tonka-steel-truck-1970s-rg-17",
|
|
639
|
-
title: "Tonka Steel Pressed Dump Truck — 1970s Original (Large Scale)",
|
|
640
|
-
description: "<p>Original 1970s Tonka steel pressed dump truck in classic yellow — the indestructible steel toy that defined an era. Large scale (~40 cm) with working dump bed raise/lower lever. Surface rust on underside only; exterior paint remarkably intact. A genuine nostalgia centrepiece.</p>",
|
|
641
|
-
slug: "product-tonka-steel-pressed-dump-truck-1970s-yellow",
|
|
642
|
-
category: "category-vintage-diecast",
|
|
643
|
-
subcategory: "Tonka Steel",
|
|
644
|
-
brand: "Tonka",
|
|
645
|
-
price: 3999,
|
|
646
|
-
currency: _CURRENCY,
|
|
647
|
-
stockQuantity: 4,
|
|
648
|
-
availableQuantity: 3,
|
|
649
|
-
mainImage: img("tonka-dump-truck-1970s"),
|
|
650
|
-
images: [img("tonka-dump-truck-1970s"), img("tonka-dump-truck-bed")],
|
|
651
|
-
status: "published",
|
|
652
|
-
...RV,
|
|
653
|
-
featured: false,
|
|
654
|
-
tags: ["tonka", "steel", "dump truck", "1970s", "vintage", "yellow", "pressed steel"],
|
|
655
|
-
specifications: [
|
|
656
|
-
{ name: "Era", value: "1970s" },
|
|
657
|
-
{ name: "Material", value: "Pressed steel" },
|
|
658
|
-
{ name: "Length", value: "~40 cm" },
|
|
659
|
-
{ name: "Mechanism", value: "Working dump bed" },
|
|
660
|
-
],
|
|
661
|
-
features: ["Working dump bed lever", "Pressed steel construction", "Classic yellow paint", "Minimal surface rust"],
|
|
662
|
-
shippingInfo: "Padded heavy box. Nationwide.",
|
|
663
|
-
returnPolicy: "10-day returns.",
|
|
664
|
-
condition: "used",
|
|
665
|
-
insurance: false,
|
|
666
|
-
shippingPaidBy: "buyer",
|
|
667
|
-
isAuction: false,
|
|
668
|
-
isPreOrder: false,
|
|
669
|
-
avgRating: 4.5,
|
|
670
|
-
reviewCount: 7,
|
|
671
|
-
createdAt: daysAgo(170),
|
|
672
|
-
updatedAt: daysAgo(22),
|
|
673
|
-
},
|
|
674
|
-
{
|
|
675
|
-
id: "product-rg-schuco-micro-racer-rg-18",
|
|
676
|
-
title: "Schuco Micro Racer — Wind-Up German Tin Car (1960s)",
|
|
677
|
-
description: "<p>Schuco Micro Racer wind-up tin car from the 1960s — the pinnacle of German toy engineering. Ferrari-inspired red body with working wind-up key mechanism. Steerable front wheels via key. Box present but heavily worn. Car mechanism works perfectly after 60+ years.</p>",
|
|
678
|
-
slug: "product-schuco-micro-racer-wind-up-1960s-german",
|
|
679
|
-
category: "category-vintage-diecast",
|
|
680
|
-
subcategory: "Schuco",
|
|
681
|
-
brand: "Schuco",
|
|
682
|
-
price: 6999,
|
|
683
|
-
currency: _CURRENCY,
|
|
684
|
-
stockQuantity: 2,
|
|
685
|
-
availableQuantity: 1,
|
|
686
|
-
mainImage: img("schuco-micro-racer-1960s"),
|
|
687
|
-
images: [img("schuco-micro-racer-1960s"), img("schuco-micro-racer-key")],
|
|
688
|
-
status: "published",
|
|
689
|
-
...RV,
|
|
690
|
-
featured: true,
|
|
691
|
-
tags: ["schuco", "micro racer", "wind-up", "tin", "1960s", "german", "vintage"],
|
|
692
|
-
specifications: [
|
|
693
|
-
{ name: "Era", value: "1960s (West Germany)" },
|
|
694
|
-
{ name: "Mechanism", value: "Wind-up key" },
|
|
695
|
-
{ name: "Material", value: "Tin plate" },
|
|
696
|
-
],
|
|
697
|
-
features: ["Working wind-up mechanism", "Steerable front wheels", "Ferrari-inspired body", "German tin plate engineering"],
|
|
698
|
-
shippingInfo: "Padded protective box. Insured nationwide.",
|
|
699
|
-
returnPolicy: "10-day returns.",
|
|
700
|
-
condition: "used",
|
|
701
|
-
insurance: true,
|
|
702
|
-
insuranceCost: 199,
|
|
703
|
-
shippingPaidBy: "seller",
|
|
704
|
-
isAuction: false,
|
|
705
|
-
isPreOrder: false,
|
|
706
|
-
avgRating: 4.8,
|
|
707
|
-
reviewCount: 3,
|
|
708
|
-
createdAt: daysAgo(80),
|
|
709
|
-
updatedAt: daysAgo(5),
|
|
710
|
-
},
|
|
711
|
-
// ── AUCTION (1) ───────────────────────────────────────────────────────────
|
|
712
|
-
{
|
|
713
|
-
id: "auction-rg-nes-punch-out-sealed-rg-1",
|
|
714
|
-
title: "AUCTION — Mike Tyson's Punch-Out!! NES Factory Sealed (1987)",
|
|
715
|
-
description: "<p>Factory sealed Mike Tyson's Punch-Out!! for NES — original 1987 US release with H-Seam seal intact. This is one of the most iconic NES games and extremely hard to find sealed. Professional authentication by WATA Games (graded 7.0 A+ seal). Reserve your bid now.</p>",
|
|
716
|
-
slug: "auction-nes-mike-tysons-punch-out-sealed-1987",
|
|
717
|
-
category: "category-retro-nintendo",
|
|
718
|
-
subcategory: "Sealed Cartridges",
|
|
719
|
-
brand: "Nintendo",
|
|
720
|
-
price: 0,
|
|
721
|
-
currency: _CURRENCY,
|
|
722
|
-
stockQuantity: 1,
|
|
723
|
-
availableQuantity: 1,
|
|
724
|
-
mainImage: img("nes-punchout-sealed"),
|
|
725
|
-
images: [img("nes-punchout-sealed"), img("nes-punchout-seal"), img("nes-punchout-wata")],
|
|
726
|
-
status: "published",
|
|
727
|
-
...RV,
|
|
728
|
-
featured: true,
|
|
729
|
-
tags: ["nes", "punch-out", "mike tyson", "sealed", "1987", "auction", "wata", "graded"],
|
|
730
|
-
specifications: [
|
|
731
|
-
{ name: "Year", value: "1987 (H-Seam US Release)" },
|
|
732
|
-
{ name: "Grade", value: "WATA 7.0 A+" },
|
|
733
|
-
{ name: "Seal", value: "H-Seam intact" },
|
|
734
|
-
],
|
|
735
|
-
features: ["WATA graded 7.0 A+", "H-Seam seal intact", "1987 original printing", "Professional authentication"],
|
|
736
|
-
shippingInfo: "Graded slab protective shipping. Insured nationwide.",
|
|
737
|
-
returnPolicy: "No returns on auction wins.",
|
|
738
|
-
condition: "new",
|
|
739
|
-
insurance: true,
|
|
740
|
-
insuranceCost: 999,
|
|
741
|
-
shippingPaidBy: "buyer",
|
|
742
|
-
isAuction: true,
|
|
743
|
-
auctionEndDate: daysAhead(12),
|
|
744
|
-
startingBid: 14999,
|
|
745
|
-
currentBid: 22000,
|
|
746
|
-
bidCount: 11,
|
|
747
|
-
reservePrice: 28000,
|
|
748
|
-
buyNowPrice: 69999,
|
|
749
|
-
minBidIncrement: 1000,
|
|
750
|
-
autoExtendable: true,
|
|
751
|
-
auctionExtensionMinutes: 10,
|
|
752
|
-
auctionOriginalEndDate: daysAhead(12),
|
|
753
|
-
auctionShippingPaidBy: "winner",
|
|
754
|
-
isPreOrder: false,
|
|
755
|
-
isPromoted: true,
|
|
756
|
-
promotionEndDate: daysAhead(12),
|
|
757
|
-
avgRating: 0,
|
|
758
|
-
reviewCount: 0,
|
|
759
|
-
createdAt: daysAgo(3),
|
|
760
|
-
updatedAt: daysAgo(0),
|
|
761
|
-
},
|
|
762
|
-
// ── PRE-ORDER (1) ─────────────────────────────────────────────────────────
|
|
763
|
-
{
|
|
764
|
-
id: "preorder-rg-nintendo-classic-mini-2026-rg-1",
|
|
765
|
-
title: "PRE-ORDER — Nintendo Classic Mini Super NES 2026 Edition (Rumoured)",
|
|
766
|
-
description: "<p>Reserve our notification spot for the rumoured Nintendo Classic Mini Super NES 2026 re-issue. Get priority access when Nintendo confirms the release. Our store allocation is limited to 20 units. No payment taken until dispatch confirmed. Register interest now to avoid missing out.</p>",
|
|
767
|
-
slug: "preorder-nintendo-classic-mini-snes-2026",
|
|
768
|
-
category: "category-retro-nintendo",
|
|
769
|
-
subcategory: "Mini Classics",
|
|
770
|
-
brand: "Nintendo",
|
|
771
|
-
price: 7999,
|
|
772
|
-
currency: _CURRENCY,
|
|
773
|
-
stockQuantity: 20,
|
|
774
|
-
availableQuantity: 17,
|
|
775
|
-
mainImage: img("nintendo-mini-snes-2026"),
|
|
776
|
-
images: [img("nintendo-mini-snes-2026")],
|
|
777
|
-
status: "published",
|
|
778
|
-
...RV,
|
|
779
|
-
featured: false,
|
|
780
|
-
tags: ["nintendo", "classic mini", "snes", "pre-order", "2026", "rumoured"],
|
|
781
|
-
specifications: [
|
|
782
|
-
{ name: "Expected", value: "Q2 2026 (subject to Nintendo confirmation)" },
|
|
783
|
-
{ name: "Store Allocation", value: "20 units" },
|
|
784
|
-
],
|
|
785
|
-
features: ["Priority allocation", "No payment until dispatch", "Interest registration", "India-first allocation"],
|
|
786
|
-
shippingInfo: "Dispatched on Nintendo release.",
|
|
787
|
-
returnPolicy: "Full cancellation available any time before dispatch.",
|
|
788
|
-
condition: "new",
|
|
789
|
-
insurance: false,
|
|
790
|
-
shippingPaidBy: "seller",
|
|
791
|
-
isAuction: false,
|
|
792
|
-
isPreOrder: true,
|
|
793
|
-
preOrderDeliveryDate: daysAhead(160),
|
|
794
|
-
preOrderProductionStatus: "upcoming",
|
|
795
|
-
isPromoted: false,
|
|
796
|
-
avgRating: 0,
|
|
797
|
-
reviewCount: 0,
|
|
798
|
-
createdAt: daysAgo(10),
|
|
799
|
-
updatedAt: daysAgo(2),
|
|
800
|
-
},
|
|
801
|
-
];
|