@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,2334 +1,1190 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
2
|
+
* FAQ Seed Data — LetItRip Collectibles Platform
|
|
3
|
+
* 53 FAQs across 7 categories. faq- prefix, id === slug.
|
|
4
4
|
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
* - shipping_delivery: 15 FAQs
|
|
8
|
-
* - returns_refunds: 12 FAQs
|
|
9
|
-
* - orders_payment: 18 FAQs
|
|
10
|
-
* - account_security: 10 FAQs
|
|
11
|
-
* - product_information: 15 FAQs
|
|
12
|
-
* - general: 12 seller FAQs merged into general guidance
|
|
5
|
+
* Homepage FAQs (showOnHomepage: true): 8 — shown expanded by default for SEO.
|
|
6
|
+
* Footer FAQs (showInFooter: true): 5 — linked from the site footer.
|
|
13
7
|
*
|
|
14
|
-
*
|
|
8
|
+
* Platform tone:
|
|
9
|
+
* - Shipping timelines and return policies are set by individual stores.
|
|
10
|
+
* Buyers must check each store's About page for their specific rules.
|
|
11
|
+
* - LetItRip is a marketplace platform. We verify sellers and mediate
|
|
12
|
+
* disputes, but we are not the seller and cannot guarantee every
|
|
13
|
+
* transaction. Buying collectibles carries inherent risk.
|
|
15
14
|
*/
|
|
16
|
-
const
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
const rawText = [input.question, input.answer, input.category, ...input.tags]
|
|
27
|
-
.filter(Boolean)
|
|
28
|
-
.join(" ")
|
|
29
|
-
.toLowerCase();
|
|
30
|
-
return Array.from(new Set(rawText
|
|
31
|
-
.split(/[^a-z0-9]+/i)
|
|
32
|
-
.map((token) => token.trim())
|
|
33
|
-
.filter((token) => token.length >= 2))).slice(0, 50);
|
|
34
|
-
}
|
|
35
|
-
function normalizeFaqSeed(faq) {
|
|
36
|
-
const category = FAQ_CATEGORY_MAP[faq.category] ?? "general";
|
|
37
|
-
return {
|
|
38
|
-
id: faq.id ?? "",
|
|
39
|
-
question: faq.question,
|
|
40
|
-
answer: {
|
|
41
|
-
text: faq.answer,
|
|
42
|
-
format: "plain",
|
|
43
|
-
},
|
|
44
|
-
category,
|
|
45
|
-
showOnHomepage: faq.showOnHomepage,
|
|
46
|
-
showInFooter: faq.showInFooter,
|
|
47
|
-
isPinned: faq.isPinned,
|
|
48
|
-
order: faq.order,
|
|
49
|
-
priority: faq.priority,
|
|
50
|
-
tags: faq.tags,
|
|
51
|
-
searchTokens: buildSearchTokens({
|
|
52
|
-
question: faq.question,
|
|
53
|
-
answer: faq.answer,
|
|
54
|
-
category,
|
|
55
|
-
tags: faq.tags,
|
|
56
|
-
}),
|
|
57
|
-
relatedFAQs: faq.relatedFAQs,
|
|
58
|
-
useSiteSettings: faq.useSiteSettings,
|
|
59
|
-
variables: undefined,
|
|
60
|
-
stats: faq.stats,
|
|
61
|
-
seo: faq.seo,
|
|
62
|
-
isActive: faq.isActive,
|
|
63
|
-
createdBy: faq.createdBy,
|
|
64
|
-
};
|
|
65
|
-
}
|
|
66
|
-
export const FAQ_SEED_DATA = [
|
|
67
|
-
// ============================================
|
|
68
|
-
// GENERAL (20 FAQs)
|
|
69
|
-
// ============================================
|
|
70
|
-
{
|
|
15
|
+
const NOW = new Date();
|
|
16
|
+
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
17
|
+
const html = (text) => ({ text, format: "html" });
|
|
18
|
+
const makeStats = (views = 0, helpful = 0) => ({ views, helpful, notHelpful: 0 });
|
|
19
|
+
export const faqSeedData = [
|
|
20
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
21
|
+
// GENERAL (10 FAQs)
|
|
22
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
23
|
+
{
|
|
24
|
+
id: "faq-what-is-letitrip",
|
|
71
25
|
question: "What is LetItRip?",
|
|
72
|
-
answer:
|
|
26
|
+
answer: html(`<p><strong>LetItRip</strong> is India's dedicated collectibles marketplace where verified sellers list Pokémon TCG cards, Hot Wheels diecast, Beyblade X tops, anime figures, Gunpla model kits, and rare vintage toys. Every seller on LetItRip is manually reviewed before they can list — so you're always browsing verified inventory.</p><p>LetItRip is a <strong>platform</strong> that connects buyers with independent sellers. We handle payments, escrow, and dispute mediation — but we are not the seller. Each store on LetItRip is an independent business with its own shipping, return, and authenticity policies. Always read a store's About page before you buy.</p>`),
|
|
73
27
|
category: "general",
|
|
74
28
|
showOnHomepage: true,
|
|
75
|
-
showInFooter:
|
|
29
|
+
showInFooter: false,
|
|
76
30
|
isPinned: true,
|
|
77
31
|
order: 1,
|
|
78
32
|
priority: 10,
|
|
79
|
-
tags: ["about", "platform", "
|
|
80
|
-
relatedFAQs: [],
|
|
81
|
-
useSiteSettings:
|
|
82
|
-
variables:
|
|
83
|
-
stats:
|
|
33
|
+
tags: ["about", "letitrip", "platform", "marketplace"],
|
|
34
|
+
relatedFAQs: ["faq-is-letitrip-safe-to-use", "faq-how-does-letitrip-work"],
|
|
35
|
+
useSiteSettings: true,
|
|
36
|
+
variables: {},
|
|
37
|
+
stats: makeStats(8200, 410),
|
|
84
38
|
seo: {
|
|
85
|
-
slug: "what-is-letitrip",
|
|
86
|
-
metaTitle: "What is LetItRip?
|
|
87
|
-
metaDescription: "
|
|
39
|
+
slug: "faq-what-is-letitrip",
|
|
40
|
+
metaTitle: "What is LetItRip? India's Collectibles Marketplace",
|
|
41
|
+
metaDescription: "LetItRip is India's verified collectibles marketplace for Pokémon TCG, Hot Wheels, Beyblade X, anime figures, and more.",
|
|
88
42
|
},
|
|
89
43
|
isActive: true,
|
|
90
|
-
createdBy: "
|
|
44
|
+
createdBy: "user-admin-letitrip",
|
|
45
|
+
createdAt: daysAgo(90),
|
|
46
|
+
updatedAt: daysAgo(5),
|
|
91
47
|
},
|
|
92
48
|
{
|
|
93
|
-
|
|
94
|
-
|
|
49
|
+
id: "faq-is-letitrip-safe-to-use",
|
|
50
|
+
question: "Is LetItRip safe to buy and sell on?",
|
|
51
|
+
answer: html(`<p>LetItRip takes safety seriously, but like any marketplace, buying and selling collectibles carries <strong>inherent risk</strong> — and we want you to be informed before you transact.</p><p><strong>What LetItRip does to protect you:</strong></p><ul><li><strong>Seller verification</strong> — every store is manually reviewed. Sellers must submit ID and business details before going live.</li><li><strong>Escrow payments</strong> — your money is held by Razorpay and only released to the seller after you confirm delivery or after 5 days of confirmed delivery without a dispute.</li><li><strong>Dispute mediation</strong> — if something goes wrong, raise a dispute within 5 days of delivery and our team will review and mediate.</li><li><strong>Counterfeit policy</strong> — confirmed counterfeit items result in a full refund and seller suspension.</li></ul><p><strong>What LetItRip cannot guarantee:</strong></p><ul><li>We are a <strong>platform</strong>, not the seller. Each store is an independent business. We do not inspect or hold physical inventory.</li><li>Shipping timelines and return windows are set by each store — they vary and are not guaranteed by LetItRip.</li><li>Graded slabs (PSA, BGS, CGC) are verified by third-party grading companies — we do not re-grade on your behalf.</li></ul><p>Our advice: read each store's About page before buying, check reviews, and use the escrow window to inspect your item before confirming delivery.</p>`),
|
|
95
52
|
category: "general",
|
|
96
53
|
showOnHomepage: true,
|
|
97
|
-
showInFooter:
|
|
98
|
-
isPinned:
|
|
54
|
+
showInFooter: false,
|
|
55
|
+
isPinned: true,
|
|
99
56
|
order: 2,
|
|
100
|
-
priority:
|
|
101
|
-
tags: ["
|
|
102
|
-
relatedFAQs: [],
|
|
57
|
+
priority: 10,
|
|
58
|
+
tags: ["safety", "trust", "risk", "platform", "escrow"],
|
|
59
|
+
relatedFAQs: ["faq-what-is-letitrip", "faq-does-letitrip-guarantee-returns", "faq-how-does-escrow-work"],
|
|
103
60
|
useSiteSettings: true,
|
|
104
|
-
variables:
|
|
105
|
-
stats:
|
|
61
|
+
variables: {},
|
|
62
|
+
stats: makeStats(6100, 290),
|
|
106
63
|
seo: {
|
|
107
|
-
slug: "
|
|
108
|
-
metaTitle: "
|
|
109
|
-
metaDescription: "
|
|
64
|
+
slug: "faq-is-letitrip-safe-to-use",
|
|
65
|
+
metaTitle: "Is LetItRip Safe? Buyer & Seller Protection Explained",
|
|
66
|
+
metaDescription: "LetItRip verifies sellers, holds payments in escrow, and mediates disputes — but we're a platform, not the seller. Learn what's covered.",
|
|
110
67
|
},
|
|
111
68
|
isActive: true,
|
|
112
|
-
createdBy: "
|
|
69
|
+
createdBy: "user-admin-letitrip",
|
|
70
|
+
createdAt: daysAgo(90),
|
|
71
|
+
updatedAt: daysAgo(4),
|
|
113
72
|
},
|
|
114
73
|
{
|
|
115
|
-
|
|
116
|
-
|
|
74
|
+
id: "faq-how-does-letitrip-work",
|
|
75
|
+
question: "How does LetItRip work?",
|
|
76
|
+
answer: html(`<p>LetItRip works like a curated collectibles bazaar — sellers set up stores, list their items, and buyers browse and purchase with escrow-backed payments.</p><ol><li><strong>Browse</strong> — search by category (Pokémon, Hot Wheels, Beyblade X, etc.), filter by condition, price, and seller rating.</li><li><strong>Buy securely</strong> — checkout with UPI, card, or COD. Payment goes into escrow — not to the seller yet.</li><li><strong>Seller dispatches</strong> — the seller ships within their stated timeline (check their About page).</li><li><strong>Confirm receipt</strong> — once your item arrives, inspect it, then click "Confirm Delivery". Payment is released to the seller.</li><li><strong>Dispute window</strong> — if anything is wrong, raise a dispute within 5 days of delivery. Do not confirm delivery if you haven't inspected the item.</li></ol><p>For auctions and pre-orders, the flow has extra steps — see the auction and pre-order FAQ sections for details.</p>`),
|
|
117
77
|
category: "general",
|
|
118
78
|
showOnHomepage: false,
|
|
119
|
-
showInFooter:
|
|
79
|
+
showInFooter: false,
|
|
120
80
|
isPinned: false,
|
|
121
81
|
order: 3,
|
|
122
82
|
priority: 8,
|
|
123
|
-
tags: ["
|
|
124
|
-
relatedFAQs: [],
|
|
125
|
-
useSiteSettings:
|
|
126
|
-
variables:
|
|
127
|
-
stats:
|
|
128
|
-
seo: {
|
|
129
|
-
slug: "free-shipping-policy",
|
|
130
|
-
metaTitle: "Free Shipping Policy | LetItRip Shipping Information",
|
|
131
|
-
metaDescription: "Understand our shipping policy. Free shipping is only available when mentioned in the product description by the seller.",
|
|
132
|
-
},
|
|
83
|
+
tags: ["how-to", "buying", "process"],
|
|
84
|
+
relatedFAQs: ["faq-what-is-letitrip", "faq-is-letitrip-safe-to-use"],
|
|
85
|
+
useSiteSettings: true,
|
|
86
|
+
variables: {},
|
|
87
|
+
stats: makeStats(4200, 195),
|
|
88
|
+
seo: { slug: "faq-how-does-letitrip-work" },
|
|
133
89
|
isActive: true,
|
|
134
|
-
createdBy: "
|
|
90
|
+
createdBy: "user-admin-letitrip",
|
|
91
|
+
createdAt: daysAgo(90),
|
|
92
|
+
updatedAt: daysAgo(6),
|
|
135
93
|
},
|
|
136
94
|
{
|
|
137
|
-
|
|
138
|
-
|
|
95
|
+
id: "faq-what-collectibles-can-i-buy",
|
|
96
|
+
question: "What types of collectibles can I buy on LetItRip?",
|
|
97
|
+
answer: html(`<p>LetItRip covers six major collectibles categories:</p><ul><li><strong>Trading Cards</strong> — Pokémon TCG (sealed boxes, ETBs, raw singles, graded slabs), Yu-Gi-Oh!, Dragon Ball Super Card Game, One Piece</li><li><strong>Diecast Vehicles</strong> — Hot Wheels (mainline, Car Culture, premium, RLC), Tomica, Matchbox, Majorette</li><li><strong>Spinning Tops</strong> — Beyblade X (official Takara Tomy imports), Beyblade Burst, Metal Fight</li><li><strong>Action Figures</strong> — Nendoroids, figma, S.H.Figuarts, Funko Pop, NECA, McFarlane</li><li><strong>Model Kits</strong> — Gunpla (HG, MG, RG, PG, SD), Kotobukiya, Hasegawa</li><li><strong>Vintage & Rare</strong> — WOTC-era Pokémon, original Base Set, vintage Hot Wheels Redlines, vintage action figures</li></ul><p>New categories are added based on community demand. If you collect something not listed here, email us at <strong>support@letitrip.in</strong> — we're always expanding.</p>`),
|
|
139
98
|
category: "general",
|
|
140
99
|
showOnHomepage: false,
|
|
141
|
-
showInFooter:
|
|
100
|
+
showInFooter: false,
|
|
142
101
|
isPinned: false,
|
|
143
102
|
order: 4,
|
|
144
|
-
priority:
|
|
145
|
-
tags: ["
|
|
146
|
-
relatedFAQs: [],
|
|
147
|
-
useSiteSettings:
|
|
148
|
-
variables:
|
|
149
|
-
stats:
|
|
150
|
-
seo: {
|
|
151
|
-
slug: "free-returns-policy",
|
|
152
|
-
metaTitle: "Returns Policy | LetItRip Return Information",
|
|
153
|
-
metaDescription: "Learn about our returns policy. Return terms vary by seller - check product descriptions for specific return policies.",
|
|
154
|
-
},
|
|
103
|
+
priority: 7,
|
|
104
|
+
tags: ["categories", "pokemon", "hot-wheels", "beyblade", "gunpla", "anime"],
|
|
105
|
+
relatedFAQs: ["faq-what-is-letitrip"],
|
|
106
|
+
useSiteSettings: true,
|
|
107
|
+
variables: {},
|
|
108
|
+
stats: makeStats(3100, 142),
|
|
109
|
+
seo: { slug: "faq-what-collectibles-can-i-buy" },
|
|
155
110
|
isActive: true,
|
|
156
|
-
createdBy: "
|
|
111
|
+
createdBy: "user-admin-letitrip",
|
|
112
|
+
createdAt: daysAgo(88),
|
|
113
|
+
updatedAt: daysAgo(7),
|
|
157
114
|
},
|
|
158
115
|
{
|
|
159
|
-
|
|
160
|
-
|
|
116
|
+
id: "faq-how-does-bidding-work",
|
|
117
|
+
question: "How does bidding work on LetItRip auctions?",
|
|
118
|
+
answer: html(`<p>LetItRip auctions use a <strong>timed open-bid system</strong>:</p><ol><li>Each auction has a starting bid, optional reserve price, and a closing time.</li><li>Click "Place Bid" and enter an amount at least ₹50 (or the stated minimum increment) above the current bid.</li><li>If you are outbid, you receive an instant notification via app, email, and WhatsApp.</li><li>The highest bidder at closing time wins.</li><li>An <strong>auto-extend rule</strong> applies: if a bid is placed in the final 5 minutes, the auction extends by 5 more minutes. This prevents last-second sniping.</li></ol><p><strong>Reserve price:</strong> if set, the auction only closes as a confirmed sale if the reserve is met. If not, the seller may contact the highest bidder to negotiate directly.</p><p><strong>Important:</strong> All bids are binding. You cannot retract a bid once placed — see the bid retraction FAQ for the only exception.</p>`),
|
|
161
119
|
category: "general",
|
|
162
120
|
showOnHomepage: true,
|
|
163
121
|
showInFooter: false,
|
|
164
|
-
isPinned:
|
|
122
|
+
isPinned: true,
|
|
165
123
|
order: 5,
|
|
166
|
-
priority:
|
|
167
|
-
tags: ["
|
|
168
|
-
relatedFAQs: [],
|
|
169
|
-
useSiteSettings:
|
|
170
|
-
variables:
|
|
171
|
-
stats:
|
|
124
|
+
priority: 10,
|
|
125
|
+
tags: ["auction", "bidding", "how-to"],
|
|
126
|
+
relatedFAQs: ["faq-what-happens-when-i-win-an-auction", "faq-can-i-retract-a-bid"],
|
|
127
|
+
useSiteSettings: true,
|
|
128
|
+
variables: {},
|
|
129
|
+
stats: makeStats(6200, 310),
|
|
172
130
|
seo: {
|
|
173
|
-
slug: "
|
|
174
|
-
metaTitle: "
|
|
175
|
-
metaDescription: "
|
|
131
|
+
slug: "faq-how-does-bidding-work",
|
|
132
|
+
metaTitle: "How Do Auctions Work on LetItRip?",
|
|
133
|
+
metaDescription: "LetItRip uses a timed open-bid system with auto-extend. Learn how to bid on rare collectibles.",
|
|
176
134
|
},
|
|
177
135
|
isActive: true,
|
|
178
|
-
createdBy: "
|
|
136
|
+
createdBy: "user-admin-letitrip",
|
|
137
|
+
createdAt: daysAgo(90),
|
|
138
|
+
updatedAt: daysAgo(3),
|
|
179
139
|
},
|
|
180
140
|
{
|
|
181
|
-
|
|
182
|
-
|
|
141
|
+
id: "faq-what-happens-when-i-win-an-auction",
|
|
142
|
+
question: "What happens when I win an auction?",
|
|
143
|
+
answer: html(`<p>When you win an auction you receive an instant notification and email with the final amount. Next steps:</p><ol><li>You have <strong>24 hours</strong> to complete payment. The order appears in My Account → Orders with status "Pending Payment".</li><li>After payment, the seller dispatches within their stated timeline (check their store About page — each seller sets their own dispatch window).</li><li>If you do not pay within 24 hours, the win may be offered to the next-highest bidder and your account receives a non-payment strike. Three strikes result in a 30-day auction ban.</li></ol><p><strong>High-value auctions</strong> (above ₹50,000) require a refundable ₹5,000 deposit at time of bidding. This is deducted from the final amount at checkout.</p>`),
|
|
183
144
|
category: "general",
|
|
184
145
|
showOnHomepage: false,
|
|
185
146
|
showInFooter: false,
|
|
186
147
|
isPinned: false,
|
|
187
148
|
order: 6,
|
|
188
|
-
priority: 7,
|
|
189
|
-
tags: ["tracking", "orders", "delivery"],
|
|
190
|
-
relatedFAQs: [],
|
|
191
|
-
useSiteSettings: false,
|
|
192
|
-
variables: [],
|
|
193
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
194
|
-
seo: {
|
|
195
|
-
slug: "track-my-order",
|
|
196
|
-
metaTitle: "How to Track Your Order | LetItRip Order Tracking",
|
|
197
|
-
metaDescription: "Track your LetItRip order using the tracking number sent via email or check the My Orders section in your account.",
|
|
198
|
-
},
|
|
199
|
-
isActive: true,
|
|
200
|
-
createdBy: "system",
|
|
201
|
-
},
|
|
202
|
-
{
|
|
203
|
-
question: "Can I cancel my order?",
|
|
204
|
-
answer: "Yes, you can cancel your order before it is shipped. Once shipped, cancellation is not possible, but you may initiate a return after delivery.",
|
|
205
|
-
category: "general",
|
|
206
|
-
showOnHomepage: false,
|
|
207
|
-
showInFooter: false,
|
|
208
|
-
isPinned: false,
|
|
209
|
-
order: 7,
|
|
210
|
-
priority: 6,
|
|
211
|
-
tags: ["cancel", "orders", "refund"],
|
|
212
|
-
relatedFAQs: [],
|
|
213
|
-
useSiteSettings: false,
|
|
214
|
-
variables: [],
|
|
215
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
216
|
-
seo: {
|
|
217
|
-
slug: "cancel-order",
|
|
218
|
-
metaTitle: "How to Cancel an Order | LetItRip Cancellation Policy",
|
|
219
|
-
metaDescription: "Learn how to cancel your LetItRip order before it ships. Cancellation available until the order is dispatched.",
|
|
220
|
-
},
|
|
221
|
-
isActive: true,
|
|
222
|
-
createdBy: "system",
|
|
223
|
-
},
|
|
224
|
-
{
|
|
225
|
-
question: "Are products on LetItRip authentic?",
|
|
226
|
-
answer: "Yes, all sellers on our platform are verified, and we have strict quality control measures. Products are sourced directly from sellers and checked for authenticity.",
|
|
227
|
-
category: "general",
|
|
228
|
-
showOnHomepage: true,
|
|
229
|
-
showInFooter: false,
|
|
230
|
-
isPinned: false,
|
|
231
|
-
order: 8,
|
|
232
149
|
priority: 8,
|
|
233
|
-
tags: ["
|
|
234
|
-
relatedFAQs: [],
|
|
235
|
-
useSiteSettings:
|
|
236
|
-
variables:
|
|
237
|
-
stats:
|
|
238
|
-
seo: {
|
|
239
|
-
slug: "product-authenticity",
|
|
240
|
-
metaTitle: "Are Products Authentic? | LetItRip Quality Assurance",
|
|
241
|
-
metaDescription: "Shop with confidence. All LetItRip sellers are verified and products undergo strict quality checks for authenticity.",
|
|
242
|
-
},
|
|
243
|
-
isActive: true,
|
|
244
|
-
createdBy: "system",
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
question: "What is your refund policy?",
|
|
248
|
-
answer: "Refunds are processed within 5-7 platform days after we receive and inspect the returned product. A platform day starts at 10:00 AM IST. The amount will be credited to your original payment method.",
|
|
249
|
-
category: "general",
|
|
250
|
-
showOnHomepage: false,
|
|
251
|
-
showInFooter: false,
|
|
252
|
-
isPinned: false,
|
|
253
|
-
order: 9,
|
|
254
|
-
priority: 6,
|
|
255
|
-
tags: ["refund", "returns", "money back"],
|
|
256
|
-
relatedFAQs: [],
|
|
257
|
-
useSiteSettings: false,
|
|
258
|
-
variables: [],
|
|
259
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
260
|
-
seo: {
|
|
261
|
-
slug: "refund-policy",
|
|
262
|
-
metaTitle: "Refund Policy | LetItRip Money-Back Guarantee",
|
|
263
|
-
metaDescription: "Get refunds within 5-7 platform days (from 10 AM IST) after product inspection. Amount credited to original payment method.",
|
|
264
|
-
},
|
|
265
|
-
isActive: true,
|
|
266
|
-
createdBy: "system",
|
|
267
|
-
},
|
|
268
|
-
{
|
|
269
|
-
question: "Do you ship internationally?",
|
|
270
|
-
answer: "Currently, we only ship within India. International shipping is not available at this time.",
|
|
271
|
-
category: "general",
|
|
272
|
-
showOnHomepage: false,
|
|
273
|
-
showInFooter: false,
|
|
274
|
-
isPinned: false,
|
|
275
|
-
order: 10,
|
|
276
|
-
priority: 5,
|
|
277
|
-
tags: ["shipping", "international", "delivery"],
|
|
278
|
-
relatedFAQs: [],
|
|
279
|
-
useSiteSettings: false,
|
|
280
|
-
variables: [],
|
|
281
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
282
|
-
seo: {
|
|
283
|
-
slug: "international-shipping",
|
|
284
|
-
metaTitle: "International Shipping | LetItRip Delivery Areas",
|
|
285
|
-
metaDescription: "LetItRip currently ships within India only. International shipping is not yet available.",
|
|
286
|
-
},
|
|
150
|
+
tags: ["auction", "winning", "payment"],
|
|
151
|
+
relatedFAQs: ["faq-how-does-bidding-work"],
|
|
152
|
+
useSiteSettings: true,
|
|
153
|
+
variables: {},
|
|
154
|
+
stats: makeStats(3800, 172),
|
|
155
|
+
seo: { slug: "faq-what-happens-when-i-win-an-auction" },
|
|
287
156
|
isActive: true,
|
|
288
|
-
createdBy: "
|
|
157
|
+
createdBy: "user-admin-letitrip",
|
|
158
|
+
createdAt: daysAgo(90),
|
|
159
|
+
updatedAt: daysAgo(4),
|
|
289
160
|
},
|
|
290
161
|
{
|
|
291
|
-
|
|
292
|
-
|
|
162
|
+
id: "faq-can-i-retract-a-bid",
|
|
163
|
+
question: "Can I retract a bid once placed?",
|
|
164
|
+
answer: html(`<p><strong>Bid retraction is not allowed</strong> on LetItRip. All bids are binding commitments. This protects sellers from price manipulation.</p><p><strong>Exception:</strong> if a seller materially edits the item description or images after you have already bid (for example, adding undisclosed damage), contact LetItRip support with the edit timestamp and evidence. We can void your bid within 1 hour of the edit. Sellers who make material post-bid edits face penalties.</p>`),
|
|
293
165
|
category: "general",
|
|
294
166
|
showOnHomepage: false,
|
|
295
167
|
showInFooter: false,
|
|
296
168
|
isPinned: false,
|
|
297
|
-
order:
|
|
169
|
+
order: 7,
|
|
298
170
|
priority: 6,
|
|
299
|
-
tags: ["
|
|
300
|
-
relatedFAQs: [],
|
|
171
|
+
tags: ["auction", "bid", "retract"],
|
|
172
|
+
relatedFAQs: ["faq-how-does-bidding-work"],
|
|
301
173
|
useSiteSettings: true,
|
|
302
|
-
variables:
|
|
303
|
-
stats:
|
|
304
|
-
seo: {
|
|
305
|
-
slug: "report-order-problem",
|
|
306
|
-
metaTitle: "Report Order Issue | LetItRip Customer Support",
|
|
307
|
-
metaDescription: "Having issues with your order? Report problems through My Orders or contact support with your order number.",
|
|
308
|
-
},
|
|
309
|
-
isActive: true,
|
|
310
|
-
createdBy: "system",
|
|
311
|
-
},
|
|
312
|
-
{
|
|
313
|
-
question: "What are your business hours?",
|
|
314
|
-
answer: "Our customer support is available Monday to Saturday, 9:00 AM to 6:00 PM IST. Orders can be placed 24/7 on our website.",
|
|
315
|
-
category: "general",
|
|
316
|
-
showOnHomepage: false,
|
|
317
|
-
showInFooter: true,
|
|
318
|
-
isPinned: false,
|
|
319
|
-
order: 12,
|
|
320
|
-
priority: 4,
|
|
321
|
-
tags: ["hours", "support", "timing"],
|
|
322
|
-
relatedFAQs: [],
|
|
323
|
-
useSiteSettings: false,
|
|
324
|
-
variables: [],
|
|
325
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
326
|
-
seo: {
|
|
327
|
-
slug: "business-hours",
|
|
328
|
-
metaTitle: "Business Hours | LetItRip Support Timing",
|
|
329
|
-
metaDescription: "LetItRip support available Mon-Sat, 9 AM to 6 PM IST. Shop 24/7 online.",
|
|
330
|
-
},
|
|
331
|
-
isActive: true,
|
|
332
|
-
createdBy: "system",
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
question: "How secure is my personal information?",
|
|
336
|
-
answer: "We use industry-standard SSL encryption and comply with Indian data protection laws. Your personal and payment information is securely stored and never shared with third parties without consent.",
|
|
337
|
-
category: "general",
|
|
338
|
-
showOnHomepage: false,
|
|
339
|
-
showInFooter: false,
|
|
340
|
-
isPinned: false,
|
|
341
|
-
order: 13,
|
|
342
|
-
priority: 7,
|
|
343
|
-
tags: ["security", "privacy", "data"],
|
|
344
|
-
relatedFAQs: [],
|
|
345
|
-
useSiteSettings: false,
|
|
346
|
-
variables: [],
|
|
347
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
348
|
-
seo: {
|
|
349
|
-
slug: "data-security",
|
|
350
|
-
metaTitle: "Data Security | LetItRip Privacy & Protection",
|
|
351
|
-
metaDescription: "Your data is protected with SSL encryption and Indian data protection compliance. Shop securely on LetItRip.",
|
|
352
|
-
},
|
|
174
|
+
variables: {},
|
|
175
|
+
stats: makeStats(1900, 82),
|
|
176
|
+
seo: { slug: "faq-can-i-retract-a-bid" },
|
|
353
177
|
isActive: true,
|
|
354
|
-
createdBy: "
|
|
178
|
+
createdBy: "user-admin-letitrip",
|
|
179
|
+
createdAt: daysAgo(88),
|
|
180
|
+
updatedAt: daysAgo(6),
|
|
355
181
|
},
|
|
356
182
|
{
|
|
357
|
-
|
|
358
|
-
|
|
183
|
+
id: "faq-what-is-a-reserve-price",
|
|
184
|
+
question: "What is a reserve price in an auction?",
|
|
185
|
+
answer: html(`<p>A <strong>reserve price</strong> is the minimum amount a seller is willing to accept. It is kept secret from bidders — the listing shows "Reserve not met" or "Reserve met" as bids come in.</p><p>If the final bid does not meet the reserve, the seller is not obligated to sell. They may contact the highest bidder through LetItRip messaging to negotiate a private sale. Sellers use reserve prices mainly on high-value items such as PSA 9/10 slabs or rare vintage collectibles.</p>`),
|
|
359
186
|
category: "general",
|
|
360
187
|
showOnHomepage: false,
|
|
361
188
|
showInFooter: false,
|
|
362
189
|
isPinned: false,
|
|
363
|
-
order:
|
|
190
|
+
order: 8,
|
|
364
191
|
priority: 5,
|
|
365
|
-
tags: ["
|
|
366
|
-
relatedFAQs: [],
|
|
367
|
-
useSiteSettings: false,
|
|
368
|
-
variables: [],
|
|
369
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
370
|
-
seo: {
|
|
371
|
-
slug: "modify-order",
|
|
372
|
-
metaTitle: "Modify Order | LetItRip Order Changes",
|
|
373
|
-
metaDescription: "Modify your LetItRip order within 1 hour of placement. Contact support for assistance with order changes.",
|
|
374
|
-
},
|
|
375
|
-
isActive: true,
|
|
376
|
-
createdBy: "system",
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
question: "Do you have a mobile app?",
|
|
380
|
-
answer: "Currently, LetItRip is available as a mobile-optimized website. A dedicated mobile app is coming soon for iOS and Android.",
|
|
381
|
-
category: "general",
|
|
382
|
-
showOnHomepage: false,
|
|
383
|
-
showInFooter: false,
|
|
384
|
-
isPinned: false,
|
|
385
|
-
order: 15,
|
|
386
|
-
priority: 4,
|
|
387
|
-
tags: ["app", "mobile", "download"],
|
|
388
|
-
relatedFAQs: [],
|
|
389
|
-
useSiteSettings: false,
|
|
390
|
-
variables: [],
|
|
391
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
392
|
-
seo: {
|
|
393
|
-
slug: "mobile-app",
|
|
394
|
-
metaTitle: "Mobile App | LetItRip iOS & Android",
|
|
395
|
-
metaDescription: "LetItRip mobile app coming soon. Currently available as mobile-optimized website for iOS and Android.",
|
|
396
|
-
},
|
|
397
|
-
isActive: true,
|
|
398
|
-
createdBy: "system",
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
question: "Where is LetItRip located?",
|
|
402
|
-
answer: "Our headquarters is located at {{companyAddress}}. We serve customers across India.",
|
|
403
|
-
category: "general",
|
|
404
|
-
showOnHomepage: false,
|
|
405
|
-
showInFooter: true,
|
|
406
|
-
isPinned: false,
|
|
407
|
-
order: 16,
|
|
408
|
-
priority: 3,
|
|
409
|
-
tags: ["location", "address", "office"],
|
|
410
|
-
relatedFAQs: [],
|
|
192
|
+
tags: ["auction", "reserve", "price"],
|
|
193
|
+
relatedFAQs: ["faq-how-does-bidding-work"],
|
|
411
194
|
useSiteSettings: true,
|
|
412
|
-
variables:
|
|
413
|
-
stats:
|
|
414
|
-
seo: {
|
|
415
|
-
slug: "company-location",
|
|
416
|
-
metaTitle: "Company Location | LetItRip Office Address",
|
|
417
|
-
metaDescription: "Find LetItRip office location and contact details. Serving customers across India.",
|
|
418
|
-
},
|
|
419
|
-
isActive: true,
|
|
420
|
-
createdBy: "system",
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
question: "How do I subscribe to your newsletter?",
|
|
424
|
-
answer: "Enter your email in the newsletter signup form at the bottom of our website to receive updates, deals, and exclusive offers.",
|
|
425
|
-
category: "general",
|
|
426
|
-
showOnHomepage: false,
|
|
427
|
-
showInFooter: true,
|
|
428
|
-
isPinned: false,
|
|
429
|
-
order: 17,
|
|
430
|
-
priority: 3,
|
|
431
|
-
tags: ["newsletter", "subscription", "updates"],
|
|
432
|
-
relatedFAQs: [],
|
|
433
|
-
useSiteSettings: false,
|
|
434
|
-
variables: [],
|
|
435
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
436
|
-
seo: {
|
|
437
|
-
slug: "newsletter-subscription",
|
|
438
|
-
metaTitle: "Newsletter Subscription | LetItRip Updates & Deals",
|
|
439
|
-
metaDescription: "Subscribe to LetItRip newsletter for exclusive deals, updates, and special offers delivered to your inbox.",
|
|
440
|
-
},
|
|
195
|
+
variables: {},
|
|
196
|
+
stats: makeStats(1400, 61),
|
|
197
|
+
seo: { slug: "faq-what-is-a-reserve-price" },
|
|
441
198
|
isActive: true,
|
|
442
|
-
createdBy: "
|
|
199
|
+
createdBy: "user-admin-letitrip",
|
|
200
|
+
createdAt: daysAgo(85),
|
|
201
|
+
updatedAt: daysAgo(7),
|
|
443
202
|
},
|
|
444
203
|
{
|
|
445
|
-
|
|
446
|
-
|
|
204
|
+
id: "faq-how-do-i-report-a-fake-item",
|
|
205
|
+
question: "How do I report a fake or counterfeit item?",
|
|
206
|
+
answer: html(`<p>If you receive an item you believe is counterfeit, act immediately:</p><ol><li><strong>Do not confirm delivery</strong> — this keeps your escrow window open.</li><li>Go to My Account → Orders → "Report Issue" and select "Counterfeit / Not as described".</li><li>Upload clear photographs of the item, packaging, and any authentication markings alongside genuine reference images if possible.</li><li>LetItRip will place the payment on hold and open an investigation within 24 hours.</li></ol><p>If confirmed counterfeit, you receive a <strong>full refund</strong> and the seller's store is suspended pending review. We have a zero-tolerance policy for fakes.</p><p>You can also report a suspicious listing before purchasing — use the "Report Listing" flag on any product page. Our team reviews flagged listings within 12 hours.</p>`),
|
|
447
207
|
category: "general",
|
|
448
208
|
showOnHomepage: false,
|
|
449
209
|
showInFooter: false,
|
|
450
210
|
isPinned: false,
|
|
451
|
-
order:
|
|
452
|
-
priority:
|
|
453
|
-
tags: ["
|
|
454
|
-
relatedFAQs: [],
|
|
455
|
-
useSiteSettings: false,
|
|
456
|
-
variables: [],
|
|
457
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
458
|
-
seo: {
|
|
459
|
-
slug: "gift-cards",
|
|
460
|
-
metaTitle: "Gift Cards | LetItRip E-Gift Vouchers",
|
|
461
|
-
metaDescription: "Buy LetItRip gift cards in various denominations. Perfect gift for any occasion, sent via email instantly.",
|
|
462
|
-
},
|
|
463
|
-
isActive: true,
|
|
464
|
-
createdBy: "system",
|
|
465
|
-
},
|
|
466
|
-
{
|
|
467
|
-
question: "What is your privacy policy?",
|
|
468
|
-
answer: "Our privacy policy details how we collect, use, and protect your personal information. You can read the full policy at {{websiteUrl}}/privacy-policy",
|
|
469
|
-
category: "general",
|
|
470
|
-
showOnHomepage: false,
|
|
471
|
-
showInFooter: true,
|
|
472
|
-
isPinned: false,
|
|
473
|
-
order: 19,
|
|
474
|
-
priority: 6,
|
|
475
|
-
tags: ["privacy", "policy", "data"],
|
|
476
|
-
relatedFAQs: [],
|
|
211
|
+
order: 9,
|
|
212
|
+
priority: 8,
|
|
213
|
+
tags: ["fake", "counterfeit", "report", "authenticity"],
|
|
214
|
+
relatedFAQs: ["faq-is-letitrip-safe-to-use", "faq-how-to-spot-fake-pokemon-cards-authentication"],
|
|
477
215
|
useSiteSettings: true,
|
|
478
|
-
variables:
|
|
479
|
-
stats:
|
|
480
|
-
seo: {
|
|
481
|
-
slug: "privacy-policy-info",
|
|
482
|
-
metaTitle: "Privacy Policy | LetItRip Data Protection",
|
|
483
|
-
metaDescription: "Read LetItRip privacy policy to understand how we protect your personal information and comply with data laws.",
|
|
484
|
-
},
|
|
216
|
+
variables: {},
|
|
217
|
+
stats: makeStats(2800, 198),
|
|
218
|
+
seo: { slug: "faq-how-do-i-report-a-fake-item" },
|
|
485
219
|
isActive: true,
|
|
486
|
-
createdBy: "
|
|
220
|
+
createdBy: "user-admin-letitrip",
|
|
221
|
+
createdAt: daysAgo(87),
|
|
222
|
+
updatedAt: daysAgo(5),
|
|
487
223
|
},
|
|
488
224
|
{
|
|
489
|
-
|
|
490
|
-
|
|
225
|
+
id: "faq-how-do-i-contact-support",
|
|
226
|
+
question: "How do I contact LetItRip support?",
|
|
227
|
+
answer: html(`<p>You can reach LetItRip support through the following channels:</p><ul><li><strong>Email</strong>: support@letitrip.in — we respond within 24 hours (48 hours on weekends)</li><li><strong>Order disputes</strong>: My Account → Orders → "Report Issue" — fastest route for transaction problems as it attaches order context automatically</li><li><strong>WhatsApp community</strong>: join our collectors group for community help and informal guidance</li></ul><p>For <strong>urgent issues</strong> (payment held, suspected fraud, counterfeit item), use the in-order dispute form — it escalates to our priority queue and is reviewed within 4 hours during business hours (Mon–Sat, 10am–7pm IST).</p><p>We do not offer phone support at this time. All formal resolutions are handled in writing so there is a clear record.</p>`),
|
|
491
228
|
category: "general",
|
|
492
229
|
showOnHomepage: false,
|
|
493
|
-
showInFooter:
|
|
230
|
+
showInFooter: true,
|
|
494
231
|
isPinned: false,
|
|
495
|
-
order:
|
|
496
|
-
priority:
|
|
497
|
-
tags: ["
|
|
498
|
-
relatedFAQs: [],
|
|
232
|
+
order: 10,
|
|
233
|
+
priority: 7,
|
|
234
|
+
tags: ["support", "contact", "help"],
|
|
235
|
+
relatedFAQs: ["faq-how-to-raise-a-dispute"],
|
|
499
236
|
useSiteSettings: true,
|
|
500
|
-
variables:
|
|
501
|
-
stats:
|
|
502
|
-
seo: {
|
|
503
|
-
slug: "bulk-discounts",
|
|
504
|
-
metaTitle: "Bulk Discounts | LetItRip Wholesale Pricing",
|
|
505
|
-
metaDescription: "Get bulk discounts on orders over 10 units. Contact LetItRip sales team for wholesale pricing and deals.",
|
|
506
|
-
},
|
|
237
|
+
variables: {},
|
|
238
|
+
stats: makeStats(3400, 156),
|
|
239
|
+
seo: { slug: "faq-how-do-i-contact-support" },
|
|
507
240
|
isActive: true,
|
|
508
|
-
createdBy: "
|
|
241
|
+
createdBy: "user-admin-letitrip",
|
|
242
|
+
createdAt: daysAgo(86),
|
|
243
|
+
updatedAt: daysAgo(4),
|
|
509
244
|
},
|
|
510
|
-
//
|
|
511
|
-
// SHIPPING (
|
|
512
|
-
//
|
|
245
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
246
|
+
// SHIPPING & DELIVERY (7 FAQs)
|
|
247
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
513
248
|
{
|
|
249
|
+
id: "faq-how-long-does-shipping-take",
|
|
514
250
|
question: "How long does shipping take?",
|
|
515
|
-
answer:
|
|
516
|
-
category: "
|
|
251
|
+
answer: html(`<p><strong>Important: shipping timelines are set by each individual store on LetItRip, not by the platform.</strong> Before buying, visit the store's About page (click the store name on any listing) to read their specific dispatch and delivery commitments.</p><p>As a general guide, most verified stores on LetItRip ship as follows:</p><ul><li><strong>Metro cities</strong> (Mumbai, Delhi, Bengaluru, Hyderabad, Pune, Chennai): 2–4 business days</li><li><strong>Tier-2 cities and standard pin codes</strong>: 3–7 business days</li><li><strong>Remote pin codes</strong>: 7–14 business days</li></ul><p>These are typical ranges only — your seller's stated policy takes precedence. Sellers must dispatch within their stated window after payment is confirmed; you receive a tracking link via email and WhatsApp once dispatched. If your order hasn't moved within the seller's stated dispatch window, raise an issue through My Account → Orders.</p>`),
|
|
252
|
+
category: "shipping_delivery",
|
|
517
253
|
showOnHomepage: true,
|
|
518
|
-
showInFooter:
|
|
519
|
-
isPinned:
|
|
254
|
+
showInFooter: true,
|
|
255
|
+
isPinned: true,
|
|
520
256
|
order: 1,
|
|
521
|
-
priority:
|
|
522
|
-
tags: ["shipping", "delivery", "
|
|
523
|
-
relatedFAQs: [],
|
|
524
|
-
useSiteSettings:
|
|
525
|
-
variables:
|
|
526
|
-
stats:
|
|
257
|
+
priority: 10,
|
|
258
|
+
tags: ["shipping", "delivery", "timeline"],
|
|
259
|
+
relatedFAQs: ["faq-how-do-i-find-store-shipping-policy", "faq-how-to-track-my-order"],
|
|
260
|
+
useSiteSettings: true,
|
|
261
|
+
variables: {},
|
|
262
|
+
stats: makeStats(3200, 148),
|
|
527
263
|
seo: {
|
|
528
|
-
slug: "shipping-
|
|
529
|
-
metaTitle: "Shipping
|
|
530
|
-
metaDescription: "LetItRip
|
|
264
|
+
slug: "faq-how-long-does-shipping-take",
|
|
265
|
+
metaTitle: "How Long Does Shipping Take on LetItRip?",
|
|
266
|
+
metaDescription: "Shipping timelines on LetItRip are set by each store. Check the store's About page for exact timelines.",
|
|
531
267
|
},
|
|
532
268
|
isActive: true,
|
|
533
|
-
createdBy: "
|
|
269
|
+
createdBy: "user-admin-letitrip",
|
|
270
|
+
createdAt: daysAgo(90),
|
|
271
|
+
updatedAt: daysAgo(5),
|
|
534
272
|
},
|
|
535
273
|
{
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
274
|
+
id: "faq-how-do-i-find-store-shipping-policy",
|
|
275
|
+
question: "Where can I find a store's shipping policy?",
|
|
276
|
+
answer: html(`<p>Every store on LetItRip sets its own shipping rules — dispatch windows, carriers used, packaging standards, and whether they offer express options. To find a specific store's policy:</p><ol><li>Open any listing from that store and click the <strong>store name</strong> near the seller details.</li><li>On the store page, click the <strong>About</strong> tab.</li><li>Scroll to the Shipping & Dispatch section.</li></ol><p>Alternatively, the store's policy is shown on the checkout page under "Shipping" before you confirm payment.</p><p><strong>LetItRip strongly recommends reading a store's shipping policy before purchasing</strong>, especially for high-value items or time-sensitive orders (e.g., gifts, tournament deadlines). Stores are independent businesses and their policies vary.</p>`),
|
|
277
|
+
category: "shipping_delivery",
|
|
539
278
|
showOnHomepage: false,
|
|
540
279
|
showInFooter: false,
|
|
541
280
|
isPinned: false,
|
|
542
281
|
order: 2,
|
|
543
|
-
priority:
|
|
544
|
-
tags: ["shipping", "
|
|
545
|
-
relatedFAQs: [],
|
|
546
|
-
useSiteSettings: false,
|
|
547
|
-
variables: [],
|
|
548
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
549
|
-
seo: {
|
|
550
|
-
slug: "shipping-charges",
|
|
551
|
-
metaTitle: "Shipping Charges | LetItRip Delivery Costs",
|
|
552
|
-
metaDescription: "Shipping costs vary by seller and location. See exact charges at checkout. Some products have free shipping.",
|
|
553
|
-
},
|
|
554
|
-
isActive: true,
|
|
555
|
-
createdBy: "system",
|
|
556
|
-
},
|
|
557
|
-
{
|
|
558
|
-
question: "Do you offer express shipping?",
|
|
559
|
-
answer: "Yes, express shipping is available in select cities for an additional charge. Deliveries within 1-2 business days. Check availability at checkout.",
|
|
560
|
-
category: "shipping",
|
|
561
|
-
showOnHomepage: false,
|
|
562
|
-
showInFooter: false,
|
|
563
|
-
isPinned: false,
|
|
564
|
-
order: 3,
|
|
565
|
-
priority: 7,
|
|
566
|
-
tags: ["express", "fast shipping", "delivery"],
|
|
567
|
-
relatedFAQs: [],
|
|
568
|
-
useSiteSettings: false,
|
|
569
|
-
variables: [],
|
|
570
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
571
|
-
seo: {
|
|
572
|
-
slug: "express-shipping",
|
|
573
|
-
metaTitle: "Express Shipping | LetItRip Fast Delivery",
|
|
574
|
-
metaDescription: "Get express shipping in 1-2 days for select cities. Additional charges apply. Check availability at checkout.",
|
|
575
|
-
},
|
|
576
|
-
isActive: true,
|
|
577
|
-
createdBy: "system",
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
question: "Can I change my delivery address after placing an order?",
|
|
581
|
-
answer: "Yes, you can change your delivery address within 2 hours of placing the order. Contact customer support immediately at {{supportPhone}}.",
|
|
582
|
-
category: "shipping",
|
|
583
|
-
showOnHomepage: false,
|
|
584
|
-
showInFooter: false,
|
|
585
|
-
isPinned: false,
|
|
586
|
-
order: 4,
|
|
587
|
-
priority: 6,
|
|
588
|
-
tags: ["address", "change", "delivery"],
|
|
589
|
-
relatedFAQs: [],
|
|
282
|
+
priority: 9,
|
|
283
|
+
tags: ["shipping", "store-policy", "about-page"],
|
|
284
|
+
relatedFAQs: ["faq-how-long-does-shipping-take", "faq-does-letitrip-guarantee-returns"],
|
|
590
285
|
useSiteSettings: true,
|
|
591
|
-
variables:
|
|
592
|
-
stats:
|
|
593
|
-
seo: {
|
|
594
|
-
slug: "change-delivery-address",
|
|
595
|
-
metaTitle: "Change Delivery Address | LetItRip Order Modifications",
|
|
596
|
-
metaDescription: "Change your delivery address within 2 hours of order placement. Contact support for immediate assistance.",
|
|
597
|
-
},
|
|
598
|
-
isActive: true,
|
|
599
|
-
createdBy: "system",
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
question: "What happens if I'm not home for delivery?",
|
|
603
|
-
answer: "The delivery partner will attempt delivery 3 times. If you're unavailable, they'll leave a note. You can also schedule a redelivery or pick up from the nearest collection point.",
|
|
604
|
-
category: "shipping",
|
|
605
|
-
showOnHomepage: false,
|
|
606
|
-
showInFooter: false,
|
|
607
|
-
isPinned: false,
|
|
608
|
-
order: 5,
|
|
609
|
-
priority: 6,
|
|
610
|
-
tags: ["delivery", "missed", "redelivery"],
|
|
611
|
-
relatedFAQs: [],
|
|
612
|
-
useSiteSettings: false,
|
|
613
|
-
variables: [],
|
|
614
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
615
|
-
seo: {
|
|
616
|
-
slug: "missed-delivery",
|
|
617
|
-
metaTitle: "Missed Delivery | LetItRip Redelivery Options",
|
|
618
|
-
metaDescription: "3 delivery attempts made. Schedule redelivery or pickup from collection point if you miss delivery.",
|
|
619
|
-
},
|
|
620
|
-
isActive: true,
|
|
621
|
-
createdBy: "system",
|
|
622
|
-
},
|
|
623
|
-
{
|
|
624
|
-
question: "Do you ship to PO boxes?",
|
|
625
|
-
answer: "No, we do not ship to PO boxes. Please provide a physical address with landmark for successful delivery.",
|
|
626
|
-
category: "shipping",
|
|
627
|
-
showOnHomepage: false,
|
|
628
|
-
showInFooter: false,
|
|
629
|
-
isPinned: false,
|
|
630
|
-
order: 6,
|
|
631
|
-
priority: 5,
|
|
632
|
-
tags: ["PO box", "delivery", "address"],
|
|
633
|
-
relatedFAQs: [],
|
|
634
|
-
useSiteSettings: false,
|
|
635
|
-
variables: [],
|
|
636
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
637
|
-
seo: {
|
|
638
|
-
slug: "po-box-shipping",
|
|
639
|
-
metaTitle: "PO Box Shipping | LetItRip Delivery Restrictions",
|
|
640
|
-
metaDescription: "LetItRip does not ship to PO boxes. Provide a physical address with landmark for delivery.",
|
|
641
|
-
},
|
|
642
|
-
isActive: true,
|
|
643
|
-
createdBy: "system",
|
|
644
|
-
},
|
|
645
|
-
{
|
|
646
|
-
question: "Is signature required for delivery?",
|
|
647
|
-
answer: "Yes, all deliveries require a signature for security. Someone 18+ must be present to receive and sign for the package.",
|
|
648
|
-
category: "shipping",
|
|
649
|
-
showOnHomepage: false,
|
|
650
|
-
showInFooter: false,
|
|
651
|
-
isPinned: false,
|
|
652
|
-
order: 7,
|
|
653
|
-
priority: 5,
|
|
654
|
-
tags: ["signature", "delivery", "security"],
|
|
655
|
-
relatedFAQs: [],
|
|
656
|
-
useSiteSettings: false,
|
|
657
|
-
variables: [],
|
|
658
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
659
|
-
seo: {
|
|
660
|
-
slug: "signature-required-delivery",
|
|
661
|
-
metaTitle: "Signature Required | LetItRip Delivery Policy",
|
|
662
|
-
metaDescription: "All LetItRip deliveries require signature from someone 18+ for security purposes.",
|
|
663
|
-
},
|
|
664
|
-
isActive: true,
|
|
665
|
-
createdBy: "system",
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
question: "Can I track my shipment in real-time?",
|
|
669
|
-
answer: "Yes, once shipped, you'll receive a tracking link via SMS and email. The tracking page shows real-time location updates and estimated delivery time.",
|
|
670
|
-
category: "shipping",
|
|
671
|
-
showOnHomepage: false,
|
|
672
|
-
showInFooter: false,
|
|
673
|
-
isPinned: false,
|
|
674
|
-
order: 8,
|
|
675
|
-
priority: 7,
|
|
676
|
-
tags: ["tracking", "real-time", "delivery"],
|
|
677
|
-
relatedFAQs: [],
|
|
678
|
-
useSiteSettings: false,
|
|
679
|
-
variables: [],
|
|
680
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
681
|
-
seo: {
|
|
682
|
-
slug: "real-time-tracking",
|
|
683
|
-
metaTitle: "Real-Time Tracking | LetItRip Shipment Location",
|
|
684
|
-
metaDescription: "Track your LetItRip shipment in real-time with SMS and email tracking links. See live location updates.",
|
|
685
|
-
},
|
|
686
|
-
isActive: true,
|
|
687
|
-
createdBy: "system",
|
|
688
|
-
},
|
|
689
|
-
{
|
|
690
|
-
question: "What if my package is damaged during shipping?",
|
|
691
|
-
answer: "If your package arrives damaged, take photos and refuse delivery if possible. Contact us immediately at {{supportEmail}} within 24 hours for a replacement or refund.",
|
|
692
|
-
category: "shipping",
|
|
693
|
-
showOnHomepage: false,
|
|
694
|
-
showInFooter: false,
|
|
695
|
-
isPinned: false,
|
|
696
|
-
order: 9,
|
|
697
|
-
priority: 6,
|
|
698
|
-
tags: ["damaged", "package", "refund"],
|
|
699
|
-
relatedFAQs: [],
|
|
700
|
-
useSiteSettings: true,
|
|
701
|
-
variables: ["supportEmail"],
|
|
702
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
703
|
-
seo: {
|
|
704
|
-
slug: "damaged-package",
|
|
705
|
-
metaTitle: "Damaged Package | LetItRip Shipping Claims",
|
|
706
|
-
metaDescription: "Received damaged package? Report within 24 hours with photos for replacement or refund.",
|
|
707
|
-
},
|
|
708
|
-
isActive: true,
|
|
709
|
-
createdBy: "system",
|
|
710
|
-
},
|
|
711
|
-
{
|
|
712
|
-
question: "Do you ship to military APO/FPO addresses?",
|
|
713
|
-
answer: "No, we currently do not ship to military APO/FPO addresses. We only deliver to physical addresses within India.",
|
|
714
|
-
category: "shipping",
|
|
715
|
-
showOnHomepage: false,
|
|
716
|
-
showInFooter: false,
|
|
717
|
-
isPinned: false,
|
|
718
|
-
order: 10,
|
|
719
|
-
priority: 3,
|
|
720
|
-
tags: ["military", "APO", "FPO"],
|
|
721
|
-
relatedFAQs: [],
|
|
722
|
-
useSiteSettings: false,
|
|
723
|
-
variables: [],
|
|
724
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
725
|
-
seo: {
|
|
726
|
-
slug: "military-address-shipping",
|
|
727
|
-
metaTitle: "Military Address Shipping | LetItRip APO/FPO",
|
|
728
|
-
metaDescription: "LetItRip does not ship to military APO/FPO addresses. Only physical addresses within India.",
|
|
729
|
-
},
|
|
730
|
-
isActive: true,
|
|
731
|
-
createdBy: "system",
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
question: "Can I schedule a specific delivery date?",
|
|
735
|
-
answer: "Scheduled delivery is available for select pin codes. Choose your preferred date at checkout if available in your area.",
|
|
736
|
-
category: "shipping",
|
|
737
|
-
showOnHomepage: false,
|
|
738
|
-
showInFooter: false,
|
|
739
|
-
isPinned: false,
|
|
740
|
-
order: 11,
|
|
741
|
-
priority: 4,
|
|
742
|
-
tags: ["scheduled", "delivery", "date"],
|
|
743
|
-
relatedFAQs: [],
|
|
744
|
-
useSiteSettings: false,
|
|
745
|
-
variables: [],
|
|
746
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
747
|
-
seo: {
|
|
748
|
-
slug: "scheduled-delivery",
|
|
749
|
-
metaTitle: "Scheduled Delivery | LetItRip Delivery Date Selection",
|
|
750
|
-
metaDescription: "Schedule your delivery date at checkout for select areas. Choose convenient delivery timing.",
|
|
751
|
-
},
|
|
752
|
-
isActive: true,
|
|
753
|
-
createdBy: "system",
|
|
754
|
-
},
|
|
755
|
-
{
|
|
756
|
-
question: "What courier services do you use?",
|
|
757
|
-
answer: "We partner with India Post, BlueDart, Delhivery, DTDC, and other reliable courier services based on your location and product type.",
|
|
758
|
-
category: "shipping",
|
|
759
|
-
showOnHomepage: false,
|
|
760
|
-
showInFooter: false,
|
|
761
|
-
isPinned: false,
|
|
762
|
-
order: 12,
|
|
763
|
-
priority: 4,
|
|
764
|
-
tags: ["courier", "delivery partners", "shipping"],
|
|
765
|
-
relatedFAQs: [],
|
|
766
|
-
useSiteSettings: false,
|
|
767
|
-
variables: [],
|
|
768
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
769
|
-
seo: {
|
|
770
|
-
slug: "courier-partners",
|
|
771
|
-
metaTitle: "Courier Partners | LetItRip Delivery Services",
|
|
772
|
-
metaDescription: "LetItRip partners with India Post, BlueDart, Delhivery, DTDC for reliable deliveries across India.",
|
|
773
|
-
},
|
|
774
|
-
isActive: true,
|
|
775
|
-
createdBy: "system",
|
|
776
|
-
},
|
|
777
|
-
{
|
|
778
|
-
question: "Is weekend delivery available?",
|
|
779
|
-
answer: "Yes, we deliver on Saturdays. Sunday delivery is available in select metro cities for an additional charge.",
|
|
780
|
-
category: "shipping",
|
|
781
|
-
showOnHomepage: false,
|
|
782
|
-
showInFooter: false,
|
|
783
|
-
isPinned: false,
|
|
784
|
-
order: 13,
|
|
785
|
-
priority: 5,
|
|
786
|
-
tags: ["weekend", "saturday", "sunday"],
|
|
787
|
-
relatedFAQs: [],
|
|
788
|
-
useSiteSettings: false,
|
|
789
|
-
variables: [],
|
|
790
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
791
|
-
seo: {
|
|
792
|
-
slug: "weekend-delivery",
|
|
793
|
-
metaTitle: "Weekend Delivery | LetItRip Saturday & Sunday Shipping",
|
|
794
|
-
metaDescription: "Saturday delivery included. Sunday delivery available in metro cities for additional charge.",
|
|
795
|
-
},
|
|
796
|
-
isActive: true,
|
|
797
|
-
createdBy: "system",
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
question: "What is the weight limit for shipments?",
|
|
801
|
-
answer: "Individual packages are limited to 30kg. For heavier items, sellers may split orders into multiple shipments.",
|
|
802
|
-
category: "shipping",
|
|
803
|
-
showOnHomepage: false,
|
|
804
|
-
showInFooter: false,
|
|
805
|
-
isPinned: false,
|
|
806
|
-
order: 14,
|
|
807
|
-
priority: 3,
|
|
808
|
-
tags: ["weight", "limit", "heavy items"],
|
|
809
|
-
relatedFAQs: [],
|
|
810
|
-
useSiteSettings: false,
|
|
811
|
-
variables: [],
|
|
812
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
813
|
-
seo: {
|
|
814
|
-
slug: "shipping-weight-limit",
|
|
815
|
-
metaTitle: "Shipping Weight Limit | LetItRip Heavy Items",
|
|
816
|
-
metaDescription: "Individual packages limited to 30kg. Heavy items may be split into multiple shipments.",
|
|
817
|
-
},
|
|
818
|
-
isActive: true,
|
|
819
|
-
createdBy: "system",
|
|
820
|
-
},
|
|
821
|
-
{
|
|
822
|
-
question: "Do you offer cash on delivery (COD)?",
|
|
823
|
-
answer: "Yes, COD is available for orders up to ₹50,000. A nominal COD handling fee may apply depending on the seller.",
|
|
824
|
-
category: "shipping",
|
|
825
|
-
showOnHomepage: false,
|
|
826
|
-
showInFooter: false,
|
|
827
|
-
isPinned: false,
|
|
828
|
-
order: 15,
|
|
829
|
-
priority: 7,
|
|
830
|
-
tags: ["COD", "cash on delivery", "payment"],
|
|
831
|
-
relatedFAQs: [],
|
|
832
|
-
useSiteSettings: false,
|
|
833
|
-
variables: [],
|
|
834
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
835
|
-
seo: {
|
|
836
|
-
slug: "cash-on-delivery",
|
|
837
|
-
metaTitle: "Cash on Delivery | LetItRip COD Payment",
|
|
838
|
-
metaDescription: "COD available for orders up to ₹50,000. Nominal handling fee may apply depending on seller.",
|
|
839
|
-
},
|
|
840
|
-
isActive: true,
|
|
841
|
-
createdBy: "system",
|
|
842
|
-
},
|
|
843
|
-
// ============================================
|
|
844
|
-
// RETURNS (12 FAQs)
|
|
845
|
-
// ============================================
|
|
846
|
-
{
|
|
847
|
-
question: "What is your return policy?",
|
|
848
|
-
answer: "Returns are accepted within 7-14 days of delivery depending on the product category. Items must be unused, in original packaging with tags. Return shipping costs may apply unless mentioned otherwise by the seller.",
|
|
849
|
-
category: "returns",
|
|
850
|
-
showOnHomepage: true,
|
|
851
|
-
showInFooter: false,
|
|
852
|
-
isPinned: false,
|
|
853
|
-
order: 1,
|
|
854
|
-
priority: 9,
|
|
855
|
-
tags: ["returns", "policy", "refund"],
|
|
856
|
-
relatedFAQs: [],
|
|
857
|
-
useSiteSettings: false,
|
|
858
|
-
variables: [],
|
|
859
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
860
|
-
seo: {
|
|
861
|
-
slug: "return-policy",
|
|
862
|
-
metaTitle: "Return Policy | LetItRip Returns & Refunds",
|
|
863
|
-
metaDescription: "Return within 7-14 days. Items must be unused with tags. Return shipping may apply per seller policy.",
|
|
864
|
-
},
|
|
865
|
-
isActive: true,
|
|
866
|
-
createdBy: "system",
|
|
867
|
-
},
|
|
868
|
-
{
|
|
869
|
-
question: "How do I initiate a return?",
|
|
870
|
-
answer: 'Go to "My Orders", select the product, click "Return Item", choose a reason, and submit. You\'ll receive return instructions via email within 24 hours.',
|
|
871
|
-
category: "returns",
|
|
872
|
-
showOnHomepage: false,
|
|
873
|
-
showInFooter: false,
|
|
874
|
-
isPinned: false,
|
|
875
|
-
order: 2,
|
|
876
|
-
priority: 8,
|
|
877
|
-
tags: ["return", "process", "how to"],
|
|
878
|
-
relatedFAQs: [],
|
|
879
|
-
useSiteSettings: false,
|
|
880
|
-
variables: [],
|
|
881
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
882
|
-
seo: {
|
|
883
|
-
slug: "initiate-return",
|
|
884
|
-
metaTitle: "How to Return | LetItRip Return Process",
|
|
885
|
-
metaDescription: "Initiate returns from My Orders section. Choose reason and receive return instructions within 24 hours.",
|
|
886
|
-
},
|
|
887
|
-
isActive: true,
|
|
888
|
-
createdBy: "system",
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
question: "Who pays for return shipping?",
|
|
892
|
-
answer: "Return shipping costs depend on the seller's policy and reason for return. If the product is defective or wrong item, seller covers shipping. For change of mind, customer may bear return costs.",
|
|
893
|
-
category: "returns",
|
|
894
|
-
showOnHomepage: false,
|
|
895
|
-
showInFooter: false,
|
|
896
|
-
isPinned: false,
|
|
897
|
-
order: 3,
|
|
898
|
-
priority: 8,
|
|
899
|
-
tags: ["return shipping", "cost", "charges"],
|
|
900
|
-
relatedFAQs: [],
|
|
901
|
-
useSiteSettings: false,
|
|
902
|
-
variables: [],
|
|
903
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
904
|
-
seo: {
|
|
905
|
-
slug: "return-shipping-cost",
|
|
906
|
-
metaTitle: "Return Shipping Cost | LetItRip Who Pays",
|
|
907
|
-
metaDescription: "Return shipping costs vary by seller policy. Defective items: seller pays. Change of mind: customer may pay.",
|
|
908
|
-
},
|
|
909
|
-
isActive: true,
|
|
910
|
-
createdBy: "system",
|
|
911
|
-
},
|
|
912
|
-
{
|
|
913
|
-
question: "When will I receive my refund?",
|
|
914
|
-
answer: "Refunds are processed within 5-7 platform days after the returned item is received and inspected. The amount is credited to your original payment method.",
|
|
915
|
-
category: "returns",
|
|
916
|
-
showOnHomepage: false,
|
|
917
|
-
showInFooter: false,
|
|
918
|
-
isPinned: false,
|
|
919
|
-
order: 4,
|
|
920
|
-
priority: 7,
|
|
921
|
-
tags: ["refund", "timing", "processing"],
|
|
922
|
-
relatedFAQs: [],
|
|
923
|
-
useSiteSettings: false,
|
|
924
|
-
variables: [],
|
|
925
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
926
|
-
seo: {
|
|
927
|
-
slug: "refund-processing-time",
|
|
928
|
-
metaTitle: "Refund Processing Time | LetItRip Money Back",
|
|
929
|
-
metaDescription: "Refunds processed within 5-7 days after item inspection. Credited to original payment method.",
|
|
930
|
-
},
|
|
931
|
-
isActive: true,
|
|
932
|
-
createdBy: "system",
|
|
933
|
-
},
|
|
934
|
-
{
|
|
935
|
-
question: "Can I exchange an item instead of returning it?",
|
|
936
|
-
answer: 'Yes, exchanges are available for size or color variations if the same product is in stock. Select "Exchange" option when initiating the return.',
|
|
937
|
-
category: "returns",
|
|
938
|
-
showOnHomepage: false,
|
|
939
|
-
showInFooter: false,
|
|
940
|
-
isPinned: false,
|
|
941
|
-
order: 5,
|
|
942
|
-
priority: 6,
|
|
943
|
-
tags: ["exchange", "swap", "size"],
|
|
944
|
-
relatedFAQs: [],
|
|
945
|
-
useSiteSettings: false,
|
|
946
|
-
variables: [],
|
|
947
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
948
|
-
seo: {
|
|
949
|
-
slug: "product-exchange",
|
|
950
|
-
metaTitle: "Product Exchange | LetItRip Size & Color Swap",
|
|
951
|
-
metaDescription: "Exchange for different size or color if in stock. Select exchange option when initiating return.",
|
|
952
|
-
},
|
|
953
|
-
isActive: true,
|
|
954
|
-
createdBy: "system",
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
question: "What items cannot be returned?",
|
|
958
|
-
answer: 'Non-returnable items include: personal care products, innerwear, food items, customized products, and items marked as "non-returnable" on the product page.',
|
|
959
|
-
category: "returns",
|
|
960
|
-
showOnHomepage: false,
|
|
961
|
-
showInFooter: false,
|
|
962
|
-
isPinned: false,
|
|
963
|
-
order: 6,
|
|
964
|
-
priority: 7,
|
|
965
|
-
tags: ["non-returnable", "exceptions", "policy"],
|
|
966
|
-
relatedFAQs: [],
|
|
967
|
-
useSiteSettings: false,
|
|
968
|
-
variables: [],
|
|
969
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
970
|
-
seo: {
|
|
971
|
-
slug: "non-returnable-items",
|
|
972
|
-
metaTitle: "Non-Returnable Items | LetItRip Return Exceptions",
|
|
973
|
-
metaDescription: "Personal care, innerwear, food, customized items cannot be returned. Check product page for details.",
|
|
974
|
-
},
|
|
975
|
-
isActive: true,
|
|
976
|
-
createdBy: "system",
|
|
977
|
-
},
|
|
978
|
-
{
|
|
979
|
-
question: "Do I need the original packaging for returns?",
|
|
980
|
-
answer: "Yes, items must be returned in original packaging with all tags, labels, and accessories intact. Damaged packaging may result in partial refund or rejection.",
|
|
981
|
-
category: "returns",
|
|
982
|
-
showOnHomepage: false,
|
|
983
|
-
showInFooter: false,
|
|
984
|
-
isPinned: false,
|
|
985
|
-
order: 7,
|
|
986
|
-
priority: 6,
|
|
987
|
-
tags: ["packaging", "condition", "requirements"],
|
|
988
|
-
relatedFAQs: [],
|
|
989
|
-
useSiteSettings: false,
|
|
990
|
-
variables: [],
|
|
991
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
992
|
-
seo: {
|
|
993
|
-
slug: "return-packaging-requirements",
|
|
994
|
-
metaTitle: "Return Packaging | LetItRip Return Conditions",
|
|
995
|
-
metaDescription: "Return items in original packaging with tags intact. Damaged packaging may affect refund.",
|
|
996
|
-
},
|
|
997
|
-
isActive: true,
|
|
998
|
-
createdBy: "system",
|
|
999
|
-
},
|
|
1000
|
-
{
|
|
1001
|
-
question: "What if I receive a defective product?",
|
|
1002
|
-
answer: "Contact us immediately at {{supportEmail}} with photos of the defect. We'll arrange a free return pickup and provide a full refund or replacement.",
|
|
1003
|
-
category: "returns",
|
|
1004
|
-
showOnHomepage: false,
|
|
1005
|
-
showInFooter: false,
|
|
1006
|
-
isPinned: false,
|
|
1007
|
-
order: 8,
|
|
1008
|
-
priority: 8,
|
|
1009
|
-
tags: ["defective", "damaged", "quality"],
|
|
1010
|
-
relatedFAQs: [],
|
|
1011
|
-
useSiteSettings: true,
|
|
1012
|
-
variables: ["supportEmail"],
|
|
1013
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1014
|
-
seo: {
|
|
1015
|
-
slug: "defective-product-return",
|
|
1016
|
-
metaTitle: "Defective Product | LetItRip Quality Issues",
|
|
1017
|
-
metaDescription: "Received defective item? Contact us with photos for free return pickup and full refund or replacement.",
|
|
1018
|
-
},
|
|
1019
|
-
isActive: true,
|
|
1020
|
-
createdBy: "system",
|
|
1021
|
-
},
|
|
1022
|
-
{
|
|
1023
|
-
question: "Can I return a gift?",
|
|
1024
|
-
answer: "Yes, gifts can be returned within the standard return period. Refunds will be issued as store credit or to the original purchaser's payment method.",
|
|
1025
|
-
category: "returns",
|
|
1026
|
-
showOnHomepage: false,
|
|
1027
|
-
showInFooter: false,
|
|
1028
|
-
isPinned: false,
|
|
1029
|
-
order: 9,
|
|
1030
|
-
priority: 5,
|
|
1031
|
-
tags: ["gifts", "return", "refund"],
|
|
1032
|
-
relatedFAQs: [],
|
|
1033
|
-
useSiteSettings: false,
|
|
1034
|
-
variables: [],
|
|
1035
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1036
|
-
seo: {
|
|
1037
|
-
slug: "gift-return",
|
|
1038
|
-
metaTitle: "Gift Returns | LetItRip Gift Policy",
|
|
1039
|
-
metaDescription: "Return gifts within standard period. Refund as store credit or to original purchaser payment method.",
|
|
1040
|
-
},
|
|
1041
|
-
isActive: true,
|
|
1042
|
-
createdBy: "system",
|
|
1043
|
-
},
|
|
1044
|
-
{
|
|
1045
|
-
question: "How do I track my return?",
|
|
1046
|
-
answer: 'Once your return is picked up, you\'ll receive a tracking number via email. Track the return status in "My Orders" section under "Returns & Refunds".',
|
|
1047
|
-
category: "returns",
|
|
1048
|
-
showOnHomepage: false,
|
|
1049
|
-
showInFooter: false,
|
|
1050
|
-
isPinned: false,
|
|
1051
|
-
order: 10,
|
|
1052
|
-
priority: 5,
|
|
1053
|
-
tags: ["return tracking", "status", "updates"],
|
|
1054
|
-
relatedFAQs: [],
|
|
1055
|
-
useSiteSettings: false,
|
|
1056
|
-
variables: [],
|
|
1057
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1058
|
-
seo: {
|
|
1059
|
-
slug: "track-return",
|
|
1060
|
-
metaTitle: "Track Return | LetItRip Return Status",
|
|
1061
|
-
metaDescription: "Track your return with tracking number in email or check My Orders section for return status.",
|
|
1062
|
-
},
|
|
1063
|
-
isActive: true,
|
|
1064
|
-
createdBy: "system",
|
|
1065
|
-
},
|
|
1066
|
-
{
|
|
1067
|
-
question: "What if my return is rejected?",
|
|
1068
|
-
answer: "If your return is rejected due to policy violation or item condition, we'll notify you via email with the reason. The item will be shipped back to you at your expense.",
|
|
1069
|
-
category: "returns",
|
|
1070
|
-
showOnHomepage: false,
|
|
1071
|
-
showInFooter: false,
|
|
1072
|
-
isPinned: false,
|
|
1073
|
-
order: 11,
|
|
1074
|
-
priority: 4,
|
|
1075
|
-
tags: ["rejected", "return", "policy"],
|
|
1076
|
-
relatedFAQs: [],
|
|
1077
|
-
useSiteSettings: false,
|
|
1078
|
-
variables: [],
|
|
1079
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1080
|
-
seo: {
|
|
1081
|
-
slug: "rejected-return",
|
|
1082
|
-
metaTitle: "Rejected Return | LetItRip Return Rejection Policy",
|
|
1083
|
-
metaDescription: "Returns may be rejected for policy violations. Item shipped back to you at your expense with reason.",
|
|
1084
|
-
},
|
|
1085
|
-
isActive: true,
|
|
1086
|
-
createdBy: "system",
|
|
1087
|
-
},
|
|
1088
|
-
{
|
|
1089
|
-
question: "Can I return sale or clearance items?",
|
|
1090
|
-
answer: 'Sale and clearance items follow the same return policy unless marked as "final sale" or "non-returnable" on the product page.',
|
|
1091
|
-
category: "returns",
|
|
1092
|
-
showOnHomepage: false,
|
|
1093
|
-
showInFooter: false,
|
|
1094
|
-
isPinned: false,
|
|
1095
|
-
order: 12,
|
|
1096
|
-
priority: 5,
|
|
1097
|
-
tags: ["sale", "clearance", "final sale"],
|
|
1098
|
-
relatedFAQs: [],
|
|
1099
|
-
useSiteSettings: false,
|
|
1100
|
-
variables: [],
|
|
1101
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1102
|
-
seo: {
|
|
1103
|
-
slug: "sale-items-return",
|
|
1104
|
-
metaTitle: "Sale Items Return | LetItRip Clearance Policy",
|
|
1105
|
-
metaDescription: "Sale items returnable unless marked final sale or non-returnable. Check product page for details.",
|
|
1106
|
-
},
|
|
1107
|
-
isActive: true,
|
|
1108
|
-
createdBy: "system",
|
|
1109
|
-
},
|
|
1110
|
-
// ============================================
|
|
1111
|
-
// PAYMENT (18 FAQs)
|
|
1112
|
-
// ============================================
|
|
1113
|
-
{
|
|
1114
|
-
question: "What payment methods are accepted?",
|
|
1115
|
-
answer: "We accept UPI (Google Pay, PhonePe, Paytm), credit/debit cards (Visa, Mastercard, RuPay), net banking, digital wallets, and EMI options on select purchases.",
|
|
1116
|
-
category: "payment",
|
|
1117
|
-
showOnHomepage: true,
|
|
1118
|
-
showInFooter: false,
|
|
1119
|
-
isPinned: false,
|
|
1120
|
-
order: 1,
|
|
1121
|
-
priority: 9,
|
|
1122
|
-
tags: ["payment", "methods", "options"],
|
|
1123
|
-
relatedFAQs: [],
|
|
1124
|
-
useSiteSettings: false,
|
|
1125
|
-
variables: [],
|
|
1126
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1127
|
-
seo: {
|
|
1128
|
-
slug: "payment-methods",
|
|
1129
|
-
metaTitle: "Payment Methods | LetItRip Accepted Payments",
|
|
1130
|
-
metaDescription: "Pay with UPI, cards, net banking, wallets, or EMI. Multiple secure payment options available.",
|
|
1131
|
-
},
|
|
1132
|
-
isActive: true,
|
|
1133
|
-
createdBy: "system",
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
question: "Is it safe to use my credit card on LetItRip?",
|
|
1137
|
-
answer: "Yes, absolutely. We use industry-standard SSL encryption and PCI DSS compliant payment gateways. Your card details are never stored on our servers.",
|
|
1138
|
-
category: "payment",
|
|
1139
|
-
showOnHomepage: false,
|
|
1140
|
-
showInFooter: false,
|
|
1141
|
-
isPinned: false,
|
|
1142
|
-
order: 2,
|
|
1143
|
-
priority: 8,
|
|
1144
|
-
tags: ["security", "credit card", "safe"],
|
|
1145
|
-
relatedFAQs: [],
|
|
1146
|
-
useSiteSettings: false,
|
|
1147
|
-
variables: [],
|
|
1148
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1149
|
-
seo: {
|
|
1150
|
-
slug: "credit-card-security",
|
|
1151
|
-
metaTitle: "Credit Card Security | LetItRip Safe Payments",
|
|
1152
|
-
metaDescription: "Shop safely with SSL encryption and PCI DSS compliant gateways. Card details never stored.",
|
|
1153
|
-
},
|
|
1154
|
-
isActive: true,
|
|
1155
|
-
createdBy: "system",
|
|
1156
|
-
},
|
|
1157
|
-
{
|
|
1158
|
-
question: "Do you offer EMI options?",
|
|
1159
|
-
answer: "Yes, EMI is available on orders above ₹3,000 for 3, 6, 9, and 12 months. Select EMI at checkout and choose your preferred bank and tenure.",
|
|
1160
|
-
category: "payment",
|
|
1161
|
-
showOnHomepage: false,
|
|
1162
|
-
showInFooter: false,
|
|
1163
|
-
isPinned: false,
|
|
1164
|
-
order: 3,
|
|
1165
|
-
priority: 7,
|
|
1166
|
-
tags: ["EMI", "installments", "payment"],
|
|
1167
|
-
relatedFAQs: [],
|
|
1168
|
-
useSiteSettings: false,
|
|
1169
|
-
variables: [],
|
|
1170
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1171
|
-
seo: {
|
|
1172
|
-
slug: "emi-options",
|
|
1173
|
-
metaTitle: "EMI Options | LetItRip Installment Payments",
|
|
1174
|
-
metaDescription: "EMI available on orders above ₹3,000. Choose 3, 6, 9, or 12 months at checkout.",
|
|
1175
|
-
},
|
|
1176
|
-
isActive: true,
|
|
1177
|
-
createdBy: "system",
|
|
1178
|
-
},
|
|
1179
|
-
{
|
|
1180
|
-
question: "What is your cancellation and refund policy?",
|
|
1181
|
-
answer: "Orders can be cancelled before shipping. Refunds are processed within 5-7 platform days to your original payment method after cancellation or return approval.",
|
|
1182
|
-
category: "payment",
|
|
1183
|
-
showOnHomepage: false,
|
|
1184
|
-
showInFooter: false,
|
|
1185
|
-
isPinned: false,
|
|
1186
|
-
order: 4,
|
|
1187
|
-
priority: 7,
|
|
1188
|
-
tags: ["cancellation", "refund", "policy"],
|
|
1189
|
-
relatedFAQs: [],
|
|
1190
|
-
useSiteSettings: false,
|
|
1191
|
-
variables: [],
|
|
1192
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1193
|
-
seo: {
|
|
1194
|
-
slug: "cancellation-refund-policy",
|
|
1195
|
-
metaTitle: "Cancellation & Refund | LetItRip Payment Policy",
|
|
1196
|
-
metaDescription: "Cancel before shipping. Refunds in 5-7 days to original payment method after approval.",
|
|
1197
|
-
},
|
|
1198
|
-
isActive: true,
|
|
1199
|
-
createdBy: "system",
|
|
1200
|
-
},
|
|
1201
|
-
{
|
|
1202
|
-
question: "Can I use multiple payment methods for one order?",
|
|
1203
|
-
answer: "No, currently only one payment method can be used per order. You can split orders and use different payment methods for each.",
|
|
1204
|
-
category: "payment",
|
|
1205
|
-
showOnHomepage: false,
|
|
1206
|
-
showInFooter: false,
|
|
1207
|
-
isPinned: false,
|
|
1208
|
-
order: 5,
|
|
1209
|
-
priority: 5,
|
|
1210
|
-
tags: ["multiple payments", "split", "order"],
|
|
1211
|
-
relatedFAQs: [],
|
|
1212
|
-
useSiteSettings: false,
|
|
1213
|
-
variables: [],
|
|
1214
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1215
|
-
seo: {
|
|
1216
|
-
slug: "multiple-payment-methods",
|
|
1217
|
-
metaTitle: "Multiple Payments | LetItRip Payment Options",
|
|
1218
|
-
metaDescription: "One payment method per order. Split orders to use different payment methods.",
|
|
1219
|
-
},
|
|
1220
|
-
isActive: true,
|
|
1221
|
-
createdBy: "system",
|
|
1222
|
-
},
|
|
1223
|
-
{
|
|
1224
|
-
question: "Why was my payment declined?",
|
|
1225
|
-
answer: "Payments can be declined due to insufficient funds, incorrect card details, bank security blocks, or payment gateway issues. Contact your bank or try another payment method.",
|
|
1226
|
-
category: "payment",
|
|
1227
|
-
showOnHomepage: false,
|
|
1228
|
-
showInFooter: false,
|
|
1229
|
-
isPinned: false,
|
|
1230
|
-
order: 6,
|
|
1231
|
-
priority: 6,
|
|
1232
|
-
tags: ["declined", "failed", "payment"],
|
|
1233
|
-
relatedFAQs: [],
|
|
1234
|
-
useSiteSettings: false,
|
|
1235
|
-
variables: [],
|
|
1236
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1237
|
-
seo: {
|
|
1238
|
-
slug: "payment-declined",
|
|
1239
|
-
metaTitle: "Payment Declined | LetItRip Payment Issues",
|
|
1240
|
-
metaDescription: "Payment declined? Check funds, card details, or bank blocks. Try another payment method.",
|
|
1241
|
-
},
|
|
1242
|
-
isActive: true,
|
|
1243
|
-
createdBy: "system",
|
|
1244
|
-
},
|
|
1245
|
-
{
|
|
1246
|
-
question: "Will I receive a payment receipt?",
|
|
1247
|
-
answer: 'Yes, a payment confirmation and invoice are sent to your email immediately after successful payment. You can also download invoices from "My Orders".',
|
|
1248
|
-
category: "payment",
|
|
1249
|
-
showOnHomepage: false,
|
|
1250
|
-
showInFooter: false,
|
|
1251
|
-
isPinned: false,
|
|
1252
|
-
order: 7,
|
|
1253
|
-
priority: 5,
|
|
1254
|
-
tags: ["receipt", "invoice", "confirmation"],
|
|
1255
|
-
relatedFAQs: [],
|
|
1256
|
-
useSiteSettings: false,
|
|
1257
|
-
variables: [],
|
|
1258
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1259
|
-
seo: {
|
|
1260
|
-
slug: "payment-receipt",
|
|
1261
|
-
metaTitle: "Payment Receipt | LetItRip Invoice Download",
|
|
1262
|
-
metaDescription: "Receive payment confirmation via email. Download invoices from My Orders section anytime.",
|
|
1263
|
-
},
|
|
1264
|
-
isActive: true,
|
|
1265
|
-
createdBy: "system",
|
|
1266
|
-
},
|
|
1267
|
-
{
|
|
1268
|
-
question: "Do you accept international credit cards?",
|
|
1269
|
-
answer: "Yes, we accept international Visa, Mastercard, and American Express cards. Currency conversion charges may apply by your card issuer.",
|
|
1270
|
-
category: "payment",
|
|
1271
|
-
showOnHomepage: false,
|
|
1272
|
-
showInFooter: false,
|
|
1273
|
-
isPinned: false,
|
|
1274
|
-
order: 8,
|
|
1275
|
-
priority: 4,
|
|
1276
|
-
tags: ["international", "credit card", "foreign"],
|
|
1277
|
-
relatedFAQs: [],
|
|
1278
|
-
useSiteSettings: false,
|
|
1279
|
-
variables: [],
|
|
1280
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1281
|
-
seo: {
|
|
1282
|
-
slug: "international-credit-cards",
|
|
1283
|
-
metaTitle: "International Cards | LetItRip Foreign Payments",
|
|
1284
|
-
metaDescription: "Accept Visa, Mastercard, AmEx international cards. Currency conversion by card issuer.",
|
|
1285
|
-
},
|
|
1286
|
-
isActive: true,
|
|
1287
|
-
createdBy: "system",
|
|
1288
|
-
},
|
|
1289
|
-
{
|
|
1290
|
-
question: "Can I save my card for future purchases?",
|
|
1291
|
-
answer: "Yes, you can securely save your card details in your account for faster checkout. All saved cards are tokenized and encrypted per RBI guidelines.",
|
|
1292
|
-
category: "payment",
|
|
1293
|
-
showOnHomepage: false,
|
|
1294
|
-
showInFooter: false,
|
|
1295
|
-
isPinned: false,
|
|
1296
|
-
order: 9,
|
|
1297
|
-
priority: 5,
|
|
1298
|
-
tags: ["save card", "tokenization", "security"],
|
|
1299
|
-
relatedFAQs: [],
|
|
1300
|
-
useSiteSettings: false,
|
|
1301
|
-
variables: [],
|
|
1302
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1303
|
-
seo: {
|
|
1304
|
-
slug: "save-card-details",
|
|
1305
|
-
metaTitle: "Save Card Details | LetItRip Secure Payments",
|
|
1306
|
-
metaDescription: "Securely save cards for faster checkout. Tokenized and encrypted per RBI guidelines.",
|
|
1307
|
-
},
|
|
1308
|
-
isActive: true,
|
|
1309
|
-
createdBy: "system",
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
question: "What if I'm charged twice for one order?",
|
|
1313
|
-
answer: "Double charges are rare but can occur due to payment gateway delays. Contact us at {{supportEmail}} immediately. The duplicate charge is automatically refunded within 7-10 platform days.",
|
|
1314
|
-
category: "payment",
|
|
1315
|
-
showOnHomepage: false,
|
|
1316
|
-
showInFooter: false,
|
|
1317
|
-
isPinned: false,
|
|
1318
|
-
order: 10,
|
|
1319
|
-
priority: 6,
|
|
1320
|
-
tags: ["double charge", "refund", "error"],
|
|
1321
|
-
relatedFAQs: [],
|
|
1322
|
-
useSiteSettings: true,
|
|
1323
|
-
variables: ["supportEmail"],
|
|
1324
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1325
|
-
seo: {
|
|
1326
|
-
slug: "double-charged",
|
|
1327
|
-
metaTitle: "Double Charged | LetItRip Payment Error Resolution",
|
|
1328
|
-
metaDescription: "Charged twice? Contact support. Duplicate charges automatically refunded in 7-10 days.",
|
|
1329
|
-
},
|
|
1330
|
-
isActive: true,
|
|
1331
|
-
createdBy: "system",
|
|
1332
|
-
},
|
|
1333
|
-
{
|
|
1334
|
-
question: "Do you accept PayPal?",
|
|
1335
|
-
answer: "Currently, we do not accept PayPal. We accept UPI, cards, net banking, and digital wallets for Indian transactions.",
|
|
1336
|
-
category: "payment",
|
|
1337
|
-
showOnHomepage: false,
|
|
1338
|
-
showInFooter: false,
|
|
1339
|
-
isPinned: false,
|
|
1340
|
-
order: 11,
|
|
1341
|
-
priority: 3,
|
|
1342
|
-
tags: ["PayPal", "payment", "methods"],
|
|
1343
|
-
relatedFAQs: [],
|
|
1344
|
-
useSiteSettings: false,
|
|
1345
|
-
variables: [],
|
|
1346
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1347
|
-
seo: {
|
|
1348
|
-
slug: "paypal-payment",
|
|
1349
|
-
metaTitle: "PayPal Payment | LetItRip Payment Methods",
|
|
1350
|
-
metaDescription: "PayPal not accepted. Use UPI, cards, net banking, or wallets for payments.",
|
|
1351
|
-
},
|
|
1352
|
-
isActive: true,
|
|
1353
|
-
createdBy: "system",
|
|
1354
|
-
},
|
|
1355
|
-
{
|
|
1356
|
-
question: "Are there any hidden charges?",
|
|
1357
|
-
answer: "No, all charges including product price, shipping, taxes, and any additional fees are clearly displayed at checkout before payment. No hidden charges.",
|
|
1358
|
-
category: "payment",
|
|
1359
|
-
showOnHomepage: false,
|
|
1360
|
-
showInFooter: false,
|
|
1361
|
-
isPinned: false,
|
|
1362
|
-
order: 12,
|
|
1363
|
-
priority: 6,
|
|
1364
|
-
tags: ["charges", "fees", "transparency"],
|
|
1365
|
-
relatedFAQs: [],
|
|
1366
|
-
useSiteSettings: false,
|
|
1367
|
-
variables: [],
|
|
1368
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1369
|
-
seo: {
|
|
1370
|
-
slug: "hidden-charges",
|
|
1371
|
-
metaTitle: "Hidden Charges | LetItRip Transparent Pricing",
|
|
1372
|
-
metaDescription: "No hidden charges. All fees displayed at checkout before payment. Complete transparency.",
|
|
1373
|
-
},
|
|
1374
|
-
isActive: true,
|
|
1375
|
-
createdBy: "system",
|
|
1376
|
-
},
|
|
1377
|
-
{
|
|
1378
|
-
question: "Can I get a tax invoice for my purchase?",
|
|
1379
|
-
answer: 'Yes, GST invoice is automatically generated and sent via email after order confirmation. You can also download it from "My Orders" section.',
|
|
1380
|
-
category: "payment",
|
|
1381
|
-
showOnHomepage: false,
|
|
1382
|
-
showInFooter: false,
|
|
1383
|
-
isPinned: false,
|
|
1384
|
-
order: 13,
|
|
1385
|
-
priority: 5,
|
|
1386
|
-
tags: ["tax", "invoice", "GST"],
|
|
1387
|
-
relatedFAQs: [],
|
|
1388
|
-
useSiteSettings: false,
|
|
1389
|
-
variables: [],
|
|
1390
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1391
|
-
seo: {
|
|
1392
|
-
slug: "tax-invoice",
|
|
1393
|
-
metaTitle: "Tax Invoice | LetItRip GST Invoice Download",
|
|
1394
|
-
metaDescription: "GST invoice sent via email and available in My Orders. Download anytime for tax purposes.",
|
|
1395
|
-
},
|
|
1396
|
-
isActive: true,
|
|
1397
|
-
createdBy: "system",
|
|
1398
|
-
},
|
|
1399
|
-
{
|
|
1400
|
-
question: "What is your policy on chargebacks?",
|
|
1401
|
-
answer: "Chargebacks should be initiated only after contacting our support team. Unauthorized chargebacks may result in account suspension and legal action.",
|
|
1402
|
-
category: "payment",
|
|
1403
|
-
showOnHomepage: false,
|
|
1404
|
-
showInFooter: false,
|
|
1405
|
-
isPinned: false,
|
|
1406
|
-
order: 14,
|
|
1407
|
-
priority: 4,
|
|
1408
|
-
tags: ["chargeback", "dispute", "policy"],
|
|
1409
|
-
relatedFAQs: [],
|
|
1410
|
-
useSiteSettings: false,
|
|
1411
|
-
variables: [],
|
|
1412
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1413
|
-
seo: {
|
|
1414
|
-
slug: "chargeback-policy",
|
|
1415
|
-
metaTitle: "Chargeback Policy | LetItRip Payment Disputes",
|
|
1416
|
-
metaDescription: "Contact support before initiating chargebacks. Unauthorized chargebacks may lead to suspension.",
|
|
1417
|
-
},
|
|
1418
|
-
isActive: true,
|
|
1419
|
-
createdBy: "system",
|
|
1420
|
-
},
|
|
1421
|
-
{
|
|
1422
|
-
question: "How long does it take for refunds to process?",
|
|
1423
|
-
answer: "Refunds are processed within 5-7 platform days after return approval. It may take additional 3-5 days for your bank to credit the amount.",
|
|
1424
|
-
category: "payment",
|
|
1425
|
-
showOnHomepage: false,
|
|
1426
|
-
showInFooter: false,
|
|
1427
|
-
isPinned: false,
|
|
1428
|
-
order: 15,
|
|
1429
|
-
priority: 7,
|
|
1430
|
-
tags: ["refund", "processing", "time"],
|
|
1431
|
-
relatedFAQs: [],
|
|
1432
|
-
useSiteSettings: false,
|
|
1433
|
-
variables: [],
|
|
1434
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1435
|
-
seo: {
|
|
1436
|
-
slug: "refund-processing-time",
|
|
1437
|
-
metaTitle: "Refund Processing | LetItRip Refund Timeline",
|
|
1438
|
-
metaDescription: "Refunds in 5-7 days after approval. Bank credit takes additional 3-5 days.",
|
|
1439
|
-
},
|
|
1440
|
-
isActive: true,
|
|
1441
|
-
createdBy: "system",
|
|
1442
|
-
},
|
|
1443
|
-
{
|
|
1444
|
-
question: "Can I pay using a gift card or voucher?",
|
|
1445
|
-
answer: 'Yes, you can apply gift cards, promo codes, or vouchers at checkout. Enter the code in the "Apply Coupon" field before payment.',
|
|
1446
|
-
category: "payment",
|
|
1447
|
-
showOnHomepage: false,
|
|
1448
|
-
showInFooter: false,
|
|
1449
|
-
isPinned: false,
|
|
1450
|
-
order: 16,
|
|
1451
|
-
priority: 5,
|
|
1452
|
-
tags: ["gift card", "voucher", "coupon"],
|
|
1453
|
-
relatedFAQs: [],
|
|
1454
|
-
useSiteSettings: false,
|
|
1455
|
-
variables: [],
|
|
1456
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1457
|
-
seo: {
|
|
1458
|
-
slug: "gift-card-payment",
|
|
1459
|
-
metaTitle: "Gift Card Payment | LetItRip Voucher Redemption",
|
|
1460
|
-
metaDescription: "Apply gift cards, promo codes, and vouchers at checkout. Enter code before payment.",
|
|
1461
|
-
},
|
|
1462
|
-
isActive: true,
|
|
1463
|
-
createdBy: "system",
|
|
1464
|
-
},
|
|
1465
|
-
{
|
|
1466
|
-
question: "What happens if payment fails but money is deducted?",
|
|
1467
|
-
answer: "If payment fails but amount is debited, the transaction is automatically reversed within 5-7 platform days. Contact your bank if not credited within this time.",
|
|
1468
|
-
category: "payment",
|
|
1469
|
-
showOnHomepage: false,
|
|
1470
|
-
showInFooter: false,
|
|
1471
|
-
isPinned: false,
|
|
1472
|
-
order: 17,
|
|
1473
|
-
priority: 6,
|
|
1474
|
-
tags: ["failed payment", "deducted", "refund"],
|
|
1475
|
-
relatedFAQs: [],
|
|
1476
|
-
useSiteSettings: false,
|
|
1477
|
-
variables: [],
|
|
1478
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1479
|
-
seo: {
|
|
1480
|
-
slug: "failed-payment-deduction",
|
|
1481
|
-
metaTitle: "Failed Payment Deducted | LetItRip Payment Issues",
|
|
1482
|
-
metaDescription: "Money deducted but payment failed? Auto-reversed in 5-7 days. Contact bank if delayed.",
|
|
1483
|
-
},
|
|
1484
|
-
isActive: true,
|
|
1485
|
-
createdBy: "system",
|
|
1486
|
-
},
|
|
1487
|
-
{
|
|
1488
|
-
question: "Do you charge any transaction fees?",
|
|
1489
|
-
answer: "No transaction fees for UPI, cards, or net banking. COD orders may have a nominal handling charge. All charges are shown at checkout.",
|
|
1490
|
-
category: "payment",
|
|
1491
|
-
showOnHomepage: false,
|
|
1492
|
-
showInFooter: false,
|
|
1493
|
-
isPinned: false,
|
|
1494
|
-
order: 18,
|
|
1495
|
-
priority: 4,
|
|
1496
|
-
tags: ["fees", "transaction", "charges"],
|
|
1497
|
-
relatedFAQs: [],
|
|
1498
|
-
useSiteSettings: false,
|
|
1499
|
-
variables: [],
|
|
1500
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1501
|
-
seo: {
|
|
1502
|
-
slug: "transaction-fees",
|
|
1503
|
-
metaTitle: "Transaction Fees | LetItRip Payment Charges",
|
|
1504
|
-
metaDescription: "No transaction fees for online payments. COD may have handling charge. All shown at checkout.",
|
|
1505
|
-
},
|
|
1506
|
-
isActive: true,
|
|
1507
|
-
createdBy: "system",
|
|
1508
|
-
},
|
|
1509
|
-
// ============================================
|
|
1510
|
-
// ACCOUNT (10 FAQs)
|
|
1511
|
-
// ============================================
|
|
1512
|
-
{
|
|
1513
|
-
question: "How do I create an account?",
|
|
1514
|
-
answer: 'Click "Sign Up" in the top menu, enter your email and password, or sign up with Google/Apple. Verify your email to complete registration.',
|
|
1515
|
-
category: "account",
|
|
1516
|
-
showOnHomepage: false,
|
|
1517
|
-
showInFooter: false,
|
|
1518
|
-
isPinned: false,
|
|
1519
|
-
order: 1,
|
|
1520
|
-
priority: 8,
|
|
1521
|
-
tags: ["signup", "registration", "account"],
|
|
1522
|
-
relatedFAQs: [],
|
|
1523
|
-
useSiteSettings: false,
|
|
1524
|
-
variables: [],
|
|
1525
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1526
|
-
seo: {
|
|
1527
|
-
slug: "create-account",
|
|
1528
|
-
metaTitle: "Create Account | LetItRip Registration",
|
|
1529
|
-
metaDescription: "Sign up with email or Google/Apple. Verify email to complete LetItRip account registration.",
|
|
1530
|
-
},
|
|
1531
|
-
isActive: true,
|
|
1532
|
-
createdBy: "system",
|
|
1533
|
-
},
|
|
1534
|
-
{
|
|
1535
|
-
question: "I forgot my password. How do I reset it?",
|
|
1536
|
-
answer: 'Click "Forgot Password" on the login page, enter your email, and click "Reset Password". You\'ll receive a reset link via email within 5 minutes.',
|
|
1537
|
-
category: "account",
|
|
1538
|
-
showOnHomepage: false,
|
|
1539
|
-
showInFooter: false,
|
|
1540
|
-
isPinned: false,
|
|
1541
|
-
order: 2,
|
|
1542
|
-
priority: 7,
|
|
1543
|
-
tags: ["password", "reset", "forgot"],
|
|
1544
|
-
relatedFAQs: [],
|
|
1545
|
-
useSiteSettings: false,
|
|
1546
|
-
variables: [],
|
|
1547
|
-
stats: { views: 0, helpful: 0, notHelpful: 0 },
|
|
1548
|
-
seo: {
|
|
1549
|
-
slug: "reset-password",
|
|
1550
|
-
metaTitle: "Reset Password | LetItRip Password Recovery",
|
|
1551
|
-
metaDescription: "Forgot password? Get reset link via email in 5 minutes. Click Forgot Password on login page.",
|
|
1552
|
-
},
|
|
286
|
+
variables: {},
|
|
287
|
+
stats: makeStats(1800, 96),
|
|
288
|
+
seo: { slug: "faq-how-do-i-find-store-shipping-policy" },
|
|
1553
289
|
isActive: true,
|
|
1554
|
-
createdBy: "
|
|
290
|
+
createdBy: "user-admin-letitrip",
|
|
291
|
+
createdAt: daysAgo(85),
|
|
292
|
+
updatedAt: daysAgo(4),
|
|
1555
293
|
},
|
|
1556
294
|
{
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
295
|
+
id: "faq-do-you-offer-free-shipping",
|
|
296
|
+
question: "Do you offer free shipping?",
|
|
297
|
+
answer: html(`<p>Free shipping availability depends on the <strong>individual store</strong> — LetItRip does not set a platform-wide free shipping threshold. Each seller decides their own shipping charges and free-shipping conditions.</p><p>Many stores on LetItRip offer free standard shipping on orders above a certain value (commonly ₹499–₹999). Look for the <strong>"Free Shipping"</strong> badge on product listings, or check the store's About page for their shipping rates.</p><p>At checkout, shipping costs are shown before you confirm payment so there are no surprises.</p>`),
|
|
298
|
+
category: "shipping_delivery",
|
|
1560
299
|
showOnHomepage: false,
|
|
1561
300
|
showInFooter: false,
|
|
1562
301
|
isPinned: false,
|
|
1563
302
|
order: 3,
|
|
1564
|
-
priority:
|
|
1565
|
-
tags: ["
|
|
1566
|
-
relatedFAQs: [],
|
|
1567
|
-
useSiteSettings:
|
|
1568
|
-
variables:
|
|
1569
|
-
stats:
|
|
1570
|
-
seo: {
|
|
1571
|
-
slug: "change-email-address",
|
|
1572
|
-
metaTitle: "Change Email | LetItRip Account Settings",
|
|
1573
|
-
metaDescription: "Update your email in Account Settings. Verify new email to complete the change.",
|
|
1574
|
-
},
|
|
303
|
+
priority: 7,
|
|
304
|
+
tags: ["shipping", "free-shipping"],
|
|
305
|
+
relatedFAQs: ["faq-how-long-does-shipping-take", "faq-how-do-i-find-store-shipping-policy"],
|
|
306
|
+
useSiteSettings: true,
|
|
307
|
+
variables: {},
|
|
308
|
+
stats: makeStats(2100, 94),
|
|
309
|
+
seo: { slug: "faq-do-you-offer-free-shipping" },
|
|
1575
310
|
isActive: true,
|
|
1576
|
-
createdBy: "
|
|
311
|
+
createdBy: "user-admin-letitrip",
|
|
312
|
+
createdAt: daysAgo(90),
|
|
313
|
+
updatedAt: daysAgo(8),
|
|
1577
314
|
},
|
|
1578
315
|
{
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
316
|
+
id: "faq-how-to-track-my-order",
|
|
317
|
+
question: "How do I track my order?",
|
|
318
|
+
answer: html(`<p>Once your order is dispatched you receive a <strong>tracking link</strong> via email and WhatsApp. You can also track directly from your account: go to My Account → Orders and click <strong>"Track"</strong> next to any shipped order.</p><p>LetItRip supports tracking from Shiprocket, India Post, Delhivery, Ekart, and DTDC. If your tracking link does not update within 24 hours of the dispatch notification, message the seller through the order chat — sellers are required to respond within 12 hours. If they do not, raise an issue through My Account → Orders.</p>`),
|
|
319
|
+
category: "shipping_delivery",
|
|
1582
320
|
showOnHomepage: false,
|
|
1583
321
|
showInFooter: false,
|
|
1584
322
|
isPinned: false,
|
|
1585
323
|
order: 4,
|
|
1586
|
-
priority:
|
|
1587
|
-
tags: ["
|
|
1588
|
-
relatedFAQs: [],
|
|
1589
|
-
useSiteSettings:
|
|
1590
|
-
variables:
|
|
1591
|
-
stats:
|
|
1592
|
-
seo: {
|
|
1593
|
-
slug: "update-profile",
|
|
1594
|
-
metaTitle: "Update Profile | LetItRip Profile Settings",
|
|
1595
|
-
metaDescription: "Edit your name, phone, and photo in My Profile. Save changes to update account information.",
|
|
1596
|
-
},
|
|
324
|
+
priority: 7,
|
|
325
|
+
tags: ["tracking", "order", "shipment"],
|
|
326
|
+
relatedFAQs: ["faq-how-long-does-shipping-take"],
|
|
327
|
+
useSiteSettings: true,
|
|
328
|
+
variables: {},
|
|
329
|
+
stats: makeStats(1750, 78),
|
|
330
|
+
seo: { slug: "faq-how-to-track-my-order" },
|
|
1597
331
|
isActive: true,
|
|
1598
|
-
createdBy: "
|
|
332
|
+
createdBy: "user-admin-letitrip",
|
|
333
|
+
createdAt: daysAgo(90),
|
|
334
|
+
updatedAt: daysAgo(10),
|
|
1599
335
|
},
|
|
1600
336
|
{
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
337
|
+
id: "faq-do-you-ship-internationally",
|
|
338
|
+
question: "Do you ship internationally?",
|
|
339
|
+
answer: html(`<p>LetItRip currently serves delivery addresses within <strong>India only</strong>. International shipping is on our roadmap.</p><p>If you are an NRI wanting to send a gift to an Indian address, that works fine — enter the Indian delivery address at checkout. For international inquiries or high-value cross-border auction arrangements, email <strong>support@letitrip.in</strong> — we handle these on a case-by-case basis.</p>`),
|
|
340
|
+
category: "shipping_delivery",
|
|
1604
341
|
showOnHomepage: false,
|
|
1605
342
|
showInFooter: false,
|
|
1606
343
|
isPinned: false,
|
|
1607
344
|
order: 5,
|
|
1608
|
-
priority:
|
|
1609
|
-
tags: ["
|
|
345
|
+
priority: 5,
|
|
346
|
+
tags: ["international", "shipping"],
|
|
1610
347
|
relatedFAQs: [],
|
|
1611
|
-
useSiteSettings:
|
|
1612
|
-
variables:
|
|
1613
|
-
stats:
|
|
1614
|
-
seo: {
|
|
1615
|
-
slug: "multiple-addresses",
|
|
1616
|
-
metaTitle: "Multiple Addresses | LetItRip Delivery Options",
|
|
1617
|
-
metaDescription: "Save multiple delivery addresses. Set default or choose different address per order.",
|
|
1618
|
-
},
|
|
348
|
+
useSiteSettings: true,
|
|
349
|
+
variables: {},
|
|
350
|
+
stats: makeStats(980, 41),
|
|
351
|
+
seo: { slug: "faq-do-you-ship-internationally" },
|
|
1619
352
|
isActive: true,
|
|
1620
|
-
createdBy: "
|
|
353
|
+
createdBy: "user-admin-letitrip",
|
|
354
|
+
createdAt: daysAgo(90),
|
|
355
|
+
updatedAt: daysAgo(15),
|
|
1621
356
|
},
|
|
1622
357
|
{
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
358
|
+
id: "faq-what-happens-if-item-damaged-in-transit",
|
|
359
|
+
question: "What happens if my item is damaged in transit?",
|
|
360
|
+
answer: html(`<p>If your item arrives damaged, <strong>photograph everything before unwrapping further</strong> — the outer box, inner packaging, and the damage on the item itself. Then:</p><ol><li>Go to My Account → Orders → <strong>"Report Issue"</strong> within 48 hours of delivery.</li><li>Select "Item damaged in transit" and upload your photographs.</li><li>Do <strong>not</strong> confirm delivery until the dispute is resolved — confirming delivery releases payment to the seller.</li></ol><p>LetItRip will mediate between you and the seller. Most verified sellers carry basic transit insurance; items valued above ₹5,000 are automatically insured at declared value through our shipping partners.</p><p><strong>Note:</strong> packaging standards are set by each seller — LetItRip does not pack or handle physical items. Sellers who repeatedly dispatch inadequately packaged items lose their verified status.</p>`),
|
|
361
|
+
category: "shipping_delivery",
|
|
1626
362
|
showOnHomepage: false,
|
|
1627
363
|
showInFooter: false,
|
|
1628
364
|
isPinned: false,
|
|
1629
365
|
order: 6,
|
|
1630
|
-
priority:
|
|
1631
|
-
tags: ["
|
|
1632
|
-
relatedFAQs: [],
|
|
1633
|
-
useSiteSettings:
|
|
1634
|
-
variables:
|
|
1635
|
-
stats:
|
|
1636
|
-
seo: {
|
|
1637
|
-
slug: "delete-account",
|
|
1638
|
-
metaTitle: "Delete Account | LetItRip Account Removal",
|
|
1639
|
-
metaDescription: "Delete your account permanently from Account Settings. Action cannot be undone.",
|
|
1640
|
-
},
|
|
366
|
+
priority: 6,
|
|
367
|
+
tags: ["damaged", "transit", "insurance"],
|
|
368
|
+
relatedFAQs: ["faq-what-is-the-return-policy", "faq-how-to-raise-a-dispute"],
|
|
369
|
+
useSiteSettings: true,
|
|
370
|
+
variables: {},
|
|
371
|
+
stats: makeStats(1340, 72),
|
|
372
|
+
seo: { slug: "faq-what-happens-if-item-damaged-in-transit" },
|
|
1641
373
|
isActive: true,
|
|
1642
|
-
createdBy: "
|
|
374
|
+
createdBy: "user-admin-letitrip",
|
|
375
|
+
createdAt: daysAgo(85),
|
|
376
|
+
updatedAt: daysAgo(8),
|
|
1643
377
|
},
|
|
1644
378
|
{
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
379
|
+
id: "faq-can-i-change-delivery-address-after-order",
|
|
380
|
+
question: "Can I change my delivery address after placing an order?",
|
|
381
|
+
answer: html(`<p>Address changes after checkout depend on the order status:</p><ul><li><strong>Before dispatch ("Confirmed" or "Processing")</strong>: message the seller directly through the order chat and request the change. Most sellers will accommodate this if they haven't packed yet.</li><li><strong>After dispatch ("Shipped")</strong>: the parcel is already in the carrier's network. You will need to contact the carrier (using the tracking number) to request an address redirect — this is carrier-dependent and not guaranteed.</li></ul><p>LetItRip cannot modify a shipping label once created. Always double-check your delivery address at checkout.</p>`),
|
|
382
|
+
category: "shipping_delivery",
|
|
1648
383
|
showOnHomepage: false,
|
|
1649
384
|
showInFooter: false,
|
|
1650
385
|
isPinned: false,
|
|
1651
386
|
order: 7,
|
|
1652
387
|
priority: 5,
|
|
1653
|
-
tags: ["
|
|
1654
|
-
relatedFAQs: [],
|
|
1655
|
-
useSiteSettings:
|
|
1656
|
-
variables:
|
|
1657
|
-
stats:
|
|
388
|
+
tags: ["address", "delivery", "change"],
|
|
389
|
+
relatedFAQs: ["faq-can-i-cancel-my-order"],
|
|
390
|
+
useSiteSettings: true,
|
|
391
|
+
variables: {},
|
|
392
|
+
stats: makeStats(890, 38),
|
|
393
|
+
seo: { slug: "faq-can-i-change-delivery-address-after-order" },
|
|
394
|
+
isActive: true,
|
|
395
|
+
createdBy: "user-admin-letitrip",
|
|
396
|
+
createdAt: daysAgo(82),
|
|
397
|
+
updatedAt: daysAgo(9),
|
|
398
|
+
},
|
|
399
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
400
|
+
// RETURNS & REFUNDS (6 FAQs)
|
|
401
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
402
|
+
{
|
|
403
|
+
id: "faq-what-is-the-return-policy",
|
|
404
|
+
question: "What is the return policy on LetItRip?",
|
|
405
|
+
answer: html(`<p><strong>Return policies on LetItRip are set by individual stores — LetItRip does not impose a platform-wide return window.</strong> Before purchasing, always visit the store's About page to read their specific return rules. Return policies vary significantly between sellers and product types.</p><p>Common patterns among verified stores:</p><ul><li><strong>Sealed products</strong> (booster boxes, ETBs, sealed figures): 7-day return if factory seal is intact and item is in original condition.</li><li><strong>Graded slabs</strong>: 3-day return if the slab arrived cracked or the case is damaged (not for grading disagreements).</li><li><strong>Singles and loose items</strong>: 3-day return if the item is materially different from its description or photographs.</li><li><strong>Opened product</strong>: No returns in most cases — contents cannot be re-verified once opened.</li></ul><p>To initiate a return: My Account → Orders → <strong>"Return Item"</strong>. The seller must respond within 3 business days. LetItRip holds payment in escrow and mediates if the seller is unresponsive or disputes the return. Note that LetItRip's ability to force a refund is limited if the item is within the seller's stated non-returnable policy — we strongly encourage checking before you buy.</p>`),
|
|
406
|
+
category: "returns_refunds",
|
|
407
|
+
showOnHomepage: true,
|
|
408
|
+
showInFooter: true,
|
|
409
|
+
isPinned: true,
|
|
410
|
+
order: 1,
|
|
411
|
+
priority: 9,
|
|
412
|
+
tags: ["returns", "refunds", "policy"],
|
|
413
|
+
relatedFAQs: ["faq-does-letitrip-guarantee-returns", "faq-how-long-does-refund-take", "faq-what-if-seller-refuses-return"],
|
|
414
|
+
useSiteSettings: true,
|
|
415
|
+
variables: {},
|
|
416
|
+
stats: makeStats(4100, 204),
|
|
1658
417
|
seo: {
|
|
1659
|
-
slug: "
|
|
1660
|
-
metaTitle: "
|
|
1661
|
-
metaDescription: "
|
|
418
|
+
slug: "faq-what-is-the-return-policy",
|
|
419
|
+
metaTitle: "Return Policy on LetItRip — What Buyers Should Know",
|
|
420
|
+
metaDescription: "Return policies are set by each store on LetItRip, not the platform. Read the store's About page before buying.",
|
|
1662
421
|
},
|
|
1663
422
|
isActive: true,
|
|
1664
|
-
createdBy: "
|
|
423
|
+
createdBy: "user-admin-letitrip",
|
|
424
|
+
createdAt: daysAgo(90),
|
|
425
|
+
updatedAt: daysAgo(4),
|
|
1665
426
|
},
|
|
1666
427
|
{
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
428
|
+
id: "faq-does-letitrip-guarantee-returns",
|
|
429
|
+
question: "Does LetItRip guarantee refunds or returns?",
|
|
430
|
+
answer: html(`<p><strong>LetItRip is a marketplace platform — we are not the seller and cannot guarantee a refund in every situation.</strong> Here is an honest breakdown of what we can and cannot do:</p><p><strong>What LetItRip will do:</strong></p><ul><li>Hold your payment in escrow and only release it after you confirm delivery or after 5 days of confirmed delivery without a dispute.</li><li>Mediate disputes between you and the seller — our team reviews evidence and makes a recommendation.</li><li>Issue a full refund if an item is confirmed counterfeit, or if the seller does not respond within the required window.</li><li>Apply platform penalties (including suspension) to sellers who repeatedly fail buyers.</li></ul><p><strong>What LetItRip cannot guarantee:</strong></p><ul><li>A refund if the item matches the seller's listing description but you changed your mind (buyer's remorse).</li><li>A return if the seller's stated policy does not cover your situation and there is no material listing error.</li><li>Recovery of funds after you have confirmed delivery — confirming delivery releases escrow and closes the dispute window.</li></ul><p>Our best advice: read the store's return policy before buying, inspect every item before confirming delivery, and raise disputes promptly (within 5 days of delivery).</p>`),
|
|
431
|
+
category: "returns_refunds",
|
|
1670
432
|
showOnHomepage: false,
|
|
1671
433
|
showInFooter: false,
|
|
1672
434
|
isPinned: false,
|
|
1673
|
-
order:
|
|
1674
|
-
priority:
|
|
1675
|
-
tags: ["
|
|
1676
|
-
relatedFAQs: [],
|
|
1677
|
-
useSiteSettings:
|
|
1678
|
-
variables:
|
|
1679
|
-
stats:
|
|
1680
|
-
seo: {
|
|
1681
|
-
slug: "link-social-accounts",
|
|
1682
|
-
metaTitle: "Link Social Accounts | LetItRip Google & Apple",
|
|
1683
|
-
metaDescription: "Connect Google and Apple accounts for easier login. Manage in Account Settings.",
|
|
1684
|
-
},
|
|
435
|
+
order: 2,
|
|
436
|
+
priority: 9,
|
|
437
|
+
tags: ["returns", "guarantee", "platform", "risk", "escrow"],
|
|
438
|
+
relatedFAQs: ["faq-is-letitrip-safe-to-use", "faq-what-is-the-return-policy", "faq-how-to-raise-a-dispute"],
|
|
439
|
+
useSiteSettings: true,
|
|
440
|
+
variables: {},
|
|
441
|
+
stats: makeStats(2900, 164),
|
|
442
|
+
seo: { slug: "faq-does-letitrip-guarantee-returns" },
|
|
1685
443
|
isActive: true,
|
|
1686
|
-
createdBy: "
|
|
444
|
+
createdBy: "user-admin-letitrip",
|
|
445
|
+
createdAt: daysAgo(88),
|
|
446
|
+
updatedAt: daysAgo(3),
|
|
1687
447
|
},
|
|
1688
448
|
{
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
449
|
+
id: "faq-what-if-seller-refuses-return",
|
|
450
|
+
question: "What if the seller refuses my return request?",
|
|
451
|
+
answer: html(`<p>If a seller declines your return and you believe the refusal is unjustified, escalate to LetItRip:</p><ol><li>Go to My Account → Orders → <strong>"Escalate to LetItRip"</strong> (appears after seller declines).</li><li>Provide your evidence — photographs, the original listing description, and chat history with the seller.</li><li>LetItRip's team reviews within 48 hours and issues a binding decision.</li></ol><p><strong>Outcomes LetItRip can enforce:</strong></p><ul><li>Full or partial refund if the item does not match its description or is counterfeit.</li><li>Return at seller's cost if we determine the seller is at fault.</li></ul><p><strong>Outcomes outside LetItRip's control:</strong></p><ul><li>If the item accurately matches the listing and the seller's stated return policy does not cover your situation, we cannot override the seller's policy. This is why reading store policies before buying is so important.</li></ul><p>LetItRip will always try to find a fair resolution, but we are a platform — not an insurer.</p>`),
|
|
452
|
+
category: "returns_refunds",
|
|
1692
453
|
showOnHomepage: false,
|
|
1693
454
|
showInFooter: false,
|
|
1694
455
|
isPinned: false,
|
|
1695
|
-
order:
|
|
1696
|
-
priority:
|
|
1697
|
-
tags: ["
|
|
1698
|
-
relatedFAQs: [],
|
|
1699
|
-
useSiteSettings:
|
|
1700
|
-
variables:
|
|
1701
|
-
stats:
|
|
1702
|
-
seo: {
|
|
1703
|
-
slug: "email-preferences",
|
|
1704
|
-
metaTitle: "Email Preferences | LetItRip Notification Settings",
|
|
1705
|
-
metaDescription: "Manage email notifications in Account Settings. Choose which emails you want to receive.",
|
|
1706
|
-
},
|
|
456
|
+
order: 3,
|
|
457
|
+
priority: 8,
|
|
458
|
+
tags: ["returns", "dispute", "seller-refusal"],
|
|
459
|
+
relatedFAQs: ["faq-does-letitrip-guarantee-returns", "faq-how-to-raise-a-dispute"],
|
|
460
|
+
useSiteSettings: true,
|
|
461
|
+
variables: {},
|
|
462
|
+
stats: makeStats(2100, 118),
|
|
463
|
+
seo: { slug: "faq-what-if-seller-refuses-return" },
|
|
1707
464
|
isActive: true,
|
|
1708
|
-
createdBy: "
|
|
465
|
+
createdBy: "user-admin-letitrip",
|
|
466
|
+
createdAt: daysAgo(86),
|
|
467
|
+
updatedAt: daysAgo(5),
|
|
1709
468
|
},
|
|
1710
469
|
{
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
470
|
+
id: "faq-how-long-does-refund-take",
|
|
471
|
+
question: "How long does a refund take?",
|
|
472
|
+
answer: html(`<p>Once a return is approved and the item (where applicable) is received back by the seller, refunds are processed within:</p><ul><li><strong>UPI and bank transfer</strong>: 2–3 business days</li><li><strong>Razorpay (card/net banking/wallet)</strong>: 5–7 business days (subject to your bank's processing time)</li><li><strong>COD orders</strong>: refunded as LetItRip wallet credit, or by bank transfer (takes 3–5 days and requires bank details verification)</li></ul><p>If a refund is not received within 10 business days of approval, contact <strong>support@letitrip.in</strong> with your order ID — we escalate within 24 hours.</p>`),
|
|
473
|
+
category: "returns_refunds",
|
|
1714
474
|
showOnHomepage: false,
|
|
1715
475
|
showInFooter: false,
|
|
1716
476
|
isPinned: false,
|
|
1717
|
-
order:
|
|
477
|
+
order: 4,
|
|
1718
478
|
priority: 7,
|
|
1719
|
-
tags: ["
|
|
1720
|
-
relatedFAQs: [],
|
|
479
|
+
tags: ["refund", "timeline", "payment"],
|
|
480
|
+
relatedFAQs: ["faq-what-is-the-return-policy"],
|
|
1721
481
|
useSiteSettings: true,
|
|
1722
|
-
variables:
|
|
1723
|
-
stats:
|
|
1724
|
-
seo: {
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
482
|
+
variables: {},
|
|
483
|
+
stats: makeStats(2800, 132),
|
|
484
|
+
seo: { slug: "faq-how-long-does-refund-take" },
|
|
485
|
+
isActive: true,
|
|
486
|
+
createdBy: "user-admin-letitrip",
|
|
487
|
+
createdAt: daysAgo(90),
|
|
488
|
+
updatedAt: daysAgo(8),
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
id: "faq-can-i-cancel-my-order",
|
|
492
|
+
question: "Can I cancel my order?",
|
|
493
|
+
answer: html(`<p>You can cancel an order <strong>before the seller dispatches it</strong>. Once dispatched, cancellation converts to a return request (subject to the seller's return policy).</p><p>To cancel: My Account → Orders → <strong>"Cancel Order"</strong>. A full refund is issued immediately if cancelled pre-dispatch. If the seller has already packed (status "Processing"), they may charge a restocking fee at their discretion — this is shown before you confirm the cancellation.</p><p><strong>Auction wins and pre-order deposits are non-refundable</strong> once the auction has closed or the pre-order window has ended. These are binding commitments — see the relevant FAQ sections for details.</p>`),
|
|
494
|
+
category: "returns_refunds",
|
|
495
|
+
showOnHomepage: false,
|
|
496
|
+
showInFooter: false,
|
|
497
|
+
isPinned: false,
|
|
498
|
+
order: 5,
|
|
499
|
+
priority: 6,
|
|
500
|
+
tags: ["cancel", "order"],
|
|
501
|
+
relatedFAQs: ["faq-how-long-does-refund-take"],
|
|
502
|
+
useSiteSettings: true,
|
|
503
|
+
variables: {},
|
|
504
|
+
stats: makeStats(3200, 148),
|
|
505
|
+
seo: { slug: "faq-can-i-cancel-my-order" },
|
|
1729
506
|
isActive: true,
|
|
1730
|
-
createdBy: "
|
|
507
|
+
createdBy: "user-admin-letitrip",
|
|
508
|
+
createdAt: daysAgo(90),
|
|
509
|
+
updatedAt: daysAgo(5),
|
|
1731
510
|
},
|
|
1732
|
-
// ============================================
|
|
1733
|
-
// PRODUCTS (15 FAQs)
|
|
1734
|
-
// ============================================
|
|
1735
511
|
{
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
512
|
+
id: "faq-how-to-raise-a-dispute",
|
|
513
|
+
question: "How do I raise a dispute on LetItRip?",
|
|
514
|
+
answer: html(`<p>The dispute window is open for <strong>5 days after confirmed delivery</strong>. Do not confirm delivery until you have inspected the item — confirming delivery closes the dispute window and releases payment to the seller.</p><p>To raise a dispute:</p><ol><li>Go to My Account → Orders → find the relevant order.</li><li>Click <strong>"Report Issue"</strong>.</li><li>Select the issue type (Not as described / Counterfeit / Damaged / Not received).</li><li>Upload supporting evidence (photos, screenshots of the original listing).</li><li>Submit — the seller is notified and has 48 hours to respond.</li></ol><p>If the seller does not respond or the dispute is not resolved within 5 business days, click "Escalate to LetItRip" for platform review. We issue a binding decision within 48 hours of escalation.</p>`),
|
|
515
|
+
category: "returns_refunds",
|
|
1739
516
|
showOnHomepage: false,
|
|
1740
517
|
showInFooter: false,
|
|
1741
518
|
isPinned: false,
|
|
519
|
+
order: 6,
|
|
520
|
+
priority: 8,
|
|
521
|
+
tags: ["dispute", "report", "issue"],
|
|
522
|
+
relatedFAQs: ["faq-does-letitrip-guarantee-returns", "faq-what-if-seller-refuses-return"],
|
|
523
|
+
useSiteSettings: true,
|
|
524
|
+
variables: {},
|
|
525
|
+
stats: makeStats(2400, 126),
|
|
526
|
+
seo: { slug: "faq-how-to-raise-a-dispute" },
|
|
527
|
+
isActive: true,
|
|
528
|
+
createdBy: "user-admin-letitrip",
|
|
529
|
+
createdAt: daysAgo(85),
|
|
530
|
+
updatedAt: daysAgo(4),
|
|
531
|
+
},
|
|
532
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
533
|
+
// ORDERS & PAYMENT (8 FAQs)
|
|
534
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
535
|
+
{
|
|
536
|
+
id: "faq-what-payment-methods-are-accepted",
|
|
537
|
+
question: "What payment methods does LetItRip accept?",
|
|
538
|
+
answer: html(`<p>LetItRip accepts all major Indian payment methods via Razorpay:</p><ul><li><strong>UPI</strong> — Google Pay, PhonePe, Paytm, BHIM, any UPI-enabled app</li><li><strong>Debit/Credit Cards</strong> — Visa, Mastercard, RuPay, Amex</li><li><strong>Net Banking</strong> — all major Indian banks</li><li><strong>EMI</strong> — 0% on Bajaj Finserv and select bank cards for orders above ₹3,000</li><li><strong>Cash on Delivery (COD)</strong> — for orders up to ₹10,000 (requires a 20% online deposit at checkout)</li></ul><p>All payments are processed via Razorpay (PCI-DSS Level 1 compliant). LetItRip never stores your card details.</p>`),
|
|
539
|
+
category: "orders_payment",
|
|
540
|
+
showOnHomepage: false,
|
|
541
|
+
showInFooter: true,
|
|
542
|
+
isPinned: true,
|
|
1742
543
|
order: 1,
|
|
1743
|
-
priority:
|
|
1744
|
-
tags: ["
|
|
1745
|
-
relatedFAQs: [],
|
|
1746
|
-
useSiteSettings:
|
|
1747
|
-
variables:
|
|
1748
|
-
stats:
|
|
1749
|
-
seo: {
|
|
1750
|
-
slug: "search-products",
|
|
1751
|
-
metaTitle: "Search Products | LetItRip Product Discovery",
|
|
1752
|
-
metaDescription: "Search by keywords, brands, or names. Filter by category, price, and ratings for easy discovery.",
|
|
1753
|
-
},
|
|
544
|
+
priority: 10,
|
|
545
|
+
tags: ["payment", "upi", "card", "cod"],
|
|
546
|
+
relatedFAQs: ["faq-is-it-safe-to-pay-on-letitrip", "faq-is-cod-available"],
|
|
547
|
+
useSiteSettings: true,
|
|
548
|
+
variables: {},
|
|
549
|
+
stats: makeStats(5100, 248),
|
|
550
|
+
seo: { slug: "faq-what-payment-methods-are-accepted" },
|
|
1754
551
|
isActive: true,
|
|
1755
|
-
createdBy: "
|
|
552
|
+
createdBy: "user-admin-letitrip",
|
|
553
|
+
createdAt: daysAgo(90),
|
|
554
|
+
updatedAt: daysAgo(5),
|
|
1756
555
|
},
|
|
1757
556
|
{
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
557
|
+
id: "faq-how-does-escrow-work",
|
|
558
|
+
question: "How does escrow payment work on LetItRip?",
|
|
559
|
+
answer: html(`<p>Escrow is the core of LetItRip's buyer protection. Here is exactly how it works:</p><ol><li><strong>You pay at checkout</strong> — funds go to Razorpay's secure escrow. The seller does not receive them yet.</li><li><strong>Seller dispatches</strong> — once you have paid, the seller ships within their stated window.</li><li><strong>You inspect and confirm</strong> — when the item arrives, inspect it carefully. If everything is correct, click "Confirm Delivery" in My Account → Orders. This releases the payment to the seller.</li><li><strong>Auto-release</strong> — if you do not take action within 5 days of the courier marking the shipment as delivered, the payment is automatically released to the seller.</li></ol><p><strong>Critical:</strong> Do not click "Confirm Delivery" unless you are satisfied. Once confirmed, the escrow window closes and LetItRip's ability to hold funds is limited. For disputes, act within 5 days of delivery.</p>`),
|
|
560
|
+
category: "orders_payment",
|
|
561
|
+
showOnHomepage: false,
|
|
1762
562
|
showInFooter: false,
|
|
1763
563
|
isPinned: false,
|
|
1764
564
|
order: 2,
|
|
1765
|
-
priority:
|
|
1766
|
-
tags: ["
|
|
1767
|
-
relatedFAQs: [],
|
|
1768
|
-
useSiteSettings:
|
|
1769
|
-
variables:
|
|
1770
|
-
stats:
|
|
1771
|
-
seo: {
|
|
1772
|
-
slug: "product-auctions",
|
|
1773
|
-
metaTitle: "Product Auctions | LetItRip Bidding Guide",
|
|
1774
|
-
metaDescription: "Bid on auction items. Highest bidder at end time wins. Payment instructions sent via email.",
|
|
1775
|
-
},
|
|
565
|
+
priority: 9,
|
|
566
|
+
tags: ["escrow", "payment", "protection"],
|
|
567
|
+
relatedFAQs: ["faq-is-letitrip-safe-to-use", "faq-how-to-raise-a-dispute"],
|
|
568
|
+
useSiteSettings: true,
|
|
569
|
+
variables: {},
|
|
570
|
+
stats: makeStats(3600, 192),
|
|
571
|
+
seo: { slug: "faq-how-does-escrow-work" },
|
|
1776
572
|
isActive: true,
|
|
1777
|
-
createdBy: "
|
|
573
|
+
createdBy: "user-admin-letitrip",
|
|
574
|
+
createdAt: daysAgo(88),
|
|
575
|
+
updatedAt: daysAgo(4),
|
|
1778
576
|
},
|
|
1779
577
|
{
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
578
|
+
id: "faq-is-it-safe-to-pay-on-letitrip",
|
|
579
|
+
question: "Is it safe to pay on LetItRip?",
|
|
580
|
+
answer: html(`<p>Yes — LetItRip uses an <strong>escrow model</strong> via Razorpay (PCI-DSS Level 1). Your payment is held securely and only released to the seller after you confirm delivery or after 5 days of confirmed delivery without a dispute.</p><p>LetItRip is registered under the Indian IT Act and complies with Consumer Protection (E-Commerce) Rules 2020. Our platform fee (shown transparently at checkout) is the only charge — no hidden fees.</p><p>That said, <strong>your vigilance matters too</strong>: inspect every item before confirming delivery, raise disputes within the 5-day window, and never pay outside the LetItRip platform (e.g., UPI to a seller's personal number). LetItRip cannot protect payments made outside our checkout.</p>`),
|
|
581
|
+
category: "orders_payment",
|
|
1783
582
|
showOnHomepage: false,
|
|
1784
583
|
showInFooter: false,
|
|
1785
584
|
isPinned: false,
|
|
1786
585
|
order: 3,
|
|
1787
|
-
priority:
|
|
1788
|
-
tags: ["
|
|
1789
|
-
relatedFAQs: [],
|
|
1790
|
-
useSiteSettings:
|
|
1791
|
-
variables:
|
|
1792
|
-
stats:
|
|
1793
|
-
seo: {
|
|
1794
|
-
slug: "save-products-wishlist",
|
|
1795
|
-
metaTitle: "Wishlist | LetItRip Save Products",
|
|
1796
|
-
metaDescription: "Save products to wishlist by clicking heart icon. Access saved items from My Wishlist.",
|
|
1797
|
-
},
|
|
586
|
+
priority: 8,
|
|
587
|
+
tags: ["payment", "security", "escrow", "safe"],
|
|
588
|
+
relatedFAQs: ["faq-how-does-escrow-work"],
|
|
589
|
+
useSiteSettings: true,
|
|
590
|
+
variables: {},
|
|
591
|
+
stats: makeStats(2400, 108),
|
|
592
|
+
seo: { slug: "faq-is-it-safe-to-pay-on-letitrip" },
|
|
1798
593
|
isActive: true,
|
|
1799
|
-
createdBy: "
|
|
594
|
+
createdBy: "user-admin-letitrip",
|
|
595
|
+
createdAt: daysAgo(90),
|
|
596
|
+
updatedAt: daysAgo(6),
|
|
1800
597
|
},
|
|
1801
598
|
{
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
599
|
+
id: "faq-what-are-letitrip-platform-fees",
|
|
600
|
+
question: "What are LetItRip's fees for buyers and sellers?",
|
|
601
|
+
answer: html(`<p><strong>For buyers:</strong> LetItRip charges no additional fee to buyers. The price you see is the price you pay (plus any shipping set by the seller). Payment processing fees are absorbed by the platform.</p><p><strong>For sellers:</strong> LetItRip charges a commission on successful sales:</p><ul><li><strong>Standard listings</strong>: 5% platform fee + 2.36% Razorpay processing (total ~7.36%)</li><li><strong>Auction listings</strong>: 5% platform fee + 2.36% Razorpay processing on the final hammer price</li><li><strong>Pre-order listings</strong>: 5% platform fee on the total order value at fulfilment</li></ul><p>There are no listing fees — you only pay when you sell. Promoted listings (optional) are charged separately at a flat rate set during promotion setup.</p>`),
|
|
602
|
+
category: "orders_payment",
|
|
1805
603
|
showOnHomepage: false,
|
|
1806
604
|
showInFooter: false,
|
|
1807
605
|
isPinned: false,
|
|
1808
606
|
order: 4,
|
|
1809
|
-
priority:
|
|
1810
|
-
tags: ["
|
|
1811
|
-
relatedFAQs: [],
|
|
1812
|
-
useSiteSettings:
|
|
1813
|
-
variables:
|
|
1814
|
-
stats:
|
|
1815
|
-
seo: {
|
|
1816
|
-
slug: "product-stock-availability",
|
|
1817
|
-
metaTitle: "Product Availability | LetItRip Stock Status",
|
|
1818
|
-
metaDescription: "In-stock products show Add to Cart. Out-of-stock items offer notification option.",
|
|
1819
|
-
},
|
|
607
|
+
priority: 7,
|
|
608
|
+
tags: ["fees", "commission", "platform-fee", "sellers"],
|
|
609
|
+
relatedFAQs: ["faq-how-do-seller-payouts-work"],
|
|
610
|
+
useSiteSettings: true,
|
|
611
|
+
variables: {},
|
|
612
|
+
stats: makeStats(2200, 98),
|
|
613
|
+
seo: { slug: "faq-what-are-letitrip-platform-fees" },
|
|
1820
614
|
isActive: true,
|
|
1821
|
-
createdBy: "
|
|
615
|
+
createdBy: "user-admin-letitrip",
|
|
616
|
+
createdAt: daysAgo(87),
|
|
617
|
+
updatedAt: daysAgo(5),
|
|
1822
618
|
},
|
|
1823
619
|
{
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
620
|
+
id: "faq-is-cod-available",
|
|
621
|
+
question: "Is Cash on Delivery (COD) available?",
|
|
622
|
+
answer: html(`<p>COD is available on LetItRip for orders up to <strong>₹10,000</strong>, subject to the seller enabling it for their store. Not all stores offer COD — check the payment options on the checkout page for the specific seller.</p><p>COD requires a <strong>20% online deposit</strong> at checkout to confirm the order. The remaining 80% is paid to the delivery agent on delivery. If you refuse delivery, the 20% deposit is non-refundable (it covers the seller's reverse-logistics cost).</p><p>COD is not available for auction wins or pre-orders — these require full online payment.</p>`),
|
|
623
|
+
category: "orders_payment",
|
|
1827
624
|
showOnHomepage: false,
|
|
1828
625
|
showInFooter: false,
|
|
1829
626
|
isPinned: false,
|
|
1830
627
|
order: 5,
|
|
1831
|
-
priority:
|
|
1832
|
-
tags: ["
|
|
1833
|
-
relatedFAQs: [],
|
|
1834
|
-
useSiteSettings:
|
|
1835
|
-
variables:
|
|
1836
|
-
stats:
|
|
1837
|
-
seo: {
|
|
1838
|
-
slug: "product-ratings",
|
|
1839
|
-
metaTitle: "Product Ratings | LetItRip Review System",
|
|
1840
|
-
metaDescription: "1-5 star ratings from verified buyers. Read reviews for quality, fit, and value feedback.",
|
|
1841
|
-
},
|
|
628
|
+
priority: 6,
|
|
629
|
+
tags: ["cod", "cash-on-delivery", "payment"],
|
|
630
|
+
relatedFAQs: ["faq-what-payment-methods-are-accepted"],
|
|
631
|
+
useSiteSettings: true,
|
|
632
|
+
variables: {},
|
|
633
|
+
stats: makeStats(1700, 74),
|
|
634
|
+
seo: { slug: "faq-is-cod-available" },
|
|
1842
635
|
isActive: true,
|
|
1843
|
-
createdBy: "
|
|
636
|
+
createdBy: "user-admin-letitrip",
|
|
637
|
+
createdAt: daysAgo(86),
|
|
638
|
+
updatedAt: daysAgo(7),
|
|
1844
639
|
},
|
|
1845
640
|
{
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
641
|
+
id: "faq-can-i-use-multiple-coupons",
|
|
642
|
+
question: "Can I use multiple coupon codes on one order?",
|
|
643
|
+
answer: html(`<p>Yes — LetItRip supports stacking one <strong>platform coupon</strong> (issued by LetItRip) and one <strong>seller coupon</strong> (issued by the store) on the same order. Two platform coupons cannot be stacked — the higher-value one is applied automatically.</p><p>Coupon restrictions (minimum order value, applicable categories, first-order only) still apply per coupon. Check the coupon's terms at checkout before assuming it applies to your order.</p>`),
|
|
644
|
+
category: "orders_payment",
|
|
1849
645
|
showOnHomepage: false,
|
|
1850
646
|
showInFooter: false,
|
|
1851
647
|
isPinned: false,
|
|
1852
648
|
order: 6,
|
|
1853
|
-
priority:
|
|
1854
|
-
tags: ["
|
|
649
|
+
priority: 6,
|
|
650
|
+
tags: ["coupon", "discount"],
|
|
1855
651
|
relatedFAQs: [],
|
|
1856
|
-
useSiteSettings:
|
|
1857
|
-
variables:
|
|
1858
|
-
stats:
|
|
1859
|
-
seo: {
|
|
1860
|
-
slug: "write-product-review",
|
|
1861
|
-
metaTitle: "Write Review | LetItRip Product Feedback",
|
|
1862
|
-
metaDescription: "Write reviews after delivery from My Orders. Share your experience to help other buyers.",
|
|
1863
|
-
},
|
|
652
|
+
useSiteSettings: true,
|
|
653
|
+
variables: {},
|
|
654
|
+
stats: makeStats(1900, 82),
|
|
655
|
+
seo: { slug: "faq-can-i-use-multiple-coupons" },
|
|
1864
656
|
isActive: true,
|
|
1865
|
-
createdBy: "
|
|
657
|
+
createdBy: "user-admin-letitrip",
|
|
658
|
+
createdAt: daysAgo(88),
|
|
659
|
+
updatedAt: daysAgo(6),
|
|
1866
660
|
},
|
|
1867
661
|
{
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
662
|
+
id: "faq-why-was-my-payment-declined",
|
|
663
|
+
question: "Why was my payment declined?",
|
|
664
|
+
answer: html(`<p>Common causes:</p><ul><li><strong>Insufficient funds</strong> in your bank account or UPI-linked account</li><li><strong>Daily UPI limit exceeded</strong> — UPI has a ₹1 lakh/day limit per bank</li><li><strong>Card not enabled for online/international transactions</strong> — enable via your bank's mobile app</li><li><strong>Bank 2FA failed</strong> — wrong OTP or OTP expired</li><li><strong>VPN active</strong> — Razorpay may block payments from VPN IPs as a fraud precaution</li></ul><p>Try a different payment method or browser. The Razorpay error code shown at checkout identifies the exact cause. Contact <strong>support@letitrip.in</strong> with the error code for faster resolution.</p>`),
|
|
665
|
+
category: "orders_payment",
|
|
1871
666
|
showOnHomepage: false,
|
|
1872
667
|
showInFooter: false,
|
|
1873
668
|
isPinned: false,
|
|
1874
669
|
order: 7,
|
|
1875
|
-
priority:
|
|
1876
|
-
tags: ["
|
|
1877
|
-
relatedFAQs: [],
|
|
1878
|
-
useSiteSettings:
|
|
1879
|
-
variables:
|
|
1880
|
-
stats:
|
|
1881
|
-
seo: {
|
|
1882
|
-
slug: "promoted-products",
|
|
1883
|
-
metaTitle: "Promoted Products | LetItRip Sponsored Listings",
|
|
1884
|
-
metaDescription: "Promoted products are paid ads appearing at top of search and category pages.",
|
|
1885
|
-
},
|
|
670
|
+
priority: 7,
|
|
671
|
+
tags: ["payment", "declined", "error"],
|
|
672
|
+
relatedFAQs: ["faq-what-payment-methods-are-accepted"],
|
|
673
|
+
useSiteSettings: true,
|
|
674
|
+
variables: {},
|
|
675
|
+
stats: makeStats(2100, 92),
|
|
676
|
+
seo: { slug: "faq-why-was-my-payment-declined" },
|
|
1886
677
|
isActive: true,
|
|
1887
|
-
createdBy: "
|
|
678
|
+
createdBy: "user-admin-letitrip",
|
|
679
|
+
createdAt: daysAgo(88),
|
|
680
|
+
updatedAt: daysAgo(9),
|
|
1888
681
|
},
|
|
1889
682
|
{
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
683
|
+
id: "faq-gst-invoice-for-my-order",
|
|
684
|
+
question: "Can I get a GST invoice for my order?",
|
|
685
|
+
answer: html(`<p>GST invoices are issued by individual sellers. Enter your <strong>GSTIN</strong> in the Billing Details section at checkout. The seller generates a GST-compliant invoice downloadable from My Account → Orders → <strong>"Download Invoice"</strong> once the order is confirmed.</p><p>Not all sellers are GST-registered — sellers with turnover below ₹40 lakh are exempt. LetItRip's platform fee (if applicable) is always GST-inclusive at 18%, and a receipt is in your account.</p>`),
|
|
686
|
+
category: "orders_payment",
|
|
1893
687
|
showOnHomepage: false,
|
|
1894
688
|
showInFooter: false,
|
|
1895
689
|
isPinned: false,
|
|
1896
690
|
order: 8,
|
|
1897
691
|
priority: 5,
|
|
1898
|
-
tags: ["
|
|
692
|
+
tags: ["gst", "invoice", "billing"],
|
|
1899
693
|
relatedFAQs: [],
|
|
1900
|
-
useSiteSettings:
|
|
1901
|
-
variables:
|
|
1902
|
-
stats:
|
|
694
|
+
useSiteSettings: true,
|
|
695
|
+
variables: {},
|
|
696
|
+
stats: makeStats(1100, 48),
|
|
697
|
+
seo: { slug: "faq-gst-invoice-for-my-order" },
|
|
698
|
+
isActive: true,
|
|
699
|
+
createdBy: "user-admin-letitrip",
|
|
700
|
+
createdAt: daysAgo(85),
|
|
701
|
+
updatedAt: daysAgo(10),
|
|
702
|
+
},
|
|
703
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
704
|
+
// PRODUCT INFORMATION (8 FAQs)
|
|
705
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
706
|
+
{
|
|
707
|
+
id: "faq-how-do-pre-orders-work",
|
|
708
|
+
question: "How do pre-orders work on LetItRip?",
|
|
709
|
+
answer: html(`<p>Pre-orders let you reserve upcoming collectibles before they arrive in India:</p><ol><li>Browse pre-order listings — each shows an estimated delivery window (e.g., "Shipping in 45–60 days").</li><li>Pay a <strong>deposit</strong> (typically 20–30% of the total price) to secure your unit.</li><li>The remaining balance is charged automatically when the item is ready to ship.</li><li>If the seller cancels the pre-order, your deposit is refunded in full within 5 business days.</li></ol><p>Pre-orders are available for Beyblade X new releases, Pokémon booster boxes, S.H.Figuarts, Nendoroids, and Hot Wheels RLC exclusives. <strong>Estimated delivery windows are set by sellers</strong> — delays are possible (see the pre-order delay FAQ).</p>`),
|
|
710
|
+
category: "product_information",
|
|
711
|
+
showOnHomepage: true,
|
|
712
|
+
showInFooter: false,
|
|
713
|
+
isPinned: true,
|
|
714
|
+
order: 1,
|
|
715
|
+
priority: 10,
|
|
716
|
+
tags: ["pre-order", "deposit", "how-to"],
|
|
717
|
+
relatedFAQs: ["faq-can-i-cancel-a-pre-order", "faq-what-if-preorder-delayed"],
|
|
718
|
+
useSiteSettings: true,
|
|
719
|
+
variables: {},
|
|
720
|
+
stats: makeStats(4700, 224),
|
|
1903
721
|
seo: {
|
|
1904
|
-
slug: "
|
|
1905
|
-
metaTitle: "
|
|
1906
|
-
metaDescription: "
|
|
722
|
+
slug: "faq-how-do-pre-orders-work",
|
|
723
|
+
metaTitle: "How Do Pre-Orders Work on LetItRip?",
|
|
724
|
+
metaDescription: "Pre-orders on LetItRip let you reserve upcoming Pokémon, Beyblade X, and anime figures with a deposit.",
|
|
1907
725
|
},
|
|
1908
726
|
isActive: true,
|
|
1909
|
-
createdBy: "
|
|
727
|
+
createdBy: "user-admin-letitrip",
|
|
728
|
+
createdAt: daysAgo(90),
|
|
729
|
+
updatedAt: daysAgo(2),
|
|
1910
730
|
},
|
|
1911
731
|
{
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
732
|
+
id: "faq-can-i-cancel-a-pre-order",
|
|
733
|
+
question: "Can I cancel a pre-order?",
|
|
734
|
+
answer: html(`<p>You can cancel a pre-order <strong>before the seller marks it "In Production"</strong> — your deposit is fully refunded within 5 business days. After "In Production" status, cancellation may result in the deposit being forfeited (this is disclosed on the listing before you pay).</p><p>If the estimated delivery date shifts by more than 60 days, LetItRip gives you a 7-day window to cancel with a full deposit refund regardless of production status.</p>`),
|
|
735
|
+
category: "product_information",
|
|
1915
736
|
showOnHomepage: false,
|
|
1916
737
|
showInFooter: false,
|
|
1917
738
|
isPinned: false,
|
|
1918
|
-
order:
|
|
1919
|
-
priority:
|
|
1920
|
-
tags: ["
|
|
1921
|
-
relatedFAQs: [],
|
|
1922
|
-
useSiteSettings:
|
|
1923
|
-
variables:
|
|
1924
|
-
stats:
|
|
1925
|
-
seo: {
|
|
1926
|
-
slug: "product-warranty",
|
|
1927
|
-
metaTitle: "Product Warranty | LetItRip Warranty Information",
|
|
1928
|
-
metaDescription: "Warranty terms in product description. Manufacturer or seller warranty depending on item.",
|
|
1929
|
-
},
|
|
739
|
+
order: 2,
|
|
740
|
+
priority: 8,
|
|
741
|
+
tags: ["pre-order", "cancel", "deposit"],
|
|
742
|
+
relatedFAQs: ["faq-how-do-pre-orders-work"],
|
|
743
|
+
useSiteSettings: true,
|
|
744
|
+
variables: {},
|
|
745
|
+
stats: makeStats(2900, 134),
|
|
746
|
+
seo: { slug: "faq-can-i-cancel-a-pre-order" },
|
|
1930
747
|
isActive: true,
|
|
1931
|
-
createdBy: "
|
|
748
|
+
createdBy: "user-admin-letitrip",
|
|
749
|
+
createdAt: daysAgo(88),
|
|
750
|
+
updatedAt: daysAgo(5),
|
|
1932
751
|
},
|
|
1933
752
|
{
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
753
|
+
id: "faq-what-if-preorder-delayed",
|
|
754
|
+
question: "What if my pre-order is delayed?",
|
|
755
|
+
answer: html(`<p>Collectibles pre-orders frequently experience delays due to production issues, customs clearance, or distributor problems — this is normal in the hobby. LetItRip's policy:</p><ul><li><strong>Minor delay (under 30 days)</strong>: seller updates the date and notifies you. No action required unless you want to cancel.</li><li><strong>Major delay (30–60 days)</strong>: LetItRip sends a notification. You have 7 days to cancel with a full deposit refund.</li><li><strong>Excessive delay (over 60 days)</strong>: LetItRip may initiate a full refund if the seller cannot provide a confirmed new date within 14 days.</li></ul><p>Track your pre-order's current status in My Account → Orders.</p>`),
|
|
756
|
+
category: "product_information",
|
|
1937
757
|
showOnHomepage: false,
|
|
1938
758
|
showInFooter: false,
|
|
1939
759
|
isPinned: false,
|
|
1940
|
-
order:
|
|
1941
|
-
priority:
|
|
1942
|
-
tags: ["
|
|
1943
|
-
relatedFAQs: [],
|
|
1944
|
-
useSiteSettings:
|
|
1945
|
-
variables:
|
|
1946
|
-
stats:
|
|
1947
|
-
seo: {
|
|
1948
|
-
slug: "request-product",
|
|
1949
|
-
metaTitle: "Request Product | LetItRip Product Requests",
|
|
1950
|
-
metaDescription: "Request unlisted products via Help section. We work with sellers based on demand.",
|
|
1951
|
-
},
|
|
760
|
+
order: 3,
|
|
761
|
+
priority: 7,
|
|
762
|
+
tags: ["pre-order", "delay"],
|
|
763
|
+
relatedFAQs: ["faq-how-do-pre-orders-work", "faq-can-i-cancel-a-pre-order"],
|
|
764
|
+
useSiteSettings: true,
|
|
765
|
+
variables: {},
|
|
766
|
+
stats: makeStats(2100, 94),
|
|
767
|
+
seo: { slug: "faq-what-if-preorder-delayed" },
|
|
1952
768
|
isActive: true,
|
|
1953
|
-
createdBy: "
|
|
769
|
+
createdBy: "user-admin-letitrip",
|
|
770
|
+
createdAt: daysAgo(85),
|
|
771
|
+
updatedAt: daysAgo(7),
|
|
1954
772
|
},
|
|
1955
773
|
{
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
774
|
+
id: "faq-are-preorder-products-authentic",
|
|
775
|
+
question: "Are pre-order products guaranteed to be authentic?",
|
|
776
|
+
answer: html(`<p>All pre-orders on LetItRip must be from <strong>verified sellers</strong> sourcing directly from official distributors or brand-authorised retailers. Every pre-order listing must include proof of distributor agreement reviewed by LetItRip before going live.</p><p>For pre-orders above ₹10,000, sellers must provide a distributor invoice at dispatch. Confirmed counterfeit = full refund + immediate seller suspension.</p><p>That said, LetItRip does not physically inspect pre-order stock before dispatch. We rely on seller documentation and post-delivery buyer reporting. If you receive something that appears non-authentic, raise a dispute immediately — do not confirm delivery.</p>`),
|
|
777
|
+
category: "product_information",
|
|
1959
778
|
showOnHomepage: false,
|
|
1960
779
|
showInFooter: false,
|
|
1961
780
|
isPinned: false,
|
|
1962
|
-
order:
|
|
1963
|
-
priority:
|
|
1964
|
-
tags: ["
|
|
1965
|
-
relatedFAQs: [],
|
|
1966
|
-
useSiteSettings:
|
|
1967
|
-
variables:
|
|
1968
|
-
stats:
|
|
1969
|
-
seo: {
|
|
1970
|
-
slug: "product-photos-accuracy",
|
|
1971
|
-
metaTitle: "Product Photos | LetItRip Image Accuracy",
|
|
1972
|
-
metaDescription: "Sellers use actual photos. Slight color variations may occur. Check description for details.",
|
|
1973
|
-
},
|
|
781
|
+
order: 4,
|
|
782
|
+
priority: 6,
|
|
783
|
+
tags: ["pre-order", "authentic", "verified"],
|
|
784
|
+
relatedFAQs: ["faq-how-do-i-report-a-fake-item"],
|
|
785
|
+
useSiteSettings: true,
|
|
786
|
+
variables: {},
|
|
787
|
+
stats: makeStats(1500, 66),
|
|
788
|
+
seo: { slug: "faq-are-preorder-products-authentic" },
|
|
1974
789
|
isActive: true,
|
|
1975
|
-
createdBy: "
|
|
790
|
+
createdBy: "user-admin-letitrip",
|
|
791
|
+
createdAt: daysAgo(82),
|
|
792
|
+
updatedAt: daysAgo(9),
|
|
1976
793
|
},
|
|
1977
794
|
{
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
795
|
+
id: "faq-what-condition-grades-does-letitrip-use",
|
|
796
|
+
question: "What item condition grades does LetItRip use?",
|
|
797
|
+
answer: html(`<p>All listings on LetItRip must disclose item condition using our standard grading scale:</p><ul><li><strong>Mint / Brand New (M)</strong> — factory sealed or never used, no imperfections</li><li><strong>Near Mint (NM)</strong> — opened but essentially perfect; minimal handling, no visible wear</li><li><strong>Lightly Played (LP)</strong> — minor wear visible under close inspection; no creases, scratches, or heavy marks</li><li><strong>Moderately Played (MP)</strong> — visible wear, minor scratches or edge wear; still functional/displayable</li><li><strong>Heavily Played (HP)</strong> — significant wear; creases, heavy edge wear, or discolouration present</li><li><strong>Damaged (D)</strong> — major defects; cracks, tears, or heavy damage disclosed in listing</li></ul><p>For graded cards or figures, the grade is set by the grading company (PSA, BGS, CGC, AFA) — not by LetItRip or the seller. Grading disputes must be raised with the grading company directly.</p>`),
|
|
798
|
+
category: "product_information",
|
|
1981
799
|
showOnHomepage: false,
|
|
1982
800
|
showInFooter: false,
|
|
1983
801
|
isPinned: false,
|
|
1984
|
-
order:
|
|
1985
|
-
priority:
|
|
1986
|
-
tags: ["
|
|
1987
|
-
relatedFAQs: [],
|
|
1988
|
-
useSiteSettings:
|
|
1989
|
-
variables:
|
|
1990
|
-
stats:
|
|
1991
|
-
seo: {
|
|
1992
|
-
slug: "product-categories",
|
|
1993
|
-
metaTitle: "Product Categories | LetItRip Browse Shopping",
|
|
1994
|
-
metaDescription: "Shop by category: Electronics, Fashion, Home, Beauty, Sports, Books, Toys, and more.",
|
|
1995
|
-
},
|
|
802
|
+
order: 5,
|
|
803
|
+
priority: 7,
|
|
804
|
+
tags: ["condition", "grading", "near-mint"],
|
|
805
|
+
relatedFAQs: ["faq-what-is-a-graded-slab-psa-bgs"],
|
|
806
|
+
useSiteSettings: true,
|
|
807
|
+
variables: {},
|
|
808
|
+
stats: makeStats(1800, 84),
|
|
809
|
+
seo: { slug: "faq-what-condition-grades-does-letitrip-use" },
|
|
1996
810
|
isActive: true,
|
|
1997
|
-
createdBy: "
|
|
811
|
+
createdBy: "user-admin-letitrip",
|
|
812
|
+
createdAt: daysAgo(84),
|
|
813
|
+
updatedAt: daysAgo(6),
|
|
1998
814
|
},
|
|
1999
815
|
{
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
816
|
+
id: "faq-what-is-a-graded-slab-psa-bgs",
|
|
817
|
+
question: "What is a graded card or slab (PSA, BGS, CGC)?",
|
|
818
|
+
answer: html(`<p>A <strong>graded slab</strong> is a trading card that has been professionally authenticated and graded by a third-party grading company and encapsulated in a tamper-evident hard plastic case.</p><p>The major grading companies:</p><ul><li><strong>PSA (Professional Sports Authenticator)</strong> — the most recognised. Grades on a 1–10 scale. PSA 10 = Gem Mint (the highest).</li><li><strong>BGS (Beckett Grading Services)</strong> — also 1–10, with sub-grades for centering, corners, edges, and surface. BGS 9.5 "Gem Mint" is highly sought after.</li><li><strong>CGC (Certified Guaranty Company)</strong> — originally a comics grader, now popular for Pokémon. CGC 10 = Pristine.</li></ul><p>On LetItRip, all graded slab listings must display the cert/certificate number so buyers can verify the grade on the grading company's website before purchasing. If a slab arrives with a cracked case or mismatched cert number, raise a dispute immediately.</p>`),
|
|
819
|
+
category: "product_information",
|
|
2003
820
|
showOnHomepage: false,
|
|
2004
821
|
showInFooter: false,
|
|
2005
822
|
isPinned: false,
|
|
2006
|
-
order:
|
|
2007
|
-
priority:
|
|
2008
|
-
tags: ["
|
|
2009
|
-
relatedFAQs: [],
|
|
2010
|
-
useSiteSettings:
|
|
2011
|
-
variables:
|
|
2012
|
-
stats:
|
|
2013
|
-
seo: {
|
|
2014
|
-
slug: "new-products",
|
|
2015
|
-
metaTitle: "New Products | LetItRip Latest Arrivals",
|
|
2016
|
-
metaDescription: "New products added daily. Check New Arrivals or enable category notifications.",
|
|
2017
|
-
},
|
|
823
|
+
order: 6,
|
|
824
|
+
priority: 7,
|
|
825
|
+
tags: ["graded-slab", "psa", "bgs", "cgc", "pokemon", "authentication"],
|
|
826
|
+
relatedFAQs: ["faq-what-condition-grades-does-letitrip-use", "faq-how-to-spot-fake-pokemon-cards-authentication"],
|
|
827
|
+
useSiteSettings: true,
|
|
828
|
+
variables: {},
|
|
829
|
+
stats: makeStats(2400, 114),
|
|
830
|
+
seo: { slug: "faq-what-is-a-graded-slab-psa-bgs" },
|
|
2018
831
|
isActive: true,
|
|
2019
|
-
createdBy: "
|
|
832
|
+
createdBy: "user-admin-letitrip",
|
|
833
|
+
createdAt: daysAgo(83),
|
|
834
|
+
updatedAt: daysAgo(5),
|
|
2020
835
|
},
|
|
2021
836
|
{
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
837
|
+
id: "faq-how-to-spot-fake-pokemon-cards-authentication",
|
|
838
|
+
question: "How do I spot fake Pokémon cards and authenticate collectibles?",
|
|
839
|
+
answer: html(`<p>Counterfeit collectibles are a real risk in secondary markets. Here's how to protect yourself on LetItRip and in general:</p><p><strong>Pokémon Cards:</strong></p><ul><li><strong>Light test</strong> — hold the card up to a bright light. Genuine cards have a black layer in the middle that blocks most light; fakes are often lighter or fully translucent.</li><li><strong>Bend test</strong> — real cards have a slight snap and return to shape. Fakes feel flimsy or don't snap back. (Only do this on cards you already own.)</li><li><strong>Print quality</strong> — genuine cards have sharp, fine printing; fakes often show dot patterns, blurry text, or washed-out colours.</li><li><strong>Rip test</strong> — genuine cards have a distinctive black inner layer. Never do this to a card you're buying — ask the seller for a light test video.</li></ul><p><strong>Graded Slabs:</strong></p><ul><li>Verify the cert number on PSA's, BGS's, or CGC's official website before paying.</li><li>Inspect the slab for tampering — the label should be sealed inside with no gaps.</li></ul><p><strong>Hot Wheels Redlines / Vintage:</strong></p><ul><li>Repainted castings are common — look for matching wheel colours, original tampos (decals), and period-correct packaging.</li></ul><p>If you're unsure about a listing, ask the seller for additional photos or a video authentication. Sellers on LetItRip are required to respond to authentication requests within 24 hours.</p>`),
|
|
840
|
+
category: "product_information",
|
|
841
|
+
showOnHomepage: true,
|
|
2026
842
|
showInFooter: false,
|
|
2027
843
|
isPinned: false,
|
|
2028
|
-
order:
|
|
2029
|
-
priority:
|
|
2030
|
-
tags: ["
|
|
2031
|
-
relatedFAQs: [],
|
|
844
|
+
order: 7,
|
|
845
|
+
priority: 8,
|
|
846
|
+
tags: ["fake", "counterfeit", "pokemon", "authentication", "graded-slab"],
|
|
847
|
+
relatedFAQs: ["faq-how-do-i-report-a-fake-item", "faq-what-is-a-graded-slab-psa-bgs"],
|
|
2032
848
|
useSiteSettings: true,
|
|
2033
|
-
variables:
|
|
2034
|
-
stats:
|
|
849
|
+
variables: {},
|
|
850
|
+
stats: makeStats(5200, 278),
|
|
2035
851
|
seo: {
|
|
2036
|
-
slug: "
|
|
2037
|
-
metaTitle: "
|
|
2038
|
-
metaDescription: "
|
|
852
|
+
slug: "faq-how-to-spot-fake-pokemon-cards-authentication",
|
|
853
|
+
metaTitle: "How to Spot Fake Pokémon Cards and Authenticate Collectibles",
|
|
854
|
+
metaDescription: "Light test, print quality, graded slab cert checks — a buyer's guide to authenticating Pokémon cards, slabs, and collectibles.",
|
|
2039
855
|
},
|
|
2040
856
|
isActive: true,
|
|
2041
|
-
createdBy: "
|
|
857
|
+
createdBy: "user-admin-letitrip",
|
|
858
|
+
createdAt: daysAgo(80),
|
|
859
|
+
updatedAt: daysAgo(3),
|
|
2042
860
|
},
|
|
2043
861
|
{
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
862
|
+
id: "faq-what-is-beyblade-x",
|
|
863
|
+
question: "What is Beyblade X and where can I buy it in India?",
|
|
864
|
+
answer: html(`<p><strong>Beyblade X</strong> is the latest generation of Beyblade, launched by Takara Tomy in Japan in 2023. It features a new "X" gear system inside the bit — when activated, the top accelerates and launches out of the stadium for dramatic finishes. Beyblade X tops are officially called <em>Beys</em> and require an XStadium for correct play.</p><p>On LetItRip, verified sellers import official Takara Tomy Beyblade X products directly from Japan. You can buy:</p><ul><li>Individual tops (Dran Sword, Hells Scythe, Knight Shield, and more)</li><li>Launchers and cords</li><li>XStadiums (full-size and compact)</li><li>Booster and starter sets</li></ul><p>Browse the <strong>Beyblade X category</strong> on LetItRip and filter by seller rating to find trusted importers. Always confirm you are buying official Takara Tomy product — cheap Chinese counterfeits are common and do not perform correctly.</p>`),
|
|
865
|
+
category: "product_information",
|
|
2047
866
|
showOnHomepage: false,
|
|
2048
867
|
showInFooter: false,
|
|
2049
868
|
isPinned: false,
|
|
2050
|
-
order:
|
|
2051
|
-
priority:
|
|
2052
|
-
tags: ["
|
|
2053
|
-
relatedFAQs: [],
|
|
2054
|
-
useSiteSettings:
|
|
2055
|
-
variables:
|
|
2056
|
-
stats:
|
|
869
|
+
order: 8,
|
|
870
|
+
priority: 6,
|
|
871
|
+
tags: ["beyblade-x", "takara-tomy", "spinning-tops", "india"],
|
|
872
|
+
relatedFAQs: ["faq-how-do-i-report-a-fake-item"],
|
|
873
|
+
useSiteSettings: true,
|
|
874
|
+
variables: {},
|
|
875
|
+
stats: makeStats(3800, 178),
|
|
2057
876
|
seo: {
|
|
2058
|
-
slug: "
|
|
2059
|
-
metaTitle: "
|
|
2060
|
-
metaDescription: "
|
|
877
|
+
slug: "faq-what-is-beyblade-x",
|
|
878
|
+
metaTitle: "What is Beyblade X? Buy Official Takara Tomy in India",
|
|
879
|
+
metaDescription: "Beyblade X is the latest Beyblade generation. Buy official Takara Tomy imports in India on LetItRip.",
|
|
2061
880
|
},
|
|
2062
881
|
isActive: true,
|
|
2063
|
-
createdBy: "
|
|
882
|
+
createdBy: "user-admin-letitrip",
|
|
883
|
+
createdAt: daysAgo(78),
|
|
884
|
+
updatedAt: daysAgo(4),
|
|
2064
885
|
},
|
|
2065
|
-
//
|
|
2066
|
-
//
|
|
2067
|
-
//
|
|
886
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
887
|
+
// ACCOUNT & SECURITY (7 FAQs)
|
|
888
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
2068
889
|
{
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
890
|
+
id: "faq-how-do-i-create-an-account",
|
|
891
|
+
question: "How do I create a LetItRip account?",
|
|
892
|
+
answer: html(`<p>Creating a LetItRip account is free and takes under a minute:</p><ol><li>Click <strong>Sign Up</strong> on any page.</li><li>Enter your email address and create a password, or sign up with Google.</li><li>Verify your email address — we send a verification link immediately.</li><li>Complete your profile (display name, optional phone number for WhatsApp updates).</li></ol><p>You can browse and wishlist items without an account, but you need an account to buy, bid, or sell. Phone verification is required for COD orders and bidding on auctions above ₹5,000.</p>`),
|
|
893
|
+
category: "account_security",
|
|
2072
894
|
showOnHomepage: false,
|
|
2073
|
-
showInFooter:
|
|
895
|
+
showInFooter: false,
|
|
2074
896
|
isPinned: false,
|
|
2075
897
|
order: 1,
|
|
2076
898
|
priority: 8,
|
|
2077
|
-
tags: ["
|
|
2078
|
-
relatedFAQs: [],
|
|
2079
|
-
useSiteSettings:
|
|
2080
|
-
variables:
|
|
2081
|
-
stats:
|
|
2082
|
-
seo: {
|
|
2083
|
-
slug: "become-seller",
|
|
2084
|
-
metaTitle: "Become a Seller | LetItRip Seller Registration",
|
|
2085
|
-
metaDescription: "Register as seller with business details and documents. Verification in 2-3 days.",
|
|
2086
|
-
},
|
|
899
|
+
tags: ["account", "sign-up", "register"],
|
|
900
|
+
relatedFAQs: ["faq-how-do-i-become-a-verified-seller"],
|
|
901
|
+
useSiteSettings: true,
|
|
902
|
+
variables: {},
|
|
903
|
+
stats: makeStats(2200, 98),
|
|
904
|
+
seo: { slug: "faq-how-do-i-create-an-account" },
|
|
2087
905
|
isActive: true,
|
|
2088
|
-
createdBy: "
|
|
906
|
+
createdBy: "user-admin-letitrip",
|
|
907
|
+
createdAt: daysAgo(88),
|
|
908
|
+
updatedAt: daysAgo(6),
|
|
2089
909
|
},
|
|
2090
910
|
{
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
category:
|
|
911
|
+
id: "faq-how-do-i-become-a-verified-seller",
|
|
912
|
+
question: "How do I become a verified seller on LetItRip?",
|
|
913
|
+
answer: html(`<p>Selling on LetItRip requires manual verification — we review every store before approval. To apply:</p><ol><li>Go to My Account → <strong>Become a Seller</strong>.</li><li>Fill in your store details: store name, category, bio, and shipping policy.</li><li>Complete KYC: submit a government-issued ID (Aadhaar, PAN, or passport) and a selfie for identity verification.</li><li>Provide bank account or UPI details for payouts.</li><li>Our team reviews your application within 2–3 business days and approves or requests more information.</li></ol><p>Approval criteria include: valid KYC documents, a credible store description, and no history of fraudulent activity on LetItRip or associated platforms. Individual sellers and small businesses are both welcome.</p>`),
|
|
914
|
+
category: "account_security",
|
|
2094
915
|
showOnHomepage: false,
|
|
2095
|
-
showInFooter:
|
|
916
|
+
showInFooter: true,
|
|
2096
917
|
isPinned: false,
|
|
2097
918
|
order: 2,
|
|
2098
|
-
priority:
|
|
2099
|
-
tags: ["
|
|
2100
|
-
relatedFAQs: [],
|
|
2101
|
-
useSiteSettings:
|
|
2102
|
-
variables:
|
|
2103
|
-
stats:
|
|
919
|
+
priority: 9,
|
|
920
|
+
tags: ["seller", "verification", "kyc", "store"],
|
|
921
|
+
relatedFAQs: ["faq-what-is-kyc-verification", "faq-how-do-seller-payouts-work"],
|
|
922
|
+
useSiteSettings: true,
|
|
923
|
+
variables: {},
|
|
924
|
+
stats: makeStats(3100, 148),
|
|
2104
925
|
seo: {
|
|
2105
|
-
slug: "seller
|
|
2106
|
-
metaTitle: "
|
|
2107
|
-
metaDescription: "
|
|
926
|
+
slug: "faq-how-do-i-become-a-verified-seller",
|
|
927
|
+
metaTitle: "How to Become a Verified Seller on LetItRip",
|
|
928
|
+
metaDescription: "Apply to sell collectibles on LetItRip. Manual KYC verification and 2–3 day approval for Indian sellers.",
|
|
2108
929
|
},
|
|
2109
930
|
isActive: true,
|
|
2110
|
-
createdBy: "
|
|
931
|
+
createdBy: "user-admin-letitrip",
|
|
932
|
+
createdAt: daysAgo(87),
|
|
933
|
+
updatedAt: daysAgo(4),
|
|
2111
934
|
},
|
|
2112
935
|
{
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
936
|
+
id: "faq-what-is-kyc-verification",
|
|
937
|
+
question: "What is KYC verification and why is it required?",
|
|
938
|
+
answer: html(`<p>KYC (Know Your Customer) is a mandatory identity verification process required by Indian financial regulations for any platform that processes payments. LetItRip requires KYC for sellers (to enable payouts) and for buyers making high-value purchases or COD orders above ₹5,000.</p><p><strong>What KYC involves:</strong></p><ul><li>A government-issued photo ID (Aadhaar card, PAN card, or passport)</li><li>A selfie for liveness verification</li><li>Bank account or UPI details (sellers only, for payouts)</li></ul><p>Your KYC data is stored encrypted and is never shared with sellers, buyers, or third parties beyond what is required by law. LetItRip uses a DPDP-compliant document verification partner.</p>`),
|
|
939
|
+
category: "account_security",
|
|
2116
940
|
showOnHomepage: false,
|
|
2117
941
|
showInFooter: false,
|
|
2118
942
|
isPinned: false,
|
|
2119
943
|
order: 3,
|
|
2120
944
|
priority: 7,
|
|
2121
|
-
tags: ["
|
|
2122
|
-
relatedFAQs: [],
|
|
2123
|
-
useSiteSettings:
|
|
2124
|
-
variables:
|
|
2125
|
-
stats:
|
|
2126
|
-
seo: {
|
|
2127
|
-
slug: "list-products",
|
|
2128
|
-
metaTitle: "List Products | LetItRip Seller Guide",
|
|
2129
|
-
metaDescription: "Add products from Seller Dashboard. Fill details, set shipping, publish. Live after review.",
|
|
2130
|
-
},
|
|
945
|
+
tags: ["kyc", "verification", "identity", "aadhaar"],
|
|
946
|
+
relatedFAQs: ["faq-how-do-i-become-a-verified-seller"],
|
|
947
|
+
useSiteSettings: true,
|
|
948
|
+
variables: {},
|
|
949
|
+
stats: makeStats(1900, 88),
|
|
950
|
+
seo: { slug: "faq-what-is-kyc-verification" },
|
|
2131
951
|
isActive: true,
|
|
2132
|
-
createdBy: "
|
|
952
|
+
createdBy: "user-admin-letitrip",
|
|
953
|
+
createdAt: daysAgo(86),
|
|
954
|
+
updatedAt: daysAgo(5),
|
|
2133
955
|
},
|
|
2134
956
|
{
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
957
|
+
id: "faq-how-do-i-reset-my-password",
|
|
958
|
+
question: "How do I reset my password?",
|
|
959
|
+
answer: html(`<p>On the login page, click <strong>"Forgot Password"</strong> and enter your registered email address. We send a password reset link immediately — it expires in 1 hour.</p><p>If you signed up with Google and don't have a password, use the "Continue with Google" button — there is no separate LetItRip password to reset.</p><p>If you no longer have access to your registered email, contact <strong>support@letitrip.in</strong> with your registered phone number for account recovery.</p>`),
|
|
960
|
+
category: "account_security",
|
|
2138
961
|
showOnHomepage: false,
|
|
2139
962
|
showInFooter: false,
|
|
2140
963
|
isPinned: false,
|
|
2141
964
|
order: 4,
|
|
2142
|
-
priority:
|
|
2143
|
-
tags: ["
|
|
2144
|
-
relatedFAQs: [],
|
|
2145
|
-
useSiteSettings:
|
|
2146
|
-
variables:
|
|
2147
|
-
stats:
|
|
2148
|
-
seo: {
|
|
2149
|
-
slug: "seller-payments",
|
|
2150
|
-
metaTitle: "Seller Payments | LetItRip Payout Schedule",
|
|
2151
|
-
metaDescription: "Payments released 7 platform days after delivery (day starts 10 AM IST). Transferred to bank.",
|
|
2152
|
-
},
|
|
965
|
+
priority: 6,
|
|
966
|
+
tags: ["password", "reset", "login"],
|
|
967
|
+
relatedFAQs: ["faq-how-do-i-protect-my-account"],
|
|
968
|
+
useSiteSettings: true,
|
|
969
|
+
variables: {},
|
|
970
|
+
stats: makeStats(1400, 64),
|
|
971
|
+
seo: { slug: "faq-how-do-i-reset-my-password" },
|
|
2153
972
|
isActive: true,
|
|
2154
|
-
createdBy: "
|
|
973
|
+
createdBy: "user-admin-letitrip",
|
|
974
|
+
createdAt: daysAgo(85),
|
|
975
|
+
updatedAt: daysAgo(7),
|
|
2155
976
|
},
|
|
2156
977
|
{
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
978
|
+
id: "faq-can-i-have-multiple-accounts",
|
|
979
|
+
question: "Can I have multiple LetItRip accounts?",
|
|
980
|
+
answer: html(`<p><strong>No.</strong> LetItRip permits one account per individual. Operating multiple buyer or seller accounts (for example, to bypass a suspension, accumulate separate feedback, or exploit welcome offers) is a violation of our Terms of Service and will result in all associated accounts being permanently banned.</p><p>If you are a business with multiple trading entities, contact <strong>support@letitrip.in</strong> before creating a second store — we have a process for multi-brand sellers under a single verified identity.</p>`),
|
|
981
|
+
category: "account_security",
|
|
2160
982
|
showOnHomepage: false,
|
|
2161
983
|
showInFooter: false,
|
|
2162
984
|
isPinned: false,
|
|
2163
985
|
order: 5,
|
|
2164
|
-
priority:
|
|
2165
|
-
tags: ["
|
|
986
|
+
priority: 5,
|
|
987
|
+
tags: ["account", "multiple", "ban"],
|
|
2166
988
|
relatedFAQs: [],
|
|
2167
|
-
useSiteSettings:
|
|
2168
|
-
variables:
|
|
2169
|
-
stats:
|
|
2170
|
-
seo: {
|
|
2171
|
-
slug: "promote-products",
|
|
2172
|
-
metaTitle: "Promote Products | LetItRip Seller Advertising",
|
|
2173
|
-
metaDescription: "Promote products from Seller Dashboard. Top search placement starts at ₹10/day.",
|
|
2174
|
-
},
|
|
989
|
+
useSiteSettings: true,
|
|
990
|
+
variables: {},
|
|
991
|
+
stats: makeStats(820, 36),
|
|
992
|
+
seo: { slug: "faq-can-i-have-multiple-accounts" },
|
|
2175
993
|
isActive: true,
|
|
2176
|
-
createdBy: "
|
|
994
|
+
createdBy: "user-admin-letitrip",
|
|
995
|
+
createdAt: daysAgo(84),
|
|
996
|
+
updatedAt: daysAgo(8),
|
|
2177
997
|
},
|
|
2178
998
|
{
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
999
|
+
id: "faq-how-do-i-delete-my-account",
|
|
1000
|
+
question: "How do I delete my LetItRip account?",
|
|
1001
|
+
answer: html(`<p>You can request account deletion from My Account → Settings → <strong>"Delete Account"</strong>. Before deletion:</p><ul><li>All open orders must be completed or cancelled.</li><li>Any active listings must be closed.</li><li>Any pending seller payouts will be processed before the account is removed.</li></ul><p>Account deletion is <strong>permanent and irreversible</strong> — your order history, reviews, and profile data will be removed within 30 days in accordance with DPDP regulations. If you only want to take a break, you can deactivate your account instead (My Account → Settings → "Deactivate Account") — this hides your profile and listings without deleting data.</p>`),
|
|
1002
|
+
category: "account_security",
|
|
2182
1003
|
showOnHomepage: false,
|
|
2183
1004
|
showInFooter: false,
|
|
2184
1005
|
isPinned: false,
|
|
2185
1006
|
order: 6,
|
|
2186
|
-
priority:
|
|
2187
|
-
tags: ["
|
|
1007
|
+
priority: 5,
|
|
1008
|
+
tags: ["delete", "account", "privacy"],
|
|
2188
1009
|
relatedFAQs: [],
|
|
2189
|
-
useSiteSettings:
|
|
2190
|
-
variables:
|
|
2191
|
-
stats:
|
|
2192
|
-
seo: {
|
|
2193
|
-
slug: "seller-documents",
|
|
2194
|
-
metaTitle: "Seller Documents | LetItRip Registration Requirements",
|
|
2195
|
-
metaDescription: "Required docs: PAN, GST, bank details, address proof, ID proof for seller registration.",
|
|
2196
|
-
},
|
|
1010
|
+
useSiteSettings: true,
|
|
1011
|
+
variables: {},
|
|
1012
|
+
stats: makeStats(740, 32),
|
|
1013
|
+
seo: { slug: "faq-how-do-i-delete-my-account" },
|
|
2197
1014
|
isActive: true,
|
|
2198
|
-
createdBy: "
|
|
1015
|
+
createdBy: "user-admin-letitrip",
|
|
1016
|
+
createdAt: daysAgo(82),
|
|
1017
|
+
updatedAt: daysAgo(9),
|
|
2199
1018
|
},
|
|
2200
1019
|
{
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
1020
|
+
id: "faq-how-do-i-protect-my-account",
|
|
1021
|
+
question: "How do I keep my LetItRip account secure?",
|
|
1022
|
+
answer: html(`<p>Best practices for account security on LetItRip:</p><ul><li><strong>Use a strong, unique password</strong> — don't reuse passwords from other sites.</li><li><strong>Enable 2-Step Verification</strong> (2FA) in My Account → Settings → Security. We support SMS OTP and authenticator apps.</li><li><strong>Never share your login details</strong> — LetItRip support will never ask for your password.</li><li><strong>Watch for phishing</strong> — all official LetItRip emails come from @letitrip.in. Be suspicious of any message asking you to click a payment link outside the platform.</li><li><strong>Never pay outside LetItRip</strong> — if a seller asks you to UPI them directly or use a third-party app, report it immediately. Off-platform payments are not covered by escrow.</li></ul><p>If you suspect your account has been compromised, change your password immediately and contact <strong>support@letitrip.in</strong>.</p>`),
|
|
1023
|
+
category: "account_security",
|
|
2204
1024
|
showOnHomepage: false,
|
|
2205
1025
|
showInFooter: false,
|
|
2206
1026
|
isPinned: false,
|
|
2207
1027
|
order: 7,
|
|
2208
|
-
priority:
|
|
2209
|
-
tags: ["
|
|
2210
|
-
relatedFAQs: [],
|
|
2211
|
-
useSiteSettings:
|
|
2212
|
-
variables:
|
|
2213
|
-
stats:
|
|
2214
|
-
seo: {
|
|
2215
|
-
slug: "manage-inventory",
|
|
2216
|
-
metaTitle: "Inventory Management | LetItRip Seller Dashboard",
|
|
2217
|
-
metaDescription: "Manage stock levels, set alerts, bulk upload via CSV in Seller Dashboard.",
|
|
2218
|
-
},
|
|
1028
|
+
priority: 7,
|
|
1029
|
+
tags: ["security", "2fa", "phishing", "password"],
|
|
1030
|
+
relatedFAQs: ["faq-how-do-i-reset-my-password"],
|
|
1031
|
+
useSiteSettings: true,
|
|
1032
|
+
variables: {},
|
|
1033
|
+
stats: makeStats(1200, 56),
|
|
1034
|
+
seo: { slug: "faq-how-do-i-protect-my-account" },
|
|
2219
1035
|
isActive: true,
|
|
2220
|
-
createdBy: "
|
|
1036
|
+
createdBy: "user-admin-letitrip",
|
|
1037
|
+
createdAt: daysAgo(81),
|
|
1038
|
+
updatedAt: daysAgo(6),
|
|
2221
1039
|
},
|
|
1040
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
1041
|
+
// TECHNICAL SUPPORT (7 FAQs)
|
|
1042
|
+
// ══════════════════════════════════════════════════════════════════════════
|
|
2222
1043
|
{
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
1044
|
+
id: "faq-app-not-loading",
|
|
1045
|
+
question: "The LetItRip website or app is not loading — what should I do?",
|
|
1046
|
+
answer: html(`<p>Try these steps in order:</p><ol><li><strong>Refresh the page</strong> and wait 10 seconds — brief server timeouts are usually self-resolving.</li><li><strong>Clear your browser cache</strong> (Ctrl+Shift+R on desktop; Safari → Settings → Clear History on iOS).</li><li><strong>Check your internet connection</strong> — try loading another website or switching between WiFi and mobile data.</li><li><strong>Disable browser extensions</strong> — ad blockers occasionally interfere with our checkout flow.</li><li><strong>Try a different browser</strong> — LetItRip works best on Chrome, Firefox, and Safari (latest versions).</li></ol><p>If the issue persists, check our status page or email <strong>support@letitrip.in</strong> describing the error (screenshot if possible) and your browser/device details.</p>`),
|
|
1047
|
+
category: "technical_support",
|
|
2226
1048
|
showOnHomepage: false,
|
|
2227
1049
|
showInFooter: false,
|
|
2228
1050
|
isPinned: false,
|
|
2229
|
-
order:
|
|
2230
|
-
priority:
|
|
2231
|
-
tags: ["
|
|
2232
|
-
relatedFAQs: [],
|
|
2233
|
-
useSiteSettings:
|
|
2234
|
-
variables:
|
|
2235
|
-
stats:
|
|
2236
|
-
seo: {
|
|
2237
|
-
slug: "seller-rating",
|
|
2238
|
-
metaTitle: "Seller Rating | LetItRip Performance Metrics",
|
|
2239
|
-
metaDescription: "1-5 star rating based on reviews, fulfillment, quality, service. High ratings boost visibility.",
|
|
2240
|
-
},
|
|
1051
|
+
order: 1,
|
|
1052
|
+
priority: 7,
|
|
1053
|
+
tags: ["app", "loading", "technical", "browser"],
|
|
1054
|
+
relatedFAQs: ["faq-how-do-i-contact-support"],
|
|
1055
|
+
useSiteSettings: true,
|
|
1056
|
+
variables: {},
|
|
1057
|
+
stats: makeStats(1100, 48),
|
|
1058
|
+
seo: { slug: "faq-app-not-loading" },
|
|
2241
1059
|
isActive: true,
|
|
2242
|
-
createdBy: "
|
|
1060
|
+
createdBy: "user-admin-letitrip",
|
|
1061
|
+
createdAt: daysAgo(80),
|
|
1062
|
+
updatedAt: daysAgo(7),
|
|
2243
1063
|
},
|
|
2244
1064
|
{
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
1065
|
+
id: "faq-why-was-my-listing-rejected",
|
|
1066
|
+
question: "Why was my listing rejected?",
|
|
1067
|
+
answer: html(`<p>Listings are reviewed before going live. Common rejection reasons:</p><ul><li><strong>Insufficient photographs</strong> — all listings require at least 3 photos from different angles; condition flaws must be photographed and disclosed.</li><li><strong>Missing or incomplete condition disclosure</strong> — every item's condition grade must be explicitly stated.</li><li><strong>Prohibited items</strong> — bootlegs, unlicensed proxies, opened-and-resealed products (without disclosure), and items with removed serial stickers are not permitted.</li><li><strong>Misleading title or description</strong> — using brand names inaccurately (e.g., listing a non-Nintendo product as "official Nintendo").</li><li><strong>Price below platform minimum</strong> — listings must meet a minimum price threshold to cover payment processing costs.</li></ul><p>Rejection emails include the specific reason. Fix the issue and resubmit — resubmissions are reviewed within 12 hours. If you believe the rejection was in error, email <strong>support@letitrip.in</strong> with your listing ID.</p>`),
|
|
1068
|
+
category: "technical_support",
|
|
2248
1069
|
showOnHomepage: false,
|
|
2249
1070
|
showInFooter: false,
|
|
2250
1071
|
isPinned: false,
|
|
2251
|
-
order:
|
|
2252
|
-
priority:
|
|
2253
|
-
tags: ["
|
|
2254
|
-
relatedFAQs: [],
|
|
2255
|
-
useSiteSettings:
|
|
2256
|
-
variables:
|
|
2257
|
-
stats:
|
|
2258
|
-
seo: {
|
|
2259
|
-
slug: "seller-discounts",
|
|
2260
|
-
metaTitle: "Seller Discounts | LetItRip Coupon Creation",
|
|
2261
|
-
metaDescription: "Create discount codes in Promotions. Set amounts, minimums, expiry, usage limits.",
|
|
2262
|
-
},
|
|
1072
|
+
order: 2,
|
|
1073
|
+
priority: 7,
|
|
1074
|
+
tags: ["listing", "rejected", "seller"],
|
|
1075
|
+
relatedFAQs: ["faq-can-i-edit-a-listing-after-publishing"],
|
|
1076
|
+
useSiteSettings: true,
|
|
1077
|
+
variables: {},
|
|
1078
|
+
stats: makeStats(1600, 72),
|
|
1079
|
+
seo: { slug: "faq-why-was-my-listing-rejected" },
|
|
2263
1080
|
isActive: true,
|
|
2264
|
-
createdBy: "
|
|
1081
|
+
createdBy: "user-admin-letitrip",
|
|
1082
|
+
createdAt: daysAgo(79),
|
|
1083
|
+
updatedAt: daysAgo(5),
|
|
2265
1084
|
},
|
|
2266
1085
|
{
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
1086
|
+
id: "faq-how-do-i-upload-product-images",
|
|
1087
|
+
question: "What are the image requirements for listings?",
|
|
1088
|
+
answer: html(`<p>Image requirements for all LetItRip listings:</p><ul><li><strong>Minimum 3 photos</strong> — front, back, and at least one close-up of condition-relevant areas</li><li><strong>Format</strong>: JPG or PNG, minimum 800×800px, maximum 20MB per image</li><li><strong>Background</strong>: clean, neutral background preferred (white or grey); avoid busy backgrounds that obscure the item</li><li><strong>No watermarks or stock photos</strong> — all photos must be of the actual item you are selling</li><li><strong>Condition flaws must be photographed</strong> — any scratches, dents, creases, or missing parts must appear in at least one photo; failure to disclose is grounds for a refund and listing removal</li></ul><p>Listings with more photos (6–10) statistically sell faster and receive fewer disputes. Use natural lighting where possible.</p>`),
|
|
1089
|
+
category: "technical_support",
|
|
2270
1090
|
showOnHomepage: false,
|
|
2271
1091
|
showInFooter: false,
|
|
2272
1092
|
isPinned: false,
|
|
2273
|
-
order:
|
|
1093
|
+
order: 3,
|
|
2274
1094
|
priority: 6,
|
|
2275
|
-
tags: ["
|
|
2276
|
-
relatedFAQs: [],
|
|
2277
|
-
useSiteSettings:
|
|
2278
|
-
variables:
|
|
2279
|
-
stats:
|
|
2280
|
-
seo: {
|
|
2281
|
-
slug: "seller-returns",
|
|
2282
|
-
metaTitle: "Seller Returns | LetItRip Return Management",
|
|
2283
|
-
metaDescription: "Manage returns in Dashboard. Review, approve/reject in 24h, arrange pickup, process refunds.",
|
|
2284
|
-
},
|
|
1095
|
+
tags: ["images", "listing", "seller", "photos"],
|
|
1096
|
+
relatedFAQs: ["faq-why-was-my-listing-rejected"],
|
|
1097
|
+
useSiteSettings: true,
|
|
1098
|
+
variables: {},
|
|
1099
|
+
stats: makeStats(1300, 58),
|
|
1100
|
+
seo: { slug: "faq-how-do-i-upload-product-images" },
|
|
2285
1101
|
isActive: true,
|
|
2286
|
-
createdBy: "
|
|
1102
|
+
createdBy: "user-admin-letitrip",
|
|
1103
|
+
createdAt: daysAgo(78),
|
|
1104
|
+
updatedAt: daysAgo(6),
|
|
2287
1105
|
},
|
|
2288
1106
|
{
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
1107
|
+
id: "faq-why-is-my-account-suspended",
|
|
1108
|
+
question: "Why has my account been suspended?",
|
|
1109
|
+
answer: html(`<p>Accounts are suspended automatically or manually for the following reasons:</p><ul><li><strong>Seller</strong>: multiple confirmed counterfeit reports, 3+ non-dispatch strikes, sustained negative buyer feedback below 3.0 stars, or a chargeback ratio above platform limits</li><li><strong>Buyer</strong>: 3+ non-payment strikes on won auctions, confirmed fraudulent returns, or off-platform payment solicitation</li><li><strong>Both</strong>: KYC documents found to be fraudulent, multiple account creation, or a court or regulatory order</li></ul><p>You will receive an email explaining the suspension reason. To appeal: reply to the suspension email with your explanation and any supporting evidence. Appeals are reviewed within 5 business days. If your suspension was triggered automatically (e.g., by a fraud algorithm), many are reversed on review.</p>`),
|
|
1110
|
+
category: "technical_support",
|
|
2292
1111
|
showOnHomepage: false,
|
|
2293
1112
|
showInFooter: false,
|
|
2294
1113
|
isPinned: false,
|
|
2295
|
-
order:
|
|
1114
|
+
order: 4,
|
|
2296
1115
|
priority: 6,
|
|
2297
|
-
tags: ["
|
|
2298
|
-
relatedFAQs: [],
|
|
2299
|
-
useSiteSettings:
|
|
2300
|
-
variables:
|
|
2301
|
-
stats:
|
|
2302
|
-
seo: {
|
|
2303
|
-
slug: "listing-guidelines",
|
|
2304
|
-
metaTitle: "Listing Guidelines | LetItRip Seller Policies",
|
|
2305
|
-
metaDescription: "Use clear photos, accurate info, correct category. No counterfeits or misleading content.",
|
|
2306
|
-
},
|
|
1116
|
+
tags: ["suspension", "account", "ban"],
|
|
1117
|
+
relatedFAQs: ["faq-how-do-i-contact-support"],
|
|
1118
|
+
useSiteSettings: true,
|
|
1119
|
+
variables: {},
|
|
1120
|
+
stats: makeStats(980, 44),
|
|
1121
|
+
seo: { slug: "faq-why-is-my-account-suspended" },
|
|
2307
1122
|
isActive: true,
|
|
2308
|
-
createdBy: "
|
|
1123
|
+
createdBy: "user-admin-letitrip",
|
|
1124
|
+
createdAt: daysAgo(77),
|
|
1125
|
+
updatedAt: daysAgo(7),
|
|
2309
1126
|
},
|
|
2310
1127
|
{
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
1128
|
+
id: "faq-how-to-leave-a-review",
|
|
1129
|
+
question: "How do I leave a review for a seller?",
|
|
1130
|
+
answer: html(`<p>Reviews can be left after confirmed delivery. Go to My Account → Orders → find the completed order → click <strong>"Leave Review"</strong>.</p><p>Review guidelines:</p><ul><li>Rate on a <strong>1–5 star scale</strong> covering item accuracy, packaging quality, and shipping speed</li><li>Write a brief title and a description of your experience</li><li>You can add up to 5 photos (great for showing item condition on arrival)</li><li>Reviews must be based on your actual purchase — reviews that are abusive, off-topic, or clearly fake will be removed</li></ul><p>Sellers can post a single public reply to any review. LetItRip does not allow sellers to request review removal except in cases of policy violation. Your review helps other collectors make informed decisions.</p>`),
|
|
1131
|
+
category: "technical_support",
|
|
2314
1132
|
showOnHomepage: false,
|
|
2315
1133
|
showInFooter: false,
|
|
2316
1134
|
isPinned: false,
|
|
2317
|
-
order:
|
|
2318
|
-
priority:
|
|
2319
|
-
tags: ["
|
|
1135
|
+
order: 5,
|
|
1136
|
+
priority: 6,
|
|
1137
|
+
tags: ["review", "feedback", "seller-rating"],
|
|
2320
1138
|
relatedFAQs: [],
|
|
2321
|
-
useSiteSettings:
|
|
2322
|
-
variables:
|
|
2323
|
-
stats:
|
|
2324
|
-
seo: {
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
1139
|
+
useSiteSettings: true,
|
|
1140
|
+
variables: {},
|
|
1141
|
+
stats: makeStats(1500, 66),
|
|
1142
|
+
seo: { slug: "faq-how-to-leave-a-review" },
|
|
1143
|
+
isActive: true,
|
|
1144
|
+
createdBy: "user-admin-letitrip",
|
|
1145
|
+
createdAt: daysAgo(76),
|
|
1146
|
+
updatedAt: daysAgo(5),
|
|
1147
|
+
},
|
|
1148
|
+
{
|
|
1149
|
+
id: "faq-can-i-edit-a-listing-after-publishing",
|
|
1150
|
+
question: "Can I edit a listing after it has been published?",
|
|
1151
|
+
answer: html(`<p>Yes, with restrictions:</p><ul><li><strong>Standard listings with no pending orders</strong>: price, description, images, and condition can be edited. Edits go through a quick re-review (usually within 2 hours).</li><li><strong>Listings with active bids (auctions)</strong>: <strong>material edits are not permitted</strong> once bidding has started. You may only update minor typos or add supplementary photos. Any edit that materially changes the item description (condition, contents, authenticity) after bids are placed is a policy violation and buyers may be entitled to bid retraction.</li><li><strong>Sold or completed listings</strong>: cannot be edited.</li></ul><p>Always ensure your listing is accurate and complete before publishing to avoid disputes.</p>`),
|
|
1152
|
+
category: "technical_support",
|
|
1153
|
+
showOnHomepage: false,
|
|
1154
|
+
showInFooter: false,
|
|
1155
|
+
isPinned: false,
|
|
1156
|
+
order: 6,
|
|
1157
|
+
priority: 6,
|
|
1158
|
+
tags: ["listing", "edit", "seller"],
|
|
1159
|
+
relatedFAQs: ["faq-can-i-retract-a-bid"],
|
|
1160
|
+
useSiteSettings: true,
|
|
1161
|
+
variables: {},
|
|
1162
|
+
stats: makeStats(1200, 54),
|
|
1163
|
+
seo: { slug: "faq-can-i-edit-a-listing-after-publishing" },
|
|
1164
|
+
isActive: true,
|
|
1165
|
+
createdBy: "user-admin-letitrip",
|
|
1166
|
+
createdAt: daysAgo(75),
|
|
1167
|
+
updatedAt: daysAgo(6),
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
id: "faq-how-do-seller-payouts-work",
|
|
1171
|
+
question: "How do seller payouts work on LetItRip?",
|
|
1172
|
+
answer: html(`<p>Seller payouts are processed on a <strong>weekly cycle</strong> (every Monday for orders confirmed the previous week):</p><ol><li>Buyer confirms delivery (or 5-day auto-release triggers).</li><li>LetItRip deducts the platform fee (5%) and Razorpay processing fee (~2.36%).</li><li>The net amount is credited to your registered bank account or UPI ID.</li><li>Payout appears in My Store → Payouts with a breakdown per order.</li></ol><p>First-time sellers have a 7-day holding period after their first confirmed sale before payout is initiated — this is a fraud prevention measure and is lifted automatically after your first successful payout.</p><p>If a payout is delayed beyond 5 business days from the expected date, contact <strong>support@letitrip.in</strong> with your store ID and the affected payout period.</p>`),
|
|
1173
|
+
category: "technical_support",
|
|
1174
|
+
showOnHomepage: false,
|
|
1175
|
+
showInFooter: false,
|
|
1176
|
+
isPinned: false,
|
|
1177
|
+
order: 7,
|
|
1178
|
+
priority: 7,
|
|
1179
|
+
tags: ["payout", "seller", "earnings", "bank"],
|
|
1180
|
+
relatedFAQs: ["faq-what-are-letitrip-platform-fees", "faq-how-do-i-become-a-verified-seller"],
|
|
1181
|
+
useSiteSettings: true,
|
|
1182
|
+
variables: {},
|
|
1183
|
+
stats: makeStats(2600, 122),
|
|
1184
|
+
seo: { slug: "faq-how-do-seller-payouts-work" },
|
|
2329
1185
|
isActive: true,
|
|
2330
|
-
createdBy: "
|
|
1186
|
+
createdBy: "user-admin-letitrip",
|
|
1187
|
+
createdAt: daysAgo(74),
|
|
1188
|
+
updatedAt: daysAgo(4),
|
|
2331
1189
|
},
|
|
2332
1190
|
];
|
|
2333
|
-
// Export with camelCase name for consistency with other seed data files
|
|
2334
|
-
export const faqSeedData = FAQ_SEED_DATA.map(normalizeFaqSeed);
|