@mohasinac/appkit 2.4.10 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_internal/client/features/products/index.d.ts +1 -0
- package/dist/_internal/client/features/products/index.js +3 -0
- package/dist/_internal/client/i18n/LabelsProvider.d.ts +13 -0
- package/dist/_internal/client/i18n/LabelsProvider.js +38 -0
- package/dist/_internal/client/index.d.ts +0 -0
- package/dist/_internal/client/index.js +4 -0
- package/dist/_internal/client/scaffolds/AppShell.d.ts +39 -0
- package/dist/_internal/client/scaffolds/AppShell.js +9 -0
- package/dist/_internal/client/scaffolds/DashboardScaffold.d.ts +34 -0
- package/dist/_internal/client/scaffolds/DashboardScaffold.js +23 -0
- package/dist/_internal/client/scaffolds/index.d.ts +4 -0
- package/dist/_internal/client/scaffolds/index.js +2 -0
- package/dist/_internal/server/features/account/actions.d.ts +7 -0
- package/dist/_internal/server/features/account/actions.js +7 -0
- package/dist/_internal/server/features/account/data.d.ts +17 -0
- package/dist/_internal/server/features/account/data.js +25 -0
- package/dist/_internal/server/features/account/index.d.ts +2 -0
- package/dist/_internal/server/features/account/index.js +2 -0
- package/dist/_internal/server/features/auctions/actions.d.ts +1 -0
- package/dist/_internal/server/features/auctions/actions.js +44 -0
- package/dist/_internal/server/features/auctions/data.d.ts +4 -0
- package/dist/_internal/server/features/auctions/data.js +9 -0
- package/dist/_internal/server/features/auctions/index.d.ts +5 -0
- package/dist/_internal/server/features/auctions/index.js +5 -0
- package/dist/_internal/server/features/auctions/og.d.ts +19 -0
- package/dist/_internal/server/features/auctions/og.js +51 -0
- package/dist/_internal/server/features/auctions/service.d.ts +13 -0
- package/dist/_internal/server/features/auctions/service.js +57 -0
- package/dist/_internal/server/features/auth/actions.d.ts +8 -0
- package/dist/_internal/server/features/auth/actions.js +8 -0
- package/dist/_internal/server/features/auth/index.d.ts +1 -0
- package/dist/_internal/server/features/auth/index.js +1 -0
- package/dist/_internal/server/features/blog/actions.d.ts +5 -0
- package/dist/_internal/server/features/blog/actions.js +51 -0
- package/dist/_internal/server/features/blog/data.d.ts +2 -0
- package/dist/_internal/server/features/blog/data.js +8 -0
- package/dist/_internal/server/features/blog/index.d.ts +5 -0
- package/dist/_internal/server/features/blog/index.js +5 -0
- package/dist/_internal/server/features/blog/og.d.ts +23 -0
- package/dist/_internal/server/features/blog/og.js +64 -0
- package/dist/_internal/server/features/blog/service.d.ts +3 -0
- package/dist/_internal/server/features/blog/service.js +18 -0
- package/dist/_internal/server/features/brands/actions.d.ts +4 -0
- package/dist/_internal/server/features/brands/actions.js +32 -0
- package/dist/_internal/server/features/brands/data.d.ts +12 -0
- package/dist/_internal/server/features/brands/data.js +16 -0
- package/dist/_internal/server/features/brands/index.d.ts +5 -0
- package/dist/_internal/server/features/brands/index.js +5 -0
- package/dist/_internal/server/features/brands/og.d.ts +17 -0
- package/dist/_internal/server/features/brands/og.js +37 -0
- package/dist/_internal/server/features/brands/service.d.ts +3 -0
- package/dist/_internal/server/features/brands/service.js +14 -0
- package/dist/_internal/server/features/bundles/data.d.ts +9 -0
- package/dist/_internal/server/features/bundles/data.js +9 -0
- package/dist/_internal/server/features/bundles/index.d.ts +2 -0
- package/dist/_internal/server/features/bundles/index.js +2 -0
- package/dist/_internal/server/features/cart/actions.d.ts +12 -0
- package/dist/_internal/server/features/cart/actions.js +35 -0
- package/dist/_internal/server/features/cart/data.d.ts +1 -0
- package/dist/_internal/server/features/cart/data.js +5 -0
- package/dist/_internal/server/features/cart/index.d.ts +4 -0
- package/dist/_internal/server/features/cart/index.js +4 -0
- package/dist/_internal/server/features/cart/service.d.ts +8 -0
- package/dist/_internal/server/features/cart/service.js +25 -0
- package/dist/_internal/server/features/categories/data.d.ts +13 -0
- package/dist/_internal/server/features/categories/data.js +40 -0
- package/dist/_internal/server/features/categories/index.d.ts +2 -0
- package/dist/_internal/server/features/categories/index.js +2 -0
- package/dist/_internal/server/features/checkout/actions.d.ts +35 -0
- package/dist/_internal/server/features/checkout/actions.js +327 -0
- package/dist/_internal/server/features/checkout/data.d.ts +13 -0
- package/dist/_internal/server/features/checkout/data.js +13 -0
- package/dist/_internal/server/features/checkout/index.d.ts +3 -0
- package/dist/_internal/server/features/checkout/index.js +3 -0
- package/dist/_internal/server/features/events/actions.d.ts +4 -0
- package/dist/_internal/server/features/events/actions.js +60 -0
- package/dist/_internal/server/features/events/data.d.ts +1 -0
- package/dist/_internal/server/features/events/data.js +5 -0
- package/dist/_internal/server/features/events/index.d.ts +5 -0
- package/dist/_internal/server/features/events/index.js +5 -0
- package/dist/_internal/server/features/events/og.d.ts +26 -0
- package/dist/_internal/server/features/events/og.js +87 -0
- package/dist/_internal/server/features/events/service.d.ts +2 -0
- package/dist/_internal/server/features/events/service.js +27 -0
- package/dist/_internal/server/features/grouped/data.d.ts +25 -0
- package/dist/_internal/server/features/grouped/data.js +116 -0
- package/dist/_internal/server/features/grouped/index.d.ts +2 -0
- package/dist/_internal/server/features/grouped/index.js +2 -0
- package/dist/_internal/server/features/history/actions.d.ts +8 -0
- package/dist/_internal/server/features/history/actions.js +15 -0
- package/dist/_internal/server/features/history/data.d.ts +7 -0
- package/dist/_internal/server/features/history/data.js +6 -0
- package/dist/_internal/server/features/history/index.d.ts +3 -0
- package/dist/_internal/server/features/history/index.js +3 -0
- package/dist/_internal/server/features/homepage/data.d.ts +18 -0
- package/dist/_internal/server/features/homepage/data.js +39 -0
- package/dist/_internal/server/features/homepage/index.d.ts +2 -0
- package/dist/_internal/server/features/homepage/index.js +2 -0
- package/dist/_internal/server/features/messages/actions.d.ts +6 -0
- package/dist/_internal/server/features/messages/actions.js +6 -0
- package/dist/_internal/server/features/messages/data.d.ts +10 -0
- package/dist/_internal/server/features/messages/data.js +24 -0
- package/dist/_internal/server/features/messages/index.d.ts +2 -0
- package/dist/_internal/server/features/messages/index.js +2 -0
- package/dist/_internal/server/features/orders/actions.d.ts +4 -0
- package/dist/_internal/server/features/orders/actions.js +50 -0
- package/dist/_internal/server/features/orders/adapters.d.ts +3 -0
- package/dist/_internal/server/features/orders/adapters.js +56 -0
- package/dist/_internal/server/features/orders/data.d.ts +10 -0
- package/dist/_internal/server/features/orders/data.js +18 -0
- package/dist/_internal/server/features/orders/index.d.ts +5 -0
- package/dist/_internal/server/features/orders/index.js +5 -0
- package/dist/_internal/server/features/orders/service.d.ts +4 -0
- package/dist/_internal/server/features/orders/service.js +30 -0
- package/dist/_internal/server/features/payments/actions.d.ts +30 -0
- package/dist/_internal/server/features/payments/actions.js +45 -0
- package/dist/_internal/server/features/payments/data.d.ts +11 -0
- package/dist/_internal/server/features/payments/data.js +14 -0
- package/dist/_internal/server/features/payments/index.d.ts +3 -0
- package/dist/_internal/server/features/payments/index.js +3 -0
- package/dist/_internal/server/features/pre-orders/actions.d.ts +7 -0
- package/dist/_internal/server/features/pre-orders/actions.js +26 -0
- package/dist/_internal/server/features/pre-orders/data.d.ts +4 -0
- package/dist/_internal/server/features/pre-orders/data.js +9 -0
- package/dist/_internal/server/features/pre-orders/index.d.ts +5 -0
- package/dist/_internal/server/features/pre-orders/index.js +5 -0
- package/dist/_internal/server/features/pre-orders/og.d.ts +19 -0
- package/dist/_internal/server/features/pre-orders/og.js +49 -0
- package/dist/_internal/server/features/pre-orders/service.d.ts +7 -0
- package/dist/_internal/server/features/pre-orders/service.js +30 -0
- package/dist/_internal/server/features/products/actions.d.ts +7 -0
- package/dist/_internal/server/features/products/actions.js +74 -0
- package/dist/_internal/server/features/products/data.d.ts +14 -0
- package/dist/_internal/server/features/products/data.js +48 -0
- package/dist/_internal/server/features/products/index.d.ts +5 -0
- package/dist/_internal/server/features/products/index.js +5 -0
- package/dist/_internal/server/features/products/og.d.ts +19 -0
- package/dist/_internal/server/features/products/og.js +43 -0
- package/dist/_internal/server/features/products/service.d.ts +11 -0
- package/dist/_internal/server/features/products/service.js +55 -0
- package/dist/_internal/server/features/profile/index.d.ts +1 -0
- package/dist/_internal/server/features/profile/index.js +1 -0
- package/dist/_internal/server/features/profile/og.d.ts +26 -0
- package/dist/_internal/server/features/profile/og.js +91 -0
- package/dist/_internal/server/features/promotions/actions.d.ts +9 -0
- package/dist/_internal/server/features/promotions/actions.js +38 -0
- package/dist/_internal/server/features/promotions/data.d.ts +1 -0
- package/dist/_internal/server/features/promotions/data.js +5 -0
- package/dist/_internal/server/features/promotions/index.d.ts +4 -0
- package/dist/_internal/server/features/promotions/index.js +4 -0
- package/dist/_internal/server/features/promotions/service.d.ts +3 -0
- package/dist/_internal/server/features/promotions/service.js +47 -0
- package/dist/_internal/server/features/reviews/actions.d.ts +4 -0
- package/dist/_internal/server/features/reviews/actions.js +66 -0
- package/dist/_internal/server/features/reviews/data.d.ts +10 -0
- package/dist/_internal/server/features/reviews/data.js +18 -0
- package/dist/_internal/server/features/reviews/index.d.ts +3 -0
- package/dist/_internal/server/features/reviews/index.js +3 -0
- package/dist/_internal/server/features/reviews/service.d.ts +5 -0
- package/dist/_internal/server/features/reviews/service.js +27 -0
- package/dist/_internal/server/features/scams/data.d.ts +10 -0
- package/dist/_internal/server/features/scams/data.js +22 -0
- package/dist/_internal/server/features/scams/index.d.ts +1 -0
- package/dist/_internal/server/features/scams/index.js +1 -0
- package/dist/_internal/server/features/search/actions.d.ts +15 -0
- package/dist/_internal/server/features/search/actions.js +18 -0
- package/dist/_internal/server/features/search/data.d.ts +15 -0
- package/dist/_internal/server/features/search/data.js +18 -0
- package/dist/_internal/server/features/search/index.d.ts +3 -0
- package/dist/_internal/server/features/search/index.js +2 -0
- package/dist/_internal/server/features/stores/data.d.ts +31 -0
- package/dist/_internal/server/features/stores/data.js +58 -0
- package/dist/_internal/server/features/stores/index.d.ts +3 -0
- package/dist/_internal/server/features/stores/index.js +3 -0
- package/dist/_internal/server/features/stores/og.d.ts +19 -0
- package/dist/_internal/server/features/stores/og.js +52 -0
- package/dist/_internal/server/features/sublisting-categories/data.d.ts +1 -0
- package/dist/_internal/server/features/sublisting-categories/data.js +5 -0
- package/dist/_internal/server/features/sublisting-categories/index.d.ts +2 -0
- package/dist/_internal/server/features/sublisting-categories/index.js +2 -0
- package/dist/_internal/server/features/sublisting-categories/og.d.ts +20 -0
- package/dist/_internal/server/features/sublisting-categories/og.js +56 -0
- package/dist/_internal/server/features/wishlist/actions.d.ts +13 -0
- package/dist/_internal/server/features/wishlist/actions.js +40 -0
- package/dist/_internal/server/features/wishlist/data.d.ts +8 -0
- package/dist/_internal/server/features/wishlist/data.js +9 -0
- package/dist/_internal/server/features/wishlist/index.d.ts +4 -0
- package/dist/_internal/server/features/wishlist/index.js +4 -0
- package/dist/_internal/server/index.d.ts +0 -0
- package/dist/_internal/server/index.js +4 -0
- package/dist/_internal/server/jobs/handlers/_helpers.d.ts +8 -0
- package/dist/_internal/server/jobs/handlers/_helpers.js +19 -0
- package/dist/_internal/server/jobs/handlers/adminAnalytics.d.ts +28 -0
- package/dist/_internal/server/jobs/handlers/adminAnalytics.js +98 -0
- package/dist/_internal/server/jobs/handlers/auctionSettlement.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/auctionSettlement.js +70 -0
- package/dist/_internal/server/jobs/handlers/autoPayoutEligibility.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/autoPayoutEligibility.js +110 -0
- package/dist/_internal/server/jobs/handlers/cartPrune.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/cartPrune.js +13 -0
- package/dist/_internal/server/jobs/handlers/cleanupRtdbEvents.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/cleanupRtdbEvents.js +45 -0
- package/dist/_internal/server/jobs/handlers/countersReconcile.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/countersReconcile.js +109 -0
- package/dist/_internal/server/jobs/handlers/couponExpiry.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/couponExpiry.js +13 -0
- package/dist/_internal/server/jobs/handlers/dailyDataCleanup.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/dailyDataCleanup.js +20 -0
- package/dist/_internal/server/jobs/handlers/index.d.ts +35 -0
- package/dist/_internal/server/jobs/handlers/index.js +35 -0
- package/dist/_internal/server/jobs/handlers/listingProcessor.d.ts +30 -0
- package/dist/_internal/server/jobs/handlers/listingProcessor.js +128 -0
- package/dist/_internal/server/jobs/handlers/mediaTmpCleanup.d.ts +14 -0
- package/dist/_internal/server/jobs/handlers/mediaTmpCleanup.js +69 -0
- package/dist/_internal/server/jobs/handlers/messages.d.ts +45 -0
- package/dist/_internal/server/jobs/handlers/messages.js +45 -0
- package/dist/_internal/server/jobs/handlers/notificationPrune.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/notificationPrune.js +13 -0
- package/dist/_internal/server/jobs/handlers/offerExpiry.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/offerExpiry.js +50 -0
- package/dist/_internal/server/jobs/handlers/onBidPlaced.d.ts +12 -0
- package/dist/_internal/server/jobs/handlers/onBidPlaced.js +63 -0
- package/dist/_internal/server/jobs/handlers/onCategoryWrite.d.ts +10 -0
- package/dist/_internal/server/jobs/handlers/onCategoryWrite.js +136 -0
- package/dist/_internal/server/jobs/handlers/onOrderCreate.d.ts +14 -0
- package/dist/_internal/server/jobs/handlers/onOrderCreate.js +83 -0
- package/dist/_internal/server/jobs/handlers/onOrderStatusChange.d.ts +14 -0
- package/dist/_internal/server/jobs/handlers/onOrderStatusChange.js +141 -0
- package/dist/_internal/server/jobs/handlers/onProductWrite.d.ts +8 -0
- package/dist/_internal/server/jobs/handlers/onProductWrite.js +92 -0
- package/dist/_internal/server/jobs/handlers/onReviewWrite.d.ts +2 -0
- package/dist/_internal/server/jobs/handlers/onReviewWrite.js +51 -0
- package/dist/_internal/server/jobs/handlers/onStoreWrite.d.ts +10 -0
- package/dist/_internal/server/jobs/handlers/onStoreWrite.js +9 -0
- package/dist/_internal/server/jobs/handlers/payoutBatch.d.ts +11 -0
- package/dist/_internal/server/jobs/handlers/payoutBatch.js +104 -0
- package/dist/_internal/server/jobs/handlers/pendingOrderTimeout.d.ts +8 -0
- package/dist/_internal/server/jobs/handlers/pendingOrderTimeout.js +33 -0
- package/dist/_internal/server/jobs/handlers/positionsReconcile.d.ts +7 -0
- package/dist/_internal/server/jobs/handlers/positionsReconcile.js +87 -0
- package/dist/_internal/server/jobs/handlers/productStatsSync.d.ts +8 -0
- package/dist/_internal/server/jobs/handlers/productStatsSync.js +36 -0
- package/dist/_internal/server/jobs/handlers/promotions.d.ts +12 -0
- package/dist/_internal/server/jobs/handlers/promotions.js +43 -0
- package/dist/_internal/server/jobs/handlers/storeAnalytics.d.ts +30 -0
- package/dist/_internal/server/jobs/handlers/storeAnalytics.js +109 -0
- package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.d.ts +8 -0
- package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.js +87 -0
- package/dist/_internal/server/jobs/index.d.ts +4 -0
- package/dist/_internal/server/jobs/index.js +3 -0
- package/dist/_internal/server/jobs/runtime/adapters/firebase.d.ts +50 -0
- package/dist/_internal/server/jobs/runtime/adapters/firebase.js +156 -0
- package/dist/_internal/server/jobs/runtime/types.d.ts +52 -0
- package/dist/_internal/server/jobs/runtime/types.js +13 -0
- package/dist/_internal/shared/config/index.d.ts +1 -0
- package/dist/_internal/shared/config/index.js +1 -0
- package/dist/_internal/shared/config/schema.d.ts +82 -0
- package/dist/_internal/shared/config/schema.js +1 -0
- package/dist/_internal/shared/constants/index.d.ts +1 -0
- package/dist/_internal/shared/constants/index.js +1 -0
- package/dist/_internal/shared/errors/index.d.ts +24 -0
- package/dist/_internal/shared/errors/index.js +46 -0
- package/dist/_internal/shared/features/auctions/config.d.ts +6 -0
- package/dist/_internal/shared/features/auctions/config.js +6 -0
- package/dist/_internal/shared/features/auctions/errors.d.ts +16 -0
- package/dist/_internal/shared/features/auctions/errors.js +31 -0
- package/dist/_internal/shared/features/auctions/schema.d.ts +30 -0
- package/dist/_internal/shared/features/auctions/schema.js +12 -0
- package/dist/_internal/shared/features/blog/config.d.ts +6 -0
- package/dist/_internal/shared/features/blog/config.js +6 -0
- package/dist/_internal/shared/features/blog/errors.d.ts +10 -0
- package/dist/_internal/shared/features/blog/errors.js +19 -0
- package/dist/_internal/shared/features/blog/schema.d.ts +81 -0
- package/dist/_internal/shared/features/blog/schema.js +17 -0
- package/dist/_internal/shared/features/brands/config.d.ts +4 -0
- package/dist/_internal/shared/features/brands/config.js +4 -0
- package/dist/_internal/shared/features/brands/errors.d.ts +7 -0
- package/dist/_internal/shared/features/brands/errors.js +13 -0
- package/dist/_internal/shared/features/brands/schema.d.ts +69 -0
- package/dist/_internal/shared/features/brands/schema.js +15 -0
- package/dist/_internal/shared/features/bundles/config.d.ts +6 -0
- package/dist/_internal/shared/features/bundles/config.js +6 -0
- package/dist/_internal/shared/features/cart/config.d.ts +3 -0
- package/dist/_internal/shared/features/cart/config.js +3 -0
- package/dist/_internal/shared/features/cart/errors.d.ts +10 -0
- package/dist/_internal/shared/features/cart/errors.js +19 -0
- package/dist/_internal/shared/features/cart/schema.d.ts +132 -0
- package/dist/_internal/shared/features/cart/schema.js +33 -0
- package/dist/_internal/shared/features/categories/config.d.ts +6 -0
- package/dist/_internal/shared/features/categories/config.js +6 -0
- package/dist/_internal/shared/features/checkout/config.d.ts +8 -0
- package/dist/_internal/shared/features/checkout/config.js +7 -0
- package/dist/_internal/shared/features/events/config.d.ts +5 -0
- package/dist/_internal/shared/features/events/config.js +5 -0
- package/dist/_internal/shared/features/events/errors.d.ts +16 -0
- package/dist/_internal/shared/features/events/errors.js +31 -0
- package/dist/_internal/shared/features/events/schema.d.ts +91 -0
- package/dist/_internal/shared/features/events/schema.js +21 -0
- package/dist/_internal/shared/features/grouped/config.d.ts +3 -0
- package/dist/_internal/shared/features/grouped/config.js +3 -0
- package/dist/_internal/shared/features/history/config.d.ts +2 -0
- package/dist/_internal/shared/features/history/config.js +2 -0
- package/dist/_internal/shared/features/homepage/config.d.ts +3 -0
- package/dist/_internal/shared/features/homepage/config.js +3 -0
- package/dist/_internal/shared/features/orders/config.d.ts +8 -0
- package/dist/_internal/shared/features/orders/config.js +8 -0
- package/dist/_internal/shared/features/orders/errors.d.ts +13 -0
- package/dist/_internal/shared/features/orders/errors.js +25 -0
- package/dist/_internal/shared/features/orders/schema.d.ts +114 -0
- package/dist/_internal/shared/features/orders/schema.js +33 -0
- package/dist/_internal/shared/features/payments/config.d.ts +2 -0
- package/dist/_internal/shared/features/payments/config.js +2 -0
- package/dist/_internal/shared/features/pre-orders/config.d.ts +4 -0
- package/dist/_internal/shared/features/pre-orders/config.js +4 -0
- package/dist/_internal/shared/features/pre-orders/errors.d.ts +13 -0
- package/dist/_internal/shared/features/pre-orders/errors.js +25 -0
- package/dist/_internal/shared/features/pre-orders/schema.d.ts +25 -0
- package/dist/_internal/shared/features/pre-orders/schema.js +10 -0
- package/dist/_internal/shared/features/products/config.d.ts +5 -0
- package/dist/_internal/shared/features/products/config.js +5 -0
- package/dist/_internal/shared/features/products/errors.d.ts +16 -0
- package/dist/_internal/shared/features/products/errors.js +31 -0
- package/dist/_internal/shared/features/products/schema.d.ts +364 -0
- package/dist/_internal/shared/features/products/schema.js +58 -0
- package/dist/_internal/shared/features/products/types.d.ts +46 -0
- package/dist/_internal/shared/features/products/types.js +1 -0
- package/dist/_internal/shared/features/promotions/config.d.ts +3 -0
- package/dist/_internal/shared/features/promotions/config.js +3 -0
- package/dist/_internal/shared/features/promotions/errors.d.ts +19 -0
- package/dist/_internal/shared/features/promotions/errors.js +37 -0
- package/dist/_internal/shared/features/promotions/schema.d.ts +242 -0
- package/dist/_internal/shared/features/promotions/schema.js +37 -0
- package/dist/_internal/shared/features/reviews/config.d.ts +8 -0
- package/dist/_internal/shared/features/reviews/config.js +8 -0
- package/dist/_internal/shared/features/reviews/errors.d.ts +13 -0
- package/dist/_internal/shared/features/reviews/errors.js +25 -0
- package/dist/_internal/shared/features/reviews/schema.d.ts +44 -0
- package/dist/_internal/shared/features/reviews/schema.js +18 -0
- package/dist/_internal/shared/features/stores/config.d.ts +4 -0
- package/dist/_internal/shared/features/stores/config.js +4 -0
- package/dist/_internal/shared/features/wishlist/config.d.ts +2 -0
- package/dist/_internal/shared/features/wishlist/config.js +2 -0
- package/dist/_internal/shared/features/wishlist/errors.d.ts +4 -0
- package/dist/_internal/shared/features/wishlist/errors.js +7 -0
- package/dist/_internal/shared/index.d.ts +2 -0
- package/dist/_internal/shared/index.js +4 -0
- package/dist/_internal/shared/serialization/index.d.ts +17 -0
- package/dist/_internal/shared/serialization/index.js +42 -0
- package/dist/_internal/shared/tokens/index.d.ts +137 -0
- package/dist/_internal/shared/tokens/index.js +159 -0
- package/dist/client-entry.d.ts +23 -0
- package/dist/client-entry.js +27 -0
- package/dist/client.d.ts +47 -5
- package/dist/client.js +68 -33
- package/dist/configs/eslint.d.ts +29 -0
- package/dist/configs/eslint.js +38 -0
- package/dist/configs/index.d.ts +14 -0
- package/dist/configs/index.js +14 -0
- package/dist/configs/next.d.ts +38 -0
- package/dist/configs/next.js +116 -0
- package/dist/configs/postcss.d.ts +22 -0
- package/dist/configs/postcss.js +22 -0
- package/dist/configs/tailwind.d.ts +59 -0
- package/dist/configs/tailwind.js +62 -0
- package/dist/constants/api-endpoints.d.ts +24 -0
- package/dist/constants/api-endpoints.js +8 -0
- package/dist/constants/index.d.ts +1 -0
- package/dist/constants/index.js +1 -0
- package/dist/constants/limits.d.ts +15 -0
- package/dist/constants/limits.js +15 -0
- package/dist/contracts/client-auth.d.ts +2 -0
- package/dist/errors/messages.d.ts +23 -0
- package/dist/errors/messages.js +25 -0
- package/dist/features/about/components/PublicProfileView.js +16 -9
- package/dist/features/account/components/AddressBook.d.ts +2 -1
- package/dist/features/account/components/AddressBook.js +2 -2
- package/dist/features/account/components/UserReturnsView.d.ts +10 -0
- package/dist/features/account/components/UserReturnsView.js +5 -0
- package/dist/features/account/components/index.d.ts +2 -0
- package/dist/features/account/components/index.js +1 -0
- package/dist/features/account/hooks/useProfile.d.ts +2 -0
- package/dist/features/account/schemas/index.d.ts +18 -18
- package/dist/features/admin/actions/chat-actions.d.ts +1 -1
- package/dist/features/admin/actions/chat-actions.js +10 -10
- package/dist/features/admin/components/AdminBlogEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminBlogEditorView.js +16 -14
- package/dist/features/admin/components/AdminBlogView.js +6 -3
- package/dist/features/admin/components/AdminBrandEditorView.d.ts +3 -1
- package/dist/features/admin/components/AdminBrandEditorView.js +16 -14
- package/dist/features/admin/components/AdminBrandsView.js +6 -3
- package/dist/features/admin/components/AdminCategoriesView.js +6 -3
- package/dist/features/admin/components/AdminCategoryEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminCategoryEditorView.js +16 -14
- package/dist/features/admin/components/AdminCouponEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminCouponEditorView.js +16 -14
- package/dist/features/admin/components/AdminCouponsView.js +6 -3
- package/dist/features/admin/components/AdminFaqEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminFaqEditorView.js +16 -14
- package/dist/features/admin/components/AdminFaqsView.js +6 -3
- package/dist/features/admin/components/AdminFeatureEditorView.d.ts +19 -0
- package/dist/features/admin/components/AdminFeatureEditorView.js +150 -0
- package/dist/features/admin/components/AdminFeaturesView.d.ts +4 -0
- package/dist/features/admin/components/AdminFeaturesView.js +95 -0
- package/dist/features/admin/components/AdminHistoryView.d.ts +4 -0
- package/dist/features/admin/components/AdminHistoryView.js +57 -0
- package/dist/features/admin/components/AdminMediaView.js +64 -2
- package/dist/features/admin/components/AdminOrdersView.js +31 -4
- package/dist/features/admin/components/AdminProductEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminProductEditorView.js +30 -19
- package/dist/features/admin/components/AdminProductsView.js +40 -3
- package/dist/features/admin/components/AdminSectionsView.js +138 -2
- package/dist/features/admin/components/AdminSiteSettingsView.js +22 -2
- package/dist/features/admin/components/AdminStoresView.js +5 -4
- package/dist/features/admin/components/AdminUserEditorView.d.ts +4 -1
- package/dist/features/admin/components/AdminUserEditorView.js +2 -2
- package/dist/features/admin/components/AdminUsersView.js +1 -1
- package/dist/features/admin/components/AdminWishlistsView.js +17 -15
- package/dist/features/admin/components/DataTable.d.ts +2 -1
- package/dist/features/admin/components/DataTable.js +14 -12
- package/dist/features/admin/components/DrawerFormFooter.d.ts +9 -21
- package/dist/features/admin/components/DrawerFormFooter.js +10 -2
- package/dist/features/admin/components/QuickEditMenu.d.ts +20 -0
- package/dist/features/admin/components/QuickEditMenu.js +31 -0
- package/dist/features/admin/components/analytics/AdminAnalyticsCharts.js +11 -23
- package/dist/features/admin/components/index.d.ts +8 -0
- package/dist/features/admin/components/index.js +4 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.d.ts +9 -1
- package/dist/features/admin/components/sections/adminSectionsBuildParse.js +169 -9
- package/dist/features/admin/components/sections/adminSectionsTypes.d.ts +62 -1
- package/dist/features/admin/components/sections/adminSectionsTypes.js +57 -4
- package/dist/features/admin/hooks/useChat.d.ts +1 -1
- package/dist/features/admin/repository/chat.repository.d.ts +2 -2
- package/dist/features/admin/repository/chat.repository.js +7 -7
- package/dist/features/admin/schemas/firestore.d.ts +42 -7
- package/dist/features/admin/schemas/firestore.js +7 -7
- package/dist/features/admin/types/product.types.d.ts +2 -2
- package/dist/features/auctions/actions/bid-actions.js +3 -2
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +11 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +80 -68
- package/dist/features/auctions/components/AuctionsListView.js +11 -6
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +2 -1
- package/dist/features/auctions/hooks/useAuctions.js +2 -1
- package/dist/features/auctions/repository/auctions.repository.js +4 -4
- package/dist/features/auctions/schemas/index.d.ts +24 -24
- package/dist/features/auctions/types/index.d.ts +2 -1
- package/dist/features/auth/hooks/useAuth.d.ts +8 -0
- package/dist/features/auth/hooks/useAuth.js +9 -0
- package/dist/features/auth/schemas/index.d.ts +2 -2
- package/dist/features/before-after/schemas/index.d.ts +2 -2
- package/dist/features/blog/actions/blog-actions.d.ts +63 -63
- package/dist/features/blog/components/BlogPostView.d.ts +3 -1
- package/dist/features/blog/components/BlogPostView.js +3 -2
- package/dist/features/blog/schemas/index.d.ts +41 -41
- package/dist/features/bundles/components/AdminBundleEditorView.d.ts +8 -0
- package/dist/features/bundles/components/AdminBundleEditorView.js +7 -0
- package/dist/features/bundles/components/BundleDetailPageView.d.ts +9 -0
- package/dist/features/bundles/components/BundleDetailPageView.js +45 -0
- package/dist/features/bundles/components/BundleForm.d.ts +12 -0
- package/dist/features/bundles/components/BundleForm.js +126 -0
- package/dist/features/bundles/components/BundleItemsPicker.d.ts +9 -0
- package/dist/features/bundles/components/BundleItemsPicker.js +77 -0
- package/dist/features/bundles/components/BundlesListingView.d.ts +17 -0
- package/dist/features/bundles/components/BundlesListingView.js +50 -0
- package/dist/features/bundles/components/FeaturedBundlesSection.d.ts +5 -0
- package/dist/features/bundles/components/FeaturedBundlesSection.js +55 -0
- package/dist/features/bundles/components/SellerBundleCreateView.d.ts +8 -0
- package/dist/features/bundles/components/SellerBundleCreateView.js +7 -0
- package/dist/features/bundles/components/SellerBundleEditView.d.ts +9 -0
- package/dist/features/bundles/components/SellerBundleEditView.js +7 -0
- package/dist/features/bundles/components/index.d.ts +16 -0
- package/dist/features/bundles/components/index.js +8 -0
- package/dist/features/bundles/constants/index.d.ts +32 -0
- package/dist/features/bundles/constants/index.js +35 -0
- package/dist/features/bundles/index.d.ts +2 -0
- package/dist/features/bundles/index.js +2 -0
- package/dist/features/bundles/repository/bundles.repository.d.ts +36 -0
- package/dist/features/bundles/repository/bundles.repository.js +148 -0
- package/dist/features/bundles/repository/index.d.ts +1 -0
- package/dist/features/bundles/repository/index.js +1 -0
- package/dist/features/bundles/schemas/firestore.d.ts +88 -0
- package/dist/features/bundles/schemas/firestore.js +29 -0
- package/dist/features/bundles/schemas/index.d.ts +1 -0
- package/dist/features/bundles/schemas/index.js +1 -0
- package/dist/features/cart/actions/cart-actions.js +2 -1
- package/dist/features/cart/repository/cart.repository.js +1 -2
- package/dist/features/cart/schemas/firestore.d.ts +9 -6
- package/dist/features/cart/schemas/firestore.js +1 -2
- package/dist/features/cart/schemas/index.d.ts +7 -7
- package/dist/features/cart/utils/guest-cart.d.ts +6 -0
- package/dist/features/cart/utils/guest-cart.js +14 -0
- package/dist/features/categories/components/BrandDetailPageView.d.ts +3 -1
- package/dist/features/categories/components/BrandDetailPageView.js +6 -6
- package/dist/features/categories/components/CategoryDetailPageView.js +3 -3
- package/dist/features/categories/components/CategoryProductsListing.js +1 -1
- package/dist/features/categories/schemas/index.d.ts +24 -24
- package/dist/features/collections/schemas/index.d.ts +3 -3
- package/dist/features/consultation/schemas/index.d.ts +7 -7
- package/dist/features/corporate/schemas/index.d.ts +1 -1
- package/dist/features/events/components/AdminEventEditorView.d.ts +2 -1
- package/dist/features/events/components/AdminEventEditorView.js +10 -8
- package/dist/features/events/components/AdminEventsView.js +6 -3
- package/dist/features/events/components/EventDetailView.d.ts +7 -1
- package/dist/features/events/components/EventDetailView.js +4 -1
- package/dist/features/events/components/EventRafflesSection.d.ts +12 -0
- package/dist/features/events/components/EventRafflesSection.js +17 -0
- package/dist/features/events/components/index.d.ts +2 -0
- package/dist/features/events/components/index.js +1 -0
- package/dist/features/events/schemas/index.d.ts +41 -41
- package/dist/features/faq/actions/faq-actions.d.ts +16 -16
- package/dist/features/faq/schemas/index.d.ts +12 -12
- package/dist/features/history/actions/history-actions.d.ts +24 -0
- package/dist/features/history/actions/history-actions.js +43 -0
- package/dist/features/history/actions/index.d.ts +1 -0
- package/dist/features/history/actions/index.js +1 -0
- package/dist/features/history/components/HistoryTracker.d.ts +8 -0
- package/dist/features/history/components/HistoryTracker.js +18 -0
- package/dist/features/history/hooks/useHistory.d.ts +16 -0
- package/dist/features/history/hooks/useHistory.js +148 -0
- package/dist/features/history/hooks/useHistoryMergeOnLogin.d.ts +1 -0
- package/dist/features/history/hooks/useHistoryMergeOnLogin.js +41 -0
- package/dist/features/history/index.d.ts +5 -0
- package/dist/features/history/index.js +4 -0
- package/dist/features/history/repository/user-history.repository.d.ts +59 -0
- package/dist/features/history/repository/user-history.repository.js +203 -0
- package/dist/features/history/server.d.ts +6 -0
- package/dist/features/history/server.js +6 -0
- package/dist/features/history/utils/guest-history.d.ts +24 -0
- package/dist/features/history/utils/guest-history.js +66 -0
- package/dist/features/homepage/actions/homepage-section-actions.d.ts +4 -4
- package/dist/features/homepage/components/BrandsSection.d.ts +7 -1
- package/dist/features/homepage/components/BrandsSection.js +26 -4
- package/dist/features/homepage/components/CollectionCardsSection.d.ts +13 -0
- package/dist/features/homepage/components/CollectionCardsSection.js +41 -0
- package/dist/features/homepage/components/FAQSection.d.ts +14 -4
- package/dist/features/homepage/components/FAQSection.js +63 -13
- package/dist/features/homepage/components/FeaturedProductsSection.d.ts +8 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +42 -2
- package/dist/features/homepage/components/MarketplaceHomepageView.js +17 -8
- package/dist/features/homepage/components/ShopByCategorySection.d.ts +8 -1
- package/dist/features/homepage/components/ShopByCategorySection.js +44 -4
- package/dist/features/homepage/components/SocialFeedSection.js +22 -2
- package/dist/features/homepage/components/SocialPostCard.js +20 -5
- package/dist/features/homepage/components/WelcomeSection.js +2 -2
- package/dist/features/homepage/components/WhatsAppCommunitySection.d.ts +0 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.js +4 -4
- package/dist/features/homepage/lib/live-stats.d.ts +18 -5
- package/dist/features/homepage/lib/live-stats.js +60 -29
- package/dist/features/homepage/lib/section-renderer.d.ts +2 -1
- package/dist/features/homepage/lib/section-renderer.js +50 -11
- package/dist/features/homepage/repository/carousels.repository.d.ts +38 -0
- package/dist/features/homepage/repository/carousels.repository.js +142 -0
- package/dist/features/homepage/schemas/firestore.d.ts +177 -21
- package/dist/features/homepage/schemas/firestore.js +24 -0
- package/dist/features/layout/AppLayoutShell.d.ts +3 -1
- package/dist/features/layout/AppLayoutShell.js +2 -2
- package/dist/features/layout/TitleBarLayout.d.ts +3 -1
- package/dist/features/layout/TitleBarLayout.js +5 -4
- package/dist/features/layout/index.d.ts +1 -1
- package/dist/features/media/MediaPickerModal.js +67 -3
- package/dist/features/media/types/index.d.ts +2 -2
- package/dist/features/media/upload/MediaUploadField.js +21 -5
- package/dist/features/messages/actions/index.d.ts +2 -0
- package/dist/features/messages/actions/index.js +2 -0
- package/dist/features/messages/actions/messages-actions.d.ts +15 -0
- package/dist/features/messages/actions/messages-actions.js +33 -0
- package/dist/features/messages/actions/ping-rtdb.d.ts +2 -0
- package/dist/features/messages/actions/ping-rtdb.js +24 -0
- package/dist/features/messages/hooks/useConversation.d.ts +22 -0
- package/dist/features/messages/hooks/useConversation.js +125 -0
- package/dist/features/messages/hooks/useConversations.d.ts +9 -0
- package/dist/features/messages/hooks/useConversations.js +62 -0
- package/dist/features/messages/index.d.ts +6 -0
- package/dist/features/messages/index.js +4 -0
- package/dist/features/messages/realtime.d.ts +32 -0
- package/dist/features/messages/realtime.js +39 -0
- package/dist/features/messages/repository/conversations.repository.d.ts +35 -0
- package/dist/features/messages/repository/conversations.repository.js +180 -0
- package/dist/features/messages/server.d.ts +6 -0
- package/dist/features/messages/server.js +6 -0
- package/dist/features/orders/schemas/firestore.d.ts +21 -0
- package/dist/features/orders/schemas/index.d.ts +28 -28
- package/dist/features/orders/utils/order-splitter.d.ts +12 -2
- package/dist/features/orders/utils/order-splitter.js +13 -2
- package/dist/features/payments/schemas/index.d.ts +6 -6
- package/dist/features/pre-orders/api/route.js +10 -11
- package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +11 -1
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +45 -35
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +24 -7
- package/dist/features/pre-orders/components/PreOrdersListView.js +10 -5
- package/dist/features/pre-orders/schemas/index.d.ts +6 -6
- package/dist/features/products/actions/product-actions.d.ts +2 -2
- package/dist/features/products/actions/product-actions.js +21 -16
- package/dist/features/products/api/[id]/route.js +4 -4
- package/dist/features/products/api/route.js +21 -6
- package/dist/features/products/components/AuctionsIndexListing.js +1 -1
- package/dist/features/products/components/CompareOverlay.d.ts +51 -0
- package/dist/features/products/components/CompareOverlay.js +154 -0
- package/dist/features/products/components/FeatureBadge.d.ts +28 -0
- package/dist/features/products/components/FeatureBadge.js +63 -0
- package/dist/features/products/components/GroupSettingsPanel.js +1 -1
- package/dist/features/products/components/NonRefundableConsentModal.d.ts +23 -0
- package/dist/features/products/components/NonRefundableConsentModal.js +55 -0
- package/dist/features/products/components/PrizeDrawsSection.d.ts +12 -0
- package/dist/features/products/components/PrizeDrawsSection.js +17 -0
- package/dist/features/products/components/ProductDetailPageView.d.ts +16 -1
- package/dist/features/products/components/ProductDetailPageView.js +65 -60
- package/dist/features/products/components/ProductFeaturesContext.d.ts +9 -0
- package/dist/features/products/components/ProductFeaturesContext.js +11 -0
- package/dist/features/products/components/ProductFeaturesSelector.d.ts +12 -0
- package/dist/features/products/components/ProductFeaturesSelector.js +72 -0
- package/dist/features/products/components/ProductForm.js +9 -3
- package/dist/features/products/components/ProductGrid.js +9 -3
- package/dist/features/products/components/ProductsIndexListing.js +24 -8
- package/dist/features/products/components/ProductsIndexPageView.js +12 -7
- package/dist/features/products/components/ShowGroupSection.js +2 -1
- package/dist/features/products/components/SublistingCarouselSection.js +3 -2
- package/dist/features/products/components/index.d.ts +12 -0
- package/dist/features/products/components/index.js +6 -0
- package/dist/features/products/constants/action-defs.d.ts +209 -0
- package/dist/features/products/constants/action-defs.js +270 -0
- package/dist/features/products/constants/product-features.constants.d.ts +23 -0
- package/dist/features/products/constants/product-features.constants.js +50 -0
- package/dist/features/products/hooks/useProducts.d.ts +1 -0
- package/dist/features/products/hooks/useProducts.js +15 -6
- package/dist/features/products/hooks/useRelatedProducts.d.ts +5 -0
- package/dist/features/products/hooks/useRelatedProducts.js +9 -1
- package/dist/features/products/index.d.ts +3 -1
- package/dist/features/products/index.js +3 -1
- package/dist/features/products/repository/loadProductFeatures.d.ts +2 -0
- package/dist/features/products/repository/loadProductFeatures.js +23 -0
- package/dist/features/products/repository/product-features.repository.d.ts +27 -0
- package/dist/features/products/repository/product-features.repository.js +141 -0
- package/dist/features/products/repository/product-templates.repository.d.ts +12 -0
- package/dist/features/products/repository/product-templates.repository.js +61 -0
- package/dist/features/products/repository/products.repository.d.ts +16 -1
- package/dist/features/products/repository/products.repository.js +126 -6
- package/dist/features/products/schemas/firestore.d.ts +43 -5
- package/dist/features/products/schemas/firestore.js +6 -7
- package/dist/features/products/schemas/index.d.ts +147 -51
- package/dist/features/products/schemas/index.js +32 -3
- package/dist/features/products/schemas/product-features.d.ts +84 -0
- package/dist/features/products/schemas/product-features.js +33 -0
- package/dist/features/products/schemas/product-features.validators.d.ts +107 -0
- package/dist/features/products/schemas/product-features.validators.js +64 -0
- package/dist/features/products/schemas/product-templates.d.ts +28 -0
- package/dist/features/products/schemas/product-templates.js +6 -0
- package/dist/features/products/types/index.d.ts +13 -5
- package/dist/features/products/utils/listing-type.d.ts +23 -2
- package/dist/features/products/utils/listing-type.js +14 -7
- package/dist/features/products/utils/sanitize.d.ts +2 -0
- package/dist/features/products/utils/sanitize.js +25 -0
- package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
- package/dist/features/promotions/components/CouponsIndexListing.d.ts +4 -4
- package/dist/features/promotions/components/CouponsIndexListing.js +3 -3
- package/dist/features/promotions/hooks/useCouponValidate.d.ts +2 -2
- package/dist/features/promotions/repository/coupons.repository.d.ts +2 -2
- package/dist/features/promotions/repository/coupons.repository.js +5 -5
- package/dist/features/promotions/schemas/index.d.ts +18 -18
- package/dist/features/reviews/schemas/index.d.ts +16 -16
- package/dist/features/search/actions/search-actions.js +4 -5
- package/dist/features/search/api/route.js +13 -10
- package/dist/features/search/columns/index.d.ts +1 -1
- package/dist/features/search/columns/index.js +4 -4
- package/dist/features/search/repository/search.repository.js +4 -6
- package/dist/features/search/schemas/index.d.ts +5 -5
- package/dist/features/search/types/index.d.ts +4 -3
- package/dist/features/seller/actions/offer-actions.js +1 -2
- package/dist/features/seller/components/BrandInlineSelect.d.ts +9 -0
- package/dist/features/seller/components/BrandInlineSelect.js +26 -0
- package/dist/features/seller/components/CategoryInlineSelect.d.ts +9 -0
- package/dist/features/seller/components/CategoryInlineSelect.js +26 -0
- package/dist/features/seller/components/SellerFeaturesView.d.ts +1 -0
- package/dist/features/seller/components/SellerFeaturesView.js +61 -0
- package/dist/features/seller/components/SellerProductShell.d.ts +15 -1
- package/dist/features/seller/components/SellerProductShell.js +7 -7
- package/dist/features/seller/components/SellerProductsView.js +17 -17
- package/dist/features/seller/components/SellerStorefrontView.d.ts +7 -0
- package/dist/features/seller/components/SellerStorefrontView.js +12 -2
- package/dist/features/seller/components/analytics/SellerRevenueChart.js +9 -17
- package/dist/features/seller/components/index.d.ts +6 -0
- package/dist/features/seller/components/index.js +4 -0
- package/dist/features/seller/schemas/index.d.ts +26 -26
- package/dist/features/shell/FormShell.d.ts +9 -1
- package/dist/features/shell/FormShell.js +5 -3
- package/dist/features/stores/actions/store-query-actions.js +2 -2
- package/dist/features/stores/api/[storeSlug]/auctions/route.js +11 -15
- package/dist/features/stores/api/[storeSlug]/products/route.js +11 -15
- package/dist/features/stores/api/route.js +12 -14
- package/dist/features/stores/components/StoreAuctionsListing.d.ts +2 -4
- package/dist/features/stores/components/StoreAuctionsListing.js +3 -4
- package/dist/features/stores/components/StoreAuctionsPageView.js +1 -1
- package/dist/features/stores/components/StoreDetailLayoutView.js +3 -3
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +1 -3
- package/dist/features/stores/components/StorePreOrdersListing.js +2 -3
- package/dist/features/stores/components/StorePreOrdersPageView.js +1 -1
- package/dist/features/stores/components/StoreProductsListing.d.ts +2 -4
- package/dist/features/stores/components/StoreProductsListing.js +2 -3
- package/dist/features/stores/components/StoreProductsPageView.d.ts +4 -1
- package/dist/features/stores/components/StoreProductsPageView.js +17 -11
- package/dist/features/stores/repository/store.repository.d.ts +10 -0
- package/dist/features/stores/repository/store.repository.js +39 -0
- package/dist/features/stores/schemas/firestore.d.ts +7 -0
- package/dist/features/stores/schemas/index.d.ts +8 -8
- package/dist/features/stores/types/index.d.ts +4 -3
- package/dist/features/wishlist/actions/wishlist-actions.d.ts +8 -6
- package/dist/features/wishlist/actions/wishlist-actions.js +9 -7
- package/dist/features/wishlist/components/WishlistCapWatcher.d.ts +1 -0
- package/dist/features/wishlist/components/WishlistCapWatcher.js +24 -0
- package/dist/features/wishlist/components/index.d.ts +1 -0
- package/dist/features/wishlist/components/index.js +1 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +17 -0
- package/dist/features/wishlist/hooks/useWishlistCount.js +36 -1
- package/dist/features/wishlist/index.d.ts +2 -0
- package/dist/features/wishlist/index.js +1 -0
- package/dist/features/wishlist/repository/user-wishlist.repository.d.ts +52 -7
- package/dist/features/wishlist/repository/user-wishlist.repository.js +154 -44
- package/dist/features/wishlist/schemas/index.d.ts +2 -2
- package/dist/features/wishlist/server.d.ts +1 -1
- package/dist/features/wishlist/server.js +1 -1
- package/dist/features/wishlist/types/index.d.ts +2 -2
- package/dist/index.d.ts +87 -5
- package/dist/index.js +101 -12
- package/dist/next/api/routeHandler.d.ts +7 -0
- package/dist/next/api/routeHandler.js +8 -0
- package/dist/next/routing/route-map.d.ts +68 -0
- package/dist/next/routing/route-map.js +32 -0
- package/dist/providers/db-firebase/filter-aliases.d.ts +20 -0
- package/dist/providers/db-firebase/filter-aliases.js +29 -0
- package/dist/providers/db-firebase/index.d.ts +2 -2
- package/dist/providers/db-firebase/index.js +1 -1
- package/dist/providers/db-firebase/sieve.d.ts +9 -0
- package/dist/providers/db-firebase/sieve.js +24 -6
- package/dist/providers/firebase-client/auth.d.ts +1 -0
- package/dist/providers/firebase-client/auth.js +9 -1
- package/dist/providers/shipping-shiprocket/index.d.ts +9 -0
- package/dist/providers/shipping-shiprocket/index.js +11 -0
- package/dist/react/hooks/use-action-dispatch.d.ts +25 -0
- package/dist/react/hooks/use-action-dispatch.js +30 -0
- package/dist/react/hooks/use-panel-url-sync.d.ts +15 -0
- package/dist/react/hooks/use-panel-url-sync.js +46 -0
- package/dist/react/hooks/useInfiniteScroll.d.ts +52 -0
- package/dist/react/hooks/useInfiniteScroll.js +45 -0
- package/dist/repositories/index.d.ts +9 -1
- package/dist/repositories/index.js +8 -1
- package/dist/seed/_bundle-constants.d.ts +14 -0
- package/dist/seed/_bundle-constants.js +14 -0
- package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
- package/dist/seed/bids-seed-data.js +165 -0
- package/dist/seed/blog-posts-seed-data.js +393 -0
- package/dist/seed/bundles-seed-data.d.ts +13 -0
- package/dist/seed/bundles-seed-data.js +229 -0
- package/dist/seed/carousels-seed-data.d.ts +2 -0
- package/dist/seed/carousels-seed-data.js +16 -0
- package/dist/seed/cart-seed-data.js +161 -16
- package/dist/seed/categories-seed-data.js +168 -0
- package/dist/seed/coupons-seed-data.js +174 -0
- package/dist/seed/events-seed-data.js +161 -0
- package/dist/seed/history-seed-data.d.ts +19 -0
- package/dist/seed/history-seed-data.js +61 -0
- package/dist/seed/homepage-sections-seed-data.js +97 -1
- package/dist/seed/index.d.ts +4 -3
- package/dist/seed/index.js +9 -3
- package/dist/seed/manifest.js +23 -1
- package/dist/seed/notifications-seed-data.js +60 -0
- package/dist/seed/orders-seed-data.js +2 -2
- package/dist/seed/product-features-seed-data.d.ts +10 -0
- package/dist/seed/product-features-seed-data.js +162 -0
- package/dist/seed/products-auctions-seed-data.d.ts +6 -1
- package/dist/seed/products-auctions-seed-data.js +495 -24
- package/dist/seed/products-preorders-seed-data.d.ts +6 -1
- package/dist/seed/products-preorders-seed-data.js +27 -18
- package/dist/seed/products-standard-seed-data.d.ts +5 -0
- package/dist/seed/products-standard-seed-data.js +208 -297
- package/dist/seed/runner.js +95 -16
- package/dist/seed/server.d.ts +2 -0
- package/dist/seed/server.js +7 -0
- package/dist/seed/site-settings-seed-data.js +11 -1
- package/dist/seed/types.d.ts +58 -1
- package/dist/seed/types.js +14 -1
- package/dist/seed/wishlists-seed-data.d.ts +14 -7
- package/dist/seed/wishlists-seed-data.js +52 -109
- package/dist/seo/json-ld.d.ts +2 -1
- package/dist/server-entry.d.ts +60 -0
- package/dist/server-entry.js +93 -0
- package/dist/server.d.ts +26 -3
- package/dist/server.js +39 -7
- package/dist/stores/panel-store.d.ts +9 -0
- package/dist/stores/panel-store.js +8 -0
- package/dist/tailwind-utilities.css +1 -1
- package/dist/tokens/tokens.css +182 -12
- package/dist/ui/DataTable.style.css +192 -190
- package/dist/ui/components/Accordion.style.css +82 -82
- package/dist/ui/components/ActiveFilterChips.style.css +12 -12
- package/dist/ui/components/Alert.style.css +187 -187
- package/dist/ui/components/Avatar.style.css +71 -71
- package/dist/ui/components/AvatarDisplay.style.css +3 -3
- package/dist/ui/components/Badge.style.css +114 -114
- package/dist/ui/components/BaseListingCard.style.css +86 -86
- package/dist/ui/components/Breadcrumb.style.css +10 -10
- package/dist/ui/components/BulkActionBar.style.css +196 -196
- package/dist/ui/components/BulkActionsBar.d.ts +2 -0
- package/dist/ui/components/BulkActionsBar.js +5 -2
- package/dist/ui/components/Button.d.ts +3 -1
- package/dist/ui/components/Button.js +12 -2
- package/dist/ui/components/Button.style.css +160 -160
- package/dist/ui/components/Card.style.css +190 -190
- package/dist/ui/components/Checkbox.style.css +111 -111
- package/dist/ui/components/ConfirmDeleteModal.style.css +89 -89
- package/dist/ui/components/DashboardStatsCard.style.css +68 -68
- package/dist/ui/components/DescriptionField.style.css +36 -36
- package/dist/ui/components/DetailViewShell.js +1 -2
- package/dist/ui/components/Divider.style.css +39 -39
- package/dist/ui/components/Drawer.style.css +150 -150
- package/dist/ui/components/Dropdown.style.css +110 -110
- package/dist/ui/components/DynamicSelect.style.css +101 -101
- package/dist/ui/components/EmptyState.style.css +2 -2
- package/dist/ui/components/FilterDrawer.style.css +61 -61
- package/dist/ui/components/FlowDiagram.style.css +3 -3
- package/dist/ui/components/Form.style.css +27 -27
- package/dist/ui/components/FormActionBar.d.ts +22 -0
- package/dist/ui/components/FormActionBar.js +8 -0
- package/dist/ui/components/FormActionBar.style.css +77 -0
- package/dist/ui/components/FormField.style.css +30 -30
- package/dist/ui/components/HorizontalScroller.style.css +10 -10
- package/dist/ui/components/IconButton.style.css +103 -103
- package/dist/ui/components/ImageGallery.style.css +4 -4
- package/dist/ui/components/InlineCreateSelect.d.ts +13 -3
- package/dist/ui/components/InlineCreateSelect.js +9 -4
- package/dist/ui/components/Input.style.css +28 -28
- package/dist/ui/components/Layout.d.ts +2 -0
- package/dist/ui/components/Layout.js +2 -0
- package/dist/ui/components/Layout.style.css +22 -5
- package/dist/ui/components/ListingLayout.style.css +491 -491
- package/dist/ui/components/Modal.style.css +106 -106
- package/dist/ui/components/Pagination.style.css +76 -76
- package/dist/ui/components/PasswordStrengthIndicator.style.css +56 -56
- package/dist/ui/components/PriceDisplay.style.css +47 -47
- package/dist/ui/components/Progress.style.css +81 -81
- package/dist/ui/components/Radio.style.css +153 -153
- package/dist/ui/components/RatingDisplay.style.css +50 -50
- package/dist/ui/components/RowActionMenu.style.css +91 -91
- package/dist/ui/components/SectionTabs.style.css +18 -18
- package/dist/ui/components/Select.style.css +177 -177
- package/dist/ui/components/SideDrawer.style.css +206 -206
- package/dist/ui/components/SideModal.style.css +73 -73
- package/dist/ui/components/SiteLogo.d.ts +26 -0
- package/dist/ui/components/SiteLogo.js +18 -0
- package/dist/ui/components/Skeleton.style.css +55 -55
- package/dist/ui/components/SkipToMain.style.css +3 -3
- package/dist/ui/components/Slider.style.css +15 -15
- package/dist/ui/components/Spinner.style.css +84 -84
- package/dist/ui/components/StarRating.style.css +44 -44
- package/dist/ui/components/StatsGrid.style.css +96 -96
- package/dist/ui/components/StepperNav.style.css +110 -110
- package/dist/ui/components/SummaryCard.style.css +80 -82
- package/dist/ui/components/TabStrip.style.css +97 -97
- package/dist/ui/components/TablePagination.style.css +89 -89
- package/dist/ui/components/Tabs.style.css +44 -44
- package/dist/ui/components/TagInput.style.css +121 -121
- package/dist/ui/components/TextLink.style.css +94 -94
- package/dist/ui/components/Textarea.style.css +30 -30
- package/dist/ui/components/Toast.style.css +112 -112
- package/dist/ui/components/Toggle.style.css +105 -105
- package/dist/ui/components/Tooltip.style.css +114 -114
- package/dist/ui/components/Typography.style.css +178 -178
- package/dist/ui/components/UnsavedChangesModal.style.css +1 -1
- package/dist/ui/components/ViewToggle.style.css +8 -8
- package/dist/ui/components/index.style.css +1 -0
- package/dist/ui/index.d.ts +4 -0
- package/dist/ui/index.js +2 -0
- package/dist/ui/rich-text/RichText.style.css +40 -40
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/listing-params.d.ts +86 -0
- package/dist/utils/listing-params.js +121 -0
- package/dist/validation/schemas.d.ts +22 -22
- package/package.json +62 -10
- package/scripts/audit-violations.mjs +77 -0
- package/scripts/init-config.mjs +76 -0
- package/scripts/labels-extract.mjs +64 -0
- package/scripts/seed-cli-loader.mjs +37 -0
- package/scripts/seed-cli.mjs +660 -0
- package/scripts/sieve-audit.mjs +475 -0
- package/scripts/smoke-bundle.mjs +60 -0
- package/scripts/smoke-ssr.mjs +81 -0
- package/scripts/smoke-theme.mjs +105 -0
- package/scripts/verify-css-build.mjs +49 -0
- package/scripts/verify-entries.mjs +55 -0
- package/tsconfig.base.json +16 -0
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
const NOW = new Date();
|
|
8
8
|
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
9
|
-
|
|
9
|
+
const _rawProductsStandardSeedData = [
|
|
10
10
|
// ── Store: Pokémon Palace (user-aryan-kapoor) — 5 products ─────────────────
|
|
11
11
|
// 1. Pokémon SV Paldean Fates ETB
|
|
12
12
|
{
|
|
@@ -16,7 +16,8 @@ export const productsStandardSeedData = [
|
|
|
16
16
|
description: "The Paldean Fates Elite Trainer Box is packed with Pokémon from the Paldea region in their special Shiny forms. Includes 9 Scarlet & Violet—Paldean Fates booster packs, 65 Pokémon card sleeves featuring Shiny Tinkaton ex, 45 Pokémon TCG Energy cards, a player's guide to the set, 6 damage-counter dice, 1 competition-legal coin-flip die, 2 plastic condition markers, and a collector's box.",
|
|
17
17
|
category: "category-pokemon-tcg",
|
|
18
18
|
categoryName: "Pokémon TCG",
|
|
19
|
-
brand: "
|
|
19
|
+
brand: "The Pokémon Company",
|
|
20
|
+
brandSlug: "brand-pokemon-company",
|
|
20
21
|
price: 449900,
|
|
21
22
|
currency: "INR",
|
|
22
23
|
stockQuantity: 15,
|
|
@@ -31,8 +32,6 @@ export const productsStandardSeedData = [
|
|
|
31
32
|
storeName: "Pokémon Palace",
|
|
32
33
|
storeId: "store-pokemon-palace",
|
|
33
34
|
featured: false,
|
|
34
|
-
isAuction: false,
|
|
35
|
-
isPreOrder: false,
|
|
36
35
|
isPromoted: true,
|
|
37
36
|
tags: [
|
|
38
37
|
"pokemon",
|
|
@@ -71,7 +70,8 @@ export const productsStandardSeedData = [
|
|
|
71
70
|
description: "Sealed booster box of the iconic Pokémon TCG: 151 set. Each box contains 36 booster packs, each with 10 cards including 1 reverse holo and at least 1 rare or higher. The 151 set celebrates the original 151 Pokémon with special illustration rares, ultra rares, and the coveted gold card chase cards. Investment-grade sealed product — ideal for collectors and investors.",
|
|
72
71
|
category: "category-sealed-product",
|
|
73
72
|
categoryName: "Sealed Product",
|
|
74
|
-
brand: "
|
|
73
|
+
brand: "The Pokémon Company",
|
|
74
|
+
brandSlug: "brand-pokemon-company",
|
|
75
75
|
price: 1499900,
|
|
76
76
|
currency: "INR",
|
|
77
77
|
stockQuantity: 5,
|
|
@@ -86,8 +86,6 @@ export const productsStandardSeedData = [
|
|
|
86
86
|
storeName: "Pokémon Palace",
|
|
87
87
|
storeId: "store-pokemon-palace",
|
|
88
88
|
featured: true,
|
|
89
|
-
isAuction: false,
|
|
90
|
-
isPreOrder: false,
|
|
91
89
|
isPromoted: false,
|
|
92
90
|
tags: [
|
|
93
91
|
"pokemon",
|
|
@@ -127,7 +125,8 @@ export const productsStandardSeedData = [
|
|
|
127
125
|
description: "Official Pokémon Center Pikachu Sitting Cuties plush, 8 inches tall. Super-soft, detailed embroidery, and safe for all ages. Comes in original Pokémon Center hang-tag packaging. A must-have for every Pokémon fan — the iconic expression and bright yellow colouring make this Pikachu plush a display favourite.",
|
|
128
126
|
category: "category-nendoroids-chibis",
|
|
129
127
|
categoryName: "Nendoroids & Chibis",
|
|
130
|
-
brand: "
|
|
128
|
+
brand: "The Pokémon Company",
|
|
129
|
+
brandSlug: "brand-pokemon-company",
|
|
131
130
|
price: 129900,
|
|
132
131
|
currency: "INR",
|
|
133
132
|
stockQuantity: 25,
|
|
@@ -142,8 +141,6 @@ export const productsStandardSeedData = [
|
|
|
142
141
|
storeName: "Pokémon Palace",
|
|
143
142
|
storeId: "store-pokemon-palace",
|
|
144
143
|
featured: false,
|
|
145
|
-
isAuction: false,
|
|
146
|
-
isPreOrder: false,
|
|
147
144
|
isPromoted: false,
|
|
148
145
|
tags: ["pokemon", "pikachu", "plush", "pokemon-center", "official", "gift"],
|
|
149
146
|
condition: "new",
|
|
@@ -174,7 +171,8 @@ export const productsStandardSeedData = [
|
|
|
174
171
|
description: "Official Pokémon Center Gengar Sitting Cuties plush in a 12-inch extra-large size. Everyone's favourite Ghost-type Pokémon rendered in super-soft plush with its iconic grin. Perfect display piece and gift. Comes with original Pokémon Center hang-tag. Limited availability — direct import from the official Pokémon Center Japan.",
|
|
175
172
|
category: "category-nendoroids-chibis",
|
|
176
173
|
categoryName: "Nendoroids & Chibis",
|
|
177
|
-
brand: "
|
|
174
|
+
brand: "The Pokémon Company",
|
|
175
|
+
brandSlug: "brand-pokemon-company",
|
|
178
176
|
price: 149900,
|
|
179
177
|
currency: "INR",
|
|
180
178
|
stockQuantity: 12,
|
|
@@ -189,8 +187,6 @@ export const productsStandardSeedData = [
|
|
|
189
187
|
storeName: "Pokémon Palace",
|
|
190
188
|
storeId: "store-pokemon-palace",
|
|
191
189
|
featured: false,
|
|
192
|
-
isAuction: false,
|
|
193
|
-
isPreOrder: false,
|
|
194
190
|
isPromoted: false,
|
|
195
191
|
tags: [
|
|
196
192
|
"pokemon",
|
|
@@ -228,7 +224,8 @@ export const productsStandardSeedData = [
|
|
|
228
224
|
description: "Extraordinarily rare sealed 1999 Pokémon Base Set booster pack — Shadowless first print run. The shadowless print is identified by the lack of drop shadow on the card frame, produced only during the first months of the English TCG print run. This sealed pack is in pristine condition, never opened, and represents one of the finest Pokémon TCG investments available. PSA population report shows very few sealed Shadowless packs in existence. Art: Clefairy Booster. Grading / resale value estimated ₹1,50,000–₹3,00,000 once professionally authenticated.",
|
|
229
225
|
category: "category-vintage-tcg",
|
|
230
226
|
categoryName: "Vintage TCG",
|
|
231
|
-
brand: "
|
|
227
|
+
brand: "The Pokémon Company",
|
|
228
|
+
brandSlug: "brand-pokemon-company",
|
|
232
229
|
price: 8999900,
|
|
233
230
|
currency: "INR",
|
|
234
231
|
stockQuantity: 1,
|
|
@@ -243,8 +240,6 @@ export const productsStandardSeedData = [
|
|
|
243
240
|
storeName: "Pokémon Palace",
|
|
244
241
|
storeId: "store-pokemon-palace",
|
|
245
242
|
featured: true,
|
|
246
|
-
isAuction: false,
|
|
247
|
-
isPreOrder: false,
|
|
248
243
|
isPromoted: false,
|
|
249
244
|
tags: [
|
|
250
245
|
"pokemon",
|
|
@@ -290,7 +285,8 @@ export const productsStandardSeedData = [
|
|
|
290
285
|
description: "Celebrate 25 years of the Yu-Gi-Oh! Trading Card Game with this premium anniversary tin. Contains 3 Mega-Packs of 16 cards each (48 cards total), including a guaranteed Ghost Rare and 3 Secret Rares per tin. Features reprint versions of popular tournament staples in ultra-rare foil treatments. The commemorative tin itself is a collector's piece with 25th anniversary embossing and gold foil detail.",
|
|
291
286
|
category: "category-yugioh-tcg",
|
|
292
287
|
categoryName: "Yu-Gi-Oh! TCG",
|
|
293
|
-
brand: "
|
|
288
|
+
brand: "Konami",
|
|
289
|
+
brandSlug: "brand-konami",
|
|
294
290
|
price: 299900,
|
|
295
291
|
currency: "INR",
|
|
296
292
|
stockQuantity: 8,
|
|
@@ -305,8 +301,6 @@ export const productsStandardSeedData = [
|
|
|
305
301
|
storeName: "CardGame Hub",
|
|
306
302
|
storeId: "store-cardgame-hub",
|
|
307
303
|
featured: true,
|
|
308
|
-
isAuction: false,
|
|
309
|
-
isPreOrder: false,
|
|
310
304
|
isPromoted: false,
|
|
311
305
|
tags: [
|
|
312
306
|
"yugioh",
|
|
@@ -346,7 +340,8 @@ export const productsStandardSeedData = [
|
|
|
346
340
|
description: "A ready-to-play 41-card Structure Deck featuring the Albaz-related cards and Fallen of Albaz strategies. Includes powerful 'Mirrorjade the Iceblade Dragon' and 'Despian Tragedy'. Ideal for beginner-to-intermediate players looking to build a competitive Dogmatika/Albaz fusion strategy. The deck features 2 Ultra Rare, 2 Super Rare, and 37 Common cards, along with a Deck Guide and game mat.",
|
|
347
341
|
category: "category-yugioh-tcg",
|
|
348
342
|
categoryName: "Yu-Gi-Oh! TCG",
|
|
349
|
-
brand: "
|
|
343
|
+
brand: "Konami",
|
|
344
|
+
brandSlug: "brand-konami",
|
|
350
345
|
price: 89900,
|
|
351
346
|
currency: "INR",
|
|
352
347
|
stockQuantity: 20,
|
|
@@ -361,8 +356,6 @@ export const productsStandardSeedData = [
|
|
|
361
356
|
storeName: "CardGame Hub",
|
|
362
357
|
storeId: "store-cardgame-hub",
|
|
363
358
|
featured: false,
|
|
364
|
-
isAuction: false,
|
|
365
|
-
isPreOrder: false,
|
|
366
359
|
isPromoted: false,
|
|
367
360
|
tags: [
|
|
368
361
|
"yugioh",
|
|
@@ -403,7 +396,8 @@ export const productsStandardSeedData = [
|
|
|
403
396
|
description: "Original 1969 Hot Wheels Redline Custom Camaro in bright orange with red-line tyres. This is a first-year release car from the original Hot Wheels line launched by Mattel in 1968. Condition is Near Mint (NM) — vibrant paint with minimal surface scratches, red lines intact, all four wheels spin freely. Stored in UV-resistant case for the past 15 years. Original collector sourced from a US estate sale. An extraordinary piece for serious Redline collectors.",
|
|
404
397
|
category: "category-hot-wheels",
|
|
405
398
|
categoryName: "Hot Wheels",
|
|
406
|
-
brand: "
|
|
399
|
+
brand: "Hot Wheels",
|
|
400
|
+
brandSlug: "brand-hot-wheels",
|
|
407
401
|
price: 499900,
|
|
408
402
|
currency: "INR",
|
|
409
403
|
stockQuantity: 1,
|
|
@@ -418,8 +412,6 @@ export const productsStandardSeedData = [
|
|
|
418
412
|
storeName: "Diecast Depot",
|
|
419
413
|
storeId: "store-diecast-depot",
|
|
420
414
|
featured: true,
|
|
421
|
-
isAuction: false,
|
|
422
|
-
isPreOrder: false,
|
|
423
415
|
isPromoted: false,
|
|
424
416
|
tags: [
|
|
425
417
|
"hot-wheels",
|
|
@@ -463,7 +455,8 @@ export const productsStandardSeedData = [
|
|
|
463
455
|
description: "Hot Wheels Car Culture Modern Classics 5-car premium set featuring iconic Japanese performance cars: Honda S2000, Mazda RX-7 (FD), Nissan Skyline GT-R (R34), Toyota Supra (A80), and Honda NSX (NA1). Premium rubber tyres, opening hoods on select vehicles, and individually numbered collector cards. Each car has authentic die-cast metal construction with premium paint finish.",
|
|
464
456
|
category: "category-hot-wheels",
|
|
465
457
|
categoryName: "Hot Wheels",
|
|
466
|
-
brand: "
|
|
458
|
+
brand: "Hot Wheels",
|
|
459
|
+
brandSlug: "brand-hot-wheels",
|
|
467
460
|
price: 129900,
|
|
468
461
|
currency: "INR",
|
|
469
462
|
stockQuantity: 18,
|
|
@@ -478,8 +471,6 @@ export const productsStandardSeedData = [
|
|
|
478
471
|
storeName: "Diecast Depot",
|
|
479
472
|
storeId: "store-diecast-depot",
|
|
480
473
|
featured: false,
|
|
481
|
-
isAuction: false,
|
|
482
|
-
isPreOrder: false,
|
|
483
474
|
isPromoted: true,
|
|
484
475
|
tags: [
|
|
485
476
|
"hot-wheels",
|
|
@@ -518,7 +509,8 @@ export const productsStandardSeedData = [
|
|
|
518
509
|
description: "Tomica Limited Vintage precision diecast of the iconic Datsun Fairlady 240Z in silver. Part of the premium TLV-Vintage series — highly detailed 1:64 scale model with opening doors, rubber tyres, and photo-etched badges. The 240Z is widely regarded as one of the most beautiful Japanese sports cars ever made and TLV captures every curve faithfully. Comes in original Tomica Limited Vintage box with protective tray.",
|
|
519
510
|
category: "category-tomica",
|
|
520
511
|
categoryName: "Tomica",
|
|
521
|
-
brand: "
|
|
512
|
+
brand: "Tomica",
|
|
513
|
+
brandSlug: "brand-tomica",
|
|
522
514
|
price: 299900,
|
|
523
515
|
currency: "INR",
|
|
524
516
|
stockQuantity: 6,
|
|
@@ -533,8 +525,6 @@ export const productsStandardSeedData = [
|
|
|
533
525
|
storeName: "Diecast Depot",
|
|
534
526
|
storeId: "store-diecast-depot",
|
|
535
527
|
featured: false,
|
|
536
|
-
isAuction: false,
|
|
537
|
-
isPreOrder: false,
|
|
538
528
|
isPromoted: false,
|
|
539
529
|
tags: [
|
|
540
530
|
"tomica",
|
|
@@ -575,7 +565,8 @@ export const productsStandardSeedData = [
|
|
|
575
565
|
description: "Hot Wheels Red Line Club exclusive 2023 Bone Shaker in matte black with gold spectraflame accents. RLC exclusive cars are produced in strictly limited quantities (typically under 10,000 units worldwide) and are available only to Red Line Club members. This is the iconic Bone Shaker in the most desirable colourway — matte black with metal-flake. Includes original RLC packaging, numbered certificate of authenticity, and collector button.",
|
|
576
566
|
category: "category-hot-wheels",
|
|
577
567
|
categoryName: "Hot Wheels",
|
|
578
|
-
brand: "
|
|
568
|
+
brand: "Hot Wheels",
|
|
569
|
+
brandSlug: "brand-hot-wheels",
|
|
579
570
|
price: 399900,
|
|
580
571
|
currency: "INR",
|
|
581
572
|
stockQuantity: 2,
|
|
@@ -590,8 +581,6 @@ export const productsStandardSeedData = [
|
|
|
590
581
|
storeName: "Diecast Depot",
|
|
591
582
|
storeId: "store-diecast-depot",
|
|
592
583
|
featured: true,
|
|
593
|
-
isAuction: false,
|
|
594
|
-
isPreOrder: false,
|
|
595
584
|
isPromoted: true,
|
|
596
585
|
tags: [
|
|
597
586
|
"hot-wheels",
|
|
@@ -634,7 +623,8 @@ export const productsStandardSeedData = [
|
|
|
634
623
|
description: "Iconic 1968 Hot Wheels Redline Custom Camaro in the legendary Antifreeze Yellow 'Banana' colourway. Among the most desirable first-year Hot Wheels Redlines due to the rarity of the Banana colour — fewer units were produced compared to the orange version. This example is in Good-to-Very Good (G-VG) condition with honest play wear on the paint, strong red-line tyres, and all four wheels spinning. A genuine original — not a reproduction.",
|
|
635
624
|
category: "category-hot-wheels",
|
|
636
625
|
categoryName: "Hot Wheels",
|
|
637
|
-
brand: "
|
|
626
|
+
brand: "Hot Wheels",
|
|
627
|
+
brandSlug: "brand-hot-wheels",
|
|
638
628
|
price: 1299900,
|
|
639
629
|
currency: "INR",
|
|
640
630
|
stockQuantity: 1,
|
|
@@ -649,8 +639,6 @@ export const productsStandardSeedData = [
|
|
|
649
639
|
storeName: "Diecast Depot",
|
|
650
640
|
storeId: "store-diecast-depot",
|
|
651
641
|
featured: false,
|
|
652
|
-
isAuction: false,
|
|
653
|
-
isPreOrder: false,
|
|
654
642
|
isPromoted: false,
|
|
655
643
|
tags: [
|
|
656
644
|
"hot-wheels",
|
|
@@ -696,7 +684,8 @@ export const productsStandardSeedData = [
|
|
|
696
684
|
description: "Bandai S.H.Figuarts Son Goku in his iconic Ultra Instinct form from Dragon Ball Super. This premium figure stands approximately 14 cm tall and features over 20 points of articulation for dynamic posing. Includes multiple expression faceplates, interchangeable hand parts, effect parts for the Ultra Instinct silver aura, and a figure stand. The Ultra Instinct transformation's silver hair is rendered in transparent gradient plastic for an ethereal glow effect. Tamashii Web Exclusive edition.",
|
|
697
685
|
category: "category-poseable-figures",
|
|
698
686
|
categoryName: "Poseable Action Figures",
|
|
699
|
-
brand: "
|
|
687
|
+
brand: "Bandai",
|
|
688
|
+
brandSlug: "brand-bandai",
|
|
700
689
|
price: 699900,
|
|
701
690
|
currency: "INR",
|
|
702
691
|
stockQuantity: 8,
|
|
@@ -711,8 +700,6 @@ export const productsStandardSeedData = [
|
|
|
711
700
|
storeName: "LetItRip Official",
|
|
712
701
|
storeId: "store-letitrip-official",
|
|
713
702
|
featured: true,
|
|
714
|
-
isAuction: false,
|
|
715
|
-
isPreOrder: false,
|
|
716
703
|
isPromoted: true,
|
|
717
704
|
tags: [
|
|
718
705
|
"bandai",
|
|
@@ -753,7 +740,8 @@ export const productsStandardSeedData = [
|
|
|
753
740
|
description: "Good Smile Company's iconic Nendoroid #663 — Rem from Re:Zero -Starting Life in Another World-. This is one of the best-selling Nendoroids of all time and a must-have for any Re:Zero fan. Stands approximately 10 cm tall in typical Nendoroid cute chibi style. Includes 3 expression faceplates (standard, smiling, and combat), 3 optional hand parts, her morning star weapon, and a Nendoroid stand. Re-release edition in standard packaging.",
|
|
754
741
|
category: "category-nendoroids-chibis",
|
|
755
742
|
categoryName: "Nendoroids & Chibis",
|
|
756
|
-
brand: "
|
|
743
|
+
brand: "Good Smile Company",
|
|
744
|
+
brandSlug: "brand-good-smile",
|
|
757
745
|
price: 499900,
|
|
758
746
|
currency: "INR",
|
|
759
747
|
stockQuantity: 10,
|
|
@@ -768,8 +756,6 @@ export const productsStandardSeedData = [
|
|
|
768
756
|
storeName: "LetItRip Official",
|
|
769
757
|
storeId: "store-letitrip-official",
|
|
770
758
|
featured: true,
|
|
771
|
-
isAuction: false,
|
|
772
|
-
isPreOrder: false,
|
|
773
759
|
isPromoted: false,
|
|
774
760
|
tags: [
|
|
775
761
|
"nendoroid",
|
|
@@ -810,7 +796,8 @@ export const productsStandardSeedData = [
|
|
|
810
796
|
description: "Funko Pop! Naruto Uzumaki in Sage Mode (#932) from Naruto Shippuden. Features Naruto in his iconic Sage Mode toad markings with orange and black design. Stands approximately 9.5 cm tall in the standard Funko Pop vinyl style with oversized head and solid black eyes. Comes in original window box. Perfect for display on any shelf — great gift for Naruto fans.",
|
|
811
797
|
category: "category-poseable-figures",
|
|
812
798
|
categoryName: "Poseable Action Figures",
|
|
813
|
-
brand: "
|
|
799
|
+
brand: "Funko",
|
|
800
|
+
brandSlug: "brand-funko",
|
|
814
801
|
price: 149900,
|
|
815
802
|
currency: "INR",
|
|
816
803
|
stockQuantity: 30,
|
|
@@ -825,8 +812,6 @@ export const productsStandardSeedData = [
|
|
|
825
812
|
storeName: "LetItRip Official",
|
|
826
813
|
storeId: "store-letitrip-official",
|
|
827
814
|
featured: false,
|
|
828
|
-
isAuction: false,
|
|
829
|
-
isPreOrder: false,
|
|
830
815
|
isPromoted: false,
|
|
831
816
|
tags: [
|
|
832
817
|
"funko-pop",
|
|
@@ -865,7 +850,8 @@ export const productsStandardSeedData = [
|
|
|
865
850
|
description: "McFarlane Toys DC Multiverse Batman figure based on Frank Miller's legendary graphic novel The Dark Knight Returns. This 7-inch scale figure features an extremely detailed sculpt of the older, armoured Batman, over 22 points of articulation, and includes a batarang accessory and display base. The textured grey and black armour is faithfully rendered with aged weathering effects. Comes in collector-grade window box packaging with character art.",
|
|
866
851
|
category: "category-scale-figures",
|
|
867
852
|
categoryName: "Scale Figures",
|
|
868
|
-
brand: "
|
|
853
|
+
brand: "McFarlane Toys",
|
|
854
|
+
brandSlug: "brand-mcfarlane",
|
|
869
855
|
price: 349900,
|
|
870
856
|
currency: "INR",
|
|
871
857
|
stockQuantity: 7,
|
|
@@ -880,8 +866,6 @@ export const productsStandardSeedData = [
|
|
|
880
866
|
storeName: "LetItRip Official",
|
|
881
867
|
storeId: "store-letitrip-official",
|
|
882
868
|
featured: false,
|
|
883
|
-
isAuction: false,
|
|
884
|
-
isPreOrder: false,
|
|
885
869
|
isPromoted: false,
|
|
886
870
|
tags: [
|
|
887
871
|
"mcfarlane",
|
|
@@ -922,7 +906,8 @@ export const productsStandardSeedData = [
|
|
|
922
906
|
description: "Bandai's definitive Master Grade RX-78-2 Gundam Ver. 3.0 — the iconic original Gundam redefined with state-of-the-art engineering. This 1/100 scale snap-fit plastic model features an internal frame with full armour over-wrap, 144 individual hand-assembly components, and impressive poseability that captures every heroic Gundam stance. Includes beam rifle, beam sabre, shield, hyper bazooka, and Gundam hammer. No glue required — perfect for builders aged 15+.",
|
|
923
907
|
category: "category-gunpla",
|
|
924
908
|
categoryName: "Gunpla",
|
|
925
|
-
brand: "
|
|
909
|
+
brand: "Bandai",
|
|
910
|
+
brandSlug: "brand-bandai",
|
|
926
911
|
price: 299900,
|
|
927
912
|
currency: "INR",
|
|
928
913
|
stockQuantity: 12,
|
|
@@ -937,8 +922,6 @@ export const productsStandardSeedData = [
|
|
|
937
922
|
storeName: "LetItRip Official",
|
|
938
923
|
storeId: "store-letitrip-official",
|
|
939
924
|
featured: true,
|
|
940
|
-
isAuction: false,
|
|
941
|
-
isPreOrder: false,
|
|
942
925
|
isPromoted: false,
|
|
943
926
|
tags: [
|
|
944
927
|
"gunpla",
|
|
@@ -979,7 +962,8 @@ export const productsStandardSeedData = [
|
|
|
979
962
|
description: "Bandai's legendary Real Grade Wing Gundam Zero from Endless Waltz — the most beautiful Gundam ever made. The RG 1/144 scale features an advanced MS Joint inner frame system, stunning wing feather detail with individual micro-articulated feathers, twin buster rifle, beam sabre effect parts, and a Sandhausen Sturm System for the signature Wing Zero cannon pose. The feathers alone have 88 individual moving components. A showpiece even un-built.",
|
|
980
963
|
category: "category-gunpla",
|
|
981
964
|
categoryName: "Gunpla",
|
|
982
|
-
brand: "
|
|
965
|
+
brand: "Bandai",
|
|
966
|
+
brandSlug: "brand-bandai",
|
|
983
967
|
price: 199900,
|
|
984
968
|
currency: "INR",
|
|
985
969
|
stockQuantity: 9,
|
|
@@ -994,8 +978,6 @@ export const productsStandardSeedData = [
|
|
|
994
978
|
storeName: "LetItRip Official",
|
|
995
979
|
storeId: "store-letitrip-official",
|
|
996
980
|
featured: false,
|
|
997
|
-
isAuction: false,
|
|
998
|
-
isPreOrder: false,
|
|
999
981
|
isPromoted: false,
|
|
1000
982
|
tags: [
|
|
1001
983
|
"gunpla",
|
|
@@ -1037,7 +1019,8 @@ export const productsStandardSeedData = [
|
|
|
1037
1019
|
description: "The official Beyblade X launch product — BX-01 Dran Sword 3-60F Starter Set. Beyblade X is the next evolution of the competitive Beyblade system, featuring the new X-Line rail system and the Extreme Dash (X-Dash) mechanic where the Beyblade launches at high speed onto the XStadium rail for powerful finisher attacks. Includes Dran Sword top (Bit: Dran, Blade: Sword 3, Ratchet: 60, Bit: F), a high-grip X-String Launcher, and a Beyblade X Activity Guide booklet. Authentic Takara Tomy Japan import.",
|
|
1038
1020
|
category: "category-beyblade-x",
|
|
1039
1021
|
categoryName: "Beyblade X",
|
|
1040
|
-
brand: "
|
|
1022
|
+
brand: "Beyblade",
|
|
1023
|
+
brandSlug: "brand-beyblade",
|
|
1041
1024
|
price: 199900,
|
|
1042
1025
|
currency: "INR",
|
|
1043
1026
|
stockQuantity: 20,
|
|
@@ -1052,8 +1035,6 @@ export const productsStandardSeedData = [
|
|
|
1052
1035
|
storeName: "Beyblade Arena",
|
|
1053
1036
|
storeId: "store-beyblade-arena",
|
|
1054
1037
|
featured: true,
|
|
1055
|
-
isAuction: false,
|
|
1056
|
-
isPreOrder: false,
|
|
1057
1038
|
isPromoted: true,
|
|
1058
1039
|
tags: [
|
|
1059
1040
|
"beyblade-x",
|
|
@@ -1093,7 +1074,8 @@ export const productsStandardSeedData = [
|
|
|
1093
1074
|
description: "Beyblade Burst QuadStrike B-200 Infinite Valkyrie Knight Sword 1B Starter Set — the latest evolution in the Valkyrie lineage. Part of the QuadStrike system featuring four-blade attack design with the Knight Sword contact points and 1B driver for aggressive stamina-to-attack balance. Includes Infinite Valkyrie top, QuadDrive Launcher, and Beyblade Burst activity guide. Authentic Takara Tomy Japan manufacture — no knockoffs. A top-tier competitive choice in the QuadStrike meta.",
|
|
1094
1075
|
category: "category-beyblade-burst",
|
|
1095
1076
|
categoryName: "Beyblade Burst",
|
|
1096
|
-
brand: "
|
|
1077
|
+
brand: "Beyblade",
|
|
1078
|
+
brandSlug: "brand-beyblade",
|
|
1097
1079
|
price: 249900,
|
|
1098
1080
|
currency: "INR",
|
|
1099
1081
|
stockQuantity: 15,
|
|
@@ -1108,8 +1090,6 @@ export const productsStandardSeedData = [
|
|
|
1108
1090
|
storeName: "Beyblade Arena",
|
|
1109
1091
|
storeId: "store-beyblade-arena",
|
|
1110
1092
|
featured: false,
|
|
1111
|
-
isAuction: false,
|
|
1112
|
-
isPreOrder: false,
|
|
1113
1093
|
isPromoted: false,
|
|
1114
1094
|
tags: [
|
|
1115
1095
|
"beyblade-burst",
|
|
@@ -1149,7 +1129,8 @@ export const productsStandardSeedData = [
|
|
|
1149
1129
|
description: "Scarlet & Violet Temporal Forces ETB featuring Iron Leaves ex and Walking Wake ex. Contains 9 booster packs, 65 card sleeves featuring Iron Leaves ex, 45 Pokémon TCG Energy cards, 6 damage-counter dice, competition-legal coin-flip die, and collector's box. Temporal Forces introduces Ancient and Future Pokémon mechanic cards with ACE SPEC cards returning at one per deck.",
|
|
1150
1130
|
category: "category-pokemon-tcg",
|
|
1151
1131
|
categoryName: "Pokémon TCG",
|
|
1152
|
-
brand: "
|
|
1132
|
+
brand: "The Pokémon Company",
|
|
1133
|
+
brandSlug: "brand-pokemon-company",
|
|
1153
1134
|
price: 469900,
|
|
1154
1135
|
currency: "INR",
|
|
1155
1136
|
stockQuantity: 20,
|
|
@@ -1163,8 +1144,6 @@ export const productsStandardSeedData = [
|
|
|
1163
1144
|
storeName: "Pokémon Palace",
|
|
1164
1145
|
storeId: "store-pokemon-palace",
|
|
1165
1146
|
featured: false,
|
|
1166
|
-
isAuction: false,
|
|
1167
|
-
isPreOrder: false,
|
|
1168
1147
|
isPromoted: false,
|
|
1169
1148
|
tags: ["pokemon", "etb", "temporal-forces", "scarlet-violet", "sealed", "iron-leaves"],
|
|
1170
1149
|
condition: "new",
|
|
@@ -1194,7 +1173,8 @@ export const productsStandardSeedData = [
|
|
|
1194
1173
|
description: "Single booster pack from Pokémon TCG Scarlet & Violet Paradox Rift. Each pack contains 10 cards with at least 1 reverse holo and 1 rare or higher. Paradox Rift features Ancient and Future Pokémon — great chance at Iron Valiant ex, Roaring Moon ex, and Walking Wake ex special illustration rares. Factory sealed, direct from official distributor allocation.",
|
|
1195
1174
|
category: "category-pokemon-tcg",
|
|
1196
1175
|
categoryName: "Pokémon TCG",
|
|
1197
|
-
brand: "
|
|
1176
|
+
brand: "The Pokémon Company",
|
|
1177
|
+
brandSlug: "brand-pokemon-company",
|
|
1198
1178
|
price: 34900,
|
|
1199
1179
|
currency: "INR",
|
|
1200
1180
|
stockQuantity: 80,
|
|
@@ -1208,8 +1188,6 @@ export const productsStandardSeedData = [
|
|
|
1208
1188
|
storeName: "Pokémon Palace",
|
|
1209
1189
|
storeId: "store-pokemon-palace",
|
|
1210
1190
|
featured: false,
|
|
1211
|
-
isAuction: false,
|
|
1212
|
-
isPreOrder: false,
|
|
1213
1191
|
isPromoted: false,
|
|
1214
1192
|
tags: ["pokemon", "paradox-rift", "booster-pack", "scarlet-violet", "sealed"],
|
|
1215
1193
|
condition: "new",
|
|
@@ -1237,7 +1215,8 @@ export const productsStandardSeedData = [
|
|
|
1237
1215
|
description: "Pokémon Eevee Evolutions Premium Collector Tin featuring Flareon. Contains 4 booster packs (2 Paradox Rift, 1 Paldean Fates, 1 Temporal Forces), a special Flareon V promo card, a metal coin, and a premium collector tin with embossed Eeveelution artwork. The Flareon tin is the most popular of the Eevee Evolutions series — a beautiful display piece and a great gift for any Pokémon fan.",
|
|
1238
1216
|
category: "category-pokemon-tcg",
|
|
1239
1217
|
categoryName: "Pokémon TCG",
|
|
1240
|
-
brand: "
|
|
1218
|
+
brand: "The Pokémon Company",
|
|
1219
|
+
brandSlug: "brand-pokemon-company",
|
|
1241
1220
|
price: 179900,
|
|
1242
1221
|
currency: "INR",
|
|
1243
1222
|
stockQuantity: 12,
|
|
@@ -1251,8 +1230,6 @@ export const productsStandardSeedData = [
|
|
|
1251
1230
|
storeName: "Pokémon Palace",
|
|
1252
1231
|
storeId: "store-pokemon-palace",
|
|
1253
1232
|
featured: false,
|
|
1254
|
-
isAuction: false,
|
|
1255
|
-
isPreOrder: false,
|
|
1256
1233
|
isPromoted: false,
|
|
1257
1234
|
tags: ["pokemon", "eevee-evolutions", "flareon", "tin", "sealed", "gift"],
|
|
1258
1235
|
condition: "new",
|
|
@@ -1283,7 +1260,8 @@ export const productsStandardSeedData = [
|
|
|
1283
1260
|
description: "Sealed Yu-Gi-Oh! TCG Phantom Nightmare booster box containing 24 packs of 9 cards each (216 cards total). Phantom Nightmare introduces new Sinful Spoils, Snake-Eyes, and Branded support cards. Each box yields approximately 12 Secret Rares and contains chase cards for the popular Snake-Eye Ash deck and Fiendsmith engine. Factory sealed from official UK Konami distributor allocation.",
|
|
1284
1261
|
category: "category-yugioh-tcg",
|
|
1285
1262
|
categoryName: "Yu-Gi-Oh! TCG",
|
|
1286
|
-
brand: "
|
|
1263
|
+
brand: "Konami",
|
|
1264
|
+
brandSlug: "brand-konami",
|
|
1287
1265
|
price: 599900,
|
|
1288
1266
|
currency: "INR",
|
|
1289
1267
|
stockQuantity: 6,
|
|
@@ -1297,8 +1275,6 @@ export const productsStandardSeedData = [
|
|
|
1297
1275
|
storeName: "CardGame Hub",
|
|
1298
1276
|
storeId: "store-cardgame-hub",
|
|
1299
1277
|
featured: false,
|
|
1300
|
-
isAuction: false,
|
|
1301
|
-
isPreOrder: false,
|
|
1302
1278
|
isPromoted: true,
|
|
1303
1279
|
tags: ["yugioh", "phantom-nightmare", "booster-box", "snake-eye", "konami", "sealed"],
|
|
1304
1280
|
condition: "new",
|
|
@@ -1329,7 +1305,8 @@ export const productsStandardSeedData = [
|
|
|
1329
1305
|
description: "Dark Magician from Magician's Force (MFC-000) in Ultra Rare — Near Mint condition, ungraded/raw. One of the most iconic Yu-Gi-Oh! cards ever printed, the MFC Ultra Rare Dark Magician features the classic purple robed artwork with gold foil Ultra Rare treatment. This copy scores NM under bright light: four near-perfect corners, no visible scratches, only extremely minor whitening on the back under loupe. Would grade PSA 7–8 range based on condition.",
|
|
1330
1306
|
category: "category-yugioh-tcg",
|
|
1331
1307
|
categoryName: "Yu-Gi-Oh! TCG",
|
|
1332
|
-
brand: "
|
|
1308
|
+
brand: "Konami",
|
|
1309
|
+
brandSlug: "brand-konami",
|
|
1333
1310
|
price: 149900,
|
|
1334
1311
|
currency: "INR",
|
|
1335
1312
|
stockQuantity: 1,
|
|
@@ -1343,8 +1320,6 @@ export const productsStandardSeedData = [
|
|
|
1343
1320
|
storeName: "CardGame Hub",
|
|
1344
1321
|
storeId: "store-cardgame-hub",
|
|
1345
1322
|
featured: false,
|
|
1346
|
-
isAuction: false,
|
|
1347
|
-
isPreOrder: false,
|
|
1348
1323
|
isPromoted: false,
|
|
1349
1324
|
tags: ["yugioh", "dark-magician", "mfc-000", "ultra-rare", "raw", "vintage"],
|
|
1350
1325
|
condition: "used",
|
|
@@ -1376,7 +1351,8 @@ export const productsStandardSeedData = [
|
|
|
1376
1351
|
description: "Yu-Gi-Oh! TCG Rarity Collection II Premium Box — contains 3 packs of 5 cards each, guaranteed to include cards at Ultra Rare or higher rarity. Rarity Collection II features reprints of competitive staples, tournament favourites, and legacy cards all upgraded to Prismatic Secret Rare and Quarter Century Secret Rare foil treatments. Ideal for collectors and competitive players upgrading their decks with premium foil versions.",
|
|
1377
1352
|
category: "category-yugioh-tcg",
|
|
1378
1353
|
categoryName: "Yu-Gi-Oh! TCG",
|
|
1379
|
-
brand: "
|
|
1354
|
+
brand: "Konami",
|
|
1355
|
+
brandSlug: "brand-konami",
|
|
1380
1356
|
price: 349900,
|
|
1381
1357
|
currency: "INR",
|
|
1382
1358
|
stockQuantity: 10,
|
|
@@ -1390,8 +1366,6 @@ export const productsStandardSeedData = [
|
|
|
1390
1366
|
storeName: "CardGame Hub",
|
|
1391
1367
|
storeId: "store-cardgame-hub",
|
|
1392
1368
|
featured: false,
|
|
1393
|
-
isAuction: false,
|
|
1394
|
-
isPreOrder: false,
|
|
1395
1369
|
isPromoted: false,
|
|
1396
1370
|
tags: ["yugioh", "rarity-collection", "prismatic-secret-rare", "reprint", "premium"],
|
|
1397
1371
|
condition: "new",
|
|
@@ -1422,7 +1396,8 @@ export const productsStandardSeedData = [
|
|
|
1422
1396
|
description: "Tomica Limited Vintage precision 1:64 diecast of the legendary Nissan Skyline 2000 GT-R Hakosuka in pearl white. The Hakosuka ('box sky') is the original C10 GT-R from 1969-1972 and is widely regarded as the most collectable Japanese car ever made. This TLV model captures every detail: pop-up headlights, chrome bumpers, opening doors, rubber tyres, and a faithfully rendered deep-gloss white finish. Comes in original Tomica Limited Vintage protective display case.",
|
|
1423
1397
|
category: "category-tomica",
|
|
1424
1398
|
categoryName: "Tomica",
|
|
1425
|
-
brand: "
|
|
1399
|
+
brand: "Tomica",
|
|
1400
|
+
brandSlug: "brand-tomica",
|
|
1426
1401
|
price: 349900,
|
|
1427
1402
|
currency: "INR",
|
|
1428
1403
|
stockQuantity: 4,
|
|
@@ -1436,8 +1411,6 @@ export const productsStandardSeedData = [
|
|
|
1436
1411
|
storeName: "Diecast Depot",
|
|
1437
1412
|
storeId: "store-diecast-depot",
|
|
1438
1413
|
featured: false,
|
|
1439
|
-
isAuction: false,
|
|
1440
|
-
isPreOrder: false,
|
|
1441
1414
|
isPromoted: false,
|
|
1442
1415
|
tags: ["tomica", "limited-vintage", "hakosuka", "nissan", "skyline", "gt-r", "japanese-cars"],
|
|
1443
1416
|
condition: "new",
|
|
@@ -1470,7 +1443,8 @@ export const productsStandardSeedData = [
|
|
|
1470
1443
|
description: "Hot Wheels Car Culture Japan Historics 2 premium 5-car set — celebrating classic Japanese performance and economy cars: Subaru BRAT, Nissan Laurel 2000 SGX, Honda City Turbo, Mazda Familia 1500XG, and Toyota Corolla Levin (AE86). Premium rubber tyres, realistic liveries, and die-cast metal construction. Japan Historics 2 is one of the most beloved Car Culture series for JDM fans and is harder to find now as it sold out quickly.",
|
|
1471
1444
|
category: "category-hot-wheels",
|
|
1472
1445
|
categoryName: "Hot Wheels",
|
|
1473
|
-
brand: "
|
|
1446
|
+
brand: "Hot Wheels",
|
|
1447
|
+
brandSlug: "brand-hot-wheels",
|
|
1474
1448
|
price: 149900,
|
|
1475
1449
|
currency: "INR",
|
|
1476
1450
|
stockQuantity: 8,
|
|
@@ -1484,8 +1458,6 @@ export const productsStandardSeedData = [
|
|
|
1484
1458
|
storeName: "Diecast Depot",
|
|
1485
1459
|
storeId: "store-diecast-depot",
|
|
1486
1460
|
featured: false,
|
|
1487
|
-
isAuction: false,
|
|
1488
|
-
isPreOrder: false,
|
|
1489
1461
|
isPromoted: false,
|
|
1490
1462
|
tags: ["hot-wheels", "car-culture", "japan-historics", "jdm", "premium", "5-pack"],
|
|
1491
1463
|
condition: "new",
|
|
@@ -1515,7 +1487,8 @@ export const productsStandardSeedData = [
|
|
|
1515
1487
|
description: "Genuine Hot Wheels Super Treasure Hunt (STH) Dodge Viper SRT10 — pulled fresh from retail, immediately bagged in hard case. STH cars are produced at approximately 1:10,000 ratio per print run, identifiable by the Spectraflame paint finish, Treasure Hunt logo on the card, and Real Rider rubber tyres. This Viper STH has vibrant red Spectraflame, no card bends, and the blister is perfectly sealed. One of the most desirable STH castings of 2023.",
|
|
1516
1488
|
category: "category-hot-wheels",
|
|
1517
1489
|
categoryName: "Hot Wheels",
|
|
1518
|
-
brand: "
|
|
1490
|
+
brand: "Hot Wheels",
|
|
1491
|
+
brandSlug: "brand-hot-wheels",
|
|
1519
1492
|
price: 299900,
|
|
1520
1493
|
currency: "INR",
|
|
1521
1494
|
stockQuantity: 1,
|
|
@@ -1529,8 +1502,6 @@ export const productsStandardSeedData = [
|
|
|
1529
1502
|
storeName: "Diecast Depot",
|
|
1530
1503
|
storeId: "store-diecast-depot",
|
|
1531
1504
|
featured: false,
|
|
1532
|
-
isAuction: false,
|
|
1533
|
-
isPreOrder: false,
|
|
1534
1505
|
isPromoted: true,
|
|
1535
1506
|
tags: ["hot-wheels", "super-treasure-hunt", "sth", "dodge-viper", "spectraflame", "real-rider"],
|
|
1536
1507
|
condition: "new",
|
|
@@ -1566,7 +1537,8 @@ export const productsStandardSeedData = [
|
|
|
1566
1537
|
description: "Beyblade X BX-04 Knight Shield 3-80N Starter Set — the defensive powerhouse of the Beyblade X first wave. Knight Shield features the 80N driver providing superior stamina and the Shield 3 blade with wide contact points for knock-out resistance. Ideal for defensive play style. Includes high-grip X-String Launcher. Authentic Takara Tomy Japan import — indistinguishable from officially distributed product.",
|
|
1567
1538
|
category: "category-beyblade-x",
|
|
1568
1539
|
categoryName: "Beyblade X",
|
|
1569
|
-
brand: "
|
|
1540
|
+
brand: "Beyblade",
|
|
1541
|
+
brandSlug: "brand-beyblade",
|
|
1570
1542
|
price: 219900,
|
|
1571
1543
|
currency: "INR",
|
|
1572
1544
|
stockQuantity: 18,
|
|
@@ -1580,8 +1552,6 @@ export const productsStandardSeedData = [
|
|
|
1580
1552
|
storeName: "Beyblade Arena",
|
|
1581
1553
|
storeId: "store-beyblade-arena",
|
|
1582
1554
|
featured: false,
|
|
1583
|
-
isAuction: false,
|
|
1584
|
-
isPreOrder: false,
|
|
1585
1555
|
isPromoted: false,
|
|
1586
1556
|
tags: ["beyblade-x", "bx-04", "knight-shield", "takara-tomy", "starter-set", "defense"],
|
|
1587
1557
|
condition: "new",
|
|
@@ -1612,7 +1582,8 @@ export const productsStandardSeedData = [
|
|
|
1612
1582
|
description: "The official Beyblade X XStadium (BX-08) — required for authentic Beyblade X play. The XStadium features the new X-Line rail system around the interior which enables the Extreme Dash (X-Dash) finishing move unique to Beyblade X. Two separate battle modes: standard stadium floor and the optional X-Line insert. Official Takara Tomy Japan product — the same stadium used in all official Beyblade X tournaments.",
|
|
1613
1583
|
category: "category-beyblade-x",
|
|
1614
1584
|
categoryName: "Beyblade X",
|
|
1615
|
-
brand: "
|
|
1585
|
+
brand: "Beyblade",
|
|
1586
|
+
brandSlug: "brand-beyblade",
|
|
1616
1587
|
price: 399900,
|
|
1617
1588
|
currency: "INR",
|
|
1618
1589
|
stockQuantity: 10,
|
|
@@ -1626,8 +1597,6 @@ export const productsStandardSeedData = [
|
|
|
1626
1597
|
storeName: "Beyblade Arena",
|
|
1627
1598
|
storeId: "store-beyblade-arena",
|
|
1628
1599
|
featured: false,
|
|
1629
|
-
isAuction: false,
|
|
1630
|
-
isPreOrder: false,
|
|
1631
1600
|
isPromoted: false,
|
|
1632
1601
|
tags: ["beyblade-x", "xstadium", "bx-08", "stadium", "takara-tomy", "tournament"],
|
|
1633
1602
|
condition: "new",
|
|
@@ -1657,7 +1626,8 @@ export const productsStandardSeedData = [
|
|
|
1657
1626
|
description: "Beyblade Burst QuadStrike B-184 Tempest Dragon Booster Set — aggressive attack-type top designed for the QuadStrike format. Features the Dragon Bit, Attack 2 blade with four razor-edge contact points, and the Xtreme' driver for extreme speed. One of the top-tier QuadStrike competitive choices. Booster set includes the top and driver only — launcher sold separately. Authentic Takara Tomy Japan.",
|
|
1658
1627
|
category: "category-beyblade-burst",
|
|
1659
1628
|
categoryName: "Beyblade Burst",
|
|
1660
|
-
brand: "
|
|
1629
|
+
brand: "Beyblade",
|
|
1630
|
+
brandSlug: "brand-beyblade",
|
|
1661
1631
|
price: 149900,
|
|
1662
1632
|
currency: "INR",
|
|
1663
1633
|
stockQuantity: 22,
|
|
@@ -1671,8 +1641,6 @@ export const productsStandardSeedData = [
|
|
|
1671
1641
|
storeName: "Beyblade Arena",
|
|
1672
1642
|
storeId: "store-beyblade-arena",
|
|
1673
1643
|
featured: false,
|
|
1674
|
-
isAuction: false,
|
|
1675
|
-
isPreOrder: false,
|
|
1676
1644
|
isPromoted: false,
|
|
1677
1645
|
tags: ["beyblade-burst", "quadstrike", "b-184", "tempest-dragon", "takara-tomy", "attack"],
|
|
1678
1646
|
condition: "new",
|
|
@@ -1704,7 +1672,8 @@ export const productsStandardSeedData = [
|
|
|
1704
1672
|
description: "Bandai S.H.Figuarts Vegeta in his Super Saiyan Blue (SSGSS) form from Dragon Ball Super. Standing approximately 14 cm tall with 20+ articulation points. Features blue gradient transparent hair, Galick Gun charging effect parts, six pairs of interchangeable hands, and two expression faceplates (determined and angry). Part of the DBS Resurrection F wave — pairs perfectly with the S.H.Figuarts Goku SSGSS for a dramatic display scene.",
|
|
1705
1673
|
category: "category-poseable-figures",
|
|
1706
1674
|
categoryName: "Poseable Action Figures",
|
|
1707
|
-
brand: "
|
|
1675
|
+
brand: "Bandai",
|
|
1676
|
+
brandSlug: "brand-bandai",
|
|
1708
1677
|
price: 649900,
|
|
1709
1678
|
currency: "INR",
|
|
1710
1679
|
stockQuantity: 5,
|
|
@@ -1718,8 +1687,6 @@ export const productsStandardSeedData = [
|
|
|
1718
1687
|
storeName: "LetItRip Official",
|
|
1719
1688
|
storeId: "store-letitrip-official",
|
|
1720
1689
|
featured: false,
|
|
1721
|
-
isAuction: false,
|
|
1722
|
-
isPreOrder: false,
|
|
1723
1690
|
isPromoted: false,
|
|
1724
1691
|
tags: ["bandai", "sh-figuarts", "vegeta", "super-saiyan-blue", "dragon-ball-super", "tamashii"],
|
|
1725
1692
|
condition: "new",
|
|
@@ -1751,7 +1718,8 @@ export const productsStandardSeedData = [
|
|
|
1751
1718
|
description: "NECA's definitive 1990 Teenage Mutant Ninja Turtles 7-inch figure set — Leonardo, Donatello, Michelangelo, and Raphael as they appeared in the original 1990 live-action film. Each figure features approximately 30 points of articulation, screen-accurate sculpting based on the actual film suits, multiple hands, and full weapon loadouts. Sold as a 4-figure set in a large collector window box. NECA's most popular TMNT release — extremely hard to find in India.",
|
|
1752
1719
|
category: "category-scale-figures",
|
|
1753
1720
|
categoryName: "Scale Figures",
|
|
1754
|
-
brand: "
|
|
1721
|
+
brand: "NECA",
|
|
1722
|
+
brandSlug: "brand-neca",
|
|
1755
1723
|
price: 1299900,
|
|
1756
1724
|
currency: "INR",
|
|
1757
1725
|
stockQuantity: 3,
|
|
@@ -1765,8 +1733,6 @@ export const productsStandardSeedData = [
|
|
|
1765
1733
|
storeName: "LetItRip Official",
|
|
1766
1734
|
storeId: "store-letitrip-official",
|
|
1767
1735
|
featured: false,
|
|
1768
|
-
isAuction: false,
|
|
1769
|
-
isPreOrder: false,
|
|
1770
1736
|
isPromoted: false,
|
|
1771
1737
|
tags: ["neca", "tmnt", "teenage-mutant-ninja-turtles", "1990", "film", "4-pack", "7-inch"],
|
|
1772
1738
|
condition: "new",
|
|
@@ -1799,7 +1765,8 @@ export const productsStandardSeedData = [
|
|
|
1799
1765
|
description: "Funko Pop! Dragon Ball Z Goku Super Saiyan 3 #867 — Glow in the Dark (GITD) chase special. This variant glows a vivid blue-green in darkness for a spectacular display effect. Stands approximately 9.5 cm tall in the standard Funko Pop vinyl style with the signature Super Saiyan 3 waist-length blonde hair. Comes in original window box with 'Chase' sticker. An instant sell-out at retail — this is a genuine GITD chase, not a standard release.",
|
|
1800
1766
|
category: "category-poseable-figures",
|
|
1801
1767
|
categoryName: "Poseable Action Figures",
|
|
1802
|
-
brand: "
|
|
1768
|
+
brand: "Funko",
|
|
1769
|
+
brandSlug: "brand-funko",
|
|
1803
1770
|
price: 249900,
|
|
1804
1771
|
currency: "INR",
|
|
1805
1772
|
stockQuantity: 6,
|
|
@@ -1813,8 +1780,6 @@ export const productsStandardSeedData = [
|
|
|
1813
1780
|
storeName: "LetItRip Official",
|
|
1814
1781
|
storeId: "store-letitrip-official",
|
|
1815
1782
|
featured: false,
|
|
1816
|
-
isAuction: false,
|
|
1817
|
-
isPreOrder: false,
|
|
1818
1783
|
isPromoted: false,
|
|
1819
1784
|
tags: ["funko-pop", "dragon-ball-z", "goku", "super-saiyan-3", "ssj3", "gitd", "chase", "glow"],
|
|
1820
1785
|
condition: "new",
|
|
@@ -1846,7 +1811,8 @@ export const productsStandardSeedData = [
|
|
|
1846
1811
|
description: "Bandai Real Grade 1/144 Strike Freedom Gundam — one of the most visually stunning Real Grade kits ever produced. Features the iconic wing system with individual golden dragoon units that can be fanned out, an advanced MS Joint inner frame, twin rail cannons, Beam Rifles, and Beam Sabre effect parts. The golden DRAGOON units have individually adjustable angles for dramatic display poses. A showpiece even un-built — the gold chrome on the dragoons is breathtaking.",
|
|
1847
1812
|
category: "category-gunpla",
|
|
1848
1813
|
categoryName: "Gunpla",
|
|
1849
|
-
brand: "
|
|
1814
|
+
brand: "Bandai",
|
|
1815
|
+
brandSlug: "brand-bandai",
|
|
1850
1816
|
price: 249900,
|
|
1851
1817
|
currency: "INR",
|
|
1852
1818
|
stockQuantity: 7,
|
|
@@ -1860,8 +1826,6 @@ export const productsStandardSeedData = [
|
|
|
1860
1826
|
storeName: "LetItRip Official",
|
|
1861
1827
|
storeId: "store-letitrip-official",
|
|
1862
1828
|
featured: false,
|
|
1863
|
-
isAuction: false,
|
|
1864
|
-
isPreOrder: false,
|
|
1865
1829
|
isPromoted: false,
|
|
1866
1830
|
tags: ["gunpla", "real-grade", "strike-freedom", "bandai", "model-kit", "rg", "gold-dragoon"],
|
|
1867
1831
|
condition: "new",
|
|
@@ -1894,7 +1858,8 @@ export const productsStandardSeedData = [
|
|
|
1894
1858
|
description: "Good Smile Company Nendoroid #942 — Zero Two from Darling in the FranXX. One of the most beloved Nendoroids from the 2018 anime season. Stands approximately 10 cm tall in chibi style with 3 expression faceplates (standard, smiling, and winking), her iconic red horns, pink hair, and pilot suit. Includes optional hand parts and Nendoroid display stand. Re-release version — authentic GSC quality with original box and serial number.",
|
|
1895
1859
|
category: "category-nendoroids-chibis",
|
|
1896
1860
|
categoryName: "Nendoroids & Chibis",
|
|
1897
|
-
brand: "
|
|
1861
|
+
brand: "Good Smile Company",
|
|
1862
|
+
brandSlug: "brand-good-smile",
|
|
1898
1863
|
price: 529900,
|
|
1899
1864
|
currency: "INR",
|
|
1900
1865
|
stockQuantity: 8,
|
|
@@ -1908,8 +1873,6 @@ export const productsStandardSeedData = [
|
|
|
1908
1873
|
storeName: "Tokyo Toys India",
|
|
1909
1874
|
storeId: "store-tokyo-toys-india",
|
|
1910
1875
|
featured: true,
|
|
1911
|
-
isAuction: false,
|
|
1912
|
-
isPreOrder: false,
|
|
1913
1876
|
isPromoted: true,
|
|
1914
1877
|
tags: ["nendoroid", "zero-two", "darling-in-the-franxx", "good-smile", "anime-figure", "chibi"],
|
|
1915
1878
|
condition: "new",
|
|
@@ -1941,7 +1904,8 @@ export const productsStandardSeedData = [
|
|
|
1941
1904
|
description: "Good Smile Company Nendoroid Levi Ackerman from Attack on Titan, #390. The fan-favourite Survey Corps captain rendered in chibi Nendoroid style. Includes 3 expression faceplates (neutral, combat, and cleaning mode!), ODM gear effect parts, thunder spear, and Nendoroid display stand. The iconic cleaning mode faceplate with mop accessory makes this one of the most unique Nendoroids available. Re-release edition.",
|
|
1942
1905
|
category: "category-nendoroids-chibis",
|
|
1943
1906
|
categoryName: "Nendoroids & Chibis",
|
|
1944
|
-
brand: "
|
|
1907
|
+
brand: "Good Smile Company",
|
|
1908
|
+
brandSlug: "brand-good-smile",
|
|
1945
1909
|
price: 489900,
|
|
1946
1910
|
currency: "INR",
|
|
1947
1911
|
stockQuantity: 6,
|
|
@@ -1955,8 +1919,6 @@ export const productsStandardSeedData = [
|
|
|
1955
1919
|
storeName: "Tokyo Toys India",
|
|
1956
1920
|
storeId: "store-tokyo-toys-india",
|
|
1957
1921
|
featured: false,
|
|
1958
|
-
isAuction: false,
|
|
1959
|
-
isPreOrder: false,
|
|
1960
1922
|
isPromoted: false,
|
|
1961
1923
|
tags: ["nendoroid", "levi", "attack-on-titan", "good-smile", "survey-corps", "anime-figure"],
|
|
1962
1924
|
condition: "new",
|
|
@@ -1988,7 +1950,8 @@ export const productsStandardSeedData = [
|
|
|
1988
1950
|
description: "Funko Pop! Tanjiro Kamado from Demon Slayer: Kimetsu no Yaiba, #855. Features Tanjiro in his iconic black and green checker haori with Nichirin Sword. Stands approximately 9.5 cm tall in the standard Funko vinyl style. Comes in original window box. One of the most popular anime Funko Pops of the past 3 years — Demon Slayer collectors and casual fans alike want this one.",
|
|
1989
1951
|
category: "category-poseable-figures",
|
|
1990
1952
|
categoryName: "Poseable Action Figures",
|
|
1991
|
-
brand: "
|
|
1953
|
+
brand: "Funko",
|
|
1954
|
+
brandSlug: "brand-funko",
|
|
1992
1955
|
price: 159900,
|
|
1993
1956
|
currency: "INR",
|
|
1994
1957
|
stockQuantity: 20,
|
|
@@ -2002,8 +1965,6 @@ export const productsStandardSeedData = [
|
|
|
2002
1965
|
storeName: "Tokyo Toys India",
|
|
2003
1966
|
storeId: "store-tokyo-toys-india",
|
|
2004
1967
|
featured: false,
|
|
2005
|
-
isAuction: false,
|
|
2006
|
-
isPreOrder: false,
|
|
2007
1968
|
isPromoted: false,
|
|
2008
1969
|
tags: ["funko-pop", "tanjiro", "demon-slayer", "kimetsu-no-yaiba", "anime", "vinyl-figure"],
|
|
2009
1970
|
condition: "new",
|
|
@@ -2033,7 +1994,8 @@ export const productsStandardSeedData = [
|
|
|
2033
1994
|
description: "Bandai S.H.Figuarts Sailor Moon in her Eternal Sailor Moon form from the Sailor Moon Eternal films. This highly detailed figure stands approximately 14 cm tall with 20+ articulation points. Features the Eternal tiara, butterfly wing effect parts representing her transformation, multiple expression faceplates, and the Eternal Tiare weapon accessory. The butterfly wings are rendered in semi-translucent rainbow plastic — a stunning display piece for any magical girl fan.",
|
|
2034
1995
|
category: "category-poseable-figures",
|
|
2035
1996
|
categoryName: "Poseable Action Figures",
|
|
2036
|
-
brand: "
|
|
1997
|
+
brand: "Bandai",
|
|
1998
|
+
brandSlug: "brand-bandai",
|
|
2037
1999
|
price: 729900,
|
|
2038
2000
|
currency: "INR",
|
|
2039
2001
|
stockQuantity: 5,
|
|
@@ -2047,8 +2009,6 @@ export const productsStandardSeedData = [
|
|
|
2047
2009
|
storeName: "Tokyo Toys India",
|
|
2048
2010
|
storeId: "store-tokyo-toys-india",
|
|
2049
2011
|
featured: false,
|
|
2050
|
-
isAuction: false,
|
|
2051
|
-
isPreOrder: false,
|
|
2052
2012
|
isPromoted: false,
|
|
2053
2013
|
tags: ["bandai", "sh-figuarts", "sailor-moon", "eternal", "magical-girl", "anime-figure"],
|
|
2054
2014
|
condition: "new",
|
|
@@ -2080,7 +2040,8 @@ export const productsStandardSeedData = [
|
|
|
2080
2040
|
description: "Funko Pop! Izuku Midoriya (Deku) in Full Cowl activation mode from My Hero Academia, #1052. Features Deku with lightning energy crackling around his body in the Full Cowl Smash pose. Stands approximately 9.5 cm with lightning effect moulded around the figure for extra visual impact. Window box — mint on card. Perfect companion to other MHA Funko Pops.",
|
|
2081
2041
|
category: "category-poseable-figures",
|
|
2082
2042
|
categoryName: "Poseable Action Figures",
|
|
2083
|
-
brand: "
|
|
2043
|
+
brand: "Funko",
|
|
2044
|
+
brandSlug: "brand-funko",
|
|
2084
2045
|
price: 169900,
|
|
2085
2046
|
currency: "INR",
|
|
2086
2047
|
stockQuantity: 18,
|
|
@@ -2094,8 +2055,6 @@ export const productsStandardSeedData = [
|
|
|
2094
2055
|
storeName: "Tokyo Toys India",
|
|
2095
2056
|
storeId: "store-tokyo-toys-india",
|
|
2096
2057
|
featured: false,
|
|
2097
|
-
isAuction: false,
|
|
2098
|
-
isPreOrder: false,
|
|
2099
2058
|
isPromoted: false,
|
|
2100
2059
|
tags: ["funko-pop", "deku", "midoriya", "my-hero-academia", "mha", "full-cowl", "anime"],
|
|
2101
2060
|
condition: "new",
|
|
@@ -2125,7 +2084,8 @@ export const productsStandardSeedData = [
|
|
|
2125
2084
|
description: "Good Smile Company Racing Miku 2023 Ver. — 1/7 scale PVC statue of Hatsune Miku in her annual Racing Queen outfit designed by NIDY-2D- for the Good Smile Racing team. Stands approximately 26 cm tall on an included display base styled after a racing circuit. Features Miku in a detailed racing suit with racing number and sponsor details, her iconic twin-tails flowing in the wind. A centrepiece figure for any Miku collection.",
|
|
2126
2085
|
category: "category-scale-figures",
|
|
2127
2086
|
categoryName: "Scale Figures",
|
|
2128
|
-
brand: "
|
|
2087
|
+
brand: "Good Smile Company",
|
|
2088
|
+
brandSlug: "brand-good-smile",
|
|
2129
2089
|
price: 899900,
|
|
2130
2090
|
currency: "INR",
|
|
2131
2091
|
stockQuantity: 4,
|
|
@@ -2139,8 +2099,6 @@ export const productsStandardSeedData = [
|
|
|
2139
2099
|
storeName: "Tokyo Toys India",
|
|
2140
2100
|
storeId: "store-tokyo-toys-india",
|
|
2141
2101
|
featured: false,
|
|
2142
|
-
isAuction: false,
|
|
2143
|
-
isPreOrder: false,
|
|
2144
2102
|
isPromoted: false,
|
|
2145
2103
|
tags: ["good-smile", "racing-miku", "hatsune-miku", "scale-figure", "1-7-scale", "vocaloid", "racing"],
|
|
2146
2104
|
condition: "new",
|
|
@@ -2174,7 +2132,8 @@ export const productsStandardSeedData = [
|
|
|
2174
2132
|
description: "Bandai High Grade 1/144 Gundam Barbatos Lupus Rex from Mobile Suit Gundam: Iron-Blooded Orphans Season 2 — the final and most powerful form of ASW-G-08 Gundam Barbatos. Features the iconic giant tail blade, claws, Mace weapon, and unique hunched-back articulated silhouette. 140+ snap-fit parts with inner frame tech dividing system. Perfect entry point for IBO fans — one of the most poseable HG kits ever made.",
|
|
2175
2133
|
category: "category-gunpla",
|
|
2176
2134
|
categoryName: "Gunpla",
|
|
2177
|
-
brand: "
|
|
2135
|
+
brand: "Bandai",
|
|
2136
|
+
brandSlug: "brand-bandai",
|
|
2178
2137
|
price: 149900,
|
|
2179
2138
|
currency: "INR",
|
|
2180
2139
|
stockQuantity: 25,
|
|
@@ -2188,8 +2147,6 @@ export const productsStandardSeedData = [
|
|
|
2188
2147
|
storeName: "Gundam Galaxy",
|
|
2189
2148
|
storeId: "store-gundam-galaxy",
|
|
2190
2149
|
featured: false,
|
|
2191
|
-
isAuction: false,
|
|
2192
|
-
isPreOrder: false,
|
|
2193
2150
|
isPromoted: true,
|
|
2194
2151
|
tags: ["gunpla", "high-grade", "hg", "barbatos", "lupus-rex", "ibo", "iron-blooded-orphans", "bandai"],
|
|
2195
2152
|
condition: "new",
|
|
@@ -2221,7 +2178,8 @@ export const productsStandardSeedData = [
|
|
|
2221
2178
|
description: "Bandai's masterpiece Master Grade Sazabi Ver.Ka — designed by Hajime Katoki, this is widely considered one of the greatest Gunpla kits ever produced. The 1/100 scale Sazabi features a 3-layer construction system: inner frame, external frame, and armour plating. 300+ parts include the iconic red armour panels, full funnels array (6 funnels), beam shotgun, and display stand. The psycho-frame cockpit is rendered in transparent green. An advanced build requiring patience and rewarded with an incredible display piece.",
|
|
2222
2179
|
category: "category-gunpla",
|
|
2223
2180
|
categoryName: "Gunpla",
|
|
2224
|
-
brand: "
|
|
2181
|
+
brand: "Bandai",
|
|
2182
|
+
brandSlug: "brand-bandai",
|
|
2225
2183
|
price: 649900,
|
|
2226
2184
|
currency: "INR",
|
|
2227
2185
|
stockQuantity: 5,
|
|
@@ -2235,8 +2193,6 @@ export const productsStandardSeedData = [
|
|
|
2235
2193
|
storeName: "Gundam Galaxy",
|
|
2236
2194
|
storeId: "store-gundam-galaxy",
|
|
2237
2195
|
featured: true,
|
|
2238
|
-
isAuction: false,
|
|
2239
|
-
isPreOrder: false,
|
|
2240
2196
|
isPromoted: false,
|
|
2241
2197
|
tags: ["gunpla", "master-grade", "mg", "sazabi", "ver-ka", "char-aznable", "bandai", "katoki"],
|
|
2242
2198
|
condition: "new",
|
|
@@ -2269,7 +2225,8 @@ export const productsStandardSeedData = [
|
|
|
2269
2225
|
description: "Bandai's first ever non-Gundam Real Grade kit: the iconic Evangelion Unit-01 from Neon Genesis Evangelion / Rebuild of Evangelion. Despite being a non-Gunpla model, it uses the advanced Real Grade snap-fit inner frame system for exceptional poseability. The purple and green colour scheme is pre-coloured on the runners for an out-of-box accurate result. Includes progressive knife, pallet rifle, umbilical cable, and optional berserker Unit-01 expression parts.",
|
|
2270
2226
|
category: "category-gunpla",
|
|
2271
2227
|
categoryName: "Gunpla",
|
|
2272
|
-
brand: "
|
|
2228
|
+
brand: "Bandai",
|
|
2229
|
+
brandSlug: "brand-bandai",
|
|
2273
2230
|
price: 299900,
|
|
2274
2231
|
currency: "INR",
|
|
2275
2232
|
stockQuantity: 10,
|
|
@@ -2283,8 +2240,6 @@ export const productsStandardSeedData = [
|
|
|
2283
2240
|
storeName: "Gundam Galaxy",
|
|
2284
2241
|
storeId: "store-gundam-galaxy",
|
|
2285
2242
|
featured: false,
|
|
2286
|
-
isAuction: false,
|
|
2287
|
-
isPreOrder: false,
|
|
2288
2243
|
isPromoted: false,
|
|
2289
2244
|
tags: ["evangelion", "eva", "unit-01", "real-grade", "rg", "bandai", "neon-genesis", "rebuild"],
|
|
2290
2245
|
condition: "new",
|
|
@@ -2316,7 +2271,8 @@ export const productsStandardSeedData = [
|
|
|
2316
2271
|
description: "Bandai High Grade 1/144 Tallgeese III from Gundam Wing Endless Waltz — the final, most fearsome form of the Tallgeese piloted by Treize Khushrenada's memory. Features the massive buster rifle cannon (larger than on standard Tallgeese), vernier thrusters, and an imposing white and gold colour scheme. A fan favourite from the Endless Waltz film — pairs perfectly with the RG Wing Gundam Zero from the same series.",
|
|
2317
2272
|
category: "category-gunpla",
|
|
2318
2273
|
categoryName: "Gunpla",
|
|
2319
|
-
brand: "
|
|
2274
|
+
brand: "Bandai",
|
|
2275
|
+
brandSlug: "brand-bandai",
|
|
2320
2276
|
price: 129900,
|
|
2321
2277
|
currency: "INR",
|
|
2322
2278
|
stockQuantity: 15,
|
|
@@ -2330,8 +2286,6 @@ export const productsStandardSeedData = [
|
|
|
2330
2286
|
storeName: "Gundam Galaxy",
|
|
2331
2287
|
storeId: "store-gundam-galaxy",
|
|
2332
2288
|
featured: false,
|
|
2333
|
-
isAuction: false,
|
|
2334
|
-
isPreOrder: false,
|
|
2335
2289
|
isPromoted: false,
|
|
2336
2290
|
tags: ["gunpla", "high-grade", "hg", "tallgeese-iii", "gundam-wing", "endless-waltz", "treize"],
|
|
2337
2291
|
condition: "new",
|
|
@@ -2364,7 +2318,8 @@ export const productsStandardSeedData = [
|
|
|
2364
2318
|
description: "Pokémon Base Set unlimited print Charizard #4/102 Holo Rare — Lightly Played (LP) condition, raw and ungraded. Under bright light: four corners show slight whitening on back, moderate whitening, minimal surface scratches on the front, and the holo shows a faint scratch pattern but no deep gouges. Centering is 60/40 front, 65/35 back — above average for this print run. This is an honest LP-grade Charizard. Would estimate PSA 5–6 range if submitted. A genuine original, not a counterfeit — holo pattern, font, and card stock all authentic.",
|
|
2365
2319
|
category: "category-vintage-tcg",
|
|
2366
2320
|
categoryName: "Vintage TCG",
|
|
2367
|
-
brand: "
|
|
2321
|
+
brand: "The Pokémon Company",
|
|
2322
|
+
brandSlug: "brand-pokemon-company",
|
|
2368
2323
|
price: 399900,
|
|
2369
2324
|
currency: "INR",
|
|
2370
2325
|
stockQuantity: 1,
|
|
@@ -2378,8 +2333,6 @@ export const productsStandardSeedData = [
|
|
|
2378
2333
|
storeName: "Vintage Vault",
|
|
2379
2334
|
storeId: "store-vintage-vault",
|
|
2380
2335
|
featured: true,
|
|
2381
|
-
isAuction: false,
|
|
2382
|
-
isPreOrder: false,
|
|
2383
2336
|
isPromoted: false,
|
|
2384
2337
|
tags: ["pokemon", "charizard", "base-set", "holo", "raw", "vintage", "lp", "ungraded"],
|
|
2385
2338
|
condition: "used",
|
|
@@ -2412,7 +2365,8 @@ export const productsStandardSeedData = [
|
|
|
2412
2365
|
description: "Original 1968 Hot Wheels Redline Deora in Aqua — one of the most iconic and distinctive castings from the original Hot Wheels line. The Deora is a custom surf van based on the Alexander Brothers custom, with a surfboard on the roof and the distinctive hot rod body. This example is in Good (G) condition: honest play wear on the aqua paint, one surfboard present (second board missing), red-line tyres intact, all four wheels spin. Sourced from a Kolkata collector's childhood toy collection — original owner documentation available.",
|
|
2413
2366
|
category: "category-hot-wheels",
|
|
2414
2367
|
categoryName: "Hot Wheels",
|
|
2415
|
-
brand: "
|
|
2368
|
+
brand: "Hot Wheels",
|
|
2369
|
+
brandSlug: "brand-hot-wheels",
|
|
2416
2370
|
price: 649900,
|
|
2417
2371
|
currency: "INR",
|
|
2418
2372
|
stockQuantity: 1,
|
|
@@ -2426,8 +2380,6 @@ export const productsStandardSeedData = [
|
|
|
2426
2380
|
storeName: "Vintage Vault",
|
|
2427
2381
|
storeId: "store-vintage-vault",
|
|
2428
2382
|
featured: false,
|
|
2429
|
-
isAuction: false,
|
|
2430
|
-
isPreOrder: false,
|
|
2431
2383
|
isPromoted: false,
|
|
2432
2384
|
tags: ["hot-wheels", "redline", "1968", "deora", "aqua", "vintage", "rare", "surf-van"],
|
|
2433
2385
|
condition: "used",
|
|
@@ -2463,7 +2415,8 @@ export const productsStandardSeedData = [
|
|
|
2463
2415
|
description: "Original 1982 first-year Masters of the Universe He-Man action figure — the iconic Mattel classic. This is a Japan-import version (Takara distributed) from the original 1982 production run, identifiable by the Takara sticker on the back of the packaging bubble. Figure is in Very Good (VG) condition: vibrant paint colours, all accessories present (Power Sword, battle axe, shield), no missing rubber bands (the inner torso twist mechanism is functional), and minor paint wear on the chest armour consistent with a 40+ year old toy. A cornerstone of any vintage 80s toy collection.",
|
|
2464
2416
|
category: "category-vintage-figures",
|
|
2465
2417
|
categoryName: "Vintage Figures",
|
|
2466
|
-
brand: "
|
|
2418
|
+
brand: "McFarlane Toys",
|
|
2419
|
+
brandSlug: "brand-mcfarlane",
|
|
2467
2420
|
price: 499900,
|
|
2468
2421
|
currency: "INR",
|
|
2469
2422
|
stockQuantity: 1,
|
|
@@ -2477,8 +2430,6 @@ export const productsStandardSeedData = [
|
|
|
2477
2430
|
storeName: "Vintage Vault",
|
|
2478
2431
|
storeId: "store-vintage-vault",
|
|
2479
2432
|
featured: false,
|
|
2480
|
-
isAuction: false,
|
|
2481
|
-
isPreOrder: false,
|
|
2482
2433
|
isPromoted: false,
|
|
2483
2434
|
tags: ["motu", "he-man", "masters-of-the-universe", "1982", "vintage", "mattel", "80s-toys"],
|
|
2484
2435
|
condition: "used",
|
|
@@ -2514,7 +2465,8 @@ export const productsStandardSeedData = [
|
|
|
2514
2465
|
description: "Pokémon WOTC Jungle Set Vaporeon #12/64 Holo Rare in Near Mint raw ungraded condition. One of the most beautiful holo artworks from the Jungle set — Vaporeon emerging from a lake backdrop. This copy has four sharp corners, excellent holo lustre with only the faintest swirl pattern under direct light, and no visible surface scratches. Centering is 55/45 front, 55/45 back — excellent for WOTC era. Would estimate PSA 8–9 range if submitted. Sourced from a Kolkata estate sale collection — original print runs from the late 1990s WOTC era.",
|
|
2515
2466
|
category: "category-vintage-tcg",
|
|
2516
2467
|
categoryName: "Vintage TCG",
|
|
2517
|
-
brand: "
|
|
2468
|
+
brand: "The Pokémon Company",
|
|
2469
|
+
brandSlug: "brand-pokemon-company",
|
|
2518
2470
|
price: 89900,
|
|
2519
2471
|
currency: "INR",
|
|
2520
2472
|
stockQuantity: 1,
|
|
@@ -2528,8 +2480,6 @@ export const productsStandardSeedData = [
|
|
|
2528
2480
|
storeName: "Vintage Vault",
|
|
2529
2481
|
storeId: "store-vintage-vault",
|
|
2530
2482
|
featured: false,
|
|
2531
|
-
isAuction: false,
|
|
2532
|
-
isPreOrder: false,
|
|
2533
2483
|
isPromoted: false,
|
|
2534
2484
|
tags: ["pokemon", "jungle-set", "vaporeon", "holo-rare", "wotc", "raw", "vintage", "near-mint"],
|
|
2535
2485
|
condition: "used",
|
|
@@ -2562,7 +2512,8 @@ export const productsStandardSeedData = [
|
|
|
2562
2512
|
description: "The Journey Together Elite Trainer Box celebrates the bond between Trainers and their Pokémon partners. Contains 9 Scarlet & Violet—Journey Together booster packs, 65 card sleeves, 45 Energy cards, a player's guide, 6 damage-counter dice, 1 competition-legal coin-flip die, and a collector's box.",
|
|
2563
2513
|
category: "category-pokemon-tcg",
|
|
2564
2514
|
categoryName: "Pokémon TCG",
|
|
2565
|
-
brand: "
|
|
2515
|
+
brand: "The Pokémon Company",
|
|
2516
|
+
brandSlug: "brand-pokemon-company",
|
|
2566
2517
|
price: 479900,
|
|
2567
2518
|
currency: "INR",
|
|
2568
2519
|
stockQuantity: 12,
|
|
@@ -2576,8 +2527,6 @@ export const productsStandardSeedData = [
|
|
|
2576
2527
|
storeName: "Pokémon Palace",
|
|
2577
2528
|
storeId: "store-pokemon-palace",
|
|
2578
2529
|
featured: false,
|
|
2579
|
-
isAuction: false,
|
|
2580
|
-
isPreOrder: false,
|
|
2581
2530
|
isPromoted: false,
|
|
2582
2531
|
tags: ["pokemon", "etb", "journey-together", "scarlet-violet", "sealed"],
|
|
2583
2532
|
condition: "new",
|
|
@@ -2596,7 +2545,8 @@ export const productsStandardSeedData = [
|
|
|
2596
2545
|
description: "A sealed booster box of Scarlet & Violet—Surging Sparks containing 36 booster packs. Features Pikachu ex, Raichu ex, and fan-favourite Special Illustration Rares. Ideal for set-building or investment.",
|
|
2597
2546
|
category: "category-pokemon-tcg",
|
|
2598
2547
|
categoryName: "Pokémon TCG",
|
|
2599
|
-
brand: "
|
|
2548
|
+
brand: "The Pokémon Company",
|
|
2549
|
+
brandSlug: "brand-pokemon-company",
|
|
2600
2550
|
price: 1299900,
|
|
2601
2551
|
currency: "INR",
|
|
2602
2552
|
stockQuantity: 4,
|
|
@@ -2610,8 +2560,6 @@ export const productsStandardSeedData = [
|
|
|
2610
2560
|
storeName: "Pokémon Palace",
|
|
2611
2561
|
storeId: "store-pokemon-palace",
|
|
2612
2562
|
featured: true,
|
|
2613
|
-
isAuction: false,
|
|
2614
|
-
isPreOrder: false,
|
|
2615
2563
|
isPromoted: true,
|
|
2616
2564
|
tags: ["pokemon", "booster-box", "surging-sparks", "scarlet-violet", "sealed", "investment"],
|
|
2617
2565
|
condition: "new",
|
|
@@ -2631,7 +2579,8 @@ export const productsStandardSeedData = [
|
|
|
2631
2579
|
description: "Single card — Charizard ex Special Illustration Rare from Scarlet & Violet Obsidian Flames. This stunning alt-art features Charizard ex in a dynamic pose against a fiery backdrop. NM/M condition, stored in penny sleeve and toploader.",
|
|
2632
2580
|
category: "category-pokemon-tcg",
|
|
2633
2581
|
categoryName: "Pokémon TCG",
|
|
2634
|
-
brand: "
|
|
2582
|
+
brand: "The Pokémon Company",
|
|
2583
|
+
brandSlug: "brand-pokemon-company",
|
|
2635
2584
|
price: 349900,
|
|
2636
2585
|
currency: "INR",
|
|
2637
2586
|
stockQuantity: 3,
|
|
@@ -2644,8 +2593,6 @@ export const productsStandardSeedData = [
|
|
|
2644
2593
|
storeName: "Pokémon Palace",
|
|
2645
2594
|
storeId: "store-pokemon-palace",
|
|
2646
2595
|
featured: true,
|
|
2647
|
-
isAuction: false,
|
|
2648
|
-
isPreOrder: false,
|
|
2649
2596
|
isPromoted: true,
|
|
2650
2597
|
tags: ["pokemon", "charizard", "special-illustration-rare", "sar", "single-card", "obsidian-flames"],
|
|
2651
2598
|
condition: "used",
|
|
@@ -2665,7 +2612,8 @@ export const productsStandardSeedData = [
|
|
|
2665
2612
|
description: "Single card — Pikachu ex Special Illustration Rare from Scarlet & Violet Shrouded Fable. The beloved alt-art depicting Pikachu in a dreamy moonlit setting. Mint condition straight from pack.",
|
|
2666
2613
|
category: "category-pokemon-tcg",
|
|
2667
2614
|
categoryName: "Pokémon TCG",
|
|
2668
|
-
brand: "
|
|
2615
|
+
brand: "The Pokémon Company",
|
|
2616
|
+
brandSlug: "brand-pokemon-company",
|
|
2669
2617
|
price: 199900,
|
|
2670
2618
|
currency: "INR",
|
|
2671
2619
|
stockQuantity: 5,
|
|
@@ -2678,8 +2626,6 @@ export const productsStandardSeedData = [
|
|
|
2678
2626
|
storeName: "Pokémon Palace",
|
|
2679
2627
|
storeId: "store-pokemon-palace",
|
|
2680
2628
|
featured: false,
|
|
2681
|
-
isAuction: false,
|
|
2682
|
-
isPreOrder: false,
|
|
2683
2629
|
isPromoted: false,
|
|
2684
2630
|
tags: ["pokemon", "pikachu", "special-illustration-rare", "shrouded-fable", "single-card"],
|
|
2685
2631
|
condition: "new",
|
|
@@ -2699,7 +2645,8 @@ export const productsStandardSeedData = [
|
|
|
2699
2645
|
description: "Paldea Evolved ETB featuring Iono as the sleeves art. Includes 9 booster packs, 65 sleeves, 45 Energy cards, player's guide, damage dice, flip die, condition markers, and collector's box. Paldea Evolved introduced the hit Iono SAR and Iron Valiant ex cards.",
|
|
2700
2646
|
category: "category-pokemon-tcg",
|
|
2701
2647
|
categoryName: "Pokémon TCG",
|
|
2702
|
-
brand: "
|
|
2648
|
+
brand: "The Pokémon Company",
|
|
2649
|
+
brandSlug: "brand-pokemon-company",
|
|
2703
2650
|
price: 429900,
|
|
2704
2651
|
currency: "INR",
|
|
2705
2652
|
stockQuantity: 8,
|
|
@@ -2713,8 +2660,6 @@ export const productsStandardSeedData = [
|
|
|
2713
2660
|
storeName: "Pokémon Palace",
|
|
2714
2661
|
storeId: "store-pokemon-palace",
|
|
2715
2662
|
featured: false,
|
|
2716
|
-
isAuction: false,
|
|
2717
|
-
isPreOrder: false,
|
|
2718
2663
|
isPromoted: false,
|
|
2719
2664
|
tags: ["pokemon", "etb", "paldea-evolved", "scarlet-violet", "sealed"],
|
|
2720
2665
|
condition: "new",
|
|
@@ -2733,7 +2678,8 @@ export const productsStandardSeedData = [
|
|
|
2733
2678
|
description: "Obsidian Flames ETB with Terastallized Charizard ex sleeve art. Home of the infamous Charizard ex SIR and Tyranitar ex SAR. Contains 9 booster packs plus all standard ETB accessories.",
|
|
2734
2679
|
category: "category-pokemon-tcg",
|
|
2735
2680
|
categoryName: "Pokémon TCG",
|
|
2736
|
-
brand: "
|
|
2681
|
+
brand: "The Pokémon Company",
|
|
2682
|
+
brandSlug: "brand-pokemon-company",
|
|
2737
2683
|
price: 449900,
|
|
2738
2684
|
currency: "INR",
|
|
2739
2685
|
stockQuantity: 6,
|
|
@@ -2746,8 +2692,6 @@ export const productsStandardSeedData = [
|
|
|
2746
2692
|
storeName: "Pokémon Palace",
|
|
2747
2693
|
storeId: "store-pokemon-palace",
|
|
2748
2694
|
featured: false,
|
|
2749
|
-
isAuction: false,
|
|
2750
|
-
isPreOrder: false,
|
|
2751
2695
|
isPromoted: false,
|
|
2752
2696
|
tags: ["pokemon", "etb", "obsidian-flames", "scarlet-violet", "sealed", "charizard"],
|
|
2753
2697
|
condition: "new",
|
|
@@ -2766,7 +2710,8 @@ export const productsStandardSeedData = [
|
|
|
2766
2710
|
description: "The 151 ETB celebrates the original 151 Pokémon with stunning art across the entire set. Contains 9 SV—151 booster packs, 65 card sleeves featuring Mew ex, 45 Energy cards, and all ETB accessories. The set features Charizard ex, Blastoise ex, Venusaur ex, and fan-favourite vintage alt-arts.",
|
|
2767
2711
|
category: "category-pokemon-tcg",
|
|
2768
2712
|
categoryName: "Pokémon TCG",
|
|
2769
|
-
brand: "
|
|
2713
|
+
brand: "The Pokémon Company",
|
|
2714
|
+
brandSlug: "brand-pokemon-company",
|
|
2770
2715
|
price: 549900,
|
|
2771
2716
|
currency: "INR",
|
|
2772
2717
|
stockQuantity: 5,
|
|
@@ -2780,8 +2725,6 @@ export const productsStandardSeedData = [
|
|
|
2780
2725
|
storeName: "Pokémon Palace",
|
|
2781
2726
|
storeId: "store-pokemon-palace",
|
|
2782
2727
|
featured: true,
|
|
2783
|
-
isAuction: false,
|
|
2784
|
-
isPreOrder: false,
|
|
2785
2728
|
isPromoted: true,
|
|
2786
2729
|
tags: ["pokemon", "etb", "151", "scarlet-violet", "sealed", "nostalgic"],
|
|
2787
2730
|
condition: "new",
|
|
@@ -2801,7 +2744,8 @@ export const productsStandardSeedData = [
|
|
|
2801
2744
|
description: "Single card — Mewtwo ex Special Illustration Rare from Scarlet & Violet 151. Features the iconic Mewtwo in an ethereal laboratory setting. One of the most sought-after SIRs from the 151 set. NM condition from personal collection.",
|
|
2802
2745
|
category: "category-pokemon-tcg",
|
|
2803
2746
|
categoryName: "Pokémon TCG",
|
|
2804
|
-
brand: "
|
|
2747
|
+
brand: "The Pokémon Company",
|
|
2748
|
+
brandSlug: "brand-pokemon-company",
|
|
2805
2749
|
price: 279900,
|
|
2806
2750
|
currency: "INR",
|
|
2807
2751
|
stockQuantity: 2,
|
|
@@ -2814,8 +2758,6 @@ export const productsStandardSeedData = [
|
|
|
2814
2758
|
storeName: "Pokémon Palace",
|
|
2815
2759
|
storeId: "store-pokemon-palace",
|
|
2816
2760
|
featured: false,
|
|
2817
|
-
isAuction: false,
|
|
2818
|
-
isPreOrder: false,
|
|
2819
2761
|
isPromoted: false,
|
|
2820
2762
|
tags: ["pokemon", "mewtwo", "sar", "special-illustration-rare", "151", "single-card"],
|
|
2821
2763
|
condition: "used",
|
|
@@ -2836,7 +2778,8 @@ export const productsStandardSeedData = [
|
|
|
2836
2778
|
description: "Sealed booster box of One Piece Card Game OP-05 Awakening of the New Era, 24 packs per box. Features the Supernovas, Law, Kid, and iconic characters from the Wano arc. High pull rates for Leaders and Secret Rares.",
|
|
2837
2779
|
category: "category-sealed-product",
|
|
2838
2780
|
categoryName: "Sealed Product",
|
|
2839
|
-
brand: "
|
|
2781
|
+
brand: "Bandai",
|
|
2782
|
+
brandSlug: "brand-bandai",
|
|
2840
2783
|
price: 499900,
|
|
2841
2784
|
currency: "INR",
|
|
2842
2785
|
stockQuantity: 6,
|
|
@@ -2849,8 +2792,6 @@ export const productsStandardSeedData = [
|
|
|
2849
2792
|
storeName: "CardGame Hub",
|
|
2850
2793
|
storeId: "store-cardgame-hub",
|
|
2851
2794
|
featured: false,
|
|
2852
|
-
isAuction: false,
|
|
2853
|
-
isPreOrder: false,
|
|
2854
2795
|
isPromoted: false,
|
|
2855
2796
|
tags: ["one-piece", "op-05", "booster-box", "sealed", "bandai"],
|
|
2856
2797
|
condition: "new",
|
|
@@ -2870,7 +2811,8 @@ export const productsStandardSeedData = [
|
|
|
2870
2811
|
description: "The 25th Anniversary Tin celebrates 25 years of Yu-Gi-Oh! with a Mega-Pack inside. Contains 1 Ultra Rare foil card (Blue-Eyes White Dragon, Dark Magician, or Exodia) plus 3 Mega-Packs each containing 18 cards. Collector's tin with premium finish.",
|
|
2871
2812
|
category: "category-sealed-product",
|
|
2872
2813
|
categoryName: "Sealed Product",
|
|
2873
|
-
brand: "
|
|
2814
|
+
brand: "Konami",
|
|
2815
|
+
brandSlug: "brand-konami",
|
|
2874
2816
|
price: 249900,
|
|
2875
2817
|
currency: "INR",
|
|
2876
2818
|
stockQuantity: 10,
|
|
@@ -2883,8 +2825,6 @@ export const productsStandardSeedData = [
|
|
|
2883
2825
|
storeName: "CardGame Hub",
|
|
2884
2826
|
storeId: "store-cardgame-hub",
|
|
2885
2827
|
featured: false,
|
|
2886
|
-
isAuction: false,
|
|
2887
|
-
isPreOrder: false,
|
|
2888
2828
|
isPromoted: false,
|
|
2889
2829
|
tags: ["yugioh", "25th-anniversary", "tin", "sealed", "konami", "collector"],
|
|
2890
2830
|
condition: "new",
|
|
@@ -2903,7 +2843,8 @@ export const productsStandardSeedData = [
|
|
|
2903
2843
|
description: "Sealed booster box of OP-06 Wings of the Captain, featuring Whitebeard, Shanks, and the Yonko. 24 packs per box. English edition. Whitebeard Leader is among the most competitive in the current meta.",
|
|
2904
2844
|
category: "category-sealed-product",
|
|
2905
2845
|
categoryName: "Sealed Product",
|
|
2906
|
-
brand: "
|
|
2846
|
+
brand: "Bandai",
|
|
2847
|
+
brandSlug: "brand-bandai",
|
|
2907
2848
|
price: 549900,
|
|
2908
2849
|
currency: "INR",
|
|
2909
2850
|
stockQuantity: 4,
|
|
@@ -2916,8 +2857,6 @@ export const productsStandardSeedData = [
|
|
|
2916
2857
|
storeName: "CardGame Hub",
|
|
2917
2858
|
storeId: "store-cardgame-hub",
|
|
2918
2859
|
featured: true,
|
|
2919
|
-
isAuction: false,
|
|
2920
|
-
isPreOrder: false,
|
|
2921
2860
|
isPromoted: true,
|
|
2922
2861
|
tags: ["one-piece", "op-06", "booster-box", "sealed", "bandai", "whitebeard"],
|
|
2923
2862
|
condition: "new",
|
|
@@ -2936,7 +2875,8 @@ export const productsStandardSeedData = [
|
|
|
2936
2875
|
description: "Play Booster Box for Duskmourn: House of Horror, MTG's horror-themed set. Contains 36 Play Boosters. Features haunted house rooms, horror creature types, and iconic reprints. Play Boosters replaced Draft Boosters as the primary opening format.",
|
|
2937
2876
|
category: "category-sealed-product",
|
|
2938
2877
|
categoryName: "Sealed Product",
|
|
2939
|
-
brand: "
|
|
2878
|
+
brand: "Hasbro",
|
|
2879
|
+
brandSlug: "brand-hasbro",
|
|
2940
2880
|
price: 599900,
|
|
2941
2881
|
currency: "INR",
|
|
2942
2882
|
stockQuantity: 5,
|
|
@@ -2949,8 +2889,6 @@ export const productsStandardSeedData = [
|
|
|
2949
2889
|
storeName: "CardGame Hub",
|
|
2950
2890
|
storeId: "store-cardgame-hub",
|
|
2951
2891
|
featured: false,
|
|
2952
|
-
isAuction: false,
|
|
2953
|
-
isPreOrder: false,
|
|
2954
2892
|
isPromoted: false,
|
|
2955
2893
|
tags: ["magic-the-gathering", "mtg", "duskmourn", "booster-box", "sealed", "hasbro"],
|
|
2956
2894
|
condition: "new",
|
|
@@ -2970,7 +2908,8 @@ export const productsStandardSeedData = [
|
|
|
2970
2908
|
description: "Sealed booster box of OP-03 Pillars of Strength featuring Kaido, Yamato, Doflamingo, and Katakuri. 24 packs per box. English edition. This set is highly sought-after for its Secret Rare leaders.",
|
|
2971
2909
|
category: "category-sealed-product",
|
|
2972
2910
|
categoryName: "Sealed Product",
|
|
2973
|
-
brand: "
|
|
2911
|
+
brand: "Bandai",
|
|
2912
|
+
brandSlug: "brand-bandai",
|
|
2974
2913
|
price: 599900,
|
|
2975
2914
|
currency: "INR",
|
|
2976
2915
|
stockQuantity: 3,
|
|
@@ -2983,8 +2922,6 @@ export const productsStandardSeedData = [
|
|
|
2983
2922
|
storeName: "CardGame Hub",
|
|
2984
2923
|
storeId: "store-cardgame-hub",
|
|
2985
2924
|
featured: false,
|
|
2986
|
-
isAuction: false,
|
|
2987
|
-
isPreOrder: false,
|
|
2988
2925
|
isPromoted: false,
|
|
2989
2926
|
tags: ["one-piece", "op-03", "pillars-of-strength", "booster-box", "sealed", "kaido"],
|
|
2990
2927
|
condition: "new",
|
|
@@ -3004,7 +2941,8 @@ export const productsStandardSeedData = [
|
|
|
3004
2941
|
description: "Single card — Blue-Eyes White Dragon from Legend of Blue Eyes White Dragon (LOB), 1st Edition, Near Mint condition. One of the most iconic cards in the history of Yu-Gi-Oh!. Stored in penny sleeve and hard case since purchase. Excellent candidate for PSA grading.",
|
|
3005
2942
|
category: "category-vintage-tcg",
|
|
3006
2943
|
categoryName: "Vintage TCG",
|
|
3007
|
-
brand: "
|
|
2944
|
+
brand: "Konami",
|
|
2945
|
+
brandSlug: "brand-konami",
|
|
3008
2946
|
price: 299900,
|
|
3009
2947
|
currency: "INR",
|
|
3010
2948
|
stockQuantity: 1,
|
|
@@ -3017,8 +2955,6 @@ export const productsStandardSeedData = [
|
|
|
3017
2955
|
storeName: "CardGame Hub",
|
|
3018
2956
|
storeId: "store-cardgame-hub",
|
|
3019
2957
|
featured: true,
|
|
3020
|
-
isAuction: false,
|
|
3021
|
-
isPreOrder: false,
|
|
3022
2958
|
isPromoted: true,
|
|
3023
2959
|
tags: ["yugioh", "blue-eyes-white-dragon", "lob", "1st-edition", "vintage", "single-card", "nm"],
|
|
3024
2960
|
condition: "used",
|
|
@@ -3038,7 +2974,8 @@ export const productsStandardSeedData = [
|
|
|
3038
2974
|
description: "Single graded card — Dark Magician from Legend of Blue Eyes White Dragon, 1st Edition, graded PSA 9 MINT. Housed in PSA hard case. The Dark Magician is one of Yugi's signature cards and among the most collected vintage YGO cards. PSA 9 examples in 1st Edition are increasingly rare.",
|
|
3039
2975
|
category: "category-vintage-tcg",
|
|
3040
2976
|
categoryName: "Vintage TCG",
|
|
3041
|
-
brand: "
|
|
2977
|
+
brand: "Konami",
|
|
2978
|
+
brandSlug: "brand-konami",
|
|
3042
2979
|
price: 899900,
|
|
3043
2980
|
currency: "INR",
|
|
3044
2981
|
stockQuantity: 1,
|
|
@@ -3051,8 +2988,6 @@ export const productsStandardSeedData = [
|
|
|
3051
2988
|
storeName: "CardGame Hub",
|
|
3052
2989
|
storeId: "store-cardgame-hub",
|
|
3053
2990
|
featured: true,
|
|
3054
|
-
isAuction: false,
|
|
3055
|
-
isPreOrder: false,
|
|
3056
2991
|
isPromoted: true,
|
|
3057
2992
|
tags: ["yugioh", "dark-magician", "lob", "1st-edition", "psa-9", "graded", "vintage", "single-card"],
|
|
3058
2993
|
condition: "graded",
|
|
@@ -3073,7 +3008,8 @@ export const productsStandardSeedData = [
|
|
|
3073
3008
|
description: "Hot Wheels Car Culture German Cars & Coffee 5-car assortment sealed case. Features premium die-cast recreations of iconic German automobiles: BMW M3 E30, Porsche 911 GT3 RS, Mercedes-AMG GT, Audi RS5, and Volkswagen Golf GTI Mk2. Real Riders rubber tyres, detailed engine details.",
|
|
3074
3009
|
category: "category-hot-wheels",
|
|
3075
3010
|
categoryName: "Hot Wheels",
|
|
3076
|
-
brand: "
|
|
3011
|
+
brand: "Hot Wheels",
|
|
3012
|
+
brandSlug: "brand-hot-wheels",
|
|
3077
3013
|
price: 199900,
|
|
3078
3014
|
currency: "INR",
|
|
3079
3015
|
stockQuantity: 8,
|
|
@@ -3086,8 +3022,6 @@ export const productsStandardSeedData = [
|
|
|
3086
3022
|
storeName: "Diecast Depot",
|
|
3087
3023
|
storeId: "store-diecast-depot",
|
|
3088
3024
|
featured: false,
|
|
3089
|
-
isAuction: false,
|
|
3090
|
-
isPreOrder: false,
|
|
3091
3025
|
isPromoted: false,
|
|
3092
3026
|
tags: ["hot-wheels", "car-culture", "german", "real-riders", "premium", "set"],
|
|
3093
3027
|
condition: "new",
|
|
@@ -3106,7 +3040,8 @@ export const productsStandardSeedData = [
|
|
|
3106
3040
|
description: "Hot Wheels Red Line Club (RLC) Exclusive Porsche 918 Spyder in Spectraflame White with Real Riders rubber tyres. Limited production RLC release — sold out at retail. Includes collector's card and numbered certificate. Car is brand new in sealed protective case.",
|
|
3107
3041
|
category: "category-hot-wheels",
|
|
3108
3042
|
categoryName: "Hot Wheels",
|
|
3109
|
-
brand: "
|
|
3043
|
+
brand: "Hot Wheels",
|
|
3044
|
+
brandSlug: "brand-hot-wheels",
|
|
3110
3045
|
price: 349900,
|
|
3111
3046
|
currency: "INR",
|
|
3112
3047
|
stockQuantity: 2,
|
|
@@ -3119,8 +3054,6 @@ export const productsStandardSeedData = [
|
|
|
3119
3054
|
storeName: "Diecast Depot",
|
|
3120
3055
|
storeId: "store-diecast-depot",
|
|
3121
3056
|
featured: true,
|
|
3122
|
-
isAuction: false,
|
|
3123
|
-
isPreOrder: false,
|
|
3124
3057
|
isPromoted: true,
|
|
3125
3058
|
tags: ["hot-wheels", "rlc", "porsche", "918-spyder", "spectraflame", "limited", "real-riders"],
|
|
3126
3059
|
condition: "new",
|
|
@@ -3140,7 +3073,8 @@ export const productsStandardSeedData = [
|
|
|
3140
3073
|
description: "Official Tomica die-cast model of the Toyota Land Cruiser 300 (LC300) in scale 1:64. Tomica No. 107. Comes in original Tomica box. Made in Japan. Faithful recreation with opening doors, accurate body lines, and detailed interior.",
|
|
3141
3074
|
category: "category-tomica",
|
|
3142
3075
|
categoryName: "Tomica",
|
|
3143
|
-
brand: "
|
|
3076
|
+
brand: "Tomica",
|
|
3077
|
+
brandSlug: "brand-tomica",
|
|
3144
3078
|
price: 59900,
|
|
3145
3079
|
currency: "INR",
|
|
3146
3080
|
stockQuantity: 20,
|
|
@@ -3153,8 +3087,6 @@ export const productsStandardSeedData = [
|
|
|
3153
3087
|
storeName: "Diecast Depot",
|
|
3154
3088
|
storeId: "store-diecast-depot",
|
|
3155
3089
|
featured: false,
|
|
3156
|
-
isAuction: false,
|
|
3157
|
-
isPreOrder: false,
|
|
3158
3090
|
isPromoted: false,
|
|
3159
3091
|
tags: ["tomica", "land-cruiser", "toyota", "1:64", "made-in-japan", "diecast"],
|
|
3160
3092
|
condition: "new",
|
|
@@ -3173,7 +3105,8 @@ export const productsStandardSeedData = [
|
|
|
3173
3105
|
description: "Tomica die-cast model of the Honda Civic Type R FL5 in Championship White. Tomica No. 29. Features opening doors, authentic spoiler detail, and precise body lines. Made in Vietnam. Original Tomica packaging.",
|
|
3174
3106
|
category: "category-tomica",
|
|
3175
3107
|
categoryName: "Tomica",
|
|
3176
|
-
brand: "
|
|
3108
|
+
brand: "Tomica",
|
|
3109
|
+
brandSlug: "brand-tomica",
|
|
3177
3110
|
price: 64900,
|
|
3178
3111
|
currency: "INR",
|
|
3179
3112
|
stockQuantity: 15,
|
|
@@ -3186,8 +3119,6 @@ export const productsStandardSeedData = [
|
|
|
3186
3119
|
storeName: "Diecast Depot",
|
|
3187
3120
|
storeId: "store-diecast-depot",
|
|
3188
3121
|
featured: false,
|
|
3189
|
-
isAuction: false,
|
|
3190
|
-
isPreOrder: false,
|
|
3191
3122
|
isPromoted: false,
|
|
3192
3123
|
tags: ["tomica", "civic", "type-r", "fl5", "honda", "1:64", "diecast"],
|
|
3193
3124
|
condition: "new",
|
|
@@ -3206,7 +3137,8 @@ export const productsStandardSeedData = [
|
|
|
3206
3137
|
description: "Hot Wheels Ultra Hots premium 5-car gift pack featuring retro-styled graphics and Real Riders tyres. Each car in this pack is a tribute to the legendary Ultra Hots line from the 1980s with modern die-cast quality.",
|
|
3207
3138
|
category: "category-hot-wheels",
|
|
3208
3139
|
categoryName: "Hot Wheels",
|
|
3209
|
-
brand: "
|
|
3140
|
+
brand: "Hot Wheels",
|
|
3141
|
+
brandSlug: "brand-hot-wheels",
|
|
3210
3142
|
price: 169900,
|
|
3211
3143
|
currency: "INR",
|
|
3212
3144
|
stockQuantity: 12,
|
|
@@ -3219,8 +3151,6 @@ export const productsStandardSeedData = [
|
|
|
3219
3151
|
storeName: "Diecast Depot",
|
|
3220
3152
|
storeId: "store-diecast-depot",
|
|
3221
3153
|
featured: false,
|
|
3222
|
-
isAuction: false,
|
|
3223
|
-
isPreOrder: false,
|
|
3224
3154
|
isPromoted: false,
|
|
3225
3155
|
tags: ["hot-wheels", "ultra-hots", "5-pack", "retro", "real-riders", "gift"],
|
|
3226
3156
|
condition: "new",
|
|
@@ -3239,7 +3169,8 @@ export const productsStandardSeedData = [
|
|
|
3239
3169
|
description: "Matchbox Moving Parts series 5-car assortment with working hoods, doors, and trunks that open and close. 2024 edition includes SUVs and trucks. Recycled materials construction. 1:64 scale die-cast.",
|
|
3240
3170
|
category: "category-hot-wheels",
|
|
3241
3171
|
categoryName: "Hot Wheels",
|
|
3242
|
-
brand: "
|
|
3172
|
+
brand: "Matchbox",
|
|
3173
|
+
brandSlug: "brand-matchbox",
|
|
3243
3174
|
price: 149900,
|
|
3244
3175
|
currency: "INR",
|
|
3245
3176
|
stockQuantity: 10,
|
|
@@ -3252,8 +3183,6 @@ export const productsStandardSeedData = [
|
|
|
3252
3183
|
storeName: "Diecast Depot",
|
|
3253
3184
|
storeId: "store-diecast-depot",
|
|
3254
3185
|
featured: false,
|
|
3255
|
-
isAuction: false,
|
|
3256
|
-
isPreOrder: false,
|
|
3257
3186
|
isPromoted: false,
|
|
3258
3187
|
tags: ["matchbox", "moving-parts", "5-car", "diecast", "2024"],
|
|
3259
3188
|
condition: "new",
|
|
@@ -3272,7 +3201,8 @@ export const productsStandardSeedData = [
|
|
|
3272
3201
|
description: "Corgi die-cast Aston Martin DB5 in the iconic James Bond 007 livery. Features working ejector seat mechanism, revolving number plates, and retractable machine guns — all the Q-branch gadgets. 1:36 scale. Comes in presentation box. A must-have for Bond and die-cast collectors.",
|
|
3273
3202
|
category: "category-hot-wheels",
|
|
3274
3203
|
categoryName: "Hot Wheels",
|
|
3275
|
-
brand: "
|
|
3204
|
+
brand: "Corgi",
|
|
3205
|
+
brandSlug: "brand-corgi",
|
|
3276
3206
|
price: 299900,
|
|
3277
3207
|
currency: "INR",
|
|
3278
3208
|
stockQuantity: 5,
|
|
@@ -3285,8 +3215,6 @@ export const productsStandardSeedData = [
|
|
|
3285
3215
|
storeName: "Diecast Depot",
|
|
3286
3216
|
storeId: "store-diecast-depot",
|
|
3287
3217
|
featured: true,
|
|
3288
|
-
isAuction: false,
|
|
3289
|
-
isPreOrder: false,
|
|
3290
3218
|
isPromoted: true,
|
|
3291
3219
|
tags: ["corgi", "aston-martin", "db5", "james-bond", "007", "1:36", "diecast", "collector"],
|
|
3292
3220
|
condition: "new",
|
|
@@ -3301,13 +3229,14 @@ export const productsStandardSeedData = [
|
|
|
3301
3229
|
},
|
|
3302
3230
|
// ── Store: Beyblade Arena — products 75–79 ───────────────────────────────────
|
|
3303
3231
|
{
|
|
3304
|
-
id: "product-beyblade-x-bx01-dran-sword",
|
|
3305
|
-
slug: "product-beyblade-x-bx01-dran-sword",
|
|
3232
|
+
id: "product-beyblade-x-bx01-dran-sword-starter-pack",
|
|
3233
|
+
slug: "product-beyblade-x-bx01-dran-sword-starter-pack",
|
|
3306
3234
|
title: "Beyblade X: BX-01 Dran Sword 3-60F — Starter Pack",
|
|
3307
3235
|
description: "Official Beyblade X BX-01 Dran Sword 3-60F starter pack. The launch set that introduced the Beyblade X format with the new Xtreme Dash and Xtreme Line mechanics. Includes Dran Sword Beyblade, BX Launcher, and ripcord. Perfect entry point for the X-generation format.",
|
|
3308
3236
|
category: "category-beyblade-x",
|
|
3309
3237
|
categoryName: "Beyblade X",
|
|
3310
|
-
brand: "
|
|
3238
|
+
brand: "Takara Tomy",
|
|
3239
|
+
brandSlug: "brand-takara-tomy",
|
|
3311
3240
|
price: 159900,
|
|
3312
3241
|
currency: "INR",
|
|
3313
3242
|
stockQuantity: 10,
|
|
@@ -3320,8 +3249,6 @@ export const productsStandardSeedData = [
|
|
|
3320
3249
|
storeName: "Beyblade Arena",
|
|
3321
3250
|
storeId: "store-beyblade-arena",
|
|
3322
3251
|
featured: false,
|
|
3323
|
-
isAuction: false,
|
|
3324
|
-
isPreOrder: false,
|
|
3325
3252
|
isPromoted: false,
|
|
3326
3253
|
tags: ["beyblade-x", "bx-01", "dran-sword", "starter-pack", "takara-tomy", "beyblade"],
|
|
3327
3254
|
condition: "new",
|
|
@@ -3340,7 +3267,8 @@ export const productsStandardSeedData = [
|
|
|
3340
3267
|
description: "Beyblade X BX-07 Hells Chain 5-60HT booster pack. A stamina-type Beyblade with the unique HT (High Taper) driver for extended spin. One of the most competitive X-format stamina Beyblades. Official Takara Tomy release.",
|
|
3341
3268
|
category: "category-beyblade-x",
|
|
3342
3269
|
categoryName: "Beyblade X",
|
|
3343
|
-
brand: "
|
|
3270
|
+
brand: "Takara Tomy",
|
|
3271
|
+
brandSlug: "brand-takara-tomy",
|
|
3344
3272
|
price: 139900,
|
|
3345
3273
|
currency: "INR",
|
|
3346
3274
|
stockQuantity: 8,
|
|
@@ -3353,8 +3281,6 @@ export const productsStandardSeedData = [
|
|
|
3353
3281
|
storeName: "Beyblade Arena",
|
|
3354
3282
|
storeId: "store-beyblade-arena",
|
|
3355
3283
|
featured: false,
|
|
3356
|
-
isAuction: false,
|
|
3357
|
-
isPreOrder: false,
|
|
3358
3284
|
isPromoted: false,
|
|
3359
3285
|
tags: ["beyblade-x", "bx-07", "hells-chain", "stamina", "takara-tomy"],
|
|
3360
3286
|
condition: "new",
|
|
@@ -3373,7 +3299,8 @@ export const productsStandardSeedData = [
|
|
|
3373
3299
|
description: "Beyblade X BX-09 Rd Dragon 4-80B booster pack. A balance-type Beyblade with wide 4 blades and the B (Ball) driver. Versatile attack/balance combo with the iconic dragon motif. Popular in tournaments across India.",
|
|
3374
3300
|
category: "category-beyblade-x",
|
|
3375
3301
|
categoryName: "Beyblade X",
|
|
3376
|
-
brand: "
|
|
3302
|
+
brand: "Takara Tomy",
|
|
3303
|
+
brandSlug: "brand-takara-tomy",
|
|
3377
3304
|
price: 149900,
|
|
3378
3305
|
currency: "INR",
|
|
3379
3306
|
stockQuantity: 7,
|
|
@@ -3386,8 +3313,6 @@ export const productsStandardSeedData = [
|
|
|
3386
3313
|
storeName: "Beyblade Arena",
|
|
3387
3314
|
storeId: "store-beyblade-arena",
|
|
3388
3315
|
featured: false,
|
|
3389
|
-
isAuction: false,
|
|
3390
|
-
isPreOrder: false,
|
|
3391
3316
|
isPromoted: false,
|
|
3392
3317
|
tags: ["beyblade-x", "bx-09", "rd-dragon", "balance", "takara-tomy"],
|
|
3393
3318
|
condition: "new",
|
|
@@ -3406,7 +3331,8 @@ export const productsStandardSeedData = [
|
|
|
3406
3331
|
description: "Beyblade X BX-12 Phoenix Wing 9-60GF booster pack. A defence-type Beyblade with the GF (Gear Flat) driver for high-speed movement and defence. The Phoenix Wing features unique 9-point blade design for superior defence and Xtreme Dash activation.",
|
|
3407
3332
|
category: "category-beyblade-x",
|
|
3408
3333
|
categoryName: "Beyblade X",
|
|
3409
|
-
brand: "
|
|
3334
|
+
brand: "Takara Tomy",
|
|
3335
|
+
brandSlug: "brand-takara-tomy",
|
|
3410
3336
|
price: 159900,
|
|
3411
3337
|
currency: "INR",
|
|
3412
3338
|
stockQuantity: 6,
|
|
@@ -3419,8 +3345,6 @@ export const productsStandardSeedData = [
|
|
|
3419
3345
|
storeName: "Beyblade Arena",
|
|
3420
3346
|
storeId: "store-beyblade-arena",
|
|
3421
3347
|
featured: false,
|
|
3422
|
-
isAuction: false,
|
|
3423
|
-
isPreOrder: false,
|
|
3424
3348
|
isPromoted: false,
|
|
3425
3349
|
tags: ["beyblade-x", "bx-12", "phoenix-wing", "defence", "takara-tomy"],
|
|
3426
3350
|
condition: "new",
|
|
@@ -3439,7 +3363,8 @@ export const productsStandardSeedData = [
|
|
|
3439
3363
|
description: "Official Beyblade X BX-16 Sword Launcher. High-performance string launcher compatible with all Beyblade X beyblades. Features a sword grip design for precise launching angle control. Recommended for competitive play.",
|
|
3440
3364
|
category: "category-beyblade-x",
|
|
3441
3365
|
categoryName: "Beyblade X",
|
|
3442
|
-
brand: "
|
|
3366
|
+
brand: "Takara Tomy",
|
|
3367
|
+
brandSlug: "brand-takara-tomy",
|
|
3443
3368
|
price: 89900,
|
|
3444
3369
|
currency: "INR",
|
|
3445
3370
|
stockQuantity: 15,
|
|
@@ -3452,8 +3377,6 @@ export const productsStandardSeedData = [
|
|
|
3452
3377
|
storeName: "Beyblade Arena",
|
|
3453
3378
|
storeId: "store-beyblade-arena",
|
|
3454
3379
|
featured: false,
|
|
3455
|
-
isAuction: false,
|
|
3456
|
-
isPreOrder: false,
|
|
3457
3380
|
isPromoted: false,
|
|
3458
3381
|
tags: ["beyblade-x", "bx-16", "launcher", "sword-launcher", "takara-tomy", "accessory"],
|
|
3459
3382
|
condition: "new",
|
|
@@ -3473,7 +3396,8 @@ export const productsStandardSeedData = [
|
|
|
3473
3396
|
description: "Max Factory figma articulated figure of Link from The Legend of Zelda: Tears of the Kingdom. Features 30+ points of articulation, Ultrahand ability accessories, multiple interchangeable expression faceplates, and weapons including the Master Sword and Hylian Shield. Non-scale PVC/ABS.",
|
|
3474
3397
|
category: "category-poseable-figures",
|
|
3475
3398
|
categoryName: "Poseable Figures",
|
|
3476
|
-
brand: "
|
|
3399
|
+
brand: "Max Factory",
|
|
3400
|
+
brandSlug: "brand-max-factory",
|
|
3477
3401
|
price: 699900,
|
|
3478
3402
|
currency: "INR",
|
|
3479
3403
|
stockQuantity: 4,
|
|
@@ -3486,8 +3410,6 @@ export const productsStandardSeedData = [
|
|
|
3486
3410
|
storeName: "LetItRip Official",
|
|
3487
3411
|
storeId: "store-letitrip-official",
|
|
3488
3412
|
featured: true,
|
|
3489
|
-
isAuction: false,
|
|
3490
|
-
isPreOrder: false,
|
|
3491
3413
|
isPromoted: true,
|
|
3492
3414
|
tags: ["figma", "zelda", "tears-of-the-kingdom", "link", "max-factory", "articulated"],
|
|
3493
3415
|
condition: "new",
|
|
@@ -3507,7 +3429,8 @@ export const productsStandardSeedData = [
|
|
|
3507
3429
|
description: "Funko Pop! Animation figure of Gojo Satoru from Jujutsu Kaisen, depicting him with his iconic blindfold. Vinyl figure stands approx. 3.75 inches tall. Official licensed product. Comes in standard window-display box.",
|
|
3508
3430
|
category: "category-poseable-figures",
|
|
3509
3431
|
categoryName: "Poseable Figures",
|
|
3510
|
-
brand: "
|
|
3432
|
+
brand: "Funko",
|
|
3433
|
+
brandSlug: "brand-funko",
|
|
3511
3434
|
price: 149900,
|
|
3512
3435
|
currency: "INR",
|
|
3513
3436
|
stockQuantity: 20,
|
|
@@ -3520,8 +3443,6 @@ export const productsStandardSeedData = [
|
|
|
3520
3443
|
storeName: "LetItRip Official",
|
|
3521
3444
|
storeId: "store-letitrip-official",
|
|
3522
3445
|
featured: false,
|
|
3523
|
-
isAuction: false,
|
|
3524
|
-
isPreOrder: false,
|
|
3525
3446
|
isPromoted: false,
|
|
3526
3447
|
tags: ["funko-pop", "jujutsu-kaisen", "gojo", "anime", "vinyl", "figure"],
|
|
3527
3448
|
condition: "new",
|
|
@@ -3540,7 +3461,8 @@ export const productsStandardSeedData = [
|
|
|
3540
3461
|
description: "Good Smile Company Nendoroid of Hatsune Miku in her V4X design. Features the upgraded V4X twin-tail design with multiple interchangeable parts and expression faceplates. Includes leek accessory, microphone stand, and posing base. Approx. 100mm PVC figure.",
|
|
3541
3462
|
category: "category-nendoroids-chibis",
|
|
3542
3463
|
categoryName: "Nendoroids & Chibis",
|
|
3543
|
-
brand: "
|
|
3464
|
+
brand: "Good Smile Company",
|
|
3465
|
+
brandSlug: "brand-good-smile",
|
|
3544
3466
|
price: 499900,
|
|
3545
3467
|
currency: "INR",
|
|
3546
3468
|
stockQuantity: 6,
|
|
@@ -3553,8 +3475,6 @@ export const productsStandardSeedData = [
|
|
|
3553
3475
|
storeName: "LetItRip Official",
|
|
3554
3476
|
storeId: "store-letitrip-official",
|
|
3555
3477
|
featured: false,
|
|
3556
|
-
isAuction: false,
|
|
3557
|
-
isPreOrder: false,
|
|
3558
3478
|
isPromoted: false,
|
|
3559
3479
|
tags: ["nendoroid", "hatsune-miku", "v4x", "good-smile-company", "vocaloid", "chibi"],
|
|
3560
3480
|
condition: "new",
|
|
@@ -3574,7 +3494,8 @@ export const productsStandardSeedData = [
|
|
|
3574
3494
|
description: "Bandai S.H.Figuarts Ultra Instinct Goku from Dragon Ball Super. 2nd release with improved articulation and silver aura effect parts. Features multiple hand sets, energy effect parts, and display stand. Approx. 140mm. Official Bandai Spirits product.",
|
|
3575
3495
|
category: "category-poseable-figures",
|
|
3576
3496
|
categoryName: "Poseable Figures",
|
|
3577
|
-
brand: "
|
|
3497
|
+
brand: "Bandai",
|
|
3498
|
+
brandSlug: "brand-bandai",
|
|
3578
3499
|
price: 649900,
|
|
3579
3500
|
currency: "INR",
|
|
3580
3501
|
stockQuantity: 3,
|
|
@@ -3587,8 +3508,6 @@ export const productsStandardSeedData = [
|
|
|
3587
3508
|
storeName: "LetItRip Official",
|
|
3588
3509
|
storeId: "store-letitrip-official",
|
|
3589
3510
|
featured: false,
|
|
3590
|
-
isAuction: false,
|
|
3591
|
-
isPreOrder: false,
|
|
3592
3511
|
isPromoted: false,
|
|
3593
3512
|
tags: ["shfiguarts", "dragon-ball", "goku", "ultra-instinct", "bandai", "articulated"],
|
|
3594
3513
|
condition: "new",
|
|
@@ -3608,7 +3527,8 @@ export const productsStandardSeedData = [
|
|
|
3608
3527
|
description: "Funko Pop! Deluxe figure of Tanjiro Kamado with Nezuko from Demon Slayer: Kimetsu no Yaiba. Diorama set with Tanjiro in battle pose and Nezuko in bamboo-muzzle form. Larger format deluxe figure with detailed base. Official licensed product.",
|
|
3609
3528
|
category: "category-poseable-figures",
|
|
3610
3529
|
categoryName: "Poseable Figures",
|
|
3611
|
-
brand: "
|
|
3530
|
+
brand: "Funko",
|
|
3531
|
+
brandSlug: "brand-funko",
|
|
3612
3532
|
price: 249900,
|
|
3613
3533
|
currency: "INR",
|
|
3614
3534
|
stockQuantity: 8,
|
|
@@ -3621,8 +3541,6 @@ export const productsStandardSeedData = [
|
|
|
3621
3541
|
storeName: "LetItRip Official",
|
|
3622
3542
|
storeId: "store-letitrip-official",
|
|
3623
3543
|
featured: false,
|
|
3624
|
-
isAuction: false,
|
|
3625
|
-
isPreOrder: false,
|
|
3626
3544
|
isPromoted: false,
|
|
3627
3545
|
tags: ["funko-pop", "demon-slayer", "tanjiro", "nezuko", "deluxe", "diorama", "anime"],
|
|
3628
3546
|
condition: "new",
|
|
@@ -3641,7 +3559,8 @@ export const productsStandardSeedData = [
|
|
|
3641
3559
|
description: "Medicom Toy MAFEX No.240 Miles Morales Spider-Man based on his appearance in Across the Spider-Verse. Highly articulated figure with fabric suit elements, web effect parts, and multiple expression faceplates. Approx. 155mm. One of the most detailed Miles Morales figures available.",
|
|
3642
3560
|
category: "category-poseable-figures",
|
|
3643
3561
|
categoryName: "Poseable Figures",
|
|
3644
|
-
brand: "
|
|
3562
|
+
brand: "Medicom Toy",
|
|
3563
|
+
brandSlug: "brand-medicom-toy",
|
|
3645
3564
|
price: 849900,
|
|
3646
3565
|
currency: "INR",
|
|
3647
3566
|
stockQuantity: 2,
|
|
@@ -3654,8 +3573,6 @@ export const productsStandardSeedData = [
|
|
|
3654
3573
|
storeName: "LetItRip Official",
|
|
3655
3574
|
storeId: "store-letitrip-official",
|
|
3656
3575
|
featured: true,
|
|
3657
|
-
isAuction: false,
|
|
3658
|
-
isPreOrder: false,
|
|
3659
3576
|
isPromoted: true,
|
|
3660
3577
|
tags: ["mafex", "miles-morales", "spider-man", "spider-verse", "medicom-toy", "articulated"],
|
|
3661
3578
|
condition: "new",
|
|
@@ -3676,7 +3593,8 @@ export const productsStandardSeedData = [
|
|
|
3676
3593
|
description: "Max Factory figma Makima from Chainsaw Man. Features 30+ articulation points, multiple expression faceplates including her iconic calm and menacing expressions, interchangeable hands, and display stand. Non-scale PVC/ABS. Official licensed from the Chainsaw Man anime.",
|
|
3677
3594
|
category: "category-poseable-figures",
|
|
3678
3595
|
categoryName: "Poseable Figures",
|
|
3679
|
-
brand: "
|
|
3596
|
+
brand: "Max Factory",
|
|
3597
|
+
brandSlug: "brand-max-factory",
|
|
3680
3598
|
price: 679900,
|
|
3681
3599
|
currency: "INR",
|
|
3682
3600
|
stockQuantity: 3,
|
|
@@ -3689,8 +3607,6 @@ export const productsStandardSeedData = [
|
|
|
3689
3607
|
storeName: "Tokyo Toys India",
|
|
3690
3608
|
storeId: "store-tokyo-toys-india",
|
|
3691
3609
|
featured: false,
|
|
3692
|
-
isAuction: false,
|
|
3693
|
-
isPreOrder: false,
|
|
3694
3610
|
isPromoted: false,
|
|
3695
3611
|
tags: ["figma", "makima", "chainsaw-man", "max-factory", "anime", "articulated"],
|
|
3696
3612
|
condition: "new",
|
|
@@ -3710,7 +3626,8 @@ export const productsStandardSeedData = [
|
|
|
3710
3626
|
description: "Good Smile Company Nendoroid Zero Two from DARLING in the FRANXX (#952). Features three expression faceplates, interchangeable parts, FRANXX control interface accessory, and display base. ~100mm PVC. One of the best-selling Nendoroids from the DARLING in the FRANXX series.",
|
|
3711
3627
|
category: "category-nendoroids-chibis",
|
|
3712
3628
|
categoryName: "Nendoroids & Chibis",
|
|
3713
|
-
brand: "
|
|
3629
|
+
brand: "Good Smile Company",
|
|
3630
|
+
brandSlug: "brand-good-smile",
|
|
3714
3631
|
price: 479900,
|
|
3715
3632
|
currency: "INR",
|
|
3716
3633
|
stockQuantity: 4,
|
|
@@ -3723,8 +3640,6 @@ export const productsStandardSeedData = [
|
|
|
3723
3640
|
storeName: "Tokyo Toys India",
|
|
3724
3641
|
storeId: "store-tokyo-toys-india",
|
|
3725
3642
|
featured: false,
|
|
3726
|
-
isAuction: false,
|
|
3727
|
-
isPreOrder: false,
|
|
3728
3643
|
isPromoted: false,
|
|
3729
3644
|
tags: ["nendoroid", "zero-two", "darling-in-the-franxx", "good-smile-company", "anime", "chibi"],
|
|
3730
3645
|
condition: "new",
|
|
@@ -3744,7 +3659,8 @@ export const productsStandardSeedData = [
|
|
|
3744
3659
|
description: "Good Smile Company 1/7 scale PVC figure of Aqua from KonoSuba: God's Blessing on this Wonderful World! Features her iconic blue-haired goddess look with detailed blue dress and water effect base. Approx. 230mm tall.",
|
|
3745
3660
|
category: "category-scale-figures",
|
|
3746
3661
|
categoryName: "Scale Figures",
|
|
3747
|
-
brand: "
|
|
3662
|
+
brand: "Good Smile Company",
|
|
3663
|
+
brandSlug: "brand-good-smile",
|
|
3748
3664
|
price: 899900,
|
|
3749
3665
|
currency: "INR",
|
|
3750
3666
|
stockQuantity: 2,
|
|
@@ -3757,8 +3673,6 @@ export const productsStandardSeedData = [
|
|
|
3757
3673
|
storeName: "Tokyo Toys India",
|
|
3758
3674
|
storeId: "store-tokyo-toys-india",
|
|
3759
3675
|
featured: true,
|
|
3760
|
-
isAuction: false,
|
|
3761
|
-
isPreOrder: false,
|
|
3762
3676
|
isPromoted: true,
|
|
3763
3677
|
tags: ["good-smile-company", "aqua", "konosuba", "1-7-scale", "scale-figure", "anime"],
|
|
3764
3678
|
condition: "new",
|
|
@@ -3778,7 +3692,8 @@ export const productsStandardSeedData = [
|
|
|
3778
3692
|
description: "Max Factory figma Levi Ackerman in Survey Corps uniform from Attack on Titan. Includes ODM gear effect parts, multiple blade accessories, adjustable wire effect, and multiple expression faceplates. 30+ articulation points. Non-scale PVC/ABS.",
|
|
3779
3693
|
category: "category-poseable-figures",
|
|
3780
3694
|
categoryName: "Poseable Figures",
|
|
3781
|
-
brand: "
|
|
3695
|
+
brand: "Max Factory",
|
|
3696
|
+
brandSlug: "brand-max-factory",
|
|
3782
3697
|
price: 699900,
|
|
3783
3698
|
currency: "INR",
|
|
3784
3699
|
stockQuantity: 3,
|
|
@@ -3791,8 +3706,6 @@ export const productsStandardSeedData = [
|
|
|
3791
3706
|
storeName: "Tokyo Toys India",
|
|
3792
3707
|
storeId: "store-tokyo-toys-india",
|
|
3793
3708
|
featured: false,
|
|
3794
|
-
isAuction: false,
|
|
3795
|
-
isPreOrder: false,
|
|
3796
3709
|
isPromoted: false,
|
|
3797
3710
|
tags: ["figma", "levi", "attack-on-titan", "aot", "max-factory", "anime", "articulated"],
|
|
3798
3711
|
condition: "new",
|
|
@@ -3811,7 +3724,8 @@ export const productsStandardSeedData = [
|
|
|
3811
3724
|
description: "Good Smile Company Nendoroid Killua Zoldyck from Hunter × Hunter (#1179). Includes skateboard accessory, yo-yo Godspeed effect parts, three expression faceplates, and display stand. Captures Killua's playful and intense sides perfectly.",
|
|
3812
3725
|
category: "category-nendoroids-chibis",
|
|
3813
3726
|
categoryName: "Nendoroids & Chibis",
|
|
3814
|
-
brand: "
|
|
3727
|
+
brand: "Good Smile Company",
|
|
3728
|
+
brandSlug: "brand-good-smile",
|
|
3815
3729
|
price: 459900,
|
|
3816
3730
|
currency: "INR",
|
|
3817
3731
|
stockQuantity: 5,
|
|
@@ -3824,8 +3738,6 @@ export const productsStandardSeedData = [
|
|
|
3824
3738
|
storeName: "Tokyo Toys India",
|
|
3825
3739
|
storeId: "store-tokyo-toys-india",
|
|
3826
3740
|
featured: false,
|
|
3827
|
-
isAuction: false,
|
|
3828
|
-
isPreOrder: false,
|
|
3829
3741
|
isPromoted: false,
|
|
3830
3742
|
tags: ["nendoroid", "killua", "hunter-x-hunter", "hxh", "good-smile-company", "anime"],
|
|
3831
3743
|
condition: "new",
|
|
@@ -3844,7 +3756,8 @@ export const productsStandardSeedData = [
|
|
|
3844
3756
|
description: "ALTER 1/7 scale PVC figure of Rem from Re:ZERO in her beautiful wedding dress. ALTER is known for the highest quality finish among Japanese figure manufacturers. Features intricate lace dress detail, floral bouquet, and display base. Approx. 230mm.",
|
|
3845
3757
|
category: "category-scale-figures",
|
|
3846
3758
|
categoryName: "Scale Figures",
|
|
3847
|
-
brand: "
|
|
3759
|
+
brand: "Alter",
|
|
3760
|
+
brandSlug: "brand-alter",
|
|
3848
3761
|
price: 1299900,
|
|
3849
3762
|
currency: "INR",
|
|
3850
3763
|
stockQuantity: 1,
|
|
@@ -3857,8 +3770,6 @@ export const productsStandardSeedData = [
|
|
|
3857
3770
|
storeName: "Tokyo Toys India",
|
|
3858
3771
|
storeId: "store-tokyo-toys-india",
|
|
3859
3772
|
featured: true,
|
|
3860
|
-
isAuction: false,
|
|
3861
|
-
isPreOrder: false,
|
|
3862
3773
|
isPromoted: true,
|
|
3863
3774
|
tags: ["alter", "rem", "re-zero", "wedding-ver", "1-7-scale", "scale-figure", "anime"],
|
|
3864
3775
|
condition: "new",
|
|
@@ -3878,7 +3789,8 @@ export const productsStandardSeedData = [
|
|
|
3878
3789
|
description: "Funko Pop! Animation figure of Monkey D. Luffy in his awakened Gear 5 form from One Piece. Features his white hair and iconic laughing expression. Official licensed product. Standard window-display box.",
|
|
3879
3790
|
category: "category-poseable-figures",
|
|
3880
3791
|
categoryName: "Poseable Figures",
|
|
3881
|
-
brand: "
|
|
3792
|
+
brand: "Funko",
|
|
3793
|
+
brandSlug: "brand-funko",
|
|
3882
3794
|
price: 159900,
|
|
3883
3795
|
currency: "INR",
|
|
3884
3796
|
stockQuantity: 15,
|
|
@@ -3891,8 +3803,6 @@ export const productsStandardSeedData = [
|
|
|
3891
3803
|
storeName: "Tokyo Toys India",
|
|
3892
3804
|
storeId: "store-tokyo-toys-india",
|
|
3893
3805
|
featured: false,
|
|
3894
|
-
isAuction: false,
|
|
3895
|
-
isPreOrder: false,
|
|
3896
3806
|
isPromoted: false,
|
|
3897
3807
|
tags: ["funko-pop", "one-piece", "luffy", "gear-5", "anime", "vinyl", "figure"],
|
|
3898
3808
|
condition: "new",
|
|
@@ -3912,7 +3822,8 @@ export const productsStandardSeedData = [
|
|
|
3912
3822
|
description: "Bandai High Grade (HG) 1/144 scale plastic model kit of the Gundam Aerial Rebuild from Mobile Suit Gundam: The Witch from Mercury. Features the stunning white and blue colour scheme with Permet particle effects. Snap-fit assembly, no glue required.",
|
|
3913
3823
|
category: "category-gunpla",
|
|
3914
3824
|
categoryName: "Gunpla",
|
|
3915
|
-
brand: "
|
|
3825
|
+
brand: "Bandai",
|
|
3826
|
+
brandSlug: "brand-bandai",
|
|
3916
3827
|
price: 249900,
|
|
3917
3828
|
currency: "INR",
|
|
3918
3829
|
stockQuantity: 8,
|
|
@@ -3925,8 +3836,6 @@ export const productsStandardSeedData = [
|
|
|
3925
3836
|
storeName: "Gundam Galaxy",
|
|
3926
3837
|
storeId: "store-gundam-galaxy",
|
|
3927
3838
|
featured: false,
|
|
3928
|
-
isAuction: false,
|
|
3929
|
-
isPreOrder: false,
|
|
3930
3839
|
isPromoted: false,
|
|
3931
3840
|
tags: ["gunpla", "hg", "1-144", "aerial-rebuild", "witch-from-mercury", "bandai"],
|
|
3932
3841
|
condition: "new",
|
|
@@ -3945,7 +3854,8 @@ export const productsStandardSeedData = [
|
|
|
3945
3854
|
description: "Bandai Master Grade (MG) 1/100 scale Nu Gundam Ver. Ka designed by Hajime Katoki. One of the most iconic MG kits featuring the full psychoframe design, detailed cockpit, LED-compatible inner frame, and Nu Gundam's iconic fin funnels. A centrepiece for any Gunpla collection.",
|
|
3946
3855
|
category: "category-gunpla",
|
|
3947
3856
|
categoryName: "Gunpla",
|
|
3948
|
-
brand: "
|
|
3857
|
+
brand: "Bandai",
|
|
3858
|
+
brandSlug: "brand-bandai",
|
|
3949
3859
|
price: 749900,
|
|
3950
3860
|
currency: "INR",
|
|
3951
3861
|
stockQuantity: 3,
|
|
@@ -3958,8 +3868,6 @@ export const productsStandardSeedData = [
|
|
|
3958
3868
|
storeName: "Gundam Galaxy",
|
|
3959
3869
|
storeId: "store-gundam-galaxy",
|
|
3960
3870
|
featured: true,
|
|
3961
|
-
isAuction: false,
|
|
3962
|
-
isPreOrder: false,
|
|
3963
3871
|
isPromoted: true,
|
|
3964
3872
|
tags: ["gunpla", "mg", "1-100", "nu-gundam", "ver-ka", "master-grade", "bandai", "katoki"],
|
|
3965
3873
|
condition: "new",
|
|
@@ -3979,7 +3887,8 @@ export const productsStandardSeedData = [
|
|
|
3979
3887
|
description: "Bandai Real Grade (RG) 1/144 scale Evangelion Unit-01 from Rebuild of Evangelion. Features the RG inner skeleton system for maximum articulation in a compact 1/144 scale. Restraint harness, progressive knife, and Lance of Longinus effect parts included.",
|
|
3980
3888
|
category: "category-gunpla",
|
|
3981
3889
|
categoryName: "Gunpla",
|
|
3982
|
-
brand: "
|
|
3890
|
+
brand: "Bandai",
|
|
3891
|
+
brandSlug: "brand-bandai",
|
|
3983
3892
|
price: 449900,
|
|
3984
3893
|
currency: "INR",
|
|
3985
3894
|
stockQuantity: 4,
|
|
@@ -3992,8 +3901,6 @@ export const productsStandardSeedData = [
|
|
|
3992
3901
|
storeName: "Gundam Galaxy",
|
|
3993
3902
|
storeId: "store-gundam-galaxy",
|
|
3994
3903
|
featured: false,
|
|
3995
|
-
isAuction: false,
|
|
3996
|
-
isPreOrder: false,
|
|
3997
3904
|
isPromoted: false,
|
|
3998
3905
|
tags: ["bandai", "rg", "1-144", "evangelion", "eva-unit-01", "rebuild", "neon-genesis"],
|
|
3999
3906
|
condition: "new",
|
|
@@ -4013,7 +3920,8 @@ export const productsStandardSeedData = [
|
|
|
4013
3920
|
description: "Bandai Perfect Grade (PG) Unleashed 1/60 scale RX-78-2 Gundam — the ultimate expression of the original Gundam. Features an internal LED system (batteries sold separately), over 500 parts with inner frame detail, and the fully articulated Core Fighter. The crown jewel of any Gunpla collection.",
|
|
4014
3921
|
category: "category-gunpla",
|
|
4015
3922
|
categoryName: "Gunpla",
|
|
4016
|
-
brand: "
|
|
3923
|
+
brand: "Bandai",
|
|
3924
|
+
brandSlug: "brand-bandai",
|
|
4017
3925
|
price: 2499900,
|
|
4018
3926
|
currency: "INR",
|
|
4019
3927
|
stockQuantity: 1,
|
|
@@ -4026,8 +3934,6 @@ export const productsStandardSeedData = [
|
|
|
4026
3934
|
storeName: "Gundam Galaxy",
|
|
4027
3935
|
storeId: "store-gundam-galaxy",
|
|
4028
3936
|
featured: true,
|
|
4029
|
-
isAuction: false,
|
|
4030
|
-
isPreOrder: false,
|
|
4031
3937
|
isPromoted: true,
|
|
4032
3938
|
tags: ["gunpla", "pg", "1-60", "rx-78-2", "perfect-grade", "unleashed", "bandai", "flagship"],
|
|
4033
3939
|
condition: "new",
|
|
@@ -4047,7 +3953,8 @@ export const productsStandardSeedData = [
|
|
|
4047
3953
|
description: "Bandai High Grade 1/144 scale Gundam Calibarn from The Witch from Mercury. The mysterious grey and black Gundam piloted by Suletta. Features articulated joints, GUND-bit effect parts, and weapon accessories. Snap-fit assembly.",
|
|
4048
3954
|
category: "category-gunpla",
|
|
4049
3955
|
categoryName: "Gunpla",
|
|
4050
|
-
brand: "
|
|
3956
|
+
brand: "Bandai",
|
|
3957
|
+
brandSlug: "brand-bandai",
|
|
4051
3958
|
price: 279900,
|
|
4052
3959
|
currency: "INR",
|
|
4053
3960
|
stockQuantity: 6,
|
|
@@ -4060,8 +3967,6 @@ export const productsStandardSeedData = [
|
|
|
4060
3967
|
storeName: "Gundam Galaxy",
|
|
4061
3968
|
storeId: "store-gundam-galaxy",
|
|
4062
3969
|
featured: false,
|
|
4063
|
-
isAuction: false,
|
|
4064
|
-
isPreOrder: false,
|
|
4065
3970
|
isPromoted: false,
|
|
4066
3971
|
tags: ["gunpla", "hg", "1-144", "calibarn", "witch-from-mercury", "bandai"],
|
|
4067
3972
|
condition: "new",
|
|
@@ -4080,7 +3985,8 @@ export const productsStandardSeedData = [
|
|
|
4080
3985
|
description: "Bandai Master Grade 1/100 Strike Freedom Gundam Full Burst Mode from Gundam SEED Destiny. Features the iconic gold wings of light (metal-coated effect parts), 14 dragoon beam guns, and dual beam rifles. One of the most visually striking MG kits available.",
|
|
4081
3986
|
category: "category-gunpla",
|
|
4082
3987
|
categoryName: "Gunpla",
|
|
4083
|
-
brand: "
|
|
3988
|
+
brand: "Bandai",
|
|
3989
|
+
brandSlug: "brand-bandai",
|
|
4084
3990
|
price: 699900,
|
|
4085
3991
|
currency: "INR",
|
|
4086
3992
|
stockQuantity: 3,
|
|
@@ -4093,8 +3999,6 @@ export const productsStandardSeedData = [
|
|
|
4093
3999
|
storeName: "Gundam Galaxy",
|
|
4094
4000
|
storeId: "store-gundam-galaxy",
|
|
4095
4001
|
featured: false,
|
|
4096
|
-
isAuction: false,
|
|
4097
|
-
isPreOrder: false,
|
|
4098
4002
|
isPromoted: false,
|
|
4099
4003
|
tags: ["gunpla", "mg", "1-100", "strike-freedom", "gundam-seed", "master-grade", "bandai"],
|
|
4100
4004
|
condition: "new",
|
|
@@ -4115,7 +4019,8 @@ export const productsStandardSeedData = [
|
|
|
4115
4019
|
description: "Hot Wheels 1970 Twin Mill I in brown with Redline tyres. Near Mint condition — no paint chips, minimal play wear, strong colour. This was the first year Twin Mill was produced as part of the original Redline era. A staple of any serious vintage Hot Wheels collection. Sold loose with correct tyres.",
|
|
4116
4020
|
category: "category-vintage-figures",
|
|
4117
4021
|
categoryName: "Vintage Figures",
|
|
4118
|
-
brand: "
|
|
4022
|
+
brand: "Hot Wheels",
|
|
4023
|
+
brandSlug: "brand-hot-wheels",
|
|
4119
4024
|
price: 699900,
|
|
4120
4025
|
currency: "INR",
|
|
4121
4026
|
stockQuantity: 1,
|
|
@@ -4128,8 +4033,6 @@ export const productsStandardSeedData = [
|
|
|
4128
4033
|
storeName: "Vintage Vault",
|
|
4129
4034
|
storeId: "store-vintage-vault",
|
|
4130
4035
|
featured: true,
|
|
4131
|
-
isAuction: false,
|
|
4132
|
-
isPreOrder: false,
|
|
4133
4036
|
isPromoted: true,
|
|
4134
4037
|
tags: ["hot-wheels", "twin-mill", "1970", "redline", "vintage", "rare", "diecast"],
|
|
4135
4038
|
condition: "used",
|
|
@@ -4149,7 +4052,8 @@ export const productsStandardSeedData = [
|
|
|
4149
4052
|
description: "G.I. Joe Real American Hero Hawk version 1 from 1983, Mint On Card. Straight-cut card with full card art. Bubble is intact with zero yellowing. This is the original Hawk, the first Commander-class figure in the Real American Hero line. Extremely rare to find MOC in India.",
|
|
4150
4053
|
category: "category-vintage-figures",
|
|
4151
4054
|
categoryName: "Vintage Figures",
|
|
4152
|
-
brand: "
|
|
4055
|
+
brand: "Hasbro",
|
|
4056
|
+
brandSlug: "brand-hasbro",
|
|
4153
4057
|
price: 1499900,
|
|
4154
4058
|
currency: "INR",
|
|
4155
4059
|
stockQuantity: 1,
|
|
@@ -4162,8 +4066,6 @@ export const productsStandardSeedData = [
|
|
|
4162
4066
|
storeName: "Vintage Vault",
|
|
4163
4067
|
storeId: "store-vintage-vault",
|
|
4164
4068
|
featured: true,
|
|
4165
|
-
isAuction: false,
|
|
4166
|
-
isPreOrder: false,
|
|
4167
4069
|
isPromoted: true,
|
|
4168
4070
|
tags: ["gi-joe", "hawk", "1983", "moc", "vintage", "hasbro", "real-american-hero", "rare"],
|
|
4169
4071
|
condition: "used",
|
|
@@ -4177,3 +4079,12 @@ export const productsStandardSeedData = [
|
|
|
4177
4079
|
updatedAt: daysAgo(7),
|
|
4178
4080
|
},
|
|
4179
4081
|
];
|
|
4082
|
+
/**
|
|
4083
|
+
* SB1-G Phase 4 (S22 2026-05-12): every standard product is stamped with
|
|
4084
|
+
* `listingType: "standard"`. The legacy `isAuction` / `isPreOrder` booleans
|
|
4085
|
+
* are gone from `ProductDocument`; this map-wrapper is the canonical write site.
|
|
4086
|
+
*/
|
|
4087
|
+
export const productsStandardSeedData = _rawProductsStandardSeedData.map((p) => ({
|
|
4088
|
+
...p,
|
|
4089
|
+
listingType: "standard",
|
|
4090
|
+
}));
|