@mohasinac/appkit 2.3.1 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +54 -18
- package/dist/client.js +29 -10
- package/dist/constants/api-endpoints.d.ts +384 -22
- package/dist/constants/api-endpoints.js +68 -13
- package/dist/constants/index.d.ts +1 -1
- package/dist/constants/index.js +1 -1
- package/dist/core/contact-submissions.repository.d.ts +32 -0
- package/dist/core/contact-submissions.repository.js +49 -0
- package/dist/core/hooks/useSyncManager.d.ts +1 -0
- package/dist/core/hooks/useSyncManager.js +83 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +1 -0
- package/dist/core/integration-keys.d.ts +4 -0
- package/dist/core/integration-keys.js +8 -0
- package/dist/features/about/components/FAQPageView.js +9 -11
- package/dist/features/about/components/HowPayoutsWorkView.js +1 -1
- package/dist/features/about/components/PolicyPageView.js +32 -11
- package/dist/features/about/components/PublicProfileView.js +77 -11
- package/dist/features/account/components/AddressFilters.d.ts +5 -0
- package/dist/features/account/components/AddressFilters.js +20 -0
- package/dist/features/account/components/AddressesIndexListing.d.ts +6 -0
- package/dist/features/account/components/AddressesIndexListing.js +76 -0
- package/dist/features/account/components/UserOffersPanel.d.ts +8 -0
- package/dist/features/account/components/UserOffersPanel.js +81 -0
- package/dist/features/account/components/UserSettingsView.d.ts +2 -1
- package/dist/features/account/components/UserSettingsView.js +2 -1
- package/dist/features/account/components/UserSidebar.d.ts +12 -3
- package/dist/features/account/components/UserSidebar.js +64 -10
- package/dist/features/account/components/index.d.ts +2 -0
- package/dist/features/account/components/index.js +1 -0
- package/dist/features/account/hooks/useAddresses.d.ts +7 -0
- package/dist/features/account/hooks/useAddresses.js +12 -1
- package/dist/features/admin/actions/admin-actions.d.ts +1 -1
- package/dist/features/admin/actions/admin-actions.js +13 -3
- package/dist/features/admin/actions/admin-read-actions.d.ts +12 -0
- package/dist/features/admin/actions/admin-read-actions.js +18 -0
- package/dist/features/admin/components/AdminAdEditorView.js +6 -7
- package/dist/features/admin/components/AdminAllEventEntriesView.d.ts +4 -0
- package/dist/features/admin/components/AdminAllEventEntriesView.js +102 -0
- package/dist/features/admin/components/AdminBidsView.js +94 -8
- package/dist/features/admin/components/AdminBlogEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBlogEditorView.js +162 -0
- package/dist/features/admin/components/AdminBlogView.d.ts +4 -1
- package/dist/features/admin/components/AdminBlogView.js +64 -10
- package/dist/features/admin/components/AdminBrandEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminBrandEditorView.js +104 -0
- package/dist/features/admin/components/AdminBrandsView.d.ts +4 -0
- package/dist/features/admin/components/AdminBrandsView.js +76 -0
- package/dist/features/admin/components/AdminCarouselEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminCarouselEditorView.js +204 -0
- package/dist/features/admin/components/AdminCarouselView.js +155 -20
- package/dist/features/admin/components/AdminCartsView.d.ts +4 -0
- package/dist/features/admin/components/AdminCartsView.js +82 -0
- package/dist/features/admin/components/AdminCategoriesView.d.ts +4 -1
- package/dist/features/admin/components/AdminCategoriesView.js +69 -26
- package/dist/features/admin/components/AdminCategoryEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCategoryEditorView.js +115 -0
- package/dist/features/admin/components/AdminContactEditorView.d.ts +11 -0
- package/dist/features/admin/components/AdminContactEditorView.js +32 -0
- package/dist/features/admin/components/AdminContactView.d.ts +4 -0
- package/dist/features/admin/components/AdminContactView.js +141 -0
- package/dist/features/admin/components/AdminCouponEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminCouponEditorView.js +179 -0
- package/dist/features/admin/components/AdminCouponsView.d.ts +4 -1
- package/dist/features/admin/components/AdminCouponsView.js +57 -9
- package/dist/features/admin/components/AdminDashboardView.js +3 -0
- package/dist/features/admin/components/AdminFaqEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminFaqEditorView.js +128 -0
- package/dist/features/admin/components/AdminFaqsView.d.ts +4 -1
- package/dist/features/admin/components/AdminFaqsView.js +55 -6
- package/dist/features/admin/components/AdminFeatureFlagsView.js +33 -24
- package/dist/features/admin/components/AdminListingScaffold.d.ts +17 -2
- package/dist/features/admin/components/AdminListingScaffold.js +14 -3
- package/dist/features/admin/components/AdminMediaView.js +18 -8
- package/dist/features/admin/components/AdminNavEditorView.d.ts +20 -0
- package/dist/features/admin/components/AdminNavEditorView.js +84 -0
- package/dist/features/admin/components/AdminNavigationView.d.ts +1 -7
- package/dist/features/admin/components/AdminNavigationView.js +84 -72
- package/dist/features/admin/components/AdminNewsletterView.d.ts +4 -0
- package/dist/features/admin/components/AdminNewsletterView.js +132 -0
- package/dist/features/admin/components/AdminNotificationsView.d.ts +4 -0
- package/dist/features/admin/components/AdminNotificationsView.js +119 -0
- package/dist/features/admin/components/AdminOrderEditorView.d.ts +8 -0
- package/dist/features/admin/components/AdminOrderEditorView.js +74 -0
- package/dist/features/admin/components/AdminOrdersView.js +64 -8
- package/dist/features/admin/components/AdminPayoutsView.js +122 -13
- package/dist/features/admin/components/AdminProductEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminProductEditorView.js +143 -0
- package/dist/features/admin/components/AdminProductsView.d.ts +4 -1
- package/dist/features/admin/components/AdminProductsView.js +124 -7
- package/dist/features/admin/components/AdminReturnRequestsView.d.ts +5 -0
- package/dist/features/admin/components/AdminReturnRequestsView.js +101 -0
- package/dist/features/admin/components/AdminReviewsView.js +140 -6
- package/dist/features/admin/components/AdminSectionsView.js +361 -472
- package/dist/features/admin/components/AdminSessionsView.d.ts +4 -0
- package/dist/features/admin/components/AdminSessionsView.js +119 -0
- package/dist/features/admin/components/AdminSidebar.d.ts +18 -3
- package/dist/features/admin/components/AdminSidebar.js +51 -4
- package/dist/features/admin/components/AdminSiteSettingsView.d.ts +7 -0
- package/dist/features/admin/components/AdminSiteSettingsView.js +319 -0
- package/dist/features/admin/components/AdminStoreAddressesView.d.ts +5 -0
- package/dist/features/admin/components/AdminStoreAddressesView.js +52 -0
- package/dist/features/admin/components/AdminStoreEditorView.d.ts +9 -0
- package/dist/features/admin/components/AdminStoreEditorView.js +55 -0
- package/dist/features/admin/components/AdminStoresView.js +62 -5
- package/dist/features/admin/components/AdminUserEditorView.d.ts +10 -0
- package/dist/features/admin/components/AdminUserEditorView.js +72 -0
- package/dist/features/admin/components/AdminUsersView.js +73 -14
- package/dist/features/admin/components/AdminWishlistsView.d.ts +4 -0
- package/dist/features/admin/components/AdminWishlistsView.js +53 -0
- package/dist/features/admin/components/BrandQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/BrandQuickCreateForm.js +36 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.d.ts +5 -0
- package/dist/features/admin/components/CategoryQuickCreateForm.js +35 -0
- package/dist/features/admin/components/DataTable.d.ts +5 -2
- package/dist/features/admin/components/DataTable.js +38 -4
- package/dist/features/admin/components/index.d.ts +53 -1
- package/dist/features/admin/components/index.js +26 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.d.ts +48 -0
- package/dist/features/admin/components/sections/adminSectionsBuildParse.js +653 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.d.ts +298 -0
- package/dist/features/admin/components/sections/adminSectionsTypes.js +278 -0
- package/dist/features/admin/hooks/useAdminListingData.d.ts +3 -1
- package/dist/features/admin/hooks/useAdminListingData.js +12 -7
- package/dist/features/admin/schemas/firestore.d.ts +26 -0
- package/dist/features/admin/schemas/firestore.js +1 -0
- package/dist/features/admin/server.d.ts +3 -0
- package/dist/features/admin/server.js +2 -0
- package/dist/features/admin/types/product.types.d.ts +2 -3
- package/dist/features/auctions/actions/bid-actions.js +6 -2
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +3 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +125 -53
- package/dist/features/auctions/components/AuctionFilters.d.ts +10 -0
- package/dist/features/auctions/components/AuctionFilters.js +16 -0
- package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
- package/dist/features/auctions/components/AuctionsListView.js +37 -5
- package/dist/features/auctions/components/CollapsibleBidHistory.d.ts +7 -0
- package/dist/features/auctions/components/CollapsibleBidHistory.js +8 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +4 -0
- package/dist/features/auctions/components/MarketplaceAuctionCard.js +43 -9
- package/dist/features/auctions/components/MarketplaceAuctionGrid.js +1 -0
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +18 -0
- package/dist/features/auctions/components/PlaceBidFormClient.js +33 -0
- package/dist/features/auctions/hooks/useAuctions.d.ts +1 -0
- package/dist/features/auctions/hooks/useAuctions.js +1 -0
- package/dist/features/auctions/schemas/index.d.ts +18 -8
- package/dist/features/auth/actions/profile-actions.d.ts +5 -3
- package/dist/features/auth/actions/profile-actions.js +30 -11
- package/dist/features/auth/auth-helpers.js +1 -0
- package/dist/features/auth/components/LoginForm.js +2 -1
- package/dist/features/auth/hooks/useAuth.js +16 -4
- package/dist/features/auth/permissions/constants.d.ts +63 -0
- package/dist/features/auth/permissions/constants.js +323 -0
- package/dist/features/auth/schemas/firestore.d.ts +20 -0
- package/dist/features/auth/schemas/index.d.ts +4 -4
- package/dist/features/auth/schemas/index.js +3 -2
- package/dist/features/auth/types/index.d.ts +1 -1
- package/dist/features/before-after/schemas/index.d.ts +2 -2
- package/dist/features/blog/actions/blog-actions.d.ts +15 -15
- package/dist/features/blog/components/BlogFeaturedCard.d.ts +1 -7
- package/dist/features/blog/components/BlogFeaturedCard.js +4 -5
- package/dist/features/blog/components/BlogFilters.js +2 -1
- package/dist/features/blog/components/BlogIndexListing.js +66 -9
- package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
- package/dist/features/blog/components/BlogIndexPageView.js +24 -4
- package/dist/features/blog/components/BlogListView.d.ts +2 -1
- package/dist/features/blog/components/BlogListView.js +10 -3
- package/dist/features/blog/components/BlogPostForm.js +6 -2
- package/dist/features/blog/components/BlogPostView.js +2 -1
- package/dist/features/blog/hooks/useBlog.d.ts +2 -0
- package/dist/features/blog/hooks/useBlog.js +2 -0
- package/dist/features/blog/schemas/index.d.ts +46 -12
- package/dist/features/brands/actions/brand-actions.d.ts +2 -0
- package/dist/features/brands/actions/brand-actions.js +5 -0
- package/dist/features/brands/index.d.ts +3 -0
- package/dist/features/brands/index.js +3 -0
- package/dist/features/brands/repository/brands.repository.d.ts +13 -0
- package/dist/features/brands/repository/brands.repository.js +60 -0
- package/dist/features/brands/schemas/index.d.ts +33 -0
- package/dist/features/brands/schemas/index.js +15 -0
- package/dist/features/brands/server.d.ts +7 -0
- package/dist/features/brands/server.js +7 -0
- package/dist/features/cart/actions/cart-actions.js +2 -2
- package/dist/features/cart/components/CartDrawer.d.ts +5 -1
- package/dist/features/cart/components/CartDrawer.js +3 -3
- package/dist/features/cart/hooks/useCartCount.d.ts +3 -2
- package/dist/features/cart/hooks/useCartCount.js +4 -2
- package/dist/features/cart/hooks/useGuestCartMerge.js +1 -1
- package/dist/features/cart/index.d.ts +1 -0
- package/dist/features/cart/index.js +1 -0
- package/dist/features/cart/repository/cart.repository.d.ts +5 -1
- package/dist/features/cart/repository/cart.repository.js +36 -5
- package/dist/features/cart/schemas/firestore.d.ts +25 -6
- package/dist/features/cart/schemas/firestore.js +2 -2
- package/dist/features/cart/schemas/index.d.ts +9 -9
- package/dist/features/cart/schemas/index.js +1 -1
- package/dist/features/cart/types/index.d.ts +1 -1
- package/dist/features/cart/utils/pending-ops.d.ts +33 -0
- package/dist/features/cart/utils/pending-ops.js +102 -0
- package/dist/features/categories/components/BrandDetailPageView.d.ts +4 -0
- package/dist/features/categories/components/BrandDetailPageView.js +54 -0
- package/dist/features/categories/components/BrandDetailTabs.d.ts +10 -0
- package/dist/features/categories/components/BrandDetailTabs.js +22 -0
- package/dist/features/categories/components/CategoriesIndexListing.d.ts +3 -1
- package/dist/features/categories/components/CategoriesIndexListing.js +117 -38
- package/dist/features/categories/components/CategoriesIndexPageView.d.ts +6 -1
- package/dist/features/categories/components/CategoriesIndexPageView.js +41 -2
- package/dist/features/categories/components/CategoryDetailPageView.js +47 -19
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +11 -0
- package/dist/features/categories/components/CategoryDetailTabs.js +22 -0
- package/dist/features/categories/components/CategoryFilters.js +2 -1
- package/dist/features/categories/components/CategoryForm.js +10 -4
- package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
- package/dist/features/categories/components/CategoryGrid.js +8 -6
- package/dist/features/categories/components/CategoryProductsListing.d.ts +4 -1
- package/dist/features/categories/components/CategoryProductsListing.js +53 -13
- package/dist/features/categories/components/ConcernCard.js +1 -1
- package/dist/features/categories/components/index.d.ts +2 -0
- package/dist/features/categories/components/index.js +1 -0
- package/dist/features/categories/hooks/useCategories.d.ts +20 -0
- package/dist/features/categories/hooks/useCategories.js +52 -1
- package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
- package/dist/features/categories/hooks/useCategoryTree.js +65 -0
- package/dist/features/categories/repository/categories.repository.js +2 -3
- package/dist/features/categories/schemas/firestore.d.ts +23 -2
- package/dist/features/categories/schemas/firestore.js +8 -0
- package/dist/features/categories/schemas/index.d.ts +8 -8
- package/dist/features/categories/types/index.d.ts +1 -0
- package/dist/features/collections/schemas/index.d.ts +2 -2
- package/dist/features/events/components/AdminEventEditorView.d.ts +6 -0
- package/dist/features/events/components/AdminEventEditorView.js +203 -0
- package/dist/features/events/components/AdminEventsView.d.ts +4 -1
- package/dist/features/events/components/AdminEventsView.js +66 -14
- package/dist/features/events/components/EventCard.js +4 -2
- package/dist/features/events/components/EventFilters.js +2 -1
- package/dist/features/events/components/EventPollWidget.d.ts +12 -0
- package/dist/features/events/components/EventPollWidget.js +62 -0
- package/dist/features/events/components/EventsIndexListing.js +92 -10
- package/dist/features/events/components/EventsListPageView.d.ts +6 -1
- package/dist/features/events/components/EventsListPageView.js +40 -7
- package/dist/features/events/components/index.d.ts +4 -0
- package/dist/features/events/components/index.js +2 -0
- package/dist/features/events/hooks/useEvents.d.ts +1 -0
- package/dist/features/events/hooks/useEvents.js +3 -0
- package/dist/features/events/repository/events.repository.js +3 -0
- package/dist/features/events/schemas/firestore.d.ts +1 -0
- package/dist/features/events/schemas/index.d.ts +44 -0
- package/dist/features/events/types/index.d.ts +3 -0
- package/dist/features/faq/actions/faq-actions.d.ts +16 -16
- package/dist/features/faq/hooks/useFaqList.js +1 -1
- package/dist/features/faq/schemas/firestore.d.ts +2 -2
- package/dist/features/faq/schemas/firestore.js +2 -1
- package/dist/features/faq/schemas/index.d.ts +4 -4
- package/dist/features/filters/FilterFacetSection.d.ts +1 -0
- package/dist/features/filters/FilterFacetSection.js +13 -1
- package/dist/features/filters/SwitchFilter.js +1 -1
- package/dist/features/grouped/schemas/firestore.d.ts +32 -0
- package/dist/features/grouped/schemas/firestore.js +19 -0
- package/dist/features/homepage/components/AdSlot.d.ts +1 -3
- package/dist/features/homepage/components/AdSlot.js +15 -14
- package/dist/features/homepage/components/BlogArticlesSection.d.ts +3 -1
- package/dist/features/homepage/components/BlogArticlesSection.js +3 -3
- package/dist/features/homepage/components/BrandsSection.d.ts +3 -1
- package/dist/features/homepage/components/BrandsSection.js +4 -3
- package/dist/features/homepage/components/CustomCardsSection.d.ts +3 -0
- package/dist/features/homepage/components/CustomCardsSection.js +76 -0
- package/dist/features/homepage/components/EventsSection.d.ts +3 -1
- package/dist/features/homepage/components/EventsSection.js +3 -3
- package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.js +3 -3
- package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.js +3 -3
- package/dist/features/homepage/components/FeaturedProductsSection.d.ts +4 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +8 -3
- package/dist/features/homepage/components/FeaturedStoresSection.d.ts +3 -1
- package/dist/features/homepage/components/FeaturedStoresSection.js +3 -3
- package/dist/features/homepage/components/GoogleReviewsSection.d.ts +3 -0
- package/dist/features/homepage/components/GoogleReviewsSection.js +65 -0
- package/dist/features/homepage/components/HeroCarousel.js +129 -85
- package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +2 -20
- package/dist/features/homepage/components/MarketplaceHomepageView.js +73 -220
- package/dist/features/homepage/components/SectionCarousel.d.ts +1 -1
- package/dist/features/homepage/components/SectionCarousel.js +6 -4
- package/dist/features/homepage/components/ShopByCategorySection.d.ts +3 -1
- package/dist/features/homepage/components/ShopByCategorySection.js +8 -4
- package/dist/features/homepage/components/SocialFeedSection.d.ts +3 -0
- package/dist/features/homepage/components/SocialFeedSection.js +86 -0
- package/dist/features/homepage/components/SocialPostCard.d.ts +7 -0
- package/dist/features/homepage/components/SocialPostCard.js +39 -0
- package/dist/features/homepage/components/StatsCounterSection.js +1 -1
- package/dist/features/homepage/components/WelcomeSection.js +1 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.js +1 -1
- package/dist/features/homepage/hooks/useActiveAd.d.ts +23 -0
- package/dist/features/homepage/hooks/useActiveAd.js +20 -0
- package/dist/features/homepage/hooks/useBlogArticles.d.ts +1 -0
- package/dist/features/homepage/hooks/useBlogArticles.js +10 -0
- package/dist/features/homepage/hooks/useFeaturedAuctions.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedAuctions.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedPreOrders.d.ts +4 -1
- package/dist/features/homepage/hooks/useFeaturedPreOrders.js +8 -4
- package/dist/features/homepage/hooks/useFeaturedProducts.d.ts +1 -0
- package/dist/features/homepage/hooks/useFeaturedProducts.js +6 -3
- package/dist/features/homepage/hooks/useFeaturedStores.d.ts +3 -1
- package/dist/features/homepage/hooks/useFeaturedStores.js +2 -1
- package/dist/features/homepage/hooks/useHomepageEvents.d.ts +3 -1
- package/dist/features/homepage/hooks/useHomepageEvents.js +2 -1
- package/dist/features/homepage/hooks/useTopBrands.d.ts +3 -1
- package/dist/features/homepage/hooks/useTopBrands.js +2 -1
- package/dist/features/homepage/index.d.ts +2 -0
- package/dist/features/homepage/index.js +1 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.d.ts +14 -0
- package/dist/features/homepage/lib/google-reviews-fetcher.js +27 -0
- package/dist/features/homepage/lib/live-stats.d.ts +14 -0
- package/dist/features/homepage/lib/live-stats.js +62 -0
- package/dist/features/homepage/lib/section-defaults.d.ts +11 -0
- package/dist/features/homepage/lib/section-defaults.js +45 -0
- package/dist/features/homepage/lib/section-helpers.d.ts +5 -0
- package/dist/features/homepage/lib/section-helpers.js +25 -0
- package/dist/features/homepage/lib/section-renderer.d.ts +33 -0
- package/dist/features/homepage/lib/section-renderer.js +164 -0
- package/dist/features/homepage/lib/social-feed-fetcher.d.ts +5 -0
- package/dist/features/homepage/lib/social-feed-fetcher.js +193 -0
- package/dist/features/homepage/schemas/firestore.d.ts +180 -29
- package/dist/features/homepage/schemas/firestore.js +7 -1
- package/dist/features/homepage/types/index.d.ts +48 -19
- package/dist/features/layout/AppLayoutShell.d.ts +11 -2
- package/dist/features/layout/AppLayoutShell.js +30 -10
- package/dist/features/layout/BottomActions.js +1 -1
- package/dist/features/layout/BottomNavbar.d.ts +15 -1
- package/dist/features/layout/BottomNavbar.js +8 -2
- package/dist/features/layout/FooterLayout.d.ts +7 -1
- package/dist/features/layout/FooterLayout.js +3 -3
- package/dist/features/layout/ListingLayout.js +2 -2
- package/dist/features/layout/MainNavbar.d.ts +6 -14
- package/dist/features/layout/MainNavbar.js +4 -16
- package/dist/features/layout/NavItem.js +1 -1
- package/dist/features/layout/NavbarLayout.d.ts +3 -1
- package/dist/features/layout/NavbarLayout.js +5 -5
- package/dist/features/layout/TitleBar.d.ts +4 -2
- package/dist/features/layout/TitleBar.js +5 -3
- package/dist/features/layout/TitleBarLayout.d.ts +3 -1
- package/dist/features/layout/TitleBarLayout.js +2 -2
- package/dist/features/layout/index.d.ts +1 -1
- package/dist/features/media/MediaPickerModal.d.ts +30 -0
- package/dist/features/media/MediaPickerModal.js +72 -0
- package/dist/features/media/index.d.ts +3 -1
- package/dist/features/media/index.js +1 -0
- package/dist/features/media/types/index.d.ts +12 -0
- package/dist/features/media/types/index.js +4 -2
- package/dist/features/media/upload/MediaUploadField.d.ts +5 -1
- package/dist/features/media/upload/MediaUploadField.js +56 -3
- package/dist/features/messages/schemas/firestore.d.ts +36 -0
- package/dist/features/messages/schemas/firestore.js +16 -0
- package/dist/features/orders/repository/orders.repository.d.ts +2 -2
- package/dist/features/orders/repository/orders.repository.js +2 -2
- package/dist/features/orders/schemas/firestore.d.ts +17 -4
- package/dist/features/orders/schemas/firestore.js +2 -2
- package/dist/features/orders/schemas/index.d.ts +18 -18
- package/dist/features/orders/schemas/index.js +3 -3
- package/dist/features/orders/types/index.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.d.ts +1 -1
- package/dist/features/orders/utils/order-splitter.js +2 -2
- package/dist/features/payments/repository/payout.repository.d.ts +4 -4
- package/dist/features/payments/repository/payout.repository.js +7 -7
- package/dist/features/payments/schemas/firestore.d.ts +6 -6
- package/dist/features/payments/schemas/firestore.js +6 -6
- package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +3 -1
- package/dist/features/pre-orders/components/MarketplacePreorderCard.js +13 -8
- package/dist/features/pre-orders/components/PreOrderActionsClient.d.ts +11 -0
- package/dist/features/pre-orders/components/PreOrderActionsClient.js +28 -0
- package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +100 -14
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +10 -0
- package/dist/features/pre-orders/components/PreOrderFilters.js +24 -0
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +4 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +166 -11
- package/dist/features/pre-orders/components/PreOrdersListView.d.ts +6 -1
- package/dist/features/pre-orders/components/PreOrdersListView.js +26 -7
- package/dist/features/pre-orders/components/PreorderCard.js +1 -1
- package/dist/features/pre-orders/components/index.d.ts +2 -0
- package/dist/features/pre-orders/components/index.js +1 -0
- package/dist/features/pre-orders/schemas/index.d.ts +10 -0
- package/dist/features/products/actions/product-actions.d.ts +2 -2
- package/dist/features/products/actions/product-actions.js +5 -5
- package/dist/features/products/api/[id]/route.js +5 -2
- package/dist/features/products/api/route.js +10 -14
- package/dist/features/products/columns/productTableColumns.js +2 -2
- package/dist/features/products/components/AuctionDetailView.d.ts +2 -1
- package/dist/features/products/components/AuctionDetailView.js +2 -2
- package/dist/features/products/components/AuctionsIndexListing.d.ts +4 -1
- package/dist/features/products/components/AuctionsIndexListing.js +124 -10
- package/dist/features/products/components/BidHistory.d.ts +2 -1
- package/dist/features/products/components/BidHistory.js +18 -2
- package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
- package/dist/features/products/components/InteractiveProductCard.js +2 -2
- package/dist/features/products/components/MakeOfferButton.d.ts +10 -0
- package/dist/features/products/components/MakeOfferButton.js +68 -0
- package/dist/features/products/components/ProductDetailPageView.d.ts +11 -1
- package/dist/features/products/components/ProductDetailPageView.js +136 -26
- package/dist/features/products/components/ProductFilters.d.ts +13 -12
- package/dist/features/products/components/ProductFilters.js +8 -4
- package/dist/features/products/components/ProductForm.d.ts +19 -1
- package/dist/features/products/components/ProductForm.js +24 -6
- package/dist/features/products/components/ProductGrid.d.ts +16 -2
- package/dist/features/products/components/ProductGrid.js +80 -18
- package/dist/features/products/components/ProductTabsShell.d.ts +3 -11
- package/dist/features/products/components/ProductTabsShell.js +14 -14
- package/dist/features/products/components/ProductsIndexListing.js +160 -10
- package/dist/features/products/components/ProductsIndexPageView.d.ts +6 -1
- package/dist/features/products/components/ProductsIndexPageView.js +39 -6
- package/dist/features/products/components/RelatedProductsCarousel.d.ts +7 -0
- package/dist/features/products/components/RelatedProductsCarousel.js +11 -0
- package/dist/features/products/components/ShareButton.d.ts +7 -0
- package/dist/features/products/components/ShareButton.js +22 -0
- package/dist/features/products/components/index.d.ts +3 -0
- package/dist/features/products/components/index.js +2 -0
- package/dist/features/products/hooks/useProducts.d.ts +7 -0
- package/dist/features/products/hooks/useProducts.js +20 -2
- package/dist/features/products/repository/products.repository.d.ts +9 -5
- package/dist/features/products/repository/products.repository.js +19 -50
- package/dist/features/products/schemas/firestore.d.ts +11 -9
- package/dist/features/products/schemas/firestore.js +11 -3
- package/dist/features/products/schemas/index.d.ts +43 -42
- package/dist/features/products/schemas/index.js +2 -5
- package/dist/features/products/types/index.d.ts +24 -4
- package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
- package/dist/features/promotions/actions/coupon-actions.js +1 -1
- package/dist/features/promotions/actions/seller-coupon-actions.js +11 -6
- package/dist/features/promotions/api/route.js +3 -3
- package/dist/features/promotions/components/CouponCard.js +16 -7
- package/dist/features/promotions/components/CouponsIndexListing.d.ts +9 -0
- package/dist/features/promotions/components/CouponsIndexListing.js +80 -0
- package/dist/features/promotions/components/PromotionsView.d.ts +11 -5
- package/dist/features/promotions/components/PromotionsView.js +6 -1
- package/dist/features/promotions/components/index.d.ts +4 -2
- package/dist/features/promotions/components/index.js +2 -1
- package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
- package/dist/features/promotions/hooks/usePromotions.js +2 -2
- package/dist/features/promotions/repository/coupons.repository.d.ts +21 -15
- package/dist/features/promotions/repository/coupons.repository.js +97 -125
- package/dist/features/promotions/schemas/firestore.d.ts +31 -2
- package/dist/features/promotions/schemas/firestore.js +29 -0
- package/dist/features/promotions/schemas/index.d.ts +9 -12
- package/dist/features/promotions/schemas/index.js +1 -2
- package/dist/features/promotions/types/index.d.ts +1 -2
- package/dist/features/reviews/actions/review-actions.js +3 -2
- package/dist/features/reviews/components/ReviewDetailPageView.d.ts +4 -0
- package/dist/features/reviews/components/ReviewDetailPageView.js +16 -0
- package/dist/features/reviews/components/ReviewDetailShell.d.ts +7 -0
- package/dist/features/reviews/components/ReviewDetailShell.js +80 -0
- package/dist/features/reviews/components/ReviewFilters.d.ts +3 -3
- package/dist/features/reviews/components/ReviewFilters.js +5 -4
- package/dist/features/reviews/components/ReviewsIndexListing.d.ts +4 -3
- package/dist/features/reviews/components/ReviewsIndexListing.js +86 -51
- package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +6 -1
- package/dist/features/reviews/components/ReviewsIndexPageView.js +49 -3
- package/dist/features/reviews/components/ReviewsList.js +9 -1
- package/dist/features/reviews/components/index.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.d.ts +1 -0
- package/dist/features/reviews/hooks/useReviews.js +16 -1
- package/dist/features/reviews/repository/reviews.repository.d.ts +9 -4
- package/dist/features/reviews/repository/reviews.repository.js +18 -7
- package/dist/features/reviews/schemas/firestore.d.ts +5 -2
- package/dist/features/reviews/schemas/firestore.js +1 -0
- package/dist/features/reviews/schemas/index.d.ts +19 -16
- package/dist/features/reviews/schemas/index.js +3 -2
- package/dist/features/reviews/types/index.d.ts +9 -3
- package/dist/features/scams/actions/scam-actions.d.ts +29 -0
- package/dist/features/scams/actions/scam-actions.js +62 -0
- package/dist/features/scams/components/ScamProfileView.d.ts +7 -0
- package/dist/features/scams/components/ScamProfileView.js +49 -0
- package/dist/features/scams/components/ScamRegistryView.d.ts +6 -0
- package/dist/features/scams/components/ScamRegistryView.js +41 -0
- package/dist/features/scams/components/index.d.ts +4 -0
- package/dist/features/scams/components/index.js +2 -0
- package/dist/features/scams/constants/scam-types.d.ts +38 -0
- package/dist/features/scams/constants/scam-types.js +443 -0
- package/dist/features/scams/repository/scammer.repository.d.ts +67 -0
- package/dist/features/scams/repository/scammer.repository.js +160 -0
- package/dist/features/scams/schemas/firestore.d.ts +362 -0
- package/dist/features/scams/schemas/firestore.js +233 -0
- package/dist/features/search/components/Search.d.ts +12 -2
- package/dist/features/search/components/Search.js +26 -7
- package/dist/features/search/components/index.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.d.ts +1 -1
- package/dist/features/search/hooks/useNavSuggestions.js +2 -2
- package/dist/features/search/schemas/index.d.ts +7 -7
- package/dist/features/seller/actions/offer-actions.js +52 -36
- package/dist/features/seller/actions/seller-actions.js +19 -13
- package/dist/features/seller/api/products/route.js +9 -4
- package/dist/features/seller/components/SellerAddressesView.d.ts +3 -12
- package/dist/features/seller/components/SellerAddressesView.js +144 -4
- package/dist/features/seller/components/SellerAuctionsView.js +58 -5
- package/dist/features/seller/components/SellerBidsView.d.ts +4 -0
- package/dist/features/seller/components/SellerBidsView.js +131 -0
- package/dist/features/seller/components/SellerCouponEditorView.d.ts +19 -0
- package/dist/features/seller/components/SellerCouponEditorView.js +67 -0
- package/dist/features/seller/components/SellerCouponsView.d.ts +5 -3
- package/dist/features/seller/components/SellerCouponsView.js +135 -13
- package/dist/features/seller/components/SellerCreateProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerCreateProductView.js +4 -3
- package/dist/features/seller/components/SellerEditProductView.d.ts +4 -10
- package/dist/features/seller/components/SellerEditProductView.js +4 -3
- package/dist/features/seller/components/SellerOffersPanel.d.ts +20 -0
- package/dist/features/seller/components/SellerOffersPanel.js +138 -0
- package/dist/features/seller/components/SellerOffersView.js +56 -5
- package/dist/features/seller/components/SellerOrdersView.d.ts +2 -1
- package/dist/features/seller/components/SellerOrdersView.js +185 -16
- package/dist/features/seller/components/SellerPayoutRequestView.d.ts +7 -0
- package/dist/features/seller/components/SellerPayoutRequestView.js +63 -0
- package/dist/features/seller/components/SellerPayoutSettingsView.d.ts +3 -10
- package/dist/features/seller/components/SellerPayoutSettingsView.js +89 -3
- package/dist/features/seller/components/SellerPayoutsView.js +56 -5
- package/dist/features/seller/components/SellerProductShell.d.ts +68 -0
- package/dist/features/seller/components/SellerProductShell.js +179 -0
- package/dist/features/seller/components/SellerProductsView.d.ts +2 -3
- package/dist/features/seller/components/SellerProductsView.js +194 -18
- package/dist/features/seller/components/SellerReviewsView.d.ts +5 -0
- package/dist/features/seller/components/SellerReviewsView.js +100 -0
- package/dist/features/seller/components/SellerShippingView.d.ts +3 -11
- package/dist/features/seller/components/SellerShippingView.js +87 -3
- package/dist/features/seller/components/SellerSidebar.d.ts +18 -6
- package/dist/features/seller/components/SellerSidebar.js +54 -8
- package/dist/features/seller/components/SellerStorefrontView.d.ts +26 -11
- package/dist/features/seller/components/SellerStorefrontView.js +45 -7
- package/dist/features/seller/components/index.d.ts +45 -1
- package/dist/features/seller/components/index.js +24 -0
- package/dist/features/seller/hooks/useSellerListingData.d.ts +3 -1
- package/dist/features/seller/hooks/useSellerListingData.js +6 -4
- package/dist/features/seller/hooks/useSellerStore.d.ts +2 -0
- package/dist/features/seller/hooks/useSellerStore.js +2 -0
- package/dist/features/seller/permission-map.d.ts +4 -2
- package/dist/features/seller/permission-map.js +16 -14
- package/dist/features/seller/repository/offer.repository.d.ts +3 -3
- package/dist/features/seller/repository/offer.repository.js +6 -6
- package/dist/features/seller/schemas/firestore.d.ts +7 -7
- package/dist/features/seller/schemas/firestore.js +4 -4
- package/dist/features/seller/schemas/index.d.ts +18 -18
- package/dist/features/shell/FormShell.d.ts +29 -0
- package/dist/features/shell/FormShell.js +103 -0
- package/dist/features/shell/QuickFormDrawer.d.ts +29 -0
- package/dist/features/shell/QuickFormDrawer.js +117 -0
- package/dist/features/shell/StepForm.d.ts +44 -0
- package/dist/features/shell/StepForm.js +81 -0
- package/dist/features/shell/index.d.ts +6 -0
- package/dist/features/shell/index.js +3 -0
- package/dist/features/stores/actions/store-query-actions.js +3 -3
- package/dist/features/stores/api/[storeSlug]/auctions/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/products/route.js +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.d.ts +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +25 -20
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +2 -7
- package/dist/features/stores/components/InteractiveStoreCard.js +24 -10
- package/dist/features/stores/components/StoreAboutView.js +1 -1
- package/dist/features/stores/components/StoreAuctionsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreAuctionsListing.js +103 -12
- package/dist/features/stores/components/StoreAuctionsPageView.js +8 -7
- package/dist/features/stores/components/StoreDetailLayoutView.d.ts +1 -0
- package/dist/features/stores/components/StoreDetailLayoutView.js +30 -4
- package/dist/features/stores/components/StoreFilters.d.ts +5 -0
- package/dist/features/stores/components/StoreFilters.js +20 -0
- package/dist/features/stores/components/StoreHeader.js +3 -2
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +7 -0
- package/dist/features/stores/components/StorePreOrdersListing.js +92 -0
- package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
- package/dist/features/stores/components/StorePreOrdersPageView.js +22 -0
- package/dist/features/stores/components/StoreProductsListing.d.ts +5 -2
- package/dist/features/stores/components/StoreProductsListing.js +113 -14
- package/dist/features/stores/components/StoreProductsPageView.js +8 -7
- package/dist/features/stores/components/StoreReviewsListing.js +4 -9
- package/dist/features/stores/components/StoresIndexListing.js +106 -9
- package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
- package/dist/features/stores/components/StoresIndexPageView.js +9 -2
- package/dist/features/stores/components/StoresListView.js +1 -1
- package/dist/features/stores/components/index.d.ts +3 -0
- package/dist/features/stores/components/index.js +1 -0
- package/dist/features/stores/hooks/useStores.d.ts +8 -1
- package/dist/features/stores/hooks/useStores.js +17 -3
- package/dist/features/stores/schemas/firestore.d.ts +34 -0
- package/dist/features/stores/schemas/index.d.ts +10 -10
- package/dist/features/stores/types/index.d.ts +3 -0
- package/dist/features/sublisting/schemas/firestore.d.ts +30 -0
- package/dist/features/sublisting/schemas/firestore.js +19 -0
- package/dist/features/support/schemas/firestore.d.ts +113 -0
- package/dist/features/support/schemas/firestore.js +95 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.d.ts +5 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +143 -0
- package/dist/features/whatsapp-bot/components/index.d.ts +2 -0
- package/dist/features/whatsapp-bot/components/index.js +1 -0
- package/dist/features/whatsapp-bot/helpers/whatsapp.d.ts +23 -1
- package/dist/features/whatsapp-bot/helpers/whatsapp.js +104 -0
- package/dist/features/whatsapp-bot/server.d.ts +1 -0
- package/dist/features/whatsapp-bot/server.js +1 -0
- package/dist/features/whatsapp-bot/types/index.d.ts +49 -0
- package/dist/features/wishlist/components/WishlistView.d.ts +0 -10
- package/dist/features/wishlist/components/WishlistView.js +13 -6
- package/dist/features/wishlist/hooks/useGuestWishlist.d.ts +20 -0
- package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
- package/dist/features/wishlist/hooks/useWishlist.js +2 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +15 -0
- package/dist/features/wishlist/hooks/useWishlistCount.js +95 -0
- package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +56 -0
- package/dist/features/wishlist/hooks/useWishlistWithGuest.js +57 -0
- package/dist/features/wishlist/index.d.ts +3 -0
- package/dist/features/wishlist/index.js +3 -0
- package/dist/features/wishlist/schemas/index.d.ts +2 -2
- package/dist/features/wishlist/types/index.d.ts +16 -0
- package/dist/features/wishlist/utils/guest-wishlist.d.ts +22 -0
- package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
- package/dist/http/api-handler.js +8 -1
- package/dist/index.d.ts +158 -13
- package/dist/index.js +188 -21
- package/dist/monitoring/server-logger.js +9 -3
- package/dist/next/routing/route-map.d.ts +184 -36
- package/dist/next/routing/route-map.js +81 -22
- package/dist/providers/db-firebase/realtime.d.ts +1 -1
- package/dist/react/contexts/SessionContext.js +17 -26
- package/dist/react/hooks/useBulkSelection.d.ts +7 -24
- package/dist/react/hooks/useBulkSelection.js +27 -34
- package/dist/react/hooks/useLongPress.d.ts +3 -16
- package/dist/react/hooks/useLongPress.js +6 -25
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +2 -0
- package/dist/repositories/index.d.ts +3 -0
- package/dist/repositories/index.js +2 -0
- package/dist/seed/actions/demo-seed-actions.d.ts +2 -2
- package/dist/seed/actions/demo-seed-actions.js +1 -1
- package/dist/seed/addresses-seed-data.js +62 -261
- package/dist/seed/anime-figures-seed-data.d.ts +8 -0
- package/dist/seed/anime-figures-seed-data.js +1033 -0
- package/dist/seed/beyblade-seed-data.d.ts +7 -0
- package/dist/seed/beyblade-seed-data.js +1129 -0
- package/dist/seed/bids-seed-data.d.ts +4 -2
- package/dist/seed/bids-seed-data.js +343 -1067
- package/dist/seed/blog-posts-seed-data.d.ts +3 -2
- package/dist/seed/blog-posts-seed-data.js +258 -181
- package/dist/seed/brands-seed-data.d.ts +7 -0
- package/dist/seed/brands-seed-data.js +410 -0
- package/dist/seed/carousel-slides-seed-data.d.ts +3 -2
- package/dist/seed/carousel-slides-seed-data.js +177 -216
- package/dist/seed/cart-seed-data.d.ts +8 -8
- package/dist/seed/cart-seed-data.js +73 -74
- package/dist/seed/categories-seed-data.d.ts +4 -2
- package/dist/seed/categories-seed-data.js +720 -879
- package/dist/seed/conversations-seed-data.d.ts +8 -0
- package/dist/seed/conversations-seed-data.js +388 -0
- package/dist/seed/cosplay-accessories-seed-data.d.ts +8 -0
- package/dist/seed/cosplay-accessories-seed-data.js +647 -0
- package/dist/seed/coupon-usage-seed-data.d.ts +25 -0
- package/dist/seed/coupon-usage-seed-data.js +69 -0
- package/dist/seed/coupons-seed-data.d.ts +4 -2
- package/dist/seed/coupons-seed-data.js +204 -338
- package/dist/seed/events-seed-data.d.ts +4 -2
- package/dist/seed/events-seed-data.js +125 -588
- package/dist/seed/factories/cart.factory.d.ts +0 -1
- package/dist/seed/factories/cart.factory.js +2 -2
- package/dist/seed/faq-seed-data.d.ts +11 -41
- package/dist/seed/faq-seed-data.js +833 -1977
- package/dist/seed/grouped-listings-seed-data.d.ts +8 -0
- package/dist/seed/grouped-listings-seed-data.js +201 -0
- package/dist/seed/homepage-sections-seed-data.d.ts +3 -13
- package/dist/seed/homepage-sections-seed-data.js +228 -252
- package/dist/seed/hot-wheels-seed-data.d.ts +7 -0
- package/dist/seed/hot-wheels-seed-data.js +1612 -0
- package/dist/seed/index.d.ts +12 -6
- package/dist/seed/index.js +10 -7
- package/dist/seed/letitrip-official-seed-data.d.ts +8 -0
- package/dist/seed/letitrip-official-seed-data.js +399 -0
- package/dist/seed/manifest.d.ts +15 -0
- package/dist/seed/manifest.js +140 -0
- package/dist/seed/notifications-seed-data.d.ts +4 -2
- package/dist/seed/notifications-seed-data.js +117 -440
- package/dist/seed/orders-seed-data.d.ts +4 -2
- package/dist/seed/orders-seed-data.js +1090 -521
- package/dist/seed/payouts-seed-data.d.ts +4 -2
- package/dist/seed/payouts-seed-data.js +522 -145
- package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +4 -2
- package/dist/seed/pokemon-carousel-slides-seed-data.js +157 -268
- package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
- package/dist/seed/pokemon-categories-seed-data.js +445 -1025
- package/dist/seed/pokemon-coupons-seed-data.d.ts +6 -0
- package/dist/seed/pokemon-coupons-seed-data.js +465 -0
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +3 -2
- package/dist/seed/pokemon-homepage-sections-seed-data.js +120 -249
- package/dist/seed/pokemon-products-seed-data.d.ts +1 -1
- package/dist/seed/pokemon-products-seed-data.js +720 -48
- package/dist/seed/pokemon-seed-bundle.d.ts +36 -11
- package/dist/seed/pokemon-seed-bundle.js +60 -11
- package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
- package/dist/seed/pokemon-stores-seed-data.js +135 -34
- package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
- package/dist/seed/pokemon-users-seed-data.js +344 -261
- package/dist/seed/products-auctions-seed-data.d.ts +10 -0
- package/dist/seed/products-auctions-seed-data.js +689 -0
- package/dist/seed/products-preorders-seed-data.d.ts +9 -0
- package/dist/seed/products-preorders-seed-data.js +483 -0
- package/dist/seed/products-seed-data.js +34 -13
- package/dist/seed/products-standard-seed-data.d.ts +8 -0
- package/dist/seed/products-standard-seed-data.js +4179 -0
- package/dist/seed/retro-gaming-seed-data.d.ts +8 -0
- package/dist/seed/retro-gaming-seed-data.js +801 -0
- package/dist/seed/reviews-seed-data.d.ts +4 -2
- package/dist/seed/reviews-seed-data.js +1005 -441
- package/dist/seed/scammers-seed-data.d.ts +17 -0
- package/dist/seed/scammers-seed-data.js +118 -0
- package/dist/seed/site-settings-seed-data.js +39 -16
- package/dist/seed/store-addresses-seed-data.js +187 -65
- package/dist/seed/stores-seed-data.d.ts +3 -9
- package/dist/seed/stores-seed-data.js +212 -102
- package/dist/seed/sublisting-categories-seed-data.d.ts +7 -0
- package/dist/seed/sublisting-categories-seed-data.js +315 -0
- package/dist/seed/transformers-seed-data.d.ts +7 -0
- package/dist/seed/transformers-seed-data.js +530 -0
- package/dist/seed/users-seed-data.d.ts +3 -2
- package/dist/seed/users-seed-data.js +531 -440
- package/dist/seed/wishlists-seed-data.d.ts +5 -1
- package/dist/seed/wishlists-seed-data.js +84 -6
- package/dist/server.d.ts +10 -2
- package/dist/server.js +14 -4
- package/dist/tokens/index.d.ts +6 -0
- package/dist/tokens/index.js +2 -0
- package/dist/tokens/tokens.css +76 -31
- package/dist/ui/components/Avatar.style.css +10 -12
- package/dist/ui/components/BaseListingCard.d.ts +8 -3
- package/dist/ui/components/BaseListingCard.js +39 -30
- package/dist/ui/components/BaseListingCard.style.css +8 -6
- package/dist/ui/components/BulkActionsBar.d.ts +16 -0
- package/dist/ui/components/BulkActionsBar.js +22 -0
- package/dist/ui/components/Button.style.css +23 -23
- package/dist/ui/components/Card.style.css +60 -62
- package/dist/ui/components/Checkbox.style.css +19 -21
- package/dist/ui/components/DashboardStatsCard.style.css +12 -14
- package/dist/ui/components/Drawer.style.css +18 -14
- package/dist/ui/components/Dropdown.style.css +25 -27
- package/dist/ui/components/EmptyState.style.css +2 -4
- package/dist/ui/components/HorizontalScroller.d.ts +3 -1
- package/dist/ui/components/HorizontalScroller.js +130 -21
- package/dist/ui/components/HorizontalScroller.style.css +2 -2
- package/dist/ui/components/ImageLightbox.d.ts +0 -9
- package/dist/ui/components/ImageLightbox.js +43 -9
- package/dist/ui/components/InlineCreateSelect.d.ts +38 -0
- package/dist/ui/components/InlineCreateSelect.js +70 -0
- package/dist/ui/components/ListingLayout.style.css +41 -77
- package/dist/ui/components/ListingToolbar.d.ts +54 -0
- package/dist/ui/components/ListingToolbar.js +34 -0
- package/dist/ui/components/Modal.style.css +14 -10
- package/dist/ui/components/PageLoader.d.ts +11 -0
- package/dist/ui/components/PageLoader.js +21 -0
- package/dist/ui/components/Radio.style.css +34 -36
- package/dist/ui/components/RichTextEditor.js +1 -1
- package/dist/ui/components/RowActionMenu.d.ts +1 -0
- package/dist/ui/components/RowActionMenu.js +4 -2
- package/dist/ui/components/SectionTabs.js +1 -1
- package/dist/ui/components/SectionTabs.style.css +1 -0
- package/dist/ui/components/SideDrawer.style.css +3 -11
- package/dist/ui/components/SideModal.style.css +4 -8
- package/dist/ui/components/Slider.style.css +2 -4
- package/dist/ui/components/Tabs.style.css +8 -10
- package/dist/ui/components/Toast.style.css +22 -24
- package/dist/ui/components/Toggle.style.css +11 -13
- package/dist/ui/index.d.ts +9 -0
- package/dist/ui/index.js +5 -0
- package/dist/ui/rich-text/RichText.js +21 -2
- package/dist/ui/rich-text/RichText.style.css +292 -5
- package/dist/ui/rich-text/RichTextRenderer.d.ts +15 -0
- package/dist/ui/rich-text/RichTextRenderer.js +15 -0
- package/dist/utils/id-generators.d.ts +10 -0
- package/dist/utils/id-generators.js +12 -0
- package/dist/validation/schemas.d.ts +9 -9
- package/package.json +5 -1
- package/README.md +0 -116
|
@@ -1,621 +1,1185 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Reviews Seed Data
|
|
3
|
-
*
|
|
2
|
+
* Reviews Seed Data — LetItRip Collectibles Platform
|
|
3
|
+
* 15 reviews distributed across the 5 stores from P15.
|
|
4
|
+
* Uses buyer IDs from P15 and product IDs from P16/P17/P18.
|
|
5
|
+
* review- prefix, system-generated IDs (not slug-based per slug prefix table).
|
|
4
6
|
*/
|
|
5
|
-
// Dynamic date helpers
|
|
6
7
|
const NOW = new Date();
|
|
7
8
|
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
{
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
},
|
|
9
|
+
const SELLER_STORE = {
|
|
10
|
+
"user-aryan-kapoor": { storeId: "store-pokemon-palace", storeName: "Pokémon Palace" },
|
|
11
|
+
"user-nisha-reddy": { storeId: "store-cardgame-hub", storeName: "CardGame Hub" },
|
|
12
|
+
"user-vikram-mehta": { storeId: "store-diecast-depot", storeName: "Diecast Depot" },
|
|
13
|
+
"user-rohit-joshi": { storeId: "store-beyblade-arena", storeName: "Beyblade Arena" },
|
|
14
|
+
"user-admin-letitrip": { storeId: "store-letitrip-official", storeName: "LetItRip Official" },
|
|
15
|
+
"user-priya-singh": { storeId: "store-tokyo-toys-india", storeName: "Tokyo Toys India" },
|
|
16
|
+
"user-amit-sharma": { storeId: "store-gundam-galaxy", storeName: "Gundam Galaxy" },
|
|
17
|
+
};
|
|
18
|
+
const rawReviews = [
|
|
19
|
+
// ── store-pokemon-palace (4 reviews) ─────────────────────────────────────
|
|
20
|
+
{
|
|
21
|
+
id: "review-pokemon-151-box-rahul-001",
|
|
22
|
+
productId: "product-pokemon-151-booster-box",
|
|
23
|
+
productTitle: "Pokémon 151 Booster Box (Sealed)",
|
|
24
|
+
sellerId: "user-aryan-kapoor",
|
|
25
|
+
userId: "user-rahul-sharma",
|
|
26
|
+
userName: "Rahul Sharma",
|
|
27
|
+
rating: 5,
|
|
28
|
+
title: "Absolutely pristine sealed box — perfect packaging",
|
|
29
|
+
comment: "Aryan packed this box like it was going to the moon. Double-boxed, foam corners, bubble wrap around the individual booster packs inside. The Pokémon 151 box arrived 100% sealed with no dents. Pulled a Mew ex SAR on my first pack — couldn't be happier. Will buy every new set from Pokémon Palace.",
|
|
30
30
|
status: "approved",
|
|
31
|
-
helpfulCount:
|
|
31
|
+
helpfulCount: 14,
|
|
32
32
|
reportCount: 0,
|
|
33
33
|
verified: true,
|
|
34
34
|
featured: true,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
sellerReply: "Thank you so much, Rahul! Double-boxing is our standard for all sealed products — we know how precious these are. So glad the Mew ex SAR made your day! 🎉",
|
|
36
|
+
sellerRepliedAt: daysAgo(53),
|
|
37
|
+
createdAt: daysAgo(55),
|
|
38
|
+
updatedAt: daysAgo(53),
|
|
39
|
+
approvedAt: daysAgo(54),
|
|
38
40
|
},
|
|
39
41
|
{
|
|
40
|
-
id: "review-
|
|
41
|
-
productId: "product-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
userId: "user-
|
|
45
|
-
userName: "
|
|
46
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=jane-smith",
|
|
42
|
+
id: "review-base-set-sealed-arjun-002",
|
|
43
|
+
productId: "product-pokemon-base-set-booster-sealed",
|
|
44
|
+
productTitle: "Pokémon Base Set Shadowless Booster Box (Sealed)",
|
|
45
|
+
sellerId: "user-aryan-kapoor",
|
|
46
|
+
userId: "user-arjun-singh",
|
|
47
|
+
userName: "Arjun Singh",
|
|
47
48
|
rating: 5,
|
|
48
|
-
title: "
|
|
49
|
-
comment: "
|
|
50
|
-
images: [],
|
|
49
|
+
title: "Genuine shadowless box, exactly as described",
|
|
50
|
+
comment: "This was a huge purchase for me — ₹89,999 is not nothing. I did video unboxing of the packaging for insurance purposes. The box is clearly genuine shadowless era (1999 print run visible on bottom), factory seal intact, no re-wrapping. Aryan provided provenance documentation (original purchase receipt from a US collector) without me even asking. Impeccable seller.",
|
|
51
51
|
status: "approved",
|
|
52
|
-
helpfulCount:
|
|
52
|
+
helpfulCount: 32,
|
|
53
53
|
reportCount: 0,
|
|
54
54
|
verified: true,
|
|
55
55
|
featured: true,
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
sellerReply: "Arjun, this means the world to us. A Shadowless box is one of the rarest items we've ever handled and we treated it accordingly. Provenance documentation is always included for vintage lots — that's just our standard.",
|
|
57
|
+
sellerRepliedAt: daysAgo(40),
|
|
58
|
+
createdAt: daysAgo(42),
|
|
59
|
+
updatedAt: daysAgo(40),
|
|
60
|
+
approvedAt: daysAgo(41),
|
|
59
61
|
},
|
|
60
62
|
{
|
|
61
|
-
id: "review-
|
|
62
|
-
productId: "product-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
userId: "user-
|
|
66
|
-
userName: "
|
|
67
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=mike-johnson",
|
|
63
|
+
id: "review-pokemon-etb-priya-003",
|
|
64
|
+
productId: "product-pokemon-sv-etb",
|
|
65
|
+
productTitle: "Pokémon Scarlet & Violet Paldean Fates Elite Trainer Box",
|
|
66
|
+
sellerId: "user-aryan-kapoor",
|
|
67
|
+
userId: "user-priya-patel",
|
|
68
|
+
userName: "Priya Patel",
|
|
68
69
|
rating: 4,
|
|
69
|
-
title: "Great
|
|
70
|
-
comment: "
|
|
71
|
-
images: [],
|
|
70
|
+
title: "Great ETB, arrived safely — shipping was a bit slow",
|
|
71
|
+
comment: "The ETB was in perfect condition and sealed correctly. I pulled a Shiny Charizard ex which made my week! Shipping took 6 days which is on the longer end, but the packaging was excellent — my only minor complaint. Pokémon Palace is definitely a go-to store.",
|
|
72
72
|
status: "approved",
|
|
73
|
-
helpfulCount:
|
|
73
|
+
helpfulCount: 8,
|
|
74
74
|
reportCount: 0,
|
|
75
|
-
verified:
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
75
|
+
verified: true,
|
|
76
|
+
featured: false,
|
|
77
|
+
createdAt: daysAgo(28),
|
|
78
|
+
updatedAt: daysAgo(27),
|
|
79
|
+
approvedAt: daysAgo(27),
|
|
79
80
|
},
|
|
80
81
|
{
|
|
81
|
-
id: "review-
|
|
82
|
-
productId: "product-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
userId: "user-
|
|
86
|
-
userName: "
|
|
87
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=john-doe",
|
|
82
|
+
id: "review-pikachu-plush-meera-004",
|
|
83
|
+
productId: "product-pokemon-pikachu-plush-8",
|
|
84
|
+
productTitle: "Pokémon Pikachu 8-inch Sitting Plush (Official Pokémon Center)",
|
|
85
|
+
sellerId: "user-aryan-kapoor",
|
|
86
|
+
userId: "user-meera-nair",
|
|
87
|
+
userName: "Meera Nair",
|
|
88
88
|
rating: 5,
|
|
89
|
-
title: "
|
|
90
|
-
comment: "
|
|
91
|
-
images: [
|
|
92
|
-
"https://picsum.photos/seed/macbook-laptop/800/800",
|
|
93
|
-
"https://picsum.photos/seed/laptop-apple/800/800",
|
|
94
|
-
],
|
|
89
|
+
title: "Adorable and authentic — tags intact, came with certificate",
|
|
90
|
+
comment: "Bought this as a birthday gift for my niece. The plush has the Pokémon Center tag and feels premium — not the cheap knock-offs you see online. Aryan included a small thank-you note which was a lovely touch. Niece went crazy for it. Ordering the Gengar plush next.",
|
|
95
91
|
status: "approved",
|
|
96
|
-
helpfulCount:
|
|
92
|
+
helpfulCount: 5,
|
|
97
93
|
reportCount: 0,
|
|
98
|
-
verified:
|
|
94
|
+
verified: true,
|
|
95
|
+
featured: false,
|
|
96
|
+
createdAt: daysAgo(18),
|
|
97
|
+
updatedAt: daysAgo(17),
|
|
98
|
+
approvedAt: daysAgo(17),
|
|
99
|
+
},
|
|
100
|
+
// ── store-cardgame-hub (3 reviews) ────────────────────────────────────────
|
|
101
|
+
{
|
|
102
|
+
id: "review-yugioh-25th-tin-rahul-005",
|
|
103
|
+
productId: "product-yugioh-25th-tin",
|
|
104
|
+
productTitle: "Yu-Gi-Oh! 25th Anniversary Tin: Dueling Heroes",
|
|
105
|
+
sellerId: "user-nisha-reddy",
|
|
106
|
+
userId: "user-rahul-sharma",
|
|
107
|
+
userName: "Rahul Sharma",
|
|
108
|
+
rating: 5,
|
|
109
|
+
title: "Nisha is the best YGO seller in India, period",
|
|
110
|
+
comment: "I've ordered from three different YGO sellers on LetItRip and CardGame Hub is on another level. The 25th Anniversary Tin arrived with each mega pack in its own sleeve inside the tin. Nisha also included a handwritten note about recommended first packs to open — genuine community knowledge. Will only order YGO from here going forward.",
|
|
111
|
+
status: "approved",
|
|
112
|
+
helpfulCount: 22,
|
|
113
|
+
reportCount: 0,
|
|
114
|
+
verified: true,
|
|
99
115
|
featured: true,
|
|
100
|
-
createdAt: daysAgo(
|
|
101
|
-
updatedAt: daysAgo(
|
|
102
|
-
approvedAt: daysAgo(
|
|
116
|
+
createdAt: daysAgo(38),
|
|
117
|
+
updatedAt: daysAgo(37),
|
|
118
|
+
approvedAt: daysAgo(37),
|
|
103
119
|
},
|
|
104
120
|
{
|
|
105
|
-
id: "review-
|
|
106
|
-
productId: "product-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
userId: "user-
|
|
110
|
-
userName: "
|
|
111
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=jane-smith",
|
|
121
|
+
id: "review-yugioh-albaz-arjun-006",
|
|
122
|
+
productId: "product-yugioh-structure-albaz",
|
|
123
|
+
productTitle: "Yu-Gi-Oh! Structure Deck: Albaz Strike",
|
|
124
|
+
sellerId: "user-nisha-reddy",
|
|
125
|
+
userId: "user-arjun-singh",
|
|
126
|
+
userName: "Arjun Singh",
|
|
112
127
|
rating: 4,
|
|
113
|
-
title: "
|
|
114
|
-
comment: "
|
|
115
|
-
images: [],
|
|
128
|
+
title: "Solid structure deck, good beginner product",
|
|
129
|
+
comment: "Bought 3 copies to complete a playset as Nisha recommended. Cards came in the original sealed structure deck packaging with no damage. Shipping was 4 days which is perfectly fine for a standard order. Would rate 5 stars if shipping was 2 days but that's a minor point.",
|
|
116
130
|
status: "approved",
|
|
117
|
-
helpfulCount:
|
|
131
|
+
helpfulCount: 6,
|
|
118
132
|
reportCount: 0,
|
|
119
|
-
verified:
|
|
120
|
-
|
|
133
|
+
verified: true,
|
|
134
|
+
featured: false,
|
|
135
|
+
createdAt: daysAgo(22),
|
|
136
|
+
updatedAt: daysAgo(21),
|
|
137
|
+
approvedAt: daysAgo(21),
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
id: "review-charizard-auction-priya-007",
|
|
141
|
+
productId: "auction-pokemon-charizard-base1-psa9",
|
|
142
|
+
productTitle: "Pokémon 1st Edition Charizard PSA 9 (AUCTION)",
|
|
143
|
+
sellerId: "user-nisha-reddy",
|
|
144
|
+
userId: "user-priya-patel",
|
|
145
|
+
userName: "Priya Patel",
|
|
146
|
+
rating: 3,
|
|
147
|
+
title: "Card is beautiful but auction process was stressful",
|
|
148
|
+
comment: "The card itself is perfect — genuine PSA 9, certificate verified on PSA website. Shipping was excellent (insured, signature required). My 3-star is about the bidding experience: I was outbid in the last 60 seconds three times before winning, which was nerve-wracking. That's a platform issue, not the seller's fault. Card arrived safely and I'm thrilled to own it.",
|
|
149
|
+
status: "approved",
|
|
150
|
+
helpfulCount: 4,
|
|
151
|
+
reportCount: 0,
|
|
152
|
+
verified: true,
|
|
153
|
+
featured: false,
|
|
154
|
+
createdAt: daysAgo(12),
|
|
155
|
+
updatedAt: daysAgo(11),
|
|
156
|
+
approvedAt: daysAgo(11),
|
|
157
|
+
},
|
|
158
|
+
// ── store-diecast-depot (3 reviews) ───────────────────────────────────────
|
|
159
|
+
{
|
|
160
|
+
id: "review-redline-camaro-meera-008",
|
|
161
|
+
productId: "product-hot-wheels-redline-1969-camaro",
|
|
162
|
+
productTitle: "Hot Wheels Redline 1969 Camaro SS — Custom Paint (Bluebird)",
|
|
163
|
+
sellerId: "user-vikram-mehta",
|
|
164
|
+
userId: "user-meera-nair",
|
|
165
|
+
userName: "Meera Nair",
|
|
166
|
+
rating: 5,
|
|
167
|
+
title: "A true Redline beauty — mint condition, authentic",
|
|
168
|
+
comment: "This was my first vintage Hot Wheels purchase and Vikram made it a great experience. The Redline arrived in a proper acrylic display case (not just a ziplock — a real display case!) with a card describing the car's production year and rarity. Vikram's description was honest — the car has minor paint wear on the roof which he mentioned in the listing. Very happy.",
|
|
169
|
+
status: "approved",
|
|
170
|
+
helpfulCount: 11,
|
|
171
|
+
reportCount: 0,
|
|
172
|
+
verified: true,
|
|
173
|
+
featured: false,
|
|
174
|
+
createdAt: daysAgo(48),
|
|
175
|
+
updatedAt: daysAgo(47),
|
|
176
|
+
approvedAt: daysAgo(47),
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
id: "review-tomica-datsun-rahul-009",
|
|
180
|
+
productId: "product-tomica-limited-datsun",
|
|
181
|
+
productTitle: "Tomica Limited Vintage Datsun Bluebird 1600SSS (1969)",
|
|
182
|
+
sellerId: "user-vikram-mehta",
|
|
183
|
+
userId: "user-rahul-sharma",
|
|
184
|
+
userName: "Rahul Sharma",
|
|
185
|
+
rating: 5,
|
|
186
|
+
title: "TLV quality is unreal — every detail perfect",
|
|
187
|
+
comment: "I've been collecting Hot Wheels for years but Tomica Limited Vintage is something else entirely. The Datsun Bluebird has rubber tyres, a working bonnet, and tampo print so fine I need a magnifying glass to appreciate it. Vikram sourced this from his Japan trip — you can tell it's fresh stock. Arrived in the original TLV outer box in immaculate condition.",
|
|
188
|
+
status: "approved",
|
|
189
|
+
helpfulCount: 19,
|
|
190
|
+
reportCount: 0,
|
|
191
|
+
verified: true,
|
|
192
|
+
featured: true,
|
|
193
|
+
createdAt: daysAgo(35),
|
|
121
194
|
updatedAt: daysAgo(34),
|
|
122
195
|
approvedAt: daysAgo(34),
|
|
123
196
|
},
|
|
124
197
|
{
|
|
125
|
-
id: "review-
|
|
126
|
-
productId: "product-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
userId: "user-
|
|
130
|
-
userName: "
|
|
131
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=mike-johnson",
|
|
198
|
+
id: "review-hw-rlc-boneshaker-arjun-010",
|
|
199
|
+
productId: "product-hot-wheels-rlc-bone-shaker",
|
|
200
|
+
productTitle: "Hot Wheels RLC Bone Shaker Special Edition",
|
|
201
|
+
sellerId: "user-vikram-mehta",
|
|
202
|
+
userId: "user-arjun-singh",
|
|
203
|
+
userName: "Arjun Singh",
|
|
132
204
|
rating: 4,
|
|
133
|
-
title: "
|
|
134
|
-
comment: "
|
|
135
|
-
images: [],
|
|
205
|
+
title: "Rare RLC exclusive, good price, slightly late dispatch",
|
|
206
|
+
comment: "The RLC Bone Shaker is exactly as described — sealed in the original RLC mailer with the membership card insert. My only feedback: dispatch was on day 3 (not day 2 as listed in store policy). Vikram apologised proactively and offered a discount on my next order, which I appreciate. Car itself is perfect.",
|
|
136
207
|
status: "approved",
|
|
137
|
-
helpfulCount:
|
|
208
|
+
helpfulCount: 7,
|
|
138
209
|
reportCount: 0,
|
|
139
210
|
verified: true,
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
211
|
+
featured: false,
|
|
212
|
+
createdAt: daysAgo(20),
|
|
213
|
+
updatedAt: daysAgo(19),
|
|
214
|
+
approvedAt: daysAgo(19),
|
|
143
215
|
},
|
|
216
|
+
// ── store-beyblade-arena (3 reviews) ─────────────────────────────────────
|
|
144
217
|
{
|
|
145
|
-
id: "review-
|
|
146
|
-
productId: "product-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
userId: "user-
|
|
150
|
-
userName: "
|
|
151
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=jane-smith",
|
|
218
|
+
id: "review-bx01-dran-sword-priya-011",
|
|
219
|
+
productId: "product-beyblade-x-bx01-dran-sword",
|
|
220
|
+
productTitle: "Beyblade X BX-01 Dran Sword 4-60F Starter Set",
|
|
221
|
+
sellerId: "user-rohit-joshi",
|
|
222
|
+
userId: "user-priya-patel",
|
|
223
|
+
userName: "Priya Patel",
|
|
152
224
|
rating: 5,
|
|
153
|
-
title: "
|
|
154
|
-
comment: "
|
|
155
|
-
images: ["https://picsum.photos/seed/ethnic-kurti/800/800"],
|
|
225
|
+
title: "My son's first BX top — perfect gift, fast delivery",
|
|
226
|
+
comment: "Ordered for my 8-year-old who is obsessed with Beyblade X. Rohit shipped the same day I placed the order (I ordered at 10am, it was dispatched by 4pm). Arrived in 3 days. The BX-01 starter set comes with the top, rip cord launcher, and a stadium guide — everything a beginner needs. My son has launched it 200 times and it's still perfect.",
|
|
156
227
|
status: "approved",
|
|
157
|
-
helpfulCount:
|
|
228
|
+
helpfulCount: 28,
|
|
158
229
|
reportCount: 0,
|
|
159
|
-
verified:
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
230
|
+
verified: true,
|
|
231
|
+
featured: true,
|
|
232
|
+
createdAt: daysAgo(50),
|
|
233
|
+
updatedAt: daysAgo(49),
|
|
234
|
+
approvedAt: daysAgo(49),
|
|
163
235
|
},
|
|
164
236
|
{
|
|
165
|
-
id: "review-
|
|
166
|
-
productId: "product-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
userId: "user-
|
|
170
|
-
userName: "
|
|
171
|
-
|
|
237
|
+
id: "review-b200-valkyrie-meera-012",
|
|
238
|
+
productId: "product-beyblade-burst-b200-valkyrie",
|
|
239
|
+
productTitle: "Beyblade Burst B-200 Brave Valkyrie Evolution",
|
|
240
|
+
sellerId: "user-rohit-joshi",
|
|
241
|
+
userId: "user-meera-nair",
|
|
242
|
+
userName: "Meera Nair",
|
|
243
|
+
rating: 5,
|
|
244
|
+
title: "Authentic Takara Tomy import, not the bootleg version",
|
|
245
|
+
comment: "There are SO many bootleg Beyblades on other platforms. Rohit sells only genuine Takara Tomy product — you can tell by the QR code on the Beyblade passport card (scans correctly on the Beyblade app). Brave Valkyrie arrived fresh from its Japan import, unopened. The weight difference from bootlegs is immediately obvious.",
|
|
246
|
+
status: "approved",
|
|
247
|
+
helpfulCount: 15,
|
|
248
|
+
reportCount: 0,
|
|
249
|
+
verified: true,
|
|
250
|
+
featured: false,
|
|
251
|
+
createdAt: daysAgo(32),
|
|
252
|
+
updatedAt: daysAgo(31),
|
|
253
|
+
approvedAt: daysAgo(31),
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
id: "review-preorder-beyblade-bx10-rahul-013",
|
|
257
|
+
productId: "preorder-beyblade-x-bx10-booster",
|
|
258
|
+
productTitle: "Beyblade X BX-10 Booster Set Pre-Order",
|
|
259
|
+
sellerId: "user-rohit-joshi",
|
|
260
|
+
userId: "user-rahul-sharma",
|
|
261
|
+
userName: "Rahul Sharma",
|
|
172
262
|
rating: 4,
|
|
173
|
-
title: "
|
|
174
|
-
comment: "
|
|
175
|
-
images: [],
|
|
263
|
+
title: "Pre-order arrived on time — worth the wait",
|
|
264
|
+
comment: "Rohit's pre-order process was smooth. I paid the 30% deposit, received confirmation, and the balance was charged exactly when he said it would be (2 days before dispatch). Item arrived 42 days after ordering — right in the promised window. No complaints. Will pre-order the BX-12 when Rohit lists it.",
|
|
176
265
|
status: "approved",
|
|
177
266
|
helpfulCount: 9,
|
|
178
267
|
reportCount: 0,
|
|
179
|
-
verified:
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
268
|
+
verified: true,
|
|
269
|
+
featured: false,
|
|
270
|
+
createdAt: daysAgo(10),
|
|
271
|
+
updatedAt: daysAgo(9),
|
|
272
|
+
approvedAt: daysAgo(9),
|
|
183
273
|
},
|
|
274
|
+
// ── store-letitrip-official (2 reviews) ───────────────────────────────────
|
|
184
275
|
{
|
|
185
|
-
id: "review-
|
|
186
|
-
productId: "product-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
userId: "user-
|
|
190
|
-
userName: "
|
|
191
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=jane-smith",
|
|
276
|
+
id: "review-shf-goku-arjun-014",
|
|
277
|
+
productId: "product-shf-goku-ultra-instinct",
|
|
278
|
+
productTitle: "S.H.Figuarts Goku Ultra Instinct -Sign- (Dragon Ball Super)",
|
|
279
|
+
sellerId: "user-admin-letitrip",
|
|
280
|
+
userId: "user-arjun-singh",
|
|
281
|
+
userName: "Arjun Singh",
|
|
192
282
|
rating: 5,
|
|
193
|
-
title: "
|
|
194
|
-
comment: "
|
|
195
|
-
images: [],
|
|
283
|
+
title: "Official LetItRip store delivers — SHF in perfect condition",
|
|
284
|
+
comment: "This is my 4th S.H.Figuarts from LetItRip Official and they're consistently excellent. The Goku UI comes with 5 face plates, effect parts, and all the swap hands. Every accessory was accounted for (I always check). LetItRip Official is the most reliable store on the platform — their QC before dispatch is clearly thorough.",
|
|
196
285
|
status: "approved",
|
|
197
|
-
helpfulCount:
|
|
286
|
+
helpfulCount: 17,
|
|
198
287
|
reportCount: 0,
|
|
199
288
|
verified: true,
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
289
|
+
featured: false,
|
|
290
|
+
createdAt: daysAgo(26),
|
|
291
|
+
updatedAt: daysAgo(25),
|
|
292
|
+
approvedAt: daysAgo(25),
|
|
203
293
|
},
|
|
204
|
-
// Medium rating reviews
|
|
205
294
|
{
|
|
206
|
-
id: "review-
|
|
207
|
-
productId: "
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
userId: "user-
|
|
211
|
-
userName: "
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
comment: "Authentic vintage camera in excellent condition. Film photography at its finest.",
|
|
216
|
-
images: ["https://picsum.photos/seed/film-camera/800/800"],
|
|
295
|
+
id: "review-gundam-rx78-mg-arjun-015",
|
|
296
|
+
productId: "product-gundam-rx78-mg",
|
|
297
|
+
productTitle: "MG 1/100 RX-78-2 Gundam Ver. 3.0",
|
|
298
|
+
sellerId: "user-admin-letitrip",
|
|
299
|
+
userId: "user-arjun-singh",
|
|
300
|
+
userName: "Arjun Singh",
|
|
301
|
+
rating: 2,
|
|
302
|
+
title: "Kit was missing the beam rifle assembly — resolved via support",
|
|
303
|
+
comment: "The box arrived safely but when I inventoried the sprues, the G runner (beam rifle parts) was missing — looks like a factory packing error. I opened a dispute on LetItRip and LetItRip Official resolved it within 48 hours by shipping the missing runner separately at no cost. They clearly take after-sales seriously. Updating from 1 star to 2 stars because the issue was resolved, but losing a star for the missing part.",
|
|
217
304
|
status: "approved",
|
|
218
|
-
helpfulCount:
|
|
305
|
+
helpfulCount: 6,
|
|
219
306
|
reportCount: 0,
|
|
220
|
-
verified:
|
|
307
|
+
verified: true,
|
|
308
|
+
featured: false,
|
|
309
|
+
createdAt: daysAgo(14),
|
|
310
|
+
updatedAt: daysAgo(12),
|
|
311
|
+
approvedAt: daysAgo(12),
|
|
312
|
+
},
|
|
313
|
+
// ── store-tokyo-toys-india (5 reviews) ────────────────────────────────────
|
|
314
|
+
{
|
|
315
|
+
id: "review-nendoroid-zero-two-sneha-016",
|
|
316
|
+
productId: "product-nendoroid-zero-two",
|
|
317
|
+
productTitle: "Nendoroid Zero Two (Darling in the FranXX) #942",
|
|
318
|
+
sellerId: "user-priya-singh",
|
|
319
|
+
userId: "user-sneha-kumar",
|
|
320
|
+
userName: "Sneha Kumar",
|
|
321
|
+
rating: 5,
|
|
322
|
+
title: "Zero Two is everything I dreamed of — authentic GSC, flawless",
|
|
323
|
+
comment: "I've been hunting this Nendoroid for 2 years and finally found it at Tokyo Toys India. Priya sourced the re-release directly from GSC. The serial number on the base matches the box — definitely authentic. Three faceplates, the horns are perfect, and the stand works smoothly. Packed in foam-padded box, arrived in 3 days. Priya is the real deal — she knows her anime figures.",
|
|
324
|
+
status: "approved",
|
|
325
|
+
helpfulCount: 24,
|
|
326
|
+
reportCount: 0,
|
|
327
|
+
verified: true,
|
|
221
328
|
featured: true,
|
|
222
|
-
createdAt: daysAgo(
|
|
223
|
-
updatedAt: daysAgo(
|
|
224
|
-
approvedAt: daysAgo(
|
|
329
|
+
createdAt: daysAgo(45),
|
|
330
|
+
updatedAt: daysAgo(44),
|
|
331
|
+
approvedAt: daysAgo(44),
|
|
225
332
|
},
|
|
226
333
|
{
|
|
227
|
-
id: "review-
|
|
228
|
-
productId: "product-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
userId: "user-
|
|
232
|
-
userName: "
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
comment: "Camera quality is outstanding. Battery life is solid. Slightly heavy but worth it.",
|
|
237
|
-
images: [],
|
|
334
|
+
id: "review-nendoroid-levi-tanvi-017",
|
|
335
|
+
productId: "product-nendoroid-levi-aot",
|
|
336
|
+
productTitle: "Nendoroid Levi Ackerman (Attack on Titan) #390",
|
|
337
|
+
sellerId: "user-priya-singh",
|
|
338
|
+
userId: "user-tanvi-desai",
|
|
339
|
+
userName: "Tanvi Desai",
|
|
340
|
+
rating: 5,
|
|
341
|
+
title: "Cleaning mode faceplate alone is worth it — perfect figure",
|
|
342
|
+
comment: "The cleaning mode Levi faceplate with the tiny mop is the most charming thing I own. Priya's packaging was impeccable — each faceplate in its own mini tray exactly as GSC intended. This is my 6th Nendoroid from Tokyo Toys India and Priya has never once let me down. Already eyeing the Ram Nendoroid on her store.",
|
|
238
343
|
status: "approved",
|
|
239
|
-
helpfulCount:
|
|
344
|
+
helpfulCount: 18,
|
|
240
345
|
reportCount: 0,
|
|
241
346
|
verified: true,
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
347
|
+
featured: false,
|
|
348
|
+
createdAt: daysAgo(38),
|
|
349
|
+
updatedAt: daysAgo(37),
|
|
350
|
+
approvedAt: daysAgo(37),
|
|
245
351
|
},
|
|
246
|
-
// Pending reviews (awaiting moderation)
|
|
247
352
|
{
|
|
248
|
-
id: "review-
|
|
249
|
-
productId: "product-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
userId: "user-
|
|
253
|
-
userName: "
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
status: "pending",
|
|
260
|
-
helpfulCount: 0,
|
|
353
|
+
id: "review-shf-sailor-moon-sneha-018",
|
|
354
|
+
productId: "product-shf-sailor-moon-eternal",
|
|
355
|
+
productTitle: "S.H.Figuarts Sailor Moon Eternal (2021)",
|
|
356
|
+
sellerId: "user-priya-singh",
|
|
357
|
+
userId: "user-sneha-kumar",
|
|
358
|
+
userName: "Sneha Kumar",
|
|
359
|
+
rating: 5,
|
|
360
|
+
title: "Rainbow wings are breathtaking — showpiece figure",
|
|
361
|
+
comment: "The rainbow semi-translucent wings on this figure catch light in ways that my photos simply cannot capture. When sunlight hits them, the entire shelf lights up. Priya had this in stock while every other seller was out — she clearly has excellent supplier relationships. Arrived double-boxed, wings were in a separate padded compartment. No damage. 10/10.",
|
|
362
|
+
status: "approved",
|
|
363
|
+
helpfulCount: 31,
|
|
261
364
|
reportCount: 0,
|
|
262
|
-
verified:
|
|
365
|
+
verified: true,
|
|
366
|
+
featured: true,
|
|
263
367
|
createdAt: daysAgo(29),
|
|
264
|
-
updatedAt: daysAgo(
|
|
368
|
+
updatedAt: daysAgo(28),
|
|
369
|
+
approvedAt: daysAgo(28),
|
|
265
370
|
},
|
|
266
371
|
{
|
|
267
|
-
id: "review-
|
|
268
|
-
productId: "product-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
userId: "user-
|
|
272
|
-
userName: "
|
|
273
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=jane-smith",
|
|
372
|
+
id: "review-funko-pop-tanjiro-tanvi-019",
|
|
373
|
+
productId: "product-funko-pop-tanjiro-demon-slayer",
|
|
374
|
+
productTitle: "Funko Pop! Tanjiro Kamado (Demon Slayer) #855",
|
|
375
|
+
sellerId: "user-priya-singh",
|
|
376
|
+
userId: "user-tanvi-desai",
|
|
377
|
+
userName: "Tanvi Desai",
|
|
274
378
|
rating: 4,
|
|
275
|
-
title: "
|
|
276
|
-
comment: "
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
helpfulCount: 0,
|
|
379
|
+
title: "Perfect mint on card — Priya's packaging keeps boxes pristine",
|
|
380
|
+
comment: "I collect Funko Pops for display out of box BUT I keep a carded mint copy for investment. Priya packs each Pop in a protector sleeve before shipping — the box arrived with zero corner wear. That level of care for a ₹1,699 Funko is impressive. Deducting one star only because dispatch was Day 2 instead of Day 1 (she mentioned a supply arrival delay in her dispatch message).",
|
|
381
|
+
status: "approved",
|
|
382
|
+
helpfulCount: 12,
|
|
280
383
|
reportCount: 0,
|
|
281
384
|
verified: true,
|
|
282
|
-
|
|
283
|
-
|
|
385
|
+
featured: false,
|
|
386
|
+
createdAt: daysAgo(20),
|
|
387
|
+
updatedAt: daysAgo(19),
|
|
388
|
+
approvedAt: daysAgo(19),
|
|
284
389
|
},
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
sellerId: "user-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
390
|
+
{
|
|
391
|
+
id: "review-racing-miku-priya-patel-020",
|
|
392
|
+
productId: "product-gsc-racing-miku-2023",
|
|
393
|
+
productTitle: "Good Smile Racing Miku 2023 Ver. 1/7 Scale",
|
|
394
|
+
sellerId: "user-priya-singh",
|
|
395
|
+
userId: "user-priya-patel",
|
|
396
|
+
userName: "Priya Patel",
|
|
397
|
+
rating: 5,
|
|
398
|
+
title: "Centrepiece of my collection — absolutely stunning 1/7 scale",
|
|
399
|
+
comment: "Racing Miku 2023 Ver. is the most beautiful figure I own. The 1/7 scale means she stands tall on my shelf and catches everyone's eye. Priya sourced this from Akihabara directly — the box has the Japanese tax receipt inside. She packed the figure's base separately with foam and the wings were in bubble wrap. Nothing moved in transit. Worth every rupee.",
|
|
400
|
+
status: "approved",
|
|
401
|
+
helpfulCount: 26,
|
|
402
|
+
reportCount: 0,
|
|
403
|
+
verified: true,
|
|
404
|
+
featured: true,
|
|
405
|
+
createdAt: daysAgo(12),
|
|
406
|
+
updatedAt: daysAgo(11),
|
|
407
|
+
approvedAt: daysAgo(11),
|
|
408
|
+
},
|
|
409
|
+
// ── store-gundam-galaxy (4 reviews) ──────────────────────────────────────
|
|
410
|
+
{
|
|
411
|
+
id: "review-hg-barbatos-kartik-021",
|
|
412
|
+
productId: "product-gundam-hg-barbatos-lupus-rex",
|
|
413
|
+
productTitle: "HG 1/144 Gundam Barbatos Lupus Rex (Iron-Blooded Orphans)",
|
|
414
|
+
sellerId: "user-amit-sharma",
|
|
415
|
+
userId: "user-kartik-nair",
|
|
416
|
+
userName: "Kartik Nair",
|
|
417
|
+
rating: 5,
|
|
418
|
+
title: "First Gunpla ever — Amit's advice helped me pick the right kit",
|
|
419
|
+
comment: "I messaged Amit before ordering asking which HG is best for a complete beginner. He replied within an hour with a detailed breakdown of the top 5 beginner HG kits and explained why Barbatos Lupus Rex is the best mix of posability and fun. Great advice — the build took me a weekend and the result is spectacular. Amit is clearly a passionate builder and that shows in how he sells.",
|
|
420
|
+
status: "approved",
|
|
421
|
+
helpfulCount: 34,
|
|
422
|
+
reportCount: 0,
|
|
423
|
+
verified: true,
|
|
424
|
+
featured: true,
|
|
425
|
+
createdAt: daysAgo(52),
|
|
426
|
+
updatedAt: daysAgo(51),
|
|
427
|
+
approvedAt: daysAgo(51),
|
|
308
428
|
},
|
|
309
|
-
// Review with multiple helpful votes
|
|
310
429
|
{
|
|
311
|
-
id: "review-
|
|
312
|
-
productId: "product-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
userId: "user-
|
|
316
|
-
userName: "
|
|
317
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=john-doe",
|
|
430
|
+
id: "review-mg-sazabi-arjun-022",
|
|
431
|
+
productId: "product-gundam-mg-sazabi-verka",
|
|
432
|
+
productTitle: "MG 1/100 Sazabi Ver.Ka (Master Grade)",
|
|
433
|
+
sellerId: "user-amit-sharma",
|
|
434
|
+
userId: "user-arjun-singh",
|
|
435
|
+
userName: "Arjun Singh",
|
|
318
436
|
rating: 5,
|
|
319
|
-
title: "
|
|
320
|
-
comment: "
|
|
321
|
-
images: ["https://picsum.photos/seed/dell-xps/800/800"],
|
|
437
|
+
title: "The pinnacle of Master Grade — Amit's packaging was museum-grade",
|
|
438
|
+
comment: "This is the most expensive kit I've ever bought (₹6,499) and Amit treated it accordingly. The Sazabi Ver.Ka arrived triple-boxed — outer cardboard, foam insert, and the kit box itself inside a second layer of rigid cardboard. Every runner individually wrapped. The kit itself is exactly as legendary as its reputation — 300+ parts, three-layer construction, and the most satisfying snap-fit engineering I've ever experienced. Amit is the best Gunpla seller in India.",
|
|
322
439
|
status: "approved",
|
|
323
440
|
helpfulCount: 42,
|
|
324
441
|
reportCount: 0,
|
|
442
|
+
verified: true,
|
|
443
|
+
featured: true,
|
|
444
|
+
createdAt: daysAgo(40),
|
|
445
|
+
updatedAt: daysAgo(39),
|
|
446
|
+
approvedAt: daysAgo(39),
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
id: "review-rg-evangelion-sneha-023",
|
|
450
|
+
productId: "product-gundam-rg-evangelion-unit01",
|
|
451
|
+
productTitle: "RG 1/144 Evangelion Unit-01 (Rebuild of Evangelion)",
|
|
452
|
+
sellerId: "user-amit-sharma",
|
|
453
|
+
userId: "user-sneha-kumar",
|
|
454
|
+
userName: "Sneha Kumar",
|
|
455
|
+
rating: 4,
|
|
456
|
+
title: "EVA-01 in RG is spectacular — pre-coloured runners are a revelation",
|
|
457
|
+
comment: "I'm not a regular Gunpla buyer but bought this for my EVA collection. Amit's store description mentioned that this is the first non-Gundam RG kit and the pre-coloured runners make it accessible for non-modellers. He was right — I built it with no paint and it looks exactly like the promo photos. Deducting one star because the umbilical cable tends to pop off at the connection point, but that's a Bandai design note, not Amit's fault.",
|
|
458
|
+
status: "approved",
|
|
459
|
+
helpfulCount: 16,
|
|
460
|
+
reportCount: 0,
|
|
461
|
+
verified: true,
|
|
462
|
+
featured: false,
|
|
463
|
+
createdAt: daysAgo(27),
|
|
464
|
+
updatedAt: daysAgo(26),
|
|
465
|
+
approvedAt: daysAgo(26),
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
id: "review-rg-hi-nu-preorder-kartik-024",
|
|
469
|
+
productId: "preorder-gundam-rg-hi-nu-verka",
|
|
470
|
+
productTitle: "PRE-ORDER: RG 1/144 Hi-ν Gundam Ver.Ka",
|
|
471
|
+
sellerId: "user-amit-sharma",
|
|
472
|
+
userId: "user-kartik-nair",
|
|
473
|
+
userName: "Kartik Nair",
|
|
474
|
+
rating: 5,
|
|
475
|
+
title: "Pre-order process is smooth — Amit updates you at every step",
|
|
476
|
+
comment: "Placed this pre-order and Amit messaged me the same day confirming receipt, then sent weekly updates on Japan warehouse status. He also warned me about a potential 2-week delay due to Bandai production schedules before I even knew about it publicly. That level of proactive communication is rare. Kit hasn't arrived yet but the deposit process was seamless.",
|
|
477
|
+
status: "approved",
|
|
478
|
+
helpfulCount: 8,
|
|
479
|
+
reportCount: 0,
|
|
325
480
|
verified: false,
|
|
481
|
+
featured: false,
|
|
482
|
+
createdAt: daysAgo(5),
|
|
483
|
+
updatedAt: daysAgo(4),
|
|
484
|
+
approvedAt: daysAgo(4),
|
|
485
|
+
},
|
|
486
|
+
// ── store-vintage-vault (4 reviews) ──────────────────────────────────────
|
|
487
|
+
{
|
|
488
|
+
id: "review-pokemon-charizard-lp-divya-025",
|
|
489
|
+
productId: "product-vintage-pokemon-charizard-base-lp",
|
|
490
|
+
productTitle: "Pokémon Base Set Charizard #4/102 Holo Rare — LP Raw",
|
|
491
|
+
sellerId: "user-kavya-iyer",
|
|
492
|
+
userId: "user-divya-menon",
|
|
493
|
+
userName: "Divya Menon",
|
|
494
|
+
rating: 5,
|
|
495
|
+
title: "Honest condition grading — exactly what she described",
|
|
496
|
+
comment: "I was nervous buying a ₹3,999 Charizard online but Kavya sent me 8 high-res photos in different lighting before I confirmed. The card matches her LP description exactly — the corners and whitening are exactly as documented. She's been in this business 20 years and her grading vocabulary is precise. Most sellers say 'Near Mint' for LP cards — Kavya says LP for LP. Refreshing honesty.",
|
|
497
|
+
status: "approved",
|
|
498
|
+
helpfulCount: 29,
|
|
499
|
+
reportCount: 0,
|
|
500
|
+
verified: true,
|
|
326
501
|
featured: true,
|
|
327
|
-
createdAt: daysAgo(
|
|
328
|
-
updatedAt: daysAgo(
|
|
329
|
-
approvedAt: daysAgo(
|
|
502
|
+
createdAt: daysAgo(35),
|
|
503
|
+
updatedAt: daysAgo(34),
|
|
504
|
+
approvedAt: daysAgo(34),
|
|
330
505
|
},
|
|
331
|
-
// --- Reviews for new products ----------------------------------------------
|
|
332
506
|
{
|
|
333
|
-
id: "review-
|
|
334
|
-
productId: "product-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
userId: "user-
|
|
338
|
-
userName: "
|
|
339
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=priya-sharma",
|
|
507
|
+
id: "review-hw-deora-vintage-siddharth-026",
|
|
508
|
+
productId: "product-vintage-hot-wheels-deora-1968",
|
|
509
|
+
productTitle: "Hot Wheels Redline 1968 Deora — Aqua (Vintage)",
|
|
510
|
+
sellerId: "user-kavya-iyer",
|
|
511
|
+
userId: "user-siddharth-rao",
|
|
512
|
+
userName: "Siddharth Rao",
|
|
340
513
|
rating: 5,
|
|
341
|
-
title: "
|
|
342
|
-
comment: "
|
|
343
|
-
images: ["https://picsum.photos/seed/oxford-shirt/800/800"],
|
|
514
|
+
title: "A piece of toy history — Kavya's knowledge is unmatched",
|
|
515
|
+
comment: "I collect vintage Redlines and Kavya is the first Indian seller I've found who truly understands them. Her listing for the Deora was the most detailed I've seen anywhere — she identified it as an early production run based on the chassis stamp. The provenance documentation (original owner paperwork) is extraordinary. This car is now the centrepiece of my collection.",
|
|
344
516
|
status: "approved",
|
|
345
|
-
helpfulCount:
|
|
517
|
+
helpfulCount: 21,
|
|
346
518
|
reportCount: 0,
|
|
347
519
|
verified: true,
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
520
|
+
featured: false,
|
|
521
|
+
createdAt: daysAgo(23),
|
|
522
|
+
updatedAt: daysAgo(22),
|
|
523
|
+
approvedAt: daysAgo(22),
|
|
351
524
|
},
|
|
352
525
|
{
|
|
353
|
-
id: "review-
|
|
354
|
-
productId: "product-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
userId: "user-
|
|
358
|
-
userName: "
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
526
|
+
id: "review-motu-he-man-rahul-027",
|
|
527
|
+
productId: "product-vintage-motu-he-man-1982",
|
|
528
|
+
productTitle: "Masters of the Universe He-Man (1982 Takara Japan)",
|
|
529
|
+
sellerId: "user-kavya-iyer",
|
|
530
|
+
userId: "user-rahul-sharma",
|
|
531
|
+
userName: "Rahul Sharma",
|
|
532
|
+
rating: 5,
|
|
533
|
+
title: "My childhood hero — and a genuine 1982 first-year original",
|
|
534
|
+
comment: "I grew up with He-Man but never had an original 1982 figure. When I saw Kavya's listing with the Takara sticker on the packaging, I knew it was legitimate — that detail is how you identify the Japan distribution version. She included a certificate of authenticity from a vintage toy appraiser. The torso twist mechanism works perfectly after 40+ years. Remarkable condition for the age.",
|
|
535
|
+
status: "approved",
|
|
536
|
+
helpfulCount: 15,
|
|
537
|
+
reportCount: 0,
|
|
538
|
+
verified: true,
|
|
539
|
+
featured: false,
|
|
540
|
+
createdAt: daysAgo(14),
|
|
541
|
+
updatedAt: daysAgo(13),
|
|
542
|
+
approvedAt: daysAgo(13),
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
id: "review-jungle-vaporeon-tanvi-028",
|
|
546
|
+
productId: "product-vintage-pokemon-jungle-vaporeon-holo",
|
|
547
|
+
productTitle: "Pokémon WOTC Jungle Vaporeon #12/64 Holo Rare — NM Raw",
|
|
548
|
+
sellerId: "user-kavya-iyer",
|
|
549
|
+
userId: "user-tanvi-desai",
|
|
550
|
+
userName: "Tanvi Desai",
|
|
551
|
+
rating: 5,
|
|
552
|
+
title: "WOTC era quality is incomparable — Kavya preserves history",
|
|
553
|
+
comment: "I'm building a raw NM WOTC set and Kavya's Vintage Vault has the cleanest WOTC cards I've found in India. The Vaporeon has the original First Edition-era card stock texture that WOTC used before they cheapened the material in later sets. Holo is perfect. Kavya's estate-sale sourcing means these cards have been in private collections — not through dealer hands repeatedly.",
|
|
364
554
|
status: "approved",
|
|
365
555
|
helpfulCount: 11,
|
|
366
556
|
reportCount: 0,
|
|
367
557
|
verified: true,
|
|
558
|
+
featured: false,
|
|
559
|
+
createdAt: daysAgo(7),
|
|
560
|
+
updatedAt: daysAgo(6),
|
|
561
|
+
approvedAt: daysAgo(6),
|
|
562
|
+
},
|
|
563
|
+
// ── Additional reviews across existing stores (new buyers) ────────────────
|
|
564
|
+
{
|
|
565
|
+
id: "review-pokemon-151-box-sneha-029",
|
|
566
|
+
productId: "product-pokemon-151-booster-box",
|
|
567
|
+
productTitle: "Pokémon 151 Booster Box (Sealed)",
|
|
568
|
+
sellerId: "user-aryan-kapoor",
|
|
569
|
+
userId: "user-sneha-kumar",
|
|
570
|
+
userName: "Sneha Kumar",
|
|
571
|
+
rating: 5,
|
|
572
|
+
title: "Investment-grade sealed product — Aryan's sourcing is legit",
|
|
573
|
+
comment: "Bought the 151 booster box for long-term storage. The shrink wrap is tight with no air gaps (sign of authentic factory sealing). Aryan included a UK distributor invoice confirming the source — that level of documentation is exceptional. Box is now in my climate-controlled storage. When I eventually open it, I'll update this review with pull results.",
|
|
574
|
+
status: "approved",
|
|
575
|
+
helpfulCount: 13,
|
|
576
|
+
reportCount: 0,
|
|
577
|
+
verified: true,
|
|
578
|
+
featured: false,
|
|
368
579
|
createdAt: daysAgo(30),
|
|
369
|
-
updatedAt: daysAgo(
|
|
370
|
-
approvedAt: daysAgo(
|
|
580
|
+
updatedAt: daysAgo(29),
|
|
581
|
+
approvedAt: daysAgo(29),
|
|
371
582
|
},
|
|
372
583
|
{
|
|
373
|
-
id: "review-
|
|
374
|
-
productId: "product-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
userId: "user-
|
|
378
|
-
userName: "
|
|
379
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=vikram-nair",
|
|
584
|
+
id: "review-yugioh-phantom-nightmare-siddharth-030",
|
|
585
|
+
productId: "product-yugioh-phantom-nightmare-box",
|
|
586
|
+
productTitle: "Yu-Gi-Oh! Phantom Nightmare Booster Box (24 Packs)",
|
|
587
|
+
sellerId: "user-nisha-reddy",
|
|
588
|
+
userId: "user-siddharth-rao",
|
|
589
|
+
userName: "Siddharth Rao",
|
|
380
590
|
rating: 5,
|
|
381
|
-
title: "
|
|
382
|
-
comment: "
|
|
383
|
-
images: [
|
|
384
|
-
"https://picsum.photos/seed/anarkali-kurta/800/800",
|
|
385
|
-
"https://picsum.photos/seed/anarkali-detail/800/800",
|
|
386
|
-
],
|
|
591
|
+
title: "Hit a Fiendsmith Engraver UR — best opening of 2024",
|
|
592
|
+
comment: "Ordered the Phantom Nightmare box for the Fiendsmith engine cards. Nisha had it at ₹5,999 when other sellers were charging ₹6,499 for the same product — she's clearly competitive on pricing. Box arrived factory sealed, split into two lots of 12 packs each inside the cardboard insert. Opened all 24 packs, hit the Fiendsmith Engraver Ultra Rare, two Snake-Eye Ash Secret Rares, and a complete Rescue-Ace suite. Excellent pull rate.",
|
|
387
593
|
status: "approved",
|
|
388
|
-
helpfulCount:
|
|
594
|
+
helpfulCount: 22,
|
|
389
595
|
reportCount: 0,
|
|
390
596
|
verified: true,
|
|
391
|
-
featured:
|
|
392
|
-
createdAt: daysAgo(
|
|
393
|
-
updatedAt: daysAgo(
|
|
394
|
-
approvedAt: daysAgo(
|
|
597
|
+
featured: false,
|
|
598
|
+
createdAt: daysAgo(18),
|
|
599
|
+
updatedAt: daysAgo(17),
|
|
600
|
+
approvedAt: daysAgo(17),
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
id: "review-beyblade-xstadium-ankit-031",
|
|
604
|
+
productId: "product-beyblade-x-xstadium-official",
|
|
605
|
+
productTitle: "Beyblade X BX-08 XStadium (Official Takara Tomy)",
|
|
606
|
+
sellerId: "user-rohit-joshi",
|
|
607
|
+
userId: "user-ankit-gupta",
|
|
608
|
+
userName: "Ankit Gupta",
|
|
609
|
+
rating: 5,
|
|
610
|
+
title: "Tournament quality — arrived well before my regional event",
|
|
611
|
+
comment: "I needed this stadium for our city's Beyblade X regional. Rohit had it in stock when every other platform was out. Ordered Monday morning, arrived Thursday — with 2 days to spare before the event. The XStadium is the real tournament-spec — the X-Line rail is perfectly calibrated and the floor has no warping. Won my bracket. 10/10 seller.",
|
|
612
|
+
status: "approved",
|
|
613
|
+
helpfulCount: 19,
|
|
614
|
+
reportCount: 0,
|
|
615
|
+
verified: true,
|
|
616
|
+
featured: false,
|
|
617
|
+
createdAt: daysAgo(15),
|
|
618
|
+
updatedAt: daysAgo(14),
|
|
619
|
+
approvedAt: daysAgo(14),
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
id: "review-sth-dodge-viper-siddharth-032",
|
|
623
|
+
productId: "product-hot-wheels-sth-dodge-viper",
|
|
624
|
+
productTitle: "Hot Wheels Super Treasure Hunt Dodge Viper SRT10 (STH)",
|
|
625
|
+
sellerId: "user-vikram-mehta",
|
|
626
|
+
userId: "user-siddharth-rao",
|
|
627
|
+
userName: "Siddharth Rao",
|
|
628
|
+
rating: 5,
|
|
629
|
+
title: "Confirmed STH — Spectraflame is glorious, card is mint",
|
|
630
|
+
comment: "Vikram's listing said 'immediately cased after retail pull' and that is exactly what arrived — you can see the factory crimp on the blister is undisturbed. The Spectraflame Red on this Viper is one of the deepest metallic finishes I've seen on a recent STH. Card is flat, no corner wear, graphic is crisp. This is a ₹2,999 car that will be worth ₹8,000 in a decade. Vikram knows his product.",
|
|
631
|
+
status: "approved",
|
|
632
|
+
helpfulCount: 17,
|
|
633
|
+
reportCount: 0,
|
|
634
|
+
verified: true,
|
|
635
|
+
featured: false,
|
|
636
|
+
createdAt: daysAgo(8),
|
|
637
|
+
updatedAt: daysAgo(7),
|
|
638
|
+
approvedAt: daysAgo(7),
|
|
395
639
|
},
|
|
396
640
|
{
|
|
397
|
-
id: "review-
|
|
398
|
-
productId: "product-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
userId: "user-
|
|
402
|
-
userName: "
|
|
403
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=jane-smith",
|
|
641
|
+
id: "review-neca-tmnt-divya-033",
|
|
642
|
+
productId: "product-neca-tmnt-4figure-set",
|
|
643
|
+
productTitle: "NECA TMNT Classic 1990 Movie 4-Figure Set",
|
|
644
|
+
sellerId: "user-admin-letitrip",
|
|
645
|
+
userId: "user-divya-menon",
|
|
646
|
+
userName: "Divya Menon",
|
|
404
647
|
rating: 5,
|
|
405
|
-
title: "
|
|
406
|
-
comment: "The
|
|
407
|
-
images: ["https://picsum.photos/seed/pressure-cooker/800/800"],
|
|
648
|
+
title: "The childhood dream — all 4 Turtles in one box, museum quality",
|
|
649
|
+
comment: "I grew up watching the 1990 TMNT movie and this set made me feel like a kid again. The film-suit sculpts are extraordinary — you can see the texture of the foam rubber suits translated into articulated plastic. LetItRip Official packed the set in a rigid outer casing inside a foam-padded bag inside the shipping box. Three layers of protection for a ₹12,999 set. That's how it should be done.",
|
|
408
650
|
status: "approved",
|
|
409
651
|
helpfulCount: 27,
|
|
410
652
|
reportCount: 0,
|
|
411
653
|
verified: true,
|
|
412
654
|
featured: true,
|
|
413
|
-
createdAt: daysAgo(
|
|
414
|
-
updatedAt: daysAgo(
|
|
415
|
-
approvedAt: daysAgo(
|
|
655
|
+
createdAt: daysAgo(6),
|
|
656
|
+
updatedAt: daysAgo(5),
|
|
657
|
+
approvedAt: daysAgo(5),
|
|
416
658
|
},
|
|
417
659
|
{
|
|
418
|
-
id: "review-
|
|
419
|
-
productId: "product-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
userId: "user-
|
|
423
|
-
userName: "
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
comment: "Great cooker. The only reason for 4 stars is the whistle is a bit loud. Everything else \u2014 build quality, weight, handles \u2014 is excellent.",
|
|
428
|
-
images: [],
|
|
660
|
+
id: "review-mg-sazabi-verka-kartik-034",
|
|
661
|
+
productId: "product-gundam-mg-sazabi-verka",
|
|
662
|
+
productTitle: "MG 1/100 Sazabi Ver.Ka",
|
|
663
|
+
sellerId: "user-amit-sharma",
|
|
664
|
+
userId: "user-kartik-nair",
|
|
665
|
+
userName: "Kartik Nair",
|
|
666
|
+
rating: 5,
|
|
667
|
+
title: "Graduation kit from HG to MG — Amit guided me through it",
|
|
668
|
+
comment: "After my Barbatos Lupus Rex HG build, I wanted to try Master Grade. I messaged Amit asking if Sazabi Ver.Ka is too advanced for a second build. He was honest — he said it's challenging but doable if you take your time, and he offered to share his build guide PDF. I took 3 weeks to build it and it's perfect. Amit genuinely cares about his customers having a great build experience.",
|
|
429
669
|
status: "approved",
|
|
430
670
|
helpfulCount: 9,
|
|
431
671
|
reportCount: 0,
|
|
432
672
|
verified: true,
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
673
|
+
featured: false,
|
|
674
|
+
createdAt: daysAgo(3),
|
|
675
|
+
updatedAt: daysAgo(2),
|
|
676
|
+
approvedAt: daysAgo(2),
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
id: "review-pokemon-etb-temporal-ankit-035",
|
|
680
|
+
productId: "product-pokemon-sv-temporal-forces-etb",
|
|
681
|
+
productTitle: "Pokémon TCG: Temporal Forces Elite Trainer Box",
|
|
682
|
+
sellerId: "user-aryan-kapoor",
|
|
683
|
+
userId: "user-ankit-gupta",
|
|
684
|
+
userName: "Ankit Gupta",
|
|
685
|
+
rating: 4,
|
|
686
|
+
title: "Great ETB, good pulls — would prefer faster dispatch",
|
|
687
|
+
comment: "Temporal Forces ETB arrived in great condition — sealed correctly, no box damage. Pulled an Iron Leaves ex SAR on pack 4 which more than covered the cost. My only note: dispatch was on Day 3 (I ordered Sunday and it was dispatched Wednesday). Aryan's shipping info says 24-hour dispatch which wasn't met. Dropping one star for that. Card quality and packaging: 5 stars.",
|
|
688
|
+
status: "approved",
|
|
689
|
+
helpfulCount: 6,
|
|
690
|
+
reportCount: 0,
|
|
691
|
+
verified: true,
|
|
692
|
+
featured: false,
|
|
693
|
+
createdAt: daysAgo(1),
|
|
694
|
+
updatedAt: daysAgo(1),
|
|
695
|
+
approvedAt: daysAgo(1),
|
|
436
696
|
},
|
|
697
|
+
// ── New reviews 36–60 — expanded seed scale ──────────────────────────────
|
|
698
|
+
// store-pokemon-palace (5 more)
|
|
437
699
|
{
|
|
438
|
-
id: "review-
|
|
439
|
-
productId: "product-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
userId: "user-
|
|
443
|
-
userName: "
|
|
444
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=priya-sharma",
|
|
700
|
+
id: "review-surging-sparks-box-anjali-036",
|
|
701
|
+
productId: "product-pokemon-surging-sparks-booster",
|
|
702
|
+
productTitle: "Pokémon TCG: Surging Sparks Booster Box",
|
|
703
|
+
sellerId: "user-aryan-kapoor",
|
|
704
|
+
userId: "user-anjali-verma",
|
|
705
|
+
userName: "Anjali Verma",
|
|
445
706
|
rating: 5,
|
|
446
|
-
title: "
|
|
447
|
-
comment: "
|
|
448
|
-
images: [
|
|
449
|
-
"https://picsum.photos/seed/yoga-fitness/800/800",
|
|
450
|
-
"https://picsum.photos/seed/yoga-practice/800/800",
|
|
451
|
-
],
|
|
707
|
+
title: "Incredible box — pulled Pikachu ex SAR on the 4th pack",
|
|
708
|
+
comment: "Ordered Sunday afternoon, dispatched Monday morning. Box arrived double-wrapped in bubble pack inside a snug shipper box. Seal was 100% intact. I pulled a Pikachu ex SAR on pack 4 and lost my mind. Aryan texted to confirm delivery — that personal touch goes a long way. Highly recommended.",
|
|
452
709
|
status: "approved",
|
|
453
|
-
helpfulCount:
|
|
710
|
+
helpfulCount: 21,
|
|
454
711
|
reportCount: 0,
|
|
455
712
|
verified: true,
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
713
|
+
featured: true,
|
|
714
|
+
createdAt: daysAgo(33),
|
|
715
|
+
updatedAt: daysAgo(32),
|
|
716
|
+
approvedAt: daysAgo(32),
|
|
717
|
+
},
|
|
718
|
+
{
|
|
719
|
+
id: "review-151-etb-rohit-037",
|
|
720
|
+
productId: "product-pokemon-151-etb",
|
|
721
|
+
productTitle: "Pokémon TCG: Scarlet & Violet — 151 Elite Trainer Box",
|
|
722
|
+
sellerId: "user-aryan-kapoor",
|
|
723
|
+
userId: "user-rohit-verma",
|
|
724
|
+
userName: "Rohit Verma",
|
|
725
|
+
rating: 5,
|
|
726
|
+
title: "Best ETB I've bought — zero issues, great seal",
|
|
727
|
+
comment: "This was my third ETB from Pokémon Palace and the experience is consistently flawless. Box came in a heavy shipper with foam corners. The 151 ETB seal is known to be finicky (the flap can come loose in transit) but Aryan had taped the inner flap additionally — smart move. Pulled Charizard ex SIR on pack 7. 10/10.",
|
|
728
|
+
status: "approved",
|
|
729
|
+
helpfulCount: 17,
|
|
730
|
+
reportCount: 0,
|
|
731
|
+
verified: true,
|
|
732
|
+
featured: false,
|
|
733
|
+
createdAt: daysAgo(27),
|
|
734
|
+
updatedAt: daysAgo(26),
|
|
735
|
+
approvedAt: daysAgo(26),
|
|
459
736
|
},
|
|
460
737
|
{
|
|
461
|
-
id: "review-
|
|
462
|
-
productId: "product-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
userId: "user-
|
|
466
|
-
userName: "
|
|
467
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=vikram-nair",
|
|
738
|
+
id: "review-charizard-sar-naman-038",
|
|
739
|
+
productId: "product-pokemon-charizard-ex-sar-sv",
|
|
740
|
+
productTitle: "Pokémon TCG: Charizard ex — Special Illustration Rare",
|
|
741
|
+
sellerId: "user-aryan-kapoor",
|
|
742
|
+
userId: "user-naman-gupta",
|
|
743
|
+
userName: "Naman Gupta",
|
|
468
744
|
rating: 4,
|
|
469
|
-
title: "
|
|
470
|
-
comment: "
|
|
471
|
-
images: [],
|
|
745
|
+
title: "Genuine NM card, accurate description — arrived safely",
|
|
746
|
+
comment: "Card is exactly as described: NM/M with great centering. Came in penny sleeve + toploader + team bag inside a rigid mailer. I'm planning to get it PSA graded and believe it will grade PSA 9. Slight deduction as the listing photo was slightly different angle from the actual card, but the condition is accurately described. Would buy again.",
|
|
472
747
|
status: "approved",
|
|
473
|
-
helpfulCount:
|
|
748
|
+
helpfulCount: 9,
|
|
474
749
|
reportCount: 0,
|
|
475
|
-
verified:
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
750
|
+
verified: true,
|
|
751
|
+
featured: false,
|
|
752
|
+
createdAt: daysAgo(2),
|
|
753
|
+
updatedAt: daysAgo(2),
|
|
754
|
+
approvedAt: daysAgo(2),
|
|
479
755
|
},
|
|
480
756
|
{
|
|
481
|
-
id: "review-
|
|
482
|
-
productId: "product-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
userId: "user-
|
|
486
|
-
userName: "
|
|
487
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=mike-johnson",
|
|
757
|
+
id: "review-journey-together-etb-kavya-039",
|
|
758
|
+
productId: "product-pokemon-journey-together-etb",
|
|
759
|
+
productTitle: "Pokémon TCG: Journey Together Elite Trainer Box",
|
|
760
|
+
sellerId: "user-aryan-kapoor",
|
|
761
|
+
userId: "user-kavya-nair",
|
|
762
|
+
userName: "Kavya Nair",
|
|
488
763
|
rating: 5,
|
|
489
|
-
title: "
|
|
490
|
-
comment: "
|
|
491
|
-
images: ["https://picsum.photos/seed/ipad-tablet/800/800"],
|
|
764
|
+
title: "Factory fresh — exactly as expected from Pokémon Palace",
|
|
765
|
+
comment: "Consistent five-star experience from Aryan. Journey Together ETB is genuinely one of the nicest ETB boxes in years — the sleeve design is gorgeous. Packs were fresh, no pack-weighed pulls removed. This is a store I trust completely.",
|
|
492
766
|
status: "approved",
|
|
493
|
-
helpfulCount:
|
|
767
|
+
helpfulCount: 8,
|
|
494
768
|
reportCount: 0,
|
|
495
769
|
verified: true,
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
770
|
+
featured: false,
|
|
771
|
+
createdAt: daysAgo(14),
|
|
772
|
+
updatedAt: daysAgo(13),
|
|
773
|
+
approvedAt: daysAgo(13),
|
|
499
774
|
},
|
|
500
775
|
{
|
|
501
|
-
id: "review-
|
|
502
|
-
productId: "product-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
userId: "user-
|
|
506
|
-
userName: "
|
|
507
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=john-doe",
|
|
776
|
+
id: "review-mewtwo-sar-siddharth-040",
|
|
777
|
+
productId: "product-pokemon-mewtwo-ex-sar-sv",
|
|
778
|
+
productTitle: "Pokémon TCG: Mewtwo ex — Special Illustration Rare",
|
|
779
|
+
sellerId: "user-aryan-kapoor",
|
|
780
|
+
userId: "user-siddharth-mehta",
|
|
781
|
+
userName: "Siddharth Mehta",
|
|
508
782
|
rating: 5,
|
|
509
|
-
title: "
|
|
510
|
-
comment: "
|
|
511
|
-
images: ["https://picsum.photos/seed/classic-watch/800/800"],
|
|
783
|
+
title: "One of the best SIRs in the 151 set — perfect condition",
|
|
784
|
+
comment: "Mewtwo ex SIR is stunning in person. Photos on the listing don't do it justice. Card is NM, corners are sharp, no whitening visible. Protected extremely well in transit. Aryan included a personal note in the package — rare touch from a marketplace seller. Fantastic.",
|
|
512
785
|
status: "approved",
|
|
513
|
-
helpfulCount:
|
|
786
|
+
helpfulCount: 12,
|
|
514
787
|
reportCount: 0,
|
|
515
788
|
verified: true,
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
789
|
+
featured: false,
|
|
790
|
+
createdAt: daysAgo(6),
|
|
791
|
+
updatedAt: daysAgo(5),
|
|
792
|
+
approvedAt: daysAgo(5),
|
|
519
793
|
},
|
|
794
|
+
// store-cardgame-hub (5 more)
|
|
520
795
|
{
|
|
521
|
-
id: "review-
|
|
522
|
-
productId: "product-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
userId: "user-
|
|
526
|
-
userName: "
|
|
527
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=raj-patel",
|
|
796
|
+
id: "review-op06-box-rohit-041",
|
|
797
|
+
productId: "product-onepiece-op06-booster-box",
|
|
798
|
+
productTitle: "One Piece Card Game: OP-06 Wings of the Captain Booster Box",
|
|
799
|
+
sellerId: "user-nisha-reddy",
|
|
800
|
+
userId: "user-rohit-verma",
|
|
801
|
+
userName: "Rohit Verma",
|
|
528
802
|
rating: 5,
|
|
529
|
-
title: "
|
|
530
|
-
comment: "
|
|
531
|
-
images: ["https://picsum.photos/seed/usb-charger/800/800"],
|
|
803
|
+
title: "Sealed box, excellent pulls — Whitebeard SR in pack 3",
|
|
804
|
+
comment: "CardGame Hub dispatched within a day. Box was sealed beautifully in shrink wrap, original Bandai seal untouched. My first OP-06 box and I pulled the Whitebeard SR in pack 3. Nisha even messaged to check I received it safely. Exceptional seller and I'll be back for every new OP set.",
|
|
532
805
|
status: "approved",
|
|
533
|
-
helpfulCount:
|
|
806
|
+
helpfulCount: 18,
|
|
534
807
|
reportCount: 0,
|
|
535
808
|
verified: true,
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
809
|
+
featured: true,
|
|
810
|
+
createdAt: daysAgo(27),
|
|
811
|
+
updatedAt: daysAgo(26),
|
|
812
|
+
approvedAt: daysAgo(26),
|
|
539
813
|
},
|
|
540
|
-
// -- New buyer reviews (Ananya, Pooja, Ravi, Sneha) ------------------------
|
|
541
814
|
{
|
|
542
|
-
id: "review-
|
|
543
|
-
productId: "product-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
userId: "user-
|
|
547
|
-
userName: "
|
|
548
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=ananya-bose",
|
|
815
|
+
id: "review-blue-eyes-lob-neha-042",
|
|
816
|
+
productId: "product-yugioh-blue-eyes-lob-nm",
|
|
817
|
+
productTitle: "Yu-Gi-Oh! Blue-Eyes White Dragon — LOB 1st Edition (NM)",
|
|
818
|
+
sellerId: "user-nisha-reddy",
|
|
819
|
+
userId: "user-neha-gupta",
|
|
820
|
+
userName: "Neha Gupta",
|
|
549
821
|
rating: 5,
|
|
550
|
-
title: "
|
|
551
|
-
comment: "
|
|
552
|
-
images: ["https://picsum.photos/seed/iphone15/800/800"],
|
|
822
|
+
title: "Incredible 1st Ed BEWD — better condition than the photos show",
|
|
823
|
+
comment: "I've been hunting for a high-grade 1st Edition LOB Blue-Eyes for two years. This one from CardGame Hub exceeded my expectations — corners are sharper than the photos suggest, surface gloss is perfect. Submitting to PSA this week. Nisha was responsive to all my questions before purchase. Couldn't be happier.",
|
|
553
824
|
status: "approved",
|
|
554
|
-
helpfulCount:
|
|
825
|
+
helpfulCount: 24,
|
|
555
826
|
reportCount: 0,
|
|
556
827
|
verified: true,
|
|
557
|
-
|
|
828
|
+
featured: true,
|
|
829
|
+
createdAt: daysAgo(22),
|
|
830
|
+
updatedAt: daysAgo(21),
|
|
831
|
+
approvedAt: daysAgo(21),
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
id: "review-25th-anniversary-tin-arjun-043",
|
|
835
|
+
productId: "product-yugioh-25th-anniversary-tin",
|
|
836
|
+
productTitle: "Yu-Gi-Oh! 25th Anniversary Tin: Dueling Heroes",
|
|
837
|
+
sellerId: "user-nisha-reddy",
|
|
838
|
+
userId: "user-arjun-singh",
|
|
839
|
+
userName: "Arjun Singh",
|
|
840
|
+
rating: 4,
|
|
841
|
+
title: "Great tin, solid pulls — packaging could have been better",
|
|
842
|
+
comment: "The 25th Anniversary Tin is gorgeous — the embossed design is premium. Got an Ultra Rare Dark Magician as the guaranteed card, which is ideal. My only note is that the outer box wasn't padded very well; the tin corners took a small dent from shipping. Card contents were fine. Four stars — would use more padding next time.",
|
|
843
|
+
status: "approved",
|
|
844
|
+
helpfulCount: 7,
|
|
845
|
+
reportCount: 0,
|
|
846
|
+
verified: true,
|
|
847
|
+
featured: false,
|
|
848
|
+
createdAt: daysAgo(18),
|
|
849
|
+
updatedAt: daysAgo(17),
|
|
850
|
+
approvedAt: daysAgo(17),
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
id: "review-op05-box-vikram-044",
|
|
854
|
+
productId: "product-onepiece-op05-booster-box",
|
|
855
|
+
productTitle: "One Piece Card Game: OP-05 Awakening of the New Era Booster Box",
|
|
856
|
+
sellerId: "user-nisha-reddy",
|
|
857
|
+
userId: "user-vikram-rao",
|
|
858
|
+
userName: "Vikram Rao",
|
|
859
|
+
rating: 5,
|
|
860
|
+
title: "Sealed correctly, great communication — would repeat",
|
|
861
|
+
comment: "I was skeptical buying a sealed box online but CardGame Hub's reputation and LetItRip's escrow gave me confidence. Box arrived with original Bandai shrink intact. Nisha sent dispatch notification with tracking within hours. Solid buying experience.",
|
|
862
|
+
status: "approved",
|
|
863
|
+
helpfulCount: 11,
|
|
864
|
+
reportCount: 0,
|
|
865
|
+
verified: true,
|
|
866
|
+
featured: false,
|
|
867
|
+
createdAt: daysAgo(10),
|
|
558
868
|
updatedAt: daysAgo(9),
|
|
559
869
|
approvedAt: daysAgo(9),
|
|
560
870
|
},
|
|
561
871
|
{
|
|
562
|
-
id: "review-
|
|
563
|
-
productId: "product-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
userId: "user-
|
|
567
|
-
userName: "
|
|
568
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=pooja-mehta",
|
|
872
|
+
id: "review-dark-magician-psa9-divya-045",
|
|
873
|
+
productId: "product-yugioh-dark-magician-lob-psa9",
|
|
874
|
+
productTitle: "Yu-Gi-Oh! Dark Magician — LOB 1st Edition PSA 9",
|
|
875
|
+
sellerId: "user-nisha-reddy",
|
|
876
|
+
userId: "user-divya-reddy",
|
|
877
|
+
userName: "Divya Reddy",
|
|
569
878
|
rating: 5,
|
|
570
|
-
title: "
|
|
571
|
-
comment: "
|
|
572
|
-
images: [],
|
|
879
|
+
title: "Dream card — PSA 9 slab arrived in perfect shape",
|
|
880
|
+
comment: "This was my biggest single purchase on LetItRip and I'm glad it was from CardGame Hub. The PSA slab came in a foam-fitted inner box with bubble wrap all round. The cert number verified on PSA's site immediately. Dark Magician in a 1st Ed PSA 9 is a piece of Yu-Gi-Oh history. Absolutely worth every rupee.",
|
|
573
881
|
status: "approved",
|
|
574
|
-
helpfulCount:
|
|
882
|
+
helpfulCount: 29,
|
|
883
|
+
reportCount: 0,
|
|
884
|
+
verified: true,
|
|
885
|
+
featured: true,
|
|
886
|
+
createdAt: daysAgo(12),
|
|
887
|
+
updatedAt: daysAgo(11),
|
|
888
|
+
approvedAt: daysAgo(11),
|
|
889
|
+
},
|
|
890
|
+
// store-diecast-depot (5 more)
|
|
891
|
+
{
|
|
892
|
+
id: "review-rlc-porsche-anjali-046",
|
|
893
|
+
productId: "product-hot-wheels-rlc-porsche-918",
|
|
894
|
+
productTitle: "Hot Wheels RLC Exclusive: Porsche 918 Spyder — Spectraflame White",
|
|
895
|
+
sellerId: "user-vikram-mehta",
|
|
896
|
+
userId: "user-anjali-verma",
|
|
897
|
+
userName: "Anjali Verma",
|
|
898
|
+
rating: 5,
|
|
899
|
+
title: "RLC Porsche in mint condition — great packaging",
|
|
900
|
+
comment: "I collect Hot Wheels RLC releases and they're notoriously hard to find in India. Diecast Depot had stock and shipped it in the original RLC mailer inside a padded outer box. Card is perfectly flat, Spectraflame finish is immaculate. Vikram answered all my questions about provenance. Five stars.",
|
|
901
|
+
status: "approved",
|
|
902
|
+
helpfulCount: 15,
|
|
903
|
+
reportCount: 0,
|
|
904
|
+
verified: true,
|
|
905
|
+
featured: false,
|
|
906
|
+
createdAt: daysAgo(15),
|
|
907
|
+
updatedAt: daysAgo(14),
|
|
908
|
+
approvedAt: daysAgo(14),
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
id: "review-tomica-lc300-pooja-047",
|
|
912
|
+
productId: "product-tomica-land-cruiser-300",
|
|
913
|
+
productTitle: "Tomica: Toyota Land Cruiser 300 (No. 107)",
|
|
914
|
+
sellerId: "user-vikram-mehta",
|
|
915
|
+
userId: "user-pooja-sharma",
|
|
916
|
+
userName: "Pooja Sharma",
|
|
917
|
+
rating: 5,
|
|
918
|
+
title: "Perfect Tomica — excellent gift packaging",
|
|
919
|
+
comment: "Bought 3 of these as gifts for my nephews. All three arrived in original Tomica boxes, no crushing or damage. The LC300 detail is fantastic for a 1:64. Each car was bubble-wrapped individually even though they were in one order. Really thoughtful packaging from Diecast Depot.",
|
|
920
|
+
status: "approved",
|
|
921
|
+
helpfulCount: 10,
|
|
922
|
+
reportCount: 0,
|
|
923
|
+
verified: true,
|
|
924
|
+
featured: false,
|
|
925
|
+
createdAt: daysAgo(17),
|
|
926
|
+
updatedAt: daysAgo(16),
|
|
927
|
+
approvedAt: daysAgo(16),
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
id: "review-car-culture-german-vikram-048",
|
|
931
|
+
productId: "product-hot-wheels-car-culture-german",
|
|
932
|
+
productTitle: "Hot Wheels Car Culture: German Cars & Coffee (5-Car Set)",
|
|
933
|
+
sellerId: "user-vikram-mehta",
|
|
934
|
+
userId: "user-vikram-rao",
|
|
935
|
+
userName: "Vikram Rao",
|
|
936
|
+
rating: 4,
|
|
937
|
+
title: "Lovely Car Culture set — one car slightly dusty in package",
|
|
938
|
+
comment: "The German Cars & Coffee set is one of the best Car Culture assortments Mattel has produced. Real Riders on all five cars and the BMW M3 E30 is the standout. My only complaint: the Audi RS5 in the set had visible dust inside the blister pack — looks like a factory quality issue, not the seller's fault. Diecast Depot was responsive when I mentioned it.",
|
|
939
|
+
status: "approved",
|
|
940
|
+
helpfulCount: 8,
|
|
575
941
|
reportCount: 0,
|
|
576
942
|
verified: true,
|
|
943
|
+
featured: false,
|
|
577
944
|
createdAt: daysAgo(8),
|
|
945
|
+
updatedAt: daysAgo(7),
|
|
946
|
+
approvedAt: daysAgo(7),
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
id: "review-corgi-db5-kiran-049",
|
|
950
|
+
productId: "product-corgi-aston-martin-db5",
|
|
951
|
+
productTitle: "Corgi: Aston Martin DB5 — James Bond 007 Edition",
|
|
952
|
+
sellerId: "user-vikram-mehta",
|
|
953
|
+
userId: "user-kiran-reddy",
|
|
954
|
+
userName: "Kiran Reddy",
|
|
955
|
+
rating: 5,
|
|
956
|
+
title: "Iconic Bond car — all gadgets work, display piece of the year",
|
|
957
|
+
comment: "Corgi's DB5 is the definitive toy for James Bond fans. The ejector seat mechanism works perfectly, the revolving plates click satisfyingly, and the Spectraflame silver finish is gorgeous. Diecast Depot packed it in the original presentation box inside a custom foam-padded shipper. This is now the centrepiece of my display shelf.",
|
|
958
|
+
status: "approved",
|
|
959
|
+
helpfulCount: 19,
|
|
960
|
+
reportCount: 0,
|
|
961
|
+
verified: true,
|
|
962
|
+
featured: true,
|
|
963
|
+
createdAt: daysAgo(3),
|
|
964
|
+
updatedAt: daysAgo(2),
|
|
965
|
+
approvedAt: daysAgo(2),
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
id: "review-civic-type-r-naman-050",
|
|
969
|
+
productId: "product-tomica-civic-type-r-fl5",
|
|
970
|
+
productTitle: "Tomica: Honda Civic Type R FL5 (No. 29)",
|
|
971
|
+
sellerId: "user-vikram-mehta",
|
|
972
|
+
userId: "user-naman-gupta",
|
|
973
|
+
userName: "Naman Gupta",
|
|
974
|
+
rating: 5,
|
|
975
|
+
title: "The FL5 in 1:64 — brilliant detail for the price",
|
|
976
|
+
comment: "Own the real FL5 and bought the Tomica to put on my desk. The proportions are spot on — Tomica's FL5 is significantly more accurate than the Hot Wheels version. Arrives in original box, mint. Diecast Depot's packaging is always reliable. Fast shipping too.",
|
|
977
|
+
status: "approved",
|
|
978
|
+
helpfulCount: 13,
|
|
979
|
+
reportCount: 0,
|
|
980
|
+
verified: true,
|
|
981
|
+
featured: false,
|
|
982
|
+
createdAt: daysAgo(9),
|
|
578
983
|
updatedAt: daysAgo(8),
|
|
579
984
|
approvedAt: daysAgo(8),
|
|
580
985
|
},
|
|
986
|
+
// store-beyblade-arena (3 more)
|
|
581
987
|
{
|
|
582
|
-
id: "review-
|
|
583
|
-
productId: "product-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
userId: "user-
|
|
587
|
-
userName: "
|
|
588
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=ravi-kumar",
|
|
988
|
+
id: "review-bx01-dran-sword-preeti-051",
|
|
989
|
+
productId: "product-beyblade-x-bx01-dran-sword",
|
|
990
|
+
productTitle: "Beyblade X: BX-01 Dran Sword 3-60F",
|
|
991
|
+
sellerId: "user-rohit-joshi",
|
|
992
|
+
userId: "user-preeti-joshi",
|
|
993
|
+
userName: "Preeti Joshi",
|
|
589
994
|
rating: 5,
|
|
590
|
-
title: "
|
|
591
|
-
comment: "
|
|
592
|
-
images: ["https://picsum.photos/seed/macbook-laptop/800/800"],
|
|
995
|
+
title: "Perfect intro kit for Beyblade X — great for kids and adults",
|
|
996
|
+
comment: "Bought 2 of these as a birthday gift combo. Rohit packed each one individually in bubble wrap. My nephew's face when he opened these was priceless. The Xtreme Dash mechanic on the X-format is genuinely exciting. Beyblade Arena is the go-to store for X-format in India.",
|
|
593
997
|
status: "approved",
|
|
594
998
|
helpfulCount: 14,
|
|
595
999
|
reportCount: 0,
|
|
596
1000
|
verified: true,
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
1001
|
+
featured: false,
|
|
1002
|
+
createdAt: daysAgo(3),
|
|
1003
|
+
updatedAt: daysAgo(2),
|
|
1004
|
+
approvedAt: daysAgo(2),
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
id: "review-bx07-hells-chain-ananya-052",
|
|
1008
|
+
productId: "product-beyblade-x-bx07-hells-chain",
|
|
1009
|
+
productTitle: "Beyblade X: BX-07 Hells Chain 5-60HT",
|
|
1010
|
+
sellerId: "user-rohit-joshi",
|
|
1011
|
+
userId: "user-ananya-krishna",
|
|
1012
|
+
userName: "Ananya Krishna",
|
|
1013
|
+
rating: 5,
|
|
1014
|
+
title: "Dominating stamina Bey — won my first local tournament with it",
|
|
1015
|
+
comment: "Hells Chain is the best stamina Bey in the current X format. Rohit shipped it fast and it arrived in original packaging. I won my first local LetItRip club tournament with this — the HT driver just refuses to stop spinning. Beyblade Arena is the best store for serious bladers.",
|
|
1016
|
+
status: "approved",
|
|
1017
|
+
helpfulCount: 22,
|
|
1018
|
+
reportCount: 0,
|
|
1019
|
+
verified: true,
|
|
1020
|
+
featured: true,
|
|
1021
|
+
createdAt: daysAgo(55),
|
|
1022
|
+
updatedAt: daysAgo(54),
|
|
1023
|
+
approvedAt: daysAgo(54),
|
|
600
1024
|
},
|
|
601
1025
|
{
|
|
602
|
-
id: "review-
|
|
603
|
-
productId: "product-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
userId: "user-
|
|
607
|
-
userName: "
|
|
608
|
-
userAvatar: "https://api.dicebear.com/7.x/avataaars/svg?seed=sneha-gupta",
|
|
1026
|
+
id: "review-bx16-launcher-siddharth-053",
|
|
1027
|
+
productId: "product-beyblade-x-bx16-sword-launcher",
|
|
1028
|
+
productTitle: "Beyblade X: BX-16 Sword Launcher",
|
|
1029
|
+
sellerId: "user-rohit-joshi",
|
|
1030
|
+
userId: "user-siddharth-mehta",
|
|
1031
|
+
userName: "Siddharth Mehta",
|
|
609
1032
|
rating: 4,
|
|
610
|
-
title: "Great
|
|
611
|
-
comment: "
|
|
612
|
-
images: [],
|
|
1033
|
+
title: "Great launcher, solid grip — small delay in dispatch",
|
|
1034
|
+
comment: "The BX-16 Sword Launcher is a significant upgrade over the included ripcord launchers. Grip angle control makes a real difference in competitive launches. Arrived intact. Dispatch was 3 days after order (listed as 2 days) — minor inconvenience. The launcher itself: full marks.",
|
|
613
1035
|
status: "approved",
|
|
614
|
-
helpfulCount:
|
|
1036
|
+
helpfulCount: 6,
|
|
615
1037
|
reportCount: 0,
|
|
616
1038
|
verified: true,
|
|
617
|
-
|
|
1039
|
+
featured: false,
|
|
1040
|
+
createdAt: daysAgo(7),
|
|
618
1041
|
updatedAt: daysAgo(6),
|
|
619
1042
|
approvedAt: daysAgo(6),
|
|
620
1043
|
},
|
|
1044
|
+
// store-letitrip-official (4 more)
|
|
1045
|
+
{
|
|
1046
|
+
id: "review-figma-link-totk-naman-054",
|
|
1047
|
+
productId: "product-figma-link-totk",
|
|
1048
|
+
productTitle: "figma: The Legend of Zelda: Tears of the Kingdom — Link",
|
|
1049
|
+
sellerId: "user-admin-letitrip",
|
|
1050
|
+
userId: "user-naman-gupta",
|
|
1051
|
+
userName: "Naman Gupta",
|
|
1052
|
+
rating: 5,
|
|
1053
|
+
title: "Best figma I own — every accessory accounted for, perfect box",
|
|
1054
|
+
comment: "LetItRip Official is where I buy all my premium figures. The figma Link TotK is Max Factory at their best — articulation is incredible and the Ultrahand accessories are a lovely touch for TotK fans. Box arrived in a shipper with foam on all six sides. Not a single accessory missing. The photoshoot I did with this figure after unboxing got 400 likes on Instagram.",
|
|
1055
|
+
status: "approved",
|
|
1056
|
+
helpfulCount: 26,
|
|
1057
|
+
reportCount: 0,
|
|
1058
|
+
verified: true,
|
|
1059
|
+
featured: true,
|
|
1060
|
+
createdAt: daysAgo(44),
|
|
1061
|
+
updatedAt: daysAgo(43),
|
|
1062
|
+
approvedAt: daysAgo(43),
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
id: "review-mafex-miles-rohan-055",
|
|
1066
|
+
productId: "product-mafex-miles-morales-spiderman",
|
|
1067
|
+
productTitle: "MAFEX No.240: Miles Morales Spider-Man",
|
|
1068
|
+
sellerId: "user-admin-letitrip",
|
|
1069
|
+
userId: "user-rohan-joshi",
|
|
1070
|
+
userName: "Rohan Joshi",
|
|
1071
|
+
rating: 5,
|
|
1072
|
+
title: "MAFEX quality is unmatched — Miles looks incredible on shelf",
|
|
1073
|
+
comment: "MAFEX figures are a premium buy and I needed to know LetItRip Official would handle the shipping correctly. They absolutely did — foam-lined shipper, original Medicom box in perfect shape. The figure itself is phenomenal: fabric suit texture, 12 web effect parts, 3 faceplates. Miles Morales has never looked better. This is the definitive Miles figure.",
|
|
1074
|
+
status: "approved",
|
|
1075
|
+
helpfulCount: 33,
|
|
1076
|
+
reportCount: 0,
|
|
1077
|
+
verified: true,
|
|
1078
|
+
featured: true,
|
|
1079
|
+
createdAt: daysAgo(1),
|
|
1080
|
+
updatedAt: daysAgo(1),
|
|
1081
|
+
approvedAt: daysAgo(1),
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
id: "review-nendo-miku-v4x-pooja-056",
|
|
1085
|
+
productId: "product-nendoroid-hatsune-miku-v4x",
|
|
1086
|
+
productTitle: "Nendoroid: Hatsune Miku V4X",
|
|
1087
|
+
sellerId: "user-admin-letitrip",
|
|
1088
|
+
userId: "user-pooja-sharma",
|
|
1089
|
+
userName: "Pooja Sharma",
|
|
1090
|
+
rating: 5,
|
|
1091
|
+
title: "My first Nendoroid — couldn't have chosen a better store",
|
|
1092
|
+
comment: "As a first-time Nendoroid buyer I was nervous about getting a genuine GSC product. LetItRip Official made it easy — the box has all the Japanese and English authentication marks, the figure quality is incredible. Miku V4X is the perfect starter Nendoroid. The leek accessory made me laugh. Excellent from start to finish.",
|
|
1093
|
+
status: "approved",
|
|
1094
|
+
helpfulCount: 16,
|
|
1095
|
+
reportCount: 0,
|
|
1096
|
+
verified: true,
|
|
1097
|
+
featured: false,
|
|
1098
|
+
createdAt: daysAgo(37),
|
|
1099
|
+
updatedAt: daysAgo(36),
|
|
1100
|
+
approvedAt: daysAgo(36),
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
id: "review-funko-gojo-kavya-057",
|
|
1104
|
+
productId: "product-funko-pop-gojo-satoru",
|
|
1105
|
+
productTitle: "Funko Pop! Animation: Jujutsu Kaisen — Gojo Satoru #1373",
|
|
1106
|
+
sellerId: "user-admin-letitrip",
|
|
1107
|
+
userId: "user-kavya-nair",
|
|
1108
|
+
userName: "Kavya Nair",
|
|
1109
|
+
rating: 5,
|
|
1110
|
+
title: "Mint box, quick delivery — Gojo looks great in blindfold",
|
|
1111
|
+
comment: "Ordered on Friday, arrived Tuesday — that's excellent for Kerala. Funko box had a protector sleeve on it and was in a padded mailer. Zero dents or crushes. Gojo's blindfold design is so much better than some of the unmasked variants. Perfect gift for my JJK fan friend.",
|
|
1112
|
+
status: "approved",
|
|
1113
|
+
helpfulCount: 8,
|
|
1114
|
+
reportCount: 0,
|
|
1115
|
+
verified: true,
|
|
1116
|
+
featured: false,
|
|
1117
|
+
createdAt: daysAgo(12),
|
|
1118
|
+
updatedAt: daysAgo(11),
|
|
1119
|
+
approvedAt: daysAgo(11),
|
|
1120
|
+
},
|
|
1121
|
+
// store-tokyo-toys-india (3 more)
|
|
1122
|
+
{
|
|
1123
|
+
id: "review-alter-rem-wedding-anjali-058",
|
|
1124
|
+
productId: "product-alter-rem-wedding-scale",
|
|
1125
|
+
productTitle: "ALTER: Re:ZERO — Rem (Wedding Ver.) 1/7 Scale Figure",
|
|
1126
|
+
sellerId: "user-priya-singh",
|
|
1127
|
+
userId: "user-anjali-verma",
|
|
1128
|
+
userName: "Anjali Verma",
|
|
1129
|
+
rating: 5,
|
|
1130
|
+
title: "ALTER quality is another level — this figure is breathtaking",
|
|
1131
|
+
comment: "My most expensive figure purchase to date and absolutely worth it. ALTER's Rem Wedding Ver. is spectacular — the lace on the dress has visible weave texture, the bouquet flowers are individually painted, and the expression sculpt is perfect. Tokyo Toys India shipped in a double-box with foam cut to the figure's exact shape. Pristine arrival. I cried a little.",
|
|
1132
|
+
status: "approved",
|
|
1133
|
+
helpfulCount: 35,
|
|
1134
|
+
reportCount: 0,
|
|
1135
|
+
verified: true,
|
|
1136
|
+
featured: true,
|
|
1137
|
+
createdAt: daysAgo(34),
|
|
1138
|
+
updatedAt: daysAgo(33),
|
|
1139
|
+
approvedAt: daysAgo(33),
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
id: "review-gsc-aqua-ananya-059",
|
|
1143
|
+
productId: "product-gsc-aqua-konosuba-scale",
|
|
1144
|
+
productTitle: "Good Smile Company: KonoSuba — Aqua 1/7 Scale Figure",
|
|
1145
|
+
sellerId: "user-priya-singh",
|
|
1146
|
+
userId: "user-ananya-krishna",
|
|
1147
|
+
userName: "Ananya Krishna",
|
|
1148
|
+
rating: 5,
|
|
1149
|
+
title: "Aqua deserves all the praise — this figure is stunning",
|
|
1150
|
+
comment: "The Aqua 1/7 scale from GSC captures her personality perfectly. The water effect base is translucent blue with shimmer built into the plastic — it looks magical in direct light. Tokyo Toys India's packaging was impeccable: foam form-fitting inserts, zero movement in the box. Figure arrived in showroom condition. Priya also included a polishing cloth — thoughtful.",
|
|
1151
|
+
status: "approved",
|
|
1152
|
+
helpfulCount: 28,
|
|
1153
|
+
reportCount: 0,
|
|
1154
|
+
verified: true,
|
|
1155
|
+
featured: true,
|
|
1156
|
+
createdAt: daysAgo(59),
|
|
1157
|
+
updatedAt: daysAgo(58),
|
|
1158
|
+
approvedAt: daysAgo(58),
|
|
1159
|
+
},
|
|
1160
|
+
{
|
|
1161
|
+
id: "review-nendo-zero-two-siddharth-060",
|
|
1162
|
+
productId: "product-nendoroid-zero-two-darling",
|
|
1163
|
+
productTitle: "Nendoroid: DARLING in the FRANXX — Zero Two #952",
|
|
1164
|
+
sellerId: "user-priya-singh",
|
|
1165
|
+
userId: "user-siddharth-mehta",
|
|
1166
|
+
userName: "Siddharth Mehta",
|
|
1167
|
+
rating: 3,
|
|
1168
|
+
title: "Great figure but one faceplate had a paint defect — resolved",
|
|
1169
|
+
comment: "The Zero Two Nendoroid is beautiful but one of the three faceplates (the sad expression) had a small paint smear near the right eye. I contacted Tokyo Toys India and Priya responded within 2 hours offering a replacement faceplate at no charge — which arrived 5 days later. The resolution was outstanding. Dropping two stars for the initial defect, adding one back for the excellent after-sale service. Net 3/5 but I would buy here again.",
|
|
1170
|
+
status: "approved",
|
|
1171
|
+
helpfulCount: 12,
|
|
1172
|
+
reportCount: 0,
|
|
1173
|
+
verified: true,
|
|
1174
|
+
featured: false,
|
|
1175
|
+
sellerReply: "Siddharth, we're genuinely sorry about the paint defect on the sad faceplate — QC missed that one. We're glad the replacement arrived quickly and we appreciate you updating your review. Your feedback helps us improve our inspection process.",
|
|
1176
|
+
sellerRepliedAt: daysAgo(2),
|
|
1177
|
+
createdAt: daysAgo(8),
|
|
1178
|
+
updatedAt: daysAgo(2),
|
|
1179
|
+
approvedAt: daysAgo(3),
|
|
1180
|
+
},
|
|
621
1181
|
];
|
|
1182
|
+
export const reviewsSeedData = rawReviews.map(({ sellerId, ...r }) => ({
|
|
1183
|
+
...r,
|
|
1184
|
+
...(sellerId ? (SELLER_STORE[sellerId] ?? {}) : {}),
|
|
1185
|
+
}));
|