@mohasinac/appkit 2.3.1 → 2.3.2
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 +12 -8
- package/dist/client.js +7 -4
- package/dist/constants/api-endpoints.d.ts +4 -0
- package/dist/constants/api-endpoints.js +2 -0
- package/dist/core/contact-submissions.repository.d.ts +32 -0
- package/dist/core/contact-submissions.repository.js +49 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/index.js +1 -0
- package/dist/features/about/components/HowPayoutsWorkView.js +1 -1
- 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 +51 -0
- package/dist/features/account/components/UserSidebar.d.ts +7 -3
- package/dist/features/account/components/UserSidebar.js +55 -7
- 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-read-actions.d.ts +12 -0
- package/dist/features/admin/actions/admin-read-actions.js +18 -0
- package/dist/features/admin/components/AdminBlogView.js +26 -2
- package/dist/features/admin/components/AdminCarouselView.js +18 -2
- package/dist/features/admin/components/AdminCategoriesView.js +27 -2
- package/dist/features/admin/components/AdminContactView.d.ts +4 -0
- package/dist/features/admin/components/AdminContactView.js +50 -0
- package/dist/features/admin/components/AdminFaqsView.js +19 -2
- package/dist/features/admin/components/AdminListingScaffold.d.ts +11 -2
- package/dist/features/admin/components/AdminListingScaffold.js +14 -3
- package/dist/features/admin/components/AdminNewsletterView.d.ts +4 -0
- package/dist/features/admin/components/AdminNewsletterView.js +50 -0
- package/dist/features/admin/components/AdminProductsView.js +30 -2
- package/dist/features/admin/components/AdminReviewsView.js +26 -2
- package/dist/features/admin/components/AdminStoresView.js +17 -2
- package/dist/features/admin/components/AdminUsersView.js +27 -2
- package/dist/features/admin/components/DataTable.d.ts +2 -1
- package/dist/features/admin/components/DataTable.js +18 -4
- package/dist/features/admin/components/index.d.ts +6 -0
- package/dist/features/admin/components/index.js +3 -0
- package/dist/features/admin/hooks/useAdminListingData.d.ts +3 -1
- package/dist/features/admin/hooks/useAdminListingData.js +12 -7
- package/dist/features/admin/server.d.ts +3 -0
- package/dist/features/admin/server.js +2 -0
- package/dist/features/auctions/components/AuctionDetailPageView.js +93 -47
- package/dist/features/auctions/components/AuctionFilters.d.ts +8 -0
- package/dist/features/auctions/components/AuctionFilters.js +12 -0
- package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
- package/dist/features/auctions/components/AuctionsListView.js +37 -5
- package/dist/features/auctions/schemas/index.d.ts +4 -4
- 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 +14 -9
- package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
- package/dist/features/blog/components/BlogIndexPageView.js +10 -2
- package/dist/features/blog/components/BlogListView.d.ts +2 -1
- package/dist/features/blog/components/BlogListView.js +10 -3
- package/dist/features/categories/components/CategoriesIndexListing.d.ts +1 -1
- package/dist/features/categories/components/CategoriesIndexListing.js +41 -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 +13 -6
- package/dist/features/categories/components/CategoryDetailTabs.d.ts +5 -0
- package/dist/features/categories/components/CategoryDetailTabs.js +17 -0
- package/dist/features/categories/components/CategoryFilters.js +2 -1
- 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.js +22 -11
- 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 +50 -1
- package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
- package/dist/features/categories/hooks/useCategoryTree.js +65 -0
- 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.js +28 -2
- package/dist/features/events/components/EventCard.js +4 -2
- package/dist/features/events/components/EventFilters.js +2 -1
- package/dist/features/events/components/EventsIndexListing.js +40 -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 +2 -0
- package/dist/features/events/components/index.js +1 -0
- package/dist/features/events/hooks/useEvents.js +2 -0
- package/dist/features/events/types/index.d.ts +1 -0
- package/dist/features/homepage/components/BlogArticlesSection.js +1 -1
- package/dist/features/homepage/components/EventsSection.js +1 -1
- package/dist/features/homepage/components/FeaturedAuctionsSection.js +1 -1
- package/dist/features/homepage/components/FeaturedPreOrdersSection.js +1 -1
- package/dist/features/homepage/components/FeaturedProductsSection.js +1 -1
- package/dist/features/homepage/components/FeaturedStoresSection.js +1 -1
- package/dist/features/homepage/components/HeroCarousel.js +1 -1
- package/dist/features/homepage/components/MarketplaceHomepageView.js +27 -17
- package/dist/features/homepage/components/SectionCarousel.js +4 -4
- package/dist/features/homepage/components/ShopByCategorySection.js +2 -2
- package/dist/features/homepage/schemas/firestore.d.ts +1 -1
- package/dist/features/homepage/schemas/firestore.js +2 -1
- package/dist/features/layout/AppLayoutShell.d.ts +6 -2
- package/dist/features/layout/AppLayoutShell.js +7 -3
- package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +3 -1
- package/dist/features/pre-orders/components/MarketplacePreorderCard.js +6 -2
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +80 -12
- package/dist/features/pre-orders/components/PreOrderFilters.d.ts +8 -0
- package/dist/features/pre-orders/components/PreOrderFilters.js +21 -0
- package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +2 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +69 -10
- 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/index.d.ts +2 -0
- package/dist/features/pre-orders/components/index.js +1 -0
- package/dist/features/products/components/AuctionsIndexListing.d.ts +2 -1
- package/dist/features/products/components/AuctionsIndexListing.js +61 -9
- package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
- package/dist/features/products/components/InteractiveProductCard.js +2 -2
- package/dist/features/products/components/ProductDetailPageView.d.ts +1 -1
- package/dist/features/products/components/ProductDetailPageView.js +116 -25
- package/dist/features/products/components/ProductFilters.d.ts +6 -11
- package/dist/features/products/components/ProductFilters.js +5 -3
- package/dist/features/products/components/ProductGrid.d.ts +8 -2
- package/dist/features/products/components/ProductGrid.js +20 -5
- 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 +73 -9
- 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/index.d.ts +1 -0
- package/dist/features/products/components/index.js +1 -0
- package/dist/features/products/hooks/useProducts.js +16 -0
- package/dist/features/products/repository/products.repository.d.ts +8 -0
- package/dist/features/products/repository/products.repository.js +2 -0
- package/dist/features/products/schemas/index.d.ts +8 -8
- package/dist/features/products/types/index.d.ts +12 -0
- package/dist/features/promotions/components/CouponsIndexListing.d.ts +9 -0
- package/dist/features/promotions/components/CouponsIndexListing.js +86 -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/reviews/components/ReviewDetailPageView.d.ts +4 -0
- package/dist/features/reviews/components/ReviewDetailPageView.js +20 -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 +35 -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.js +15 -1
- package/dist/features/reviews/types/index.d.ts +6 -1
- package/dist/features/seller/components/SellerSidebar.d.ts +8 -4
- package/dist/features/seller/components/SellerSidebar.js +6 -4
- package/dist/features/seller/components/index.d.ts +30 -0
- package/dist/features/seller/components/index.js +17 -0
- 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/schemas/index.d.ts +2 -2
- package/dist/features/stores/api/[storeSlug]/reviews/route.d.ts +1 -1
- package/dist/features/stores/api/[storeSlug]/reviews/route.js +24 -19
- package/dist/features/stores/components/InteractiveStoreCard.d.ts +0 -5
- package/dist/features/stores/components/InteractiveStoreCard.js +9 -9
- package/dist/features/stores/components/StoreAuctionsListing.js +27 -9
- package/dist/features/stores/components/StoreDetailLayoutView.js +2 -0
- 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 +2 -2
- package/dist/features/stores/components/StorePreOrdersListing.d.ts +5 -0
- package/dist/features/stores/components/StorePreOrdersListing.js +40 -0
- package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
- package/dist/features/stores/components/StorePreOrdersPageView.js +21 -0
- package/dist/features/stores/components/StoreProductsListing.js +21 -11
- package/dist/features/stores/components/StoreReviewsListing.js +2 -7
- package/dist/features/stores/components/StoresIndexListing.js +42 -8
- package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
- package/dist/features/stores/components/StoresIndexPageView.js +9 -2
- 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 +7 -1
- package/dist/features/stores/hooks/useStores.js +16 -3
- package/dist/features/stores/schemas/index.d.ts +2 -2
- package/dist/features/stores/types/index.d.ts +3 -0
- package/dist/features/wishlist/hooks/useGuestWishlist.d.ts +20 -0
- package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -0
- package/dist/features/wishlist/hooks/useWishlistCount.js +31 -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/utils/guest-wishlist.d.ts +22 -0
- package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
- package/dist/index.d.ts +50 -1
- package/dist/index.js +63 -1
- package/dist/next/routing/route-map.d.ts +70 -36
- package/dist/next/routing/route-map.js +30 -22
- package/dist/seed/addresses-seed-data.js +62 -261
- package/dist/seed/beyblade-seed-data.d.ts +7 -0
- package/dist/seed/beyblade-seed-data.js +947 -0
- package/dist/seed/bids-seed-data.d.ts +10 -2
- package/dist/seed/bids-seed-data.js +220 -1071
- package/dist/seed/blog-posts-seed-data.d.ts +2 -2
- package/dist/seed/blog-posts-seed-data.js +455 -117
- package/dist/seed/cart-seed-data.d.ts +9 -9
- package/dist/seed/cart-seed-data.js +73 -74
- package/dist/seed/coupons-seed-data.d.ts +3 -4
- package/dist/seed/coupons-seed-data.js +3 -509
- package/dist/seed/events-seed-data.d.ts +2 -2
- package/dist/seed/events-seed-data.js +315 -476
- package/dist/seed/faq-seed-data.d.ts +18 -41
- package/dist/seed/faq-seed-data.js +1059 -1172
- package/dist/seed/hot-wheels-seed-data.d.ts +7 -0
- package/dist/seed/hot-wheels-seed-data.js +1365 -0
- package/dist/seed/index.d.ts +6 -1
- package/dist/seed/index.js +6 -1
- package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +4 -2
- package/dist/seed/pokemon-carousel-slides-seed-data.js +152 -268
- package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
- package/dist/seed/pokemon-categories-seed-data.js +424 -1004
- 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 +67 -289
- package/dist/seed/pokemon-products-seed-data.js +662 -0
- package/dist/seed/pokemon-seed-bundle.d.ts +32 -11
- package/dist/seed/pokemon-seed-bundle.js +41 -11
- package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
- package/dist/seed/pokemon-stores-seed-data.js +56 -31
- package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
- package/dist/seed/pokemon-users-seed-data.js +245 -261
- package/dist/seed/reviews-seed-data.d.ts +17 -2
- package/dist/seed/reviews-seed-data.js +519 -483
- package/dist/seed/site-settings-seed-data.js +14 -14
- package/dist/seed/store-addresses-seed-data.js +68 -50
- package/dist/seed/transformers-seed-data.d.ts +7 -0
- package/dist/seed/transformers-seed-data.js +510 -0
- package/dist/seed/wishlists-seed-data.d.ts +5 -1
- package/dist/seed/wishlists-seed-data.js +82 -4
- package/dist/server.d.ts +1 -0
- package/dist/server.js +2 -0
- package/dist/tokens/index.d.ts +6 -0
- package/dist/tokens/index.js +2 -0
- package/dist/ui/components/BaseListingCard.js +24 -26
- package/dist/ui/components/BaseListingCard.style.css +5 -5
- package/dist/ui/components/HorizontalScroller.d.ts +1 -1
- package/dist/ui/components/HorizontalScroller.js +19 -5
- package/dist/ui/components/SideDrawer.style.css +3 -11
- package/dist/ui/rich-text/RichText.js +19 -1
- package/package.json +1 -1
|
@@ -4,864 +4,225 @@ const _CURRENCY = getDefaultCurrency();
|
|
|
4
4
|
const NOW = new Date();
|
|
5
5
|
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
6
6
|
export const bidsSeedData = [
|
|
7
|
-
// Bid 1 - Initial bid by John
|
|
8
|
-
{
|
|
9
|
-
id: "bid-vintage-canon-ae-1-film-camera-john-20260120-p3q7r2",
|
|
10
|
-
productId: "auction-vintage-canon-ae-1-film-camera-cameras-photography-used-techhub-electronics-1",
|
|
11
|
-
productTitle: "Evangelion Unit-01 Original Production Cel — AUCTION",
|
|
12
|
-
userId: "user-john-doe-johndoe",
|
|
13
|
-
userName: "John Doe",
|
|
14
|
-
userEmail: "john@letitrip.in",
|
|
15
|
-
bidAmount: 15000,
|
|
16
|
-
currency: _CURRENCY,
|
|
17
|
-
status: "outbid",
|
|
18
|
-
isWinning: false,
|
|
19
|
-
bidDate: daysAgo(48),
|
|
20
|
-
createdAt: daysAgo(48),
|
|
21
|
-
updatedAt: daysAgo(47), // Updated when outbid
|
|
22
|
-
},
|
|
23
|
-
// Bid 2 - Jane outbids John
|
|
24
|
-
{
|
|
25
|
-
id: "bid-vintage-canon-ae-1-film-camera-jane-20260121-k8m2n5",
|
|
26
|
-
productId: "auction-vintage-canon-ae-1-film-camera-cameras-photography-used-techhub-electronics-1",
|
|
27
|
-
productTitle: "Evangelion Unit-01 Original Production Cel — AUCTION",
|
|
28
|
-
userId: "user-jane-smith-janes",
|
|
29
|
-
userName: "Jane Smith",
|
|
30
|
-
userEmail: "jane@letitrip.in",
|
|
31
|
-
bidAmount: 16500,
|
|
32
|
-
currency: _CURRENCY,
|
|
33
|
-
status: "outbid",
|
|
34
|
-
isWinning: false,
|
|
35
|
-
bidDate: daysAgo(47),
|
|
36
|
-
createdAt: daysAgo(47),
|
|
37
|
-
updatedAt: daysAgo(46),
|
|
38
|
-
},
|
|
39
|
-
// Bid 3 - Mike enters the bidding
|
|
40
|
-
{
|
|
41
|
-
id: "bid-vintage-canon-ae-1-film-camera-mike-20260122-w4x9y1",
|
|
42
|
-
productId: "auction-vintage-canon-ae-1-film-camera-cameras-photography-used-techhub-electronics-1",
|
|
43
|
-
productTitle: "Evangelion Unit-01 Original Production Cel — AUCTION",
|
|
44
|
-
userId: "user-mike-johnson-mikejohn",
|
|
45
|
-
userName: "Mike Johnson",
|
|
46
|
-
userEmail: "mike@letitrip.in",
|
|
47
|
-
bidAmount: 17500,
|
|
48
|
-
currency: _CURRENCY,
|
|
49
|
-
status: "outbid",
|
|
50
|
-
isWinning: false,
|
|
51
|
-
bidDate: daysAgo(46),
|
|
52
|
-
createdAt: daysAgo(46),
|
|
53
|
-
updatedAt: daysAgo(45),
|
|
54
|
-
},
|
|
55
|
-
// Bid 4 - John raises his bid
|
|
56
|
-
{
|
|
57
|
-
id: "bid-vintage-canon-ae-1-film-camera-john-20260123-b7c1d4",
|
|
58
|
-
productId: "auction-vintage-canon-ae-1-film-camera-cameras-photography-used-techhub-electronics-1",
|
|
59
|
-
productTitle: "Evangelion Unit-01 Original Production Cel — AUCTION",
|
|
60
|
-
userId: "user-john-doe-johndoe",
|
|
61
|
-
userName: "John Doe",
|
|
62
|
-
userEmail: "john@letitrip.in",
|
|
63
|
-
bidAmount: 18500,
|
|
64
|
-
currency: _CURRENCY,
|
|
65
|
-
status: "outbid",
|
|
66
|
-
isWinning: false,
|
|
67
|
-
previousBidAmount: 15000,
|
|
68
|
-
bidDate: daysAgo(45),
|
|
69
|
-
createdAt: daysAgo(45),
|
|
70
|
-
updatedAt: daysAgo(43),
|
|
71
|
-
},
|
|
72
|
-
// Bid 5 - Jane counters
|
|
73
|
-
{
|
|
74
|
-
id: "bid-vintage-canon-ae-1-film-camera-jane-20260125-e2f6g3",
|
|
75
|
-
productId: "auction-vintage-canon-ae-1-film-camera-cameras-photography-used-techhub-electronics-1",
|
|
76
|
-
productTitle: "Evangelion Unit-01 Original Production Cel — AUCTION",
|
|
77
|
-
userId: "user-jane-smith-janes",
|
|
78
|
-
userName: "Jane Smith",
|
|
79
|
-
userEmail: "jane@letitrip.in",
|
|
80
|
-
bidAmount: 19500,
|
|
81
|
-
currency: _CURRENCY,
|
|
82
|
-
status: "outbid",
|
|
83
|
-
isWinning: false,
|
|
84
|
-
previousBidAmount: 16500,
|
|
85
|
-
bidDate: daysAgo(43),
|
|
86
|
-
createdAt: daysAgo(43),
|
|
87
|
-
updatedAt: daysAgo(40),
|
|
88
|
-
},
|
|
89
|
-
// Bid 6 - Mike raises the stakes
|
|
90
|
-
{
|
|
91
|
-
id: "bid-vintage-canon-ae-1-film-camera-mike-20260128-h5j9k2",
|
|
92
|
-
productId: "auction-vintage-canon-ae-1-film-camera-cameras-photography-used-techhub-electronics-1",
|
|
93
|
-
productTitle: "Evangelion Unit-01 Original Production Cel — AUCTION",
|
|
94
|
-
userId: "user-mike-johnson-mikejohn",
|
|
95
|
-
userName: "Mike Johnson",
|
|
96
|
-
userEmail: "mike@letitrip.in",
|
|
97
|
-
bidAmount: 20500,
|
|
98
|
-
currency: _CURRENCY,
|
|
99
|
-
status: "outbid",
|
|
100
|
-
isWinning: false,
|
|
101
|
-
previousBidAmount: 17500,
|
|
102
|
-
bidDate: daysAgo(40),
|
|
103
|
-
createdAt: daysAgo(40),
|
|
104
|
-
updatedAt: daysAgo(34),
|
|
105
|
-
},
|
|
106
|
-
// Bid 7 - John makes a strong bid
|
|
107
|
-
{
|
|
108
|
-
id: "bid-vintage-canon-ae-1-film-camera-john-20260203-l8m3n6",
|
|
109
|
-
productId: "auction-vintage-canon-ae-1-film-camera-cameras-photography-used-techhub-electronics-1",
|
|
110
|
-
productTitle: "Evangelion Unit-01 Original Production Cel — AUCTION",
|
|
111
|
-
userId: "user-john-doe-johndoe",
|
|
112
|
-
userName: "John Doe",
|
|
113
|
-
userEmail: "john@letitrip.in",
|
|
114
|
-
bidAmount: 21500,
|
|
115
|
-
currency: _CURRENCY,
|
|
116
|
-
status: "outbid",
|
|
117
|
-
isWinning: false,
|
|
118
|
-
previousBidAmount: 18500,
|
|
119
|
-
bidDate: daysAgo(34),
|
|
120
|
-
createdAt: daysAgo(34),
|
|
121
|
-
updatedAt: daysAgo(29),
|
|
122
|
-
},
|
|
123
|
-
// Bid 8 - Jane wins with final bid (current highest)
|
|
124
|
-
{
|
|
125
|
-
id: "bid-vintage-canon-ae-1-film-camera-jane-20260208-p4q8r7",
|
|
126
|
-
productId: "auction-vintage-canon-ae-1-film-camera-cameras-photography-used-techhub-electronics-1",
|
|
127
|
-
productTitle: "Evangelion Unit-01 Original Production Cel — AUCTION",
|
|
128
|
-
userId: "user-jane-smith-janes",
|
|
129
|
-
userName: "Jane Smith",
|
|
130
|
-
userEmail: "jane@letitrip.in",
|
|
131
|
-
bidAmount: 22000,
|
|
132
|
-
currency: _CURRENCY,
|
|
133
|
-
status: "active", // Auction still ongoing, so current bid is active
|
|
134
|
-
isWinning: true, // Current highest bid
|
|
135
|
-
previousBidAmount: 19500,
|
|
136
|
-
autoMaxBid: 25000, // Willing to go up to ₹25,000
|
|
137
|
-
bidDate: daysAgo(29),
|
|
138
|
-
createdAt: daysAgo(29),
|
|
139
|
-
updatedAt: daysAgo(29),
|
|
140
|
-
},
|
|
141
|
-
// --- MacBook Pro M3 Auction Bids ------------------------------------------
|
|
142
|
-
// productId: product-macbook-pro-m3-auction-electronics-techhub-1
|
|
143
|
-
// Starting: 100000, Current: 115000, Bids: 7
|
|
144
|
-
{
|
|
145
|
-
id: "bid-macbook-m3-john-1-20260211-a1b2c3",
|
|
146
|
-
productId: "product-macbook-pro-m3-auction-electronics-techhub-1",
|
|
147
|
-
productTitle: "Dragon Ball Z Complete Son Family 7-Piece Set — AUCTION",
|
|
148
|
-
userId: "user-john-doe-johndoe",
|
|
149
|
-
userName: "John Doe",
|
|
150
|
-
userEmail: "john@letitrip.in",
|
|
151
|
-
bidAmount: 100000,
|
|
152
|
-
currency: _CURRENCY,
|
|
153
|
-
status: "outbid",
|
|
154
|
-
isWinning: false,
|
|
155
|
-
bidDate: daysAgo(26),
|
|
156
|
-
createdAt: daysAgo(26),
|
|
157
|
-
updatedAt: daysAgo(25),
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
id: "bid-macbook-m3-mike-1-20260211-d4e5f6",
|
|
161
|
-
productId: "product-macbook-pro-m3-auction-electronics-techhub-1",
|
|
162
|
-
productTitle: "Dragon Ball Z Complete Son Family 7-Piece Set — AUCTION",
|
|
163
|
-
userId: "user-mike-johnson-mikejohn",
|
|
164
|
-
userName: "Mike Johnson",
|
|
165
|
-
userEmail: "mike@letitrip.in",
|
|
166
|
-
bidAmount: 103000,
|
|
167
|
-
currency: _CURRENCY,
|
|
168
|
-
status: "outbid",
|
|
169
|
-
isWinning: false,
|
|
170
|
-
bidDate: daysAgo(26),
|
|
171
|
-
createdAt: daysAgo(26),
|
|
172
|
-
updatedAt: daysAgo(24),
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
id: "bid-macbook-m3-raj-1-20260212-g7h8i9",
|
|
176
|
-
productId: "product-macbook-pro-m3-auction-electronics-techhub-1",
|
|
177
|
-
productTitle: "Dragon Ball Z Complete Son Family 7-Piece Set — AUCTION",
|
|
178
|
-
userId: "user-raj-patel-rajpatel",
|
|
179
|
-
userName: "Raj Patel",
|
|
180
|
-
userEmail: "raj@letitrip.in",
|
|
181
|
-
bidAmount: 107000,
|
|
182
|
-
currency: _CURRENCY,
|
|
183
|
-
status: "outbid",
|
|
184
|
-
isWinning: false,
|
|
185
|
-
bidDate: daysAgo(25),
|
|
186
|
-
createdAt: daysAgo(25),
|
|
187
|
-
updatedAt: daysAgo(23),
|
|
188
|
-
},
|
|
189
|
-
{
|
|
190
|
-
id: "bid-macbook-m3-john-2-20260213-j1k2l3",
|
|
191
|
-
productId: "product-macbook-pro-m3-auction-electronics-techhub-1",
|
|
192
|
-
productTitle: "Dragon Ball Z Complete Son Family 7-Piece Set — AUCTION",
|
|
193
|
-
userId: "user-john-doe-johndoe",
|
|
194
|
-
userName: "John Doe",
|
|
195
|
-
userEmail: "john@letitrip.in",
|
|
196
|
-
bidAmount: 110000,
|
|
197
|
-
currency: _CURRENCY,
|
|
198
|
-
status: "outbid",
|
|
199
|
-
isWinning: false,
|
|
200
|
-
previousBidAmount: 100000,
|
|
201
|
-
bidDate: daysAgo(24),
|
|
202
|
-
createdAt: daysAgo(24),
|
|
203
|
-
updatedAt: daysAgo(23),
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
id: "bid-macbook-m3-priya-1-20260214-m4n5o6",
|
|
207
|
-
productId: "product-macbook-pro-m3-auction-electronics-techhub-1",
|
|
208
|
-
productTitle: "Dragon Ball Z Complete Son Family 7-Piece Set — AUCTION",
|
|
209
|
-
userId: "user-priya-sharma-priya",
|
|
210
|
-
userName: "Priya Sharma",
|
|
211
|
-
userEmail: "priya@letitrip.in",
|
|
212
|
-
bidAmount: 112500,
|
|
213
|
-
currency: _CURRENCY,
|
|
214
|
-
status: "outbid",
|
|
215
|
-
isWinning: false,
|
|
216
|
-
bidDate: daysAgo(23),
|
|
217
|
-
createdAt: daysAgo(23),
|
|
218
|
-
updatedAt: daysAgo(21),
|
|
219
|
-
},
|
|
220
|
-
{
|
|
221
|
-
id: "bid-macbook-m3-mike-2-20260115-p7q8r9",
|
|
222
|
-
productId: "product-macbook-pro-m3-auction-electronics-techhub-1",
|
|
223
|
-
productTitle: "Dragon Ball Z Complete Son Family 7-Piece Set — AUCTION",
|
|
224
|
-
userId: "user-mike-johnson-mikejohn",
|
|
225
|
-
userName: "Mike Johnson",
|
|
226
|
-
userEmail: "mike@letitrip.in",
|
|
227
|
-
bidAmount: 113500,
|
|
228
|
-
currency: _CURRENCY,
|
|
229
|
-
status: "outbid",
|
|
230
|
-
isWinning: false,
|
|
231
|
-
previousBidAmount: 103000,
|
|
232
|
-
bidDate: daysAgo(21),
|
|
233
|
-
createdAt: daysAgo(21),
|
|
234
|
-
updatedAt: daysAgo(18),
|
|
235
|
-
},
|
|
236
|
-
{
|
|
237
|
-
id: "bid-macbook-m3-raj-2-20260219-s1t2u3",
|
|
238
|
-
productId: "product-macbook-pro-m3-auction-electronics-techhub-1",
|
|
239
|
-
productTitle: "Dragon Ball Z Complete Son Family 7-Piece Set — AUCTION",
|
|
240
|
-
userId: "user-raj-patel-rajpatel",
|
|
241
|
-
userName: "Raj Patel",
|
|
242
|
-
userEmail: "raj@letitrip.in",
|
|
243
|
-
bidAmount: 115000,
|
|
244
|
-
currency: _CURRENCY,
|
|
245
|
-
status: "active",
|
|
246
|
-
isWinning: true,
|
|
247
|
-
previousBidAmount: 107000,
|
|
248
|
-
autoMaxBid: 130000,
|
|
249
|
-
bidDate: daysAgo(18),
|
|
250
|
-
createdAt: daysAgo(18),
|
|
251
|
-
updatedAt: daysAgo(18),
|
|
252
|
-
},
|
|
253
|
-
// --- NGE Evangelion Signed Poster Auction Bids ----------------------------
|
|
254
|
-
// productId: product-vintage-leica-camera-auction-artisan-1
|
|
255
|
-
// Starting: 85000, Current: 97500, Bids: 5
|
|
256
|
-
{
|
|
257
|
-
id: "bid-leica-m6-meera-1-20260206-v4w5x6",
|
|
258
|
-
productId: "product-vintage-leica-camera-auction-artisan-1",
|
|
259
|
-
productTitle: "Neon Genesis Evangelion 1995 First-Run Signed Poster — AUCTION",
|
|
260
|
-
userId: "user-vikram-nair-vikram",
|
|
261
|
-
userName: "Vikram Nair",
|
|
262
|
-
userEmail: "vikram@letitrip.in",
|
|
263
|
-
bidAmount: 85000,
|
|
264
|
-
currency: _CURRENCY,
|
|
265
|
-
status: "outbid",
|
|
266
|
-
isWinning: false,
|
|
267
|
-
bidDate: daysAgo(31),
|
|
268
|
-
createdAt: daysAgo(31),
|
|
269
|
-
updatedAt: daysAgo(29),
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
id: "bid-leica-m6-john-1-20260208-y7z8a9",
|
|
273
|
-
productId: "product-vintage-leica-camera-auction-artisan-1",
|
|
274
|
-
productTitle: "Neon Genesis Evangelion 1995 First-Run Signed Poster — AUCTION",
|
|
275
|
-
userId: "user-john-doe-johndoe",
|
|
276
|
-
userName: "John Doe",
|
|
277
|
-
userEmail: "john@letitrip.in",
|
|
278
|
-
bidAmount: 89000,
|
|
279
|
-
currency: _CURRENCY,
|
|
280
|
-
status: "outbid",
|
|
281
|
-
isWinning: false,
|
|
282
|
-
bidDate: daysAgo(29),
|
|
283
|
-
createdAt: daysAgo(29),
|
|
284
|
-
updatedAt: daysAgo(26),
|
|
285
|
-
},
|
|
286
|
-
{
|
|
287
|
-
id: "bid-leica-m6-meera-2-20260211-b1c2d3",
|
|
288
|
-
productId: "product-vintage-leica-camera-auction-artisan-1",
|
|
289
|
-
productTitle: "Neon Genesis Evangelion 1995 First-Run Signed Poster — AUCTION",
|
|
290
|
-
userId: "user-vikram-nair-vikram",
|
|
291
|
-
userName: "Vikram Nair",
|
|
292
|
-
userEmail: "vikram@letitrip.in",
|
|
293
|
-
bidAmount: 92000,
|
|
294
|
-
currency: _CURRENCY,
|
|
295
|
-
status: "outbid",
|
|
296
|
-
isWinning: false,
|
|
297
|
-
previousBidAmount: 85000,
|
|
298
|
-
bidDate: daysAgo(26),
|
|
299
|
-
createdAt: daysAgo(26),
|
|
300
|
-
updatedAt: daysAgo(22),
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
id: "bid-leica-m6-jane-1-20260215-e4f5g6",
|
|
304
|
-
productId: "product-vintage-leica-camera-auction-artisan-1",
|
|
305
|
-
productTitle: "Neon Genesis Evangelion 1995 First-Run Signed Poster — AUCTION",
|
|
306
|
-
userId: "user-jane-smith-janes",
|
|
307
|
-
userName: "Jane Smith",
|
|
308
|
-
userEmail: "jane@letitrip.in",
|
|
309
|
-
bidAmount: 95000,
|
|
310
|
-
currency: _CURRENCY,
|
|
311
|
-
status: "outbid",
|
|
312
|
-
isWinning: false,
|
|
313
|
-
bidDate: daysAgo(22),
|
|
314
|
-
createdAt: daysAgo(22),
|
|
315
|
-
updatedAt: daysAgo(19),
|
|
316
|
-
},
|
|
317
|
-
{
|
|
318
|
-
id: "bid-leica-m6-meera-3-20260218-h7i8j9",
|
|
319
|
-
productId: "product-vintage-leica-camera-auction-artisan-1",
|
|
320
|
-
productTitle: "Neon Genesis Evangelion 1995 First-Run Signed Poster — AUCTION",
|
|
321
|
-
userId: "user-vikram-nair-vikram",
|
|
322
|
-
userName: "Vikram Nair",
|
|
323
|
-
userEmail: "vikram@letitrip.in",
|
|
324
|
-
bidAmount: 97500,
|
|
325
|
-
currency: _CURRENCY,
|
|
326
|
-
status: "active",
|
|
327
|
-
isWinning: true,
|
|
328
|
-
previousBidAmount: 92000,
|
|
329
|
-
autoMaxBid: 110000,
|
|
330
|
-
bidDate: daysAgo(19),
|
|
331
|
-
createdAt: daysAgo(19),
|
|
332
|
-
updatedAt: daysAgo(19),
|
|
333
|
-
},
|
|
334
|
-
// --- Air Jordan Auction Bids ----------------------------------------------
|
|
335
|
-
// productId: product-limited-air-jordan-sneakers-auction-artisan-1
|
|
336
|
-
// Starting: 25000, Current: 38000, Bids: 11
|
|
337
|
-
{
|
|
338
|
-
id: "bid-jordan-chicago-priya-1-20260208-k1l2m3",
|
|
339
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
340
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
341
|
-
userId: "user-priya-sharma-priya",
|
|
342
|
-
userName: "Priya Sharma",
|
|
343
|
-
userEmail: "priya@letitrip.in",
|
|
344
|
-
bidAmount: 25000,
|
|
345
|
-
currency: _CURRENCY,
|
|
346
|
-
status: "outbid",
|
|
347
|
-
isWinning: false,
|
|
348
|
-
bidDate: daysAgo(28),
|
|
349
|
-
createdAt: daysAgo(28),
|
|
350
|
-
updatedAt: daysAgo(27),
|
|
351
|
-
},
|
|
352
|
-
{
|
|
353
|
-
id: "bid-jordan-chicago-raj-1-20260210-n4o5p6",
|
|
354
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
355
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
356
|
-
userId: "user-raj-patel-rajpatel",
|
|
357
|
-
userName: "Raj Patel",
|
|
358
|
-
userEmail: "raj@letitrip.in",
|
|
359
|
-
bidAmount: 27500,
|
|
360
|
-
currency: _CURRENCY,
|
|
361
|
-
status: "outbid",
|
|
362
|
-
isWinning: false,
|
|
363
|
-
bidDate: daysAgo(27),
|
|
364
|
-
createdAt: daysAgo(27),
|
|
365
|
-
updatedAt: daysAgo(26),
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
id: "bid-jordan-chicago-priya-2-20260211-q7r8s9",
|
|
369
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
370
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
371
|
-
userId: "user-priya-sharma-priya",
|
|
372
|
-
userName: "Priya Sharma",
|
|
373
|
-
userEmail: "priya@letitrip.in",
|
|
374
|
-
bidAmount: 29000,
|
|
375
|
-
currency: _CURRENCY,
|
|
376
|
-
status: "outbid",
|
|
377
|
-
isWinning: false,
|
|
378
|
-
previousBidAmount: 25000,
|
|
379
|
-
bidDate: daysAgo(26),
|
|
380
|
-
createdAt: daysAgo(26),
|
|
381
|
-
updatedAt: daysAgo(24),
|
|
382
|
-
},
|
|
383
|
-
{
|
|
384
|
-
id: "bid-jordan-chicago-mike-1-20260213-t1u2v3",
|
|
385
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
386
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
387
|
-
userId: "user-mike-johnson-mikejohn",
|
|
388
|
-
userName: "Mike Johnson",
|
|
389
|
-
userEmail: "mike@letitrip.in",
|
|
390
|
-
bidAmount: 31000,
|
|
391
|
-
currency: _CURRENCY,
|
|
392
|
-
status: "outbid",
|
|
393
|
-
isWinning: false,
|
|
394
|
-
bidDate: daysAgo(24),
|
|
395
|
-
createdAt: daysAgo(24),
|
|
396
|
-
updatedAt: daysAgo(22),
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
id: "bid-jordan-chicago-raj-2-20260215-w4x5y6",
|
|
400
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
401
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
402
|
-
userId: "user-raj-patel-rajpatel",
|
|
403
|
-
userName: "Raj Patel",
|
|
404
|
-
userEmail: "raj@letitrip.in",
|
|
405
|
-
bidAmount: 33000,
|
|
406
|
-
currency: _CURRENCY,
|
|
407
|
-
status: "outbid",
|
|
408
|
-
isWinning: false,
|
|
409
|
-
previousBidAmount: 27500,
|
|
410
|
-
bidDate: daysAgo(22),
|
|
411
|
-
createdAt: daysAgo(22),
|
|
412
|
-
updatedAt: daysAgo(20),
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
id: "bid-jordan-chicago-priya-3-20260217-z7a8b9",
|
|
416
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
417
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
418
|
-
userId: "user-priya-sharma-priya",
|
|
419
|
-
userName: "Priya Sharma",
|
|
420
|
-
userEmail: "priya@letitrip.in",
|
|
421
|
-
bidAmount: 35000,
|
|
422
|
-
currency: _CURRENCY,
|
|
423
|
-
status: "outbid",
|
|
424
|
-
isWinning: false,
|
|
425
|
-
previousBidAmount: 29000,
|
|
426
|
-
bidDate: daysAgo(20),
|
|
427
|
-
createdAt: daysAgo(20),
|
|
428
|
-
updatedAt: daysAgo(19),
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
id: "bid-jordan-chicago-raj-3-20260218-a1b2c3",
|
|
432
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
433
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
434
|
-
userId: "user-raj-patel-rajpatel",
|
|
435
|
-
userName: "Raj Patel",
|
|
436
|
-
userEmail: "raj@letitrip.in",
|
|
437
|
-
bidAmount: 36000,
|
|
438
|
-
currency: _CURRENCY,
|
|
439
|
-
status: "outbid",
|
|
440
|
-
isWinning: false,
|
|
441
|
-
previousBidAmount: 33000,
|
|
442
|
-
bidDate: daysAgo(19),
|
|
443
|
-
createdAt: daysAgo(19),
|
|
444
|
-
updatedAt: daysAgo(19),
|
|
445
|
-
},
|
|
446
|
-
{
|
|
447
|
-
id: "bid-jordan-chicago-priya-4-20260218-d4e5f6",
|
|
448
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
449
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
450
|
-
userId: "user-priya-sharma-priya",
|
|
451
|
-
userName: "Priya Sharma",
|
|
452
|
-
userEmail: "priya@letitrip.in",
|
|
453
|
-
bidAmount: 36500,
|
|
454
|
-
currency: _CURRENCY,
|
|
455
|
-
status: "outbid",
|
|
456
|
-
isWinning: false,
|
|
457
|
-
previousBidAmount: 35000,
|
|
458
|
-
bidDate: daysAgo(19),
|
|
459
|
-
createdAt: daysAgo(19),
|
|
460
|
-
updatedAt: daysAgo(18),
|
|
461
|
-
},
|
|
462
|
-
{
|
|
463
|
-
id: "bid-jordan-chicago-mike-2-20260219-g7h8i9",
|
|
464
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
465
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
466
|
-
userId: "user-mike-johnson-mikejohn",
|
|
467
|
-
userName: "Mike Johnson",
|
|
468
|
-
userEmail: "mike@letitrip.in",
|
|
469
|
-
bidAmount: 37000,
|
|
470
|
-
currency: _CURRENCY,
|
|
471
|
-
status: "outbid",
|
|
472
|
-
isWinning: false,
|
|
473
|
-
previousBidAmount: 31000,
|
|
474
|
-
bidDate: daysAgo(18),
|
|
475
|
-
createdAt: daysAgo(18),
|
|
476
|
-
updatedAt: daysAgo(18),
|
|
477
|
-
},
|
|
478
|
-
{
|
|
479
|
-
id: "bid-jordan-chicago-raj-4-20260219-j1k2l3",
|
|
480
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
481
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
482
|
-
userId: "user-raj-patel-rajpatel",
|
|
483
|
-
userName: "Raj Patel",
|
|
484
|
-
userEmail: "raj@letitrip.in",
|
|
485
|
-
bidAmount: 37500,
|
|
486
|
-
currency: _CURRENCY,
|
|
487
|
-
status: "outbid",
|
|
488
|
-
isWinning: false,
|
|
489
|
-
previousBidAmount: 36000,
|
|
490
|
-
bidDate: daysAgo(18),
|
|
491
|
-
createdAt: daysAgo(18),
|
|
492
|
-
updatedAt: daysAgo(18),
|
|
493
|
-
},
|
|
494
|
-
{
|
|
495
|
-
id: "bid-jordan-chicago-meera-1-20260219-c1d2e3",
|
|
496
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
497
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
498
|
-
userId: "user-vikram-nair-vikram",
|
|
499
|
-
userName: "Vikram Nair",
|
|
500
|
-
userEmail: "vikram@letitrip.in",
|
|
501
|
-
bidAmount: 38000,
|
|
502
|
-
currency: _CURRENCY,
|
|
503
|
-
status: "active",
|
|
504
|
-
isWinning: true,
|
|
505
|
-
autoMaxBid: 45000,
|
|
506
|
-
bidDate: daysAgo(18),
|
|
507
|
-
createdAt: daysAgo(18),
|
|
508
|
-
updatedAt: daysAgo(18),
|
|
509
|
-
},
|
|
510
|
-
// -- CANCELLED bid — user withdrew before auction ended -------------------
|
|
511
|
-
// Tests: cancel bid API, bid list filtered by status, refund-on-cancel flow
|
|
512
|
-
{
|
|
513
|
-
id: "bid-jordan-chicago-raj-cancelled-20260215-x9z1a4",
|
|
514
|
-
productId: "product-limited-air-jordan-sneakers-auction-artisan-1",
|
|
515
|
-
productTitle: "One Piece Zoro Limited Edition Signed Art Print — AUCTION",
|
|
516
|
-
userId: "user-raj-patel-rajpatel",
|
|
517
|
-
userName: "Raj Patel",
|
|
518
|
-
userEmail: "raj@letitrip.in",
|
|
519
|
-
bidAmount: 26000,
|
|
520
|
-
currency: _CURRENCY,
|
|
521
|
-
status: "cancelled", // ← user cancelled this bid before being outbid
|
|
522
|
-
isWinning: false,
|
|
523
|
-
bidDate: daysAgo(25),
|
|
524
|
-
createdAt: daysAgo(25),
|
|
525
|
-
updatedAt: daysAgo(25), // cancellation time
|
|
526
|
-
},
|
|
527
7
|
// ═══════════════════════════════════════════════════════════════════════════
|
|
528
|
-
//
|
|
8
|
+
// 1st Edition Charizard Base Set #4 PSA 7 — 14 bids
|
|
9
|
+
// auction-charizard-1st-ed-base1-4-fire-blaine-auction-1
|
|
10
|
+
// Starting: ₹2,99,999 | Current: ₹3,49,999 | Reserve: ₹3,50,000
|
|
529
11
|
// ═══════════════════════════════════════════════════════════════════════════
|
|
530
|
-
//
|
|
12
|
+
// Bid 1 — Ash opens the bidding
|
|
531
13
|
{
|
|
532
|
-
id: "bid-
|
|
533
|
-
productId: "auction-
|
|
534
|
-
productTitle: "
|
|
535
|
-
userId: "user-
|
|
536
|
-
userName: "
|
|
537
|
-
userEmail: "
|
|
538
|
-
bidAmount:
|
|
14
|
+
id: "bid-charizard-1sted-ash-1-20260420-a1b2c3",
|
|
15
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
16
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
17
|
+
userId: "user-ash-ketchum-pallet-ash",
|
|
18
|
+
userName: "Ash Ketchum",
|
|
19
|
+
userEmail: "ash@pallet.town",
|
|
20
|
+
bidAmount: 299999,
|
|
539
21
|
currency: _CURRENCY,
|
|
540
22
|
status: "outbid",
|
|
541
23
|
isWinning: false,
|
|
542
|
-
bidDate: daysAgo(
|
|
543
|
-
createdAt: daysAgo(
|
|
544
|
-
updatedAt: daysAgo(
|
|
24
|
+
bidDate: daysAgo(3),
|
|
25
|
+
createdAt: daysAgo(3),
|
|
26
|
+
updatedAt: daysAgo(3),
|
|
545
27
|
},
|
|
28
|
+
// Bid 2 — Gary counters
|
|
546
29
|
{
|
|
547
|
-
id: "bid-
|
|
548
|
-
productId: "auction-
|
|
549
|
-
productTitle: "
|
|
550
|
-
userId: "user-
|
|
551
|
-
userName: "
|
|
552
|
-
userEmail: "
|
|
553
|
-
bidAmount:
|
|
30
|
+
id: "bid-charizard-1sted-gary-1-20260420-d4e5f6",
|
|
31
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
32
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
33
|
+
userId: "user-gary-oak-pallet-gary",
|
|
34
|
+
userName: "Gary Oak",
|
|
35
|
+
userEmail: "gary@pallet.town",
|
|
36
|
+
bidAmount: 304999,
|
|
554
37
|
currency: _CURRENCY,
|
|
555
38
|
status: "outbid",
|
|
556
39
|
isWinning: false,
|
|
557
|
-
bidDate: daysAgo(
|
|
558
|
-
createdAt: daysAgo(
|
|
559
|
-
updatedAt: daysAgo(
|
|
40
|
+
bidDate: daysAgo(3),
|
|
41
|
+
createdAt: daysAgo(3),
|
|
42
|
+
updatedAt: daysAgo(3),
|
|
560
43
|
},
|
|
44
|
+
// Bid 3 — Professor Oak enters
|
|
561
45
|
{
|
|
562
|
-
id: "bid-
|
|
563
|
-
productId: "auction-
|
|
564
|
-
productTitle: "
|
|
565
|
-
userId: "user-
|
|
566
|
-
userName: "
|
|
567
|
-
userEmail: "
|
|
568
|
-
bidAmount:
|
|
46
|
+
id: "bid-charizard-1sted-oak-1-20260421-g7h8i9",
|
|
47
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
48
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
49
|
+
userId: "user-prof-oak-pallet-oak",
|
|
50
|
+
userName: "Professor Oak",
|
|
51
|
+
userEmail: "oak@pallettown.lab",
|
|
52
|
+
bidAmount: 309999,
|
|
569
53
|
currency: _CURRENCY,
|
|
570
54
|
status: "outbid",
|
|
571
55
|
isWinning: false,
|
|
572
|
-
bidDate: daysAgo(
|
|
573
|
-
createdAt: daysAgo(
|
|
574
|
-
updatedAt: daysAgo(
|
|
575
|
-
},
|
|
576
|
-
{
|
|
577
|
-
id: "bid-ps5-slim-ravi-1-20260228",
|
|
578
|
-
productId: "auction-ps5-slim-gaming-console-techhub-1",
|
|
579
|
-
productTitle: "PlayStation 5 Slim Disc Edition — AUCTION",
|
|
580
|
-
userId: "user-ravi-kumar-ravi",
|
|
581
|
-
userName: "Ravi Kumar",
|
|
582
|
-
userEmail: "ravi@letitrip.in",
|
|
583
|
-
bidAmount: 52000,
|
|
584
|
-
currency: _CURRENCY,
|
|
585
|
-
status: "active",
|
|
586
|
-
isWinning: true,
|
|
587
|
-
autoMaxBid: 60000,
|
|
588
|
-
bidDate: daysAgo(9),
|
|
589
|
-
createdAt: daysAgo(9),
|
|
590
|
-
updatedAt: daysAgo(9),
|
|
56
|
+
bidDate: daysAgo(3),
|
|
57
|
+
createdAt: daysAgo(3),
|
|
58
|
+
updatedAt: daysAgo(2),
|
|
591
59
|
},
|
|
592
|
-
//
|
|
60
|
+
// Bid 4 — Ash raises
|
|
593
61
|
{
|
|
594
|
-
id: "bid-
|
|
595
|
-
productId: "auction-
|
|
596
|
-
productTitle: "
|
|
597
|
-
userId: "user-
|
|
598
|
-
userName: "
|
|
599
|
-
userEmail: "
|
|
600
|
-
bidAmount:
|
|
62
|
+
id: "bid-charizard-1sted-ash-2-20260421-j1k2l3",
|
|
63
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
64
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
65
|
+
userId: "user-ash-ketchum-pallet-ash",
|
|
66
|
+
userName: "Ash Ketchum",
|
|
67
|
+
userEmail: "ash@pallet.town",
|
|
68
|
+
bidAmount: 314999,
|
|
601
69
|
currency: _CURRENCY,
|
|
602
70
|
status: "outbid",
|
|
603
71
|
isWinning: false,
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
72
|
+
previousBidAmount: 299999,
|
|
73
|
+
bidDate: daysAgo(2),
|
|
74
|
+
createdAt: daysAgo(2),
|
|
75
|
+
updatedAt: daysAgo(2),
|
|
607
76
|
},
|
|
77
|
+
// Bid 5 — Gary counters again
|
|
608
78
|
{
|
|
609
|
-
id: "bid-
|
|
610
|
-
productId: "auction-
|
|
611
|
-
productTitle: "
|
|
612
|
-
userId: "user-
|
|
613
|
-
userName: "
|
|
614
|
-
userEmail: "
|
|
615
|
-
bidAmount:
|
|
79
|
+
id: "bid-charizard-1sted-gary-2-20260422-m4n5o6",
|
|
80
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
81
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
82
|
+
userId: "user-gary-oak-pallet-gary",
|
|
83
|
+
userName: "Gary Oak",
|
|
84
|
+
userEmail: "gary@pallet.town",
|
|
85
|
+
bidAmount: 319999,
|
|
616
86
|
currency: _CURRENCY,
|
|
617
87
|
status: "outbid",
|
|
618
88
|
isWinning: false,
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
{
|
|
624
|
-
id: "bid-airpods-pro2-sneha-2-20260302",
|
|
625
|
-
productId: "auction-airpods-pro2-audio-techhub-1",
|
|
626
|
-
productTitle: "Apple AirPods Pro 2nd Gen (USB-C) — AUCTION",
|
|
627
|
-
userId: "user-sneha-gupta-sneha",
|
|
628
|
-
userName: "Sneha Gupta",
|
|
629
|
-
userEmail: "sneha@letitrip.in",
|
|
630
|
-
bidAmount: 21500,
|
|
631
|
-
currency: _CURRENCY,
|
|
632
|
-
status: "active",
|
|
633
|
-
isWinning: true,
|
|
634
|
-
autoMaxBid: 27000,
|
|
635
|
-
bidDate: daysAgo(7),
|
|
636
|
-
createdAt: daysAgo(7),
|
|
637
|
-
updatedAt: daysAgo(7),
|
|
89
|
+
previousBidAmount: 304999,
|
|
90
|
+
bidDate: daysAgo(2),
|
|
91
|
+
createdAt: daysAgo(2),
|
|
92
|
+
updatedAt: daysAgo(2),
|
|
638
93
|
},
|
|
639
|
-
//
|
|
94
|
+
// Bid 6 — Oak increases commitment
|
|
640
95
|
{
|
|
641
|
-
id: "bid-
|
|
642
|
-
productId: "auction-
|
|
643
|
-
productTitle: "
|
|
644
|
-
userId: "user-
|
|
645
|
-
userName: "
|
|
646
|
-
userEmail: "
|
|
647
|
-
bidAmount:
|
|
96
|
+
id: "bid-charizard-1sted-oak-2-20260422-p7q8r9",
|
|
97
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
98
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
99
|
+
userId: "user-prof-oak-pallet-oak",
|
|
100
|
+
userName: "Professor Oak",
|
|
101
|
+
userEmail: "oak@pallettown.lab",
|
|
102
|
+
bidAmount: 324999,
|
|
648
103
|
currency: _CURRENCY,
|
|
649
104
|
status: "outbid",
|
|
650
105
|
isWinning: false,
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
106
|
+
previousBidAmount: 309999,
|
|
107
|
+
bidDate: daysAgo(2),
|
|
108
|
+
createdAt: daysAgo(2),
|
|
109
|
+
updatedAt: daysAgo(1),
|
|
654
110
|
},
|
|
111
|
+
// Bid 7 — Sabrina joins the auction
|
|
655
112
|
{
|
|
656
|
-
id: "bid-
|
|
657
|
-
productId: "auction-
|
|
658
|
-
productTitle: "
|
|
659
|
-
userId: "user-
|
|
660
|
-
userName: "
|
|
661
|
-
userEmail: "
|
|
662
|
-
bidAmount:
|
|
113
|
+
id: "bid-charizard-1sted-sabrina-1-20260423-s1t2u3",
|
|
114
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
115
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
116
|
+
userId: "user-sabrina-saffron-sabrina",
|
|
117
|
+
userName: "Sabrina",
|
|
118
|
+
userEmail: "sabrina@saffron.gym",
|
|
119
|
+
bidAmount: 329999,
|
|
663
120
|
currency: _CURRENCY,
|
|
664
121
|
status: "outbid",
|
|
665
122
|
isWinning: false,
|
|
666
|
-
bidDate: daysAgo(
|
|
667
|
-
createdAt: daysAgo(
|
|
668
|
-
updatedAt: daysAgo(
|
|
669
|
-
},
|
|
670
|
-
{
|
|
671
|
-
id: "bid-tagheuer-ananya-1-20260301",
|
|
672
|
-
productId: "auction-swiss-titanium-watch-fashion-1",
|
|
673
|
-
productTitle: "TAG Heuer Carrera Chronograph Titanium — AUCTION",
|
|
674
|
-
userId: "user-ananya-bose-ananya",
|
|
675
|
-
userName: "Ananya Bose",
|
|
676
|
-
userEmail: "ananya@letitrip.in",
|
|
677
|
-
bidAmount: 175000,
|
|
678
|
-
currency: _CURRENCY,
|
|
679
|
-
status: "active",
|
|
680
|
-
isWinning: true,
|
|
681
|
-
autoMaxBid: 220000,
|
|
682
|
-
bidDate: daysAgo(8),
|
|
683
|
-
createdAt: daysAgo(8),
|
|
684
|
-
updatedAt: daysAgo(8),
|
|
123
|
+
bidDate: daysAgo(2),
|
|
124
|
+
createdAt: daysAgo(2),
|
|
125
|
+
updatedAt: daysAgo(1),
|
|
685
126
|
},
|
|
686
|
-
//
|
|
127
|
+
// Bid 8 — Ash makes a strong bid
|
|
687
128
|
{
|
|
688
|
-
id: "bid-
|
|
689
|
-
productId: "auction-
|
|
690
|
-
productTitle: "
|
|
691
|
-
userId: "user-
|
|
692
|
-
userName: "
|
|
693
|
-
userEmail: "
|
|
694
|
-
bidAmount:
|
|
129
|
+
id: "bid-charizard-1sted-ash-3-20260423-v4w5x6",
|
|
130
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
131
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
132
|
+
userId: "user-ash-ketchum-pallet-ash",
|
|
133
|
+
userName: "Ash Ketchum",
|
|
134
|
+
userEmail: "ash@pallet.town",
|
|
135
|
+
bidAmount: 334999,
|
|
695
136
|
currency: _CURRENCY,
|
|
696
137
|
status: "outbid",
|
|
697
138
|
isWinning: false,
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
139
|
+
previousBidAmount: 314999,
|
|
140
|
+
bidDate: daysAgo(1),
|
|
141
|
+
createdAt: daysAgo(1),
|
|
142
|
+
updatedAt: daysAgo(1),
|
|
701
143
|
},
|
|
144
|
+
// Bid 9 — Gary keeps pace
|
|
702
145
|
{
|
|
703
|
-
id: "bid-
|
|
704
|
-
productId: "auction-
|
|
705
|
-
productTitle: "
|
|
706
|
-
userId: "user-
|
|
707
|
-
userName: "
|
|
708
|
-
userEmail: "
|
|
709
|
-
bidAmount:
|
|
146
|
+
id: "bid-charizard-1sted-gary-3-20260424-y7z8a9",
|
|
147
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
148
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
149
|
+
userId: "user-gary-oak-pallet-gary",
|
|
150
|
+
userName: "Gary Oak",
|
|
151
|
+
userEmail: "gary@pallet.town",
|
|
152
|
+
bidAmount: 339999,
|
|
710
153
|
currency: _CURRENCY,
|
|
711
154
|
status: "outbid",
|
|
712
155
|
isWinning: false,
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
156
|
+
previousBidAmount: 319999,
|
|
157
|
+
bidDate: daysAgo(1),
|
|
158
|
+
createdAt: daysAgo(1),
|
|
159
|
+
updatedAt: daysAgo(1),
|
|
716
160
|
},
|
|
161
|
+
// Bid 10 — Brock wants the crown jewel too
|
|
717
162
|
{
|
|
718
|
-
id: "bid-
|
|
719
|
-
productId: "auction-
|
|
720
|
-
productTitle: "
|
|
721
|
-
userId: "user-
|
|
722
|
-
userName: "
|
|
723
|
-
userEmail: "
|
|
724
|
-
bidAmount:
|
|
725
|
-
currency: _CURRENCY,
|
|
726
|
-
status: "active",
|
|
727
|
-
isWinning: true,
|
|
728
|
-
bidDate: daysAgo(6),
|
|
729
|
-
createdAt: daysAgo(6),
|
|
730
|
-
updatedAt: daysAgo(6),
|
|
731
|
-
},
|
|
732
|
-
// -- Vintage Denim Jacket (closing March 9) — 7 bids ----------------------
|
|
733
|
-
{
|
|
734
|
-
id: "bid-denim-jacket-ananya-1-20260225",
|
|
735
|
-
productId: "auction-vintage-denim-jacket-fashion-1",
|
|
736
|
-
productTitle: "Vintage Levi's 70505 Type III Denim Jacket (1978) — AUCTION",
|
|
737
|
-
userId: "user-ananya-bose-ananya",
|
|
738
|
-
userName: "Ananya Bose",
|
|
739
|
-
userEmail: "ananya@letitrip.in",
|
|
740
|
-
bidAmount: 8000,
|
|
741
|
-
currency: _CURRENCY,
|
|
742
|
-
status: "outbid",
|
|
743
|
-
isWinning: false,
|
|
744
|
-
bidDate: daysAgo(12),
|
|
745
|
-
createdAt: daysAgo(12),
|
|
746
|
-
updatedAt: daysAgo(11),
|
|
747
|
-
},
|
|
748
|
-
{
|
|
749
|
-
id: "bid-denim-jacket-jane-1-20260226",
|
|
750
|
-
productId: "auction-vintage-denim-jacket-fashion-1",
|
|
751
|
-
productTitle: "Vintage Levi's 70505 Type III Denim Jacket (1978) — AUCTION",
|
|
752
|
-
userId: "user-jane-smith-janes",
|
|
753
|
-
userName: "Jane Smith",
|
|
754
|
-
userEmail: "jane@letitrip.in",
|
|
755
|
-
bidAmount: 9000,
|
|
163
|
+
id: "bid-charizard-1sted-brock-1-20260424-b1c2d3",
|
|
164
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
165
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
166
|
+
userId: "user-brock-pewter-brock",
|
|
167
|
+
userName: "Brock",
|
|
168
|
+
userEmail: "brock@pewter.gym",
|
|
169
|
+
bidAmount: 344999,
|
|
756
170
|
currency: _CURRENCY,
|
|
757
171
|
status: "outbid",
|
|
758
172
|
isWinning: false,
|
|
759
|
-
bidDate: daysAgo(
|
|
760
|
-
createdAt: daysAgo(
|
|
761
|
-
updatedAt: daysAgo(
|
|
173
|
+
bidDate: daysAgo(1),
|
|
174
|
+
createdAt: daysAgo(1),
|
|
175
|
+
updatedAt: daysAgo(1),
|
|
762
176
|
},
|
|
177
|
+
// Bid 11 — Oak goes all in
|
|
763
178
|
{
|
|
764
|
-
id: "bid-
|
|
765
|
-
productId: "auction-
|
|
766
|
-
productTitle: "
|
|
767
|
-
userId: "user-
|
|
768
|
-
userName: "
|
|
769
|
-
userEmail: "
|
|
770
|
-
bidAmount:
|
|
179
|
+
id: "bid-charizard-1sted-oak-3-20260424-e4f5g6",
|
|
180
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
181
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
182
|
+
userId: "user-prof-oak-pallet-oak",
|
|
183
|
+
userName: "Professor Oak",
|
|
184
|
+
userEmail: "oak@pallettown.lab",
|
|
185
|
+
bidAmount: 349999,
|
|
771
186
|
currency: _CURRENCY,
|
|
772
187
|
status: "active",
|
|
773
|
-
isWinning: true,
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
productId: "auction-bose700-headphones-homeessentials-1",
|
|
797
|
-
productTitle: "Bose 700 Wireless Noise-Cancelling Headphones — AUCTION",
|
|
798
|
-
userId: "user-mike-johnson-mikejohn",
|
|
799
|
-
userName: "Mike Johnson",
|
|
800
|
-
userEmail: "mike@letitrip.in",
|
|
801
|
-
bidAmount: 26500,
|
|
802
|
-
currency: _CURRENCY,
|
|
803
|
-
status: "outbid",
|
|
804
|
-
isWinning: false,
|
|
805
|
-
bidDate: daysAgo(11),
|
|
806
|
-
createdAt: daysAgo(11),
|
|
807
|
-
updatedAt: daysAgo(7),
|
|
808
|
-
},
|
|
809
|
-
{
|
|
810
|
-
id: "bid-bose700-vikram-1-20260302",
|
|
811
|
-
productId: "auction-bose700-headphones-homeessentials-1",
|
|
812
|
-
productTitle: "Bose 700 Wireless Noise-Cancelling Headphones — AUCTION",
|
|
813
|
-
userId: "user-vikram-nair-vikram",
|
|
814
|
-
userName: "Vikram Nair",
|
|
815
|
-
userEmail: "vikram@letitrip.in",
|
|
816
|
-
bidAmount: 28000,
|
|
817
|
-
currency: _CURRENCY,
|
|
818
|
-
status: "active",
|
|
819
|
-
isWinning: true,
|
|
820
|
-
autoMaxBid: 35000,
|
|
821
|
-
bidDate: daysAgo(7),
|
|
822
|
-
createdAt: daysAgo(7),
|
|
823
|
-
updatedAt: daysAgo(7),
|
|
824
|
-
},
|
|
825
|
-
// -- Supreme Box Logo Tee (March 11) — 5 bids -----------------------------
|
|
826
|
-
{
|
|
827
|
-
id: "bid-supreme-tee-ravi-1-20260228",
|
|
828
|
-
productId: "auction-supreme-box-logo-tee-fashion-1",
|
|
829
|
-
productTitle: "Supreme Box Logo Tee FW23 — AUCTION",
|
|
830
|
-
userId: "user-ravi-kumar-ravi",
|
|
831
|
-
userName: "Ravi Kumar",
|
|
832
|
-
userEmail: "ravi@letitrip.in",
|
|
833
|
-
bidAmount: 20000,
|
|
834
|
-
currency: _CURRENCY,
|
|
835
|
-
status: "outbid",
|
|
836
|
-
isWinning: false,
|
|
837
|
-
bidDate: daysAgo(9),
|
|
838
|
-
createdAt: daysAgo(9),
|
|
839
|
-
updatedAt: daysAgo(7),
|
|
840
|
-
},
|
|
841
|
-
// -- Makima 1/7 Kotobukiya (AnimeCraft Apparel) — 3 bids ------------------
|
|
842
|
-
{
|
|
843
|
-
id: "bid-supreme-tee-john-1-20260302",
|
|
844
|
-
productId: "auction-chainsaw-man-makima-figure-fashion-1",
|
|
845
|
-
productTitle: "Chainsaw Man Makima 1/7 Scale Figure — Kotobukiya ARTFX J — AUCTION",
|
|
846
|
-
userId: "user-john-doe-johndoe",
|
|
847
|
-
userName: "John Doe",
|
|
848
|
-
userEmail: "john@letitrip.in",
|
|
849
|
-
bidAmount: 13000,
|
|
850
|
-
currency: _CURRENCY,
|
|
851
|
-
status: "outbid",
|
|
852
|
-
isWinning: false,
|
|
853
|
-
bidDate: daysAgo(7),
|
|
854
|
-
createdAt: daysAgo(7),
|
|
855
|
-
updatedAt: daysAgo(5),
|
|
188
|
+
isWinning: true, // Current highest bid — auction still open
|
|
189
|
+
previousBidAmount: 324999,
|
|
190
|
+
autoMaxBid: 500000,
|
|
191
|
+
bidDate: daysAgo(0),
|
|
192
|
+
createdAt: daysAgo(0),
|
|
193
|
+
updatedAt: daysAgo(0),
|
|
194
|
+
},
|
|
195
|
+
// -- CANCELLED bid — Sabrina withdrew before being outbid ------------------
|
|
196
|
+
// Tests: cancel bid API, bid list filtered by status
|
|
197
|
+
{
|
|
198
|
+
id: "bid-charizard-1sted-sabrina-cancelled-20260423-h7i8j9",
|
|
199
|
+
productId: "auction-charizard-1st-ed-base1-4-fire-blaine-auction-1",
|
|
200
|
+
productTitle: "1st Edition Charizard — Base Set #4 Holo (AUCTION, PSA 7)",
|
|
201
|
+
userId: "user-sabrina-saffron-sabrina",
|
|
202
|
+
userName: "Sabrina",
|
|
203
|
+
userEmail: "sabrina@saffron.gym",
|
|
204
|
+
bidAmount: 327500,
|
|
205
|
+
currency: _CURRENCY,
|
|
206
|
+
status: "cancelled",
|
|
207
|
+
isWinning: false,
|
|
208
|
+
bidDate: daysAgo(2),
|
|
209
|
+
createdAt: daysAgo(2),
|
|
210
|
+
updatedAt: daysAgo(2),
|
|
856
211
|
},
|
|
212
|
+
// ═══════════════════════════════════════════════════════════════════════════
|
|
213
|
+
// Mewtwo Base Set #10 PSA 9 — 6 bids
|
|
214
|
+
// auction-mewtwo-base1-10-psychic-surge-auction-1
|
|
215
|
+
// Starting: ₹49,999 | Current: ₹54,999 | Reserve: ₹55,000
|
|
216
|
+
// ═══════════════════════════════════════════════════════════════════════════
|
|
217
|
+
// Bid 1 — Sabrina opens (she loves Psychic cards)
|
|
857
218
|
{
|
|
858
|
-
id: "bid-
|
|
859
|
-
productId: "auction-
|
|
860
|
-
productTitle: "
|
|
861
|
-
userId: "user-
|
|
862
|
-
userName: "
|
|
863
|
-
userEmail: "
|
|
864
|
-
bidAmount:
|
|
219
|
+
id: "bid-mewtwo-psa9-sabrina-1-20260429-k1l2m3",
|
|
220
|
+
productId: "auction-mewtwo-base1-10-psychic-surge-auction-1",
|
|
221
|
+
productTitle: "Mewtwo — Base Set #10 Holo (AUCTION, PSA 9)",
|
|
222
|
+
userId: "user-sabrina-saffron-sabrina",
|
|
223
|
+
userName: "Sabrina",
|
|
224
|
+
userEmail: "sabrina@saffron.gym",
|
|
225
|
+
bidAmount: 49999,
|
|
865
226
|
currency: _CURRENCY,
|
|
866
227
|
status: "outbid",
|
|
867
228
|
isWinning: false,
|
|
@@ -869,299 +230,87 @@ export const bidsSeedData = [
|
|
|
869
230
|
createdAt: daysAgo(5),
|
|
870
231
|
updatedAt: daysAgo(4),
|
|
871
232
|
},
|
|
233
|
+
// Bid 2 — Gary counters
|
|
872
234
|
{
|
|
873
|
-
id: "bid-
|
|
874
|
-
productId: "auction-
|
|
875
|
-
productTitle: "
|
|
876
|
-
userId: "user-
|
|
877
|
-
userName: "
|
|
878
|
-
userEmail: "
|
|
879
|
-
bidAmount:
|
|
880
|
-
currency: _CURRENCY,
|
|
881
|
-
status: "active",
|
|
882
|
-
isWinning: true,
|
|
883
|
-
bidDate: daysAgo(4),
|
|
884
|
-
createdAt: daysAgo(4),
|
|
885
|
-
updatedAt: daysAgo(4),
|
|
886
|
-
},
|
|
887
|
-
// -- Sukuna 1/6 MegaHouse (OtakuShelf) — 3 bids --------------------------
|
|
888
|
-
{
|
|
889
|
-
id: "bid-trek-bike-ravi-1-20260221",
|
|
890
|
-
productId: "auction-jjk-sukuna-figure-homeessentials-1",
|
|
891
|
-
productTitle: "Jujutsu Kaisen Ryomen Sukuna King of Curses 1/6 Scale — AUCTION",
|
|
892
|
-
userId: "user-ravi-kumar-ravi",
|
|
893
|
-
userName: "Ravi Kumar",
|
|
894
|
-
userEmail: "ravi@letitrip.in",
|
|
895
|
-
bidAmount: 16000,
|
|
235
|
+
id: "bid-mewtwo-psa9-gary-1-20260430-n4o5p6",
|
|
236
|
+
productId: "auction-mewtwo-base1-10-psychic-surge-auction-1",
|
|
237
|
+
productTitle: "Mewtwo — Base Set #10 Holo (AUCTION, PSA 9)",
|
|
238
|
+
userId: "user-gary-oak-pallet-gary",
|
|
239
|
+
userName: "Gary Oak",
|
|
240
|
+
userEmail: "gary@pallet.town",
|
|
241
|
+
bidAmount: 52499,
|
|
896
242
|
currency: _CURRENCY,
|
|
897
243
|
status: "outbid",
|
|
898
244
|
isWinning: false,
|
|
899
|
-
bidDate: daysAgo(
|
|
900
|
-
createdAt: daysAgo(
|
|
901
|
-
updatedAt: daysAgo(
|
|
902
|
-
},
|
|
903
|
-
{
|
|
904
|
-
id: "bid-trek-bike-mike-1-20260225",
|
|
905
|
-
productId: "auction-jjk-sukuna-figure-homeessentials-1",
|
|
906
|
-
productTitle: "Jujutsu Kaisen Ryomen Sukuna King of Curses 1/6 Scale — AUCTION",
|
|
907
|
-
userId: "user-mike-johnson-mikejohn",
|
|
908
|
-
userName: "Mike Johnson",
|
|
909
|
-
userEmail: "mike@letitrip.in",
|
|
910
|
-
bidAmount: 19000,
|
|
911
|
-
currency: _CURRENCY,
|
|
912
|
-
status: "outbid",
|
|
913
|
-
isWinning: false,
|
|
914
|
-
bidDate: daysAgo(12),
|
|
915
|
-
createdAt: daysAgo(12),
|
|
916
|
-
updatedAt: daysAgo(7),
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
id: "bid-trek-bike-raj-1-20260302",
|
|
920
|
-
productId: "auction-jjk-sukuna-figure-homeessentials-1",
|
|
921
|
-
productTitle: "Jujutsu Kaisen Ryomen Sukuna King of Curses 1/6 Scale — AUCTION",
|
|
922
|
-
userId: "user-raj-patel-rajpatel",
|
|
923
|
-
userName: "Raj Patel",
|
|
924
|
-
userEmail: "raj@letitrip.in",
|
|
925
|
-
bidAmount: 22000,
|
|
926
|
-
currency: _CURRENCY,
|
|
927
|
-
status: "active",
|
|
928
|
-
isWinning: true,
|
|
929
|
-
autoMaxBid: 28000,
|
|
930
|
-
bidDate: daysAgo(7),
|
|
931
|
-
createdAt: daysAgo(7),
|
|
932
|
-
updatedAt: daysAgo(7),
|
|
933
|
-
},
|
|
934
|
-
// -- Saber Alter Wedding 1/7 (FigureVault JP) — 2 bids -------------------
|
|
935
|
-
{
|
|
936
|
-
id: "bid-hermes-scarf-jane-1-20260302",
|
|
937
|
-
productId: "auction-fate-saber-alter-figure-techhub-1",
|
|
938
|
-
productTitle: "Fate/Stay Night Saber Alter Wedding Dress 1/7 Scale — AUCTION",
|
|
939
|
-
userId: "user-jane-smith-janes",
|
|
940
|
-
userName: "Jane Smith",
|
|
941
|
-
userEmail: "jane@letitrip.in",
|
|
942
|
-
bidAmount: 20000,
|
|
943
|
-
currency: _CURRENCY,
|
|
944
|
-
status: "outbid",
|
|
945
|
-
isWinning: false,
|
|
946
|
-
bidDate: daysAgo(7),
|
|
947
|
-
createdAt: daysAgo(7),
|
|
948
|
-
updatedAt: daysAgo(5),
|
|
949
|
-
},
|
|
950
|
-
{
|
|
951
|
-
id: "bid-hermes-scarf-pooja-1-20260304",
|
|
952
|
-
productId: "auction-fate-saber-alter-figure-techhub-1",
|
|
953
|
-
productTitle: "Fate/Stay Night Saber Alter Wedding Dress 1/7 Scale — AUCTION",
|
|
954
|
-
userId: "user-pooja-mehta-pooja",
|
|
955
|
-
userName: "Pooja Mehta",
|
|
956
|
-
userEmail: "pooja@letitrip.in",
|
|
957
|
-
bidAmount: 28000,
|
|
958
|
-
currency: _CURRENCY,
|
|
959
|
-
status: "active",
|
|
960
|
-
isWinning: true,
|
|
961
|
-
bidDate: daysAgo(5),
|
|
962
|
-
createdAt: daysAgo(5),
|
|
963
|
-
updatedAt: daysAgo(5),
|
|
964
|
-
},
|
|
965
|
-
// -- Spirited Away Production Cel (OtakuShelf) — 3 bids ------------------
|
|
966
|
-
{
|
|
967
|
-
id: "bid-babolat-ravi-1-20260301",
|
|
968
|
-
productId: "auction-spirited-away-cel-homeessentials-1",
|
|
969
|
-
productTitle: "Spirited Away 2001 Original Production Cel — Studio Ghibli — AUCTION",
|
|
970
|
-
userId: "user-ravi-kumar-ravi",
|
|
971
|
-
userName: "Ravi Kumar",
|
|
972
|
-
userEmail: "ravi@letitrip.in",
|
|
973
|
-
bidAmount: 32000,
|
|
974
|
-
currency: _CURRENCY,
|
|
975
|
-
status: "outbid",
|
|
976
|
-
isWinning: false,
|
|
977
|
-
bidDate: daysAgo(8),
|
|
978
|
-
createdAt: daysAgo(8),
|
|
979
|
-
updatedAt: daysAgo(6),
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
id: "bid-babolat-mike-1-20260303",
|
|
983
|
-
productId: "auction-spirited-away-cel-homeessentials-1",
|
|
984
|
-
productTitle: "Spirited Away 2001 Original Production Cel — Studio Ghibli — AUCTION",
|
|
985
|
-
userId: "user-mike-johnson-mikejohn",
|
|
986
|
-
userName: "Mike Johnson",
|
|
987
|
-
userEmail: "mike@letitrip.in",
|
|
988
|
-
bidAmount: 39000,
|
|
989
|
-
currency: _CURRENCY,
|
|
990
|
-
status: "outbid",
|
|
991
|
-
isWinning: false,
|
|
992
|
-
bidDate: daysAgo(6),
|
|
993
|
-
createdAt: daysAgo(6),
|
|
994
|
-
updatedAt: daysAgo(5),
|
|
995
|
-
},
|
|
996
|
-
{
|
|
997
|
-
id: "bid-babolat-raj-1-20260304",
|
|
998
|
-
productId: "auction-spirited-away-cel-homeessentials-1",
|
|
999
|
-
productTitle: "Spirited Away 2001 Original Production Cel — Studio Ghibli — AUCTION",
|
|
1000
|
-
userId: "user-raj-patel-rajpatel",
|
|
1001
|
-
userName: "Raj Patel",
|
|
1002
|
-
userEmail: "raj@letitrip.in",
|
|
1003
|
-
bidAmount: 45000,
|
|
1004
|
-
currency: _CURRENCY,
|
|
1005
|
-
status: "active",
|
|
1006
|
-
isWinning: true,
|
|
1007
|
-
bidDate: daysAgo(5),
|
|
1008
|
-
createdAt: daysAgo(5),
|
|
1009
|
-
updatedAt: daysAgo(5),
|
|
1010
|
-
},
|
|
1011
|
-
// -- Charizard 1st Edition PSA 9 (AnimeCraft) — 2 bids -------------------
|
|
1012
|
-
{
|
|
1013
|
-
id: "bid-sony-a7iv-john-1-20260226",
|
|
1014
|
-
productId: "auction-pokemon-charizard-1st-ed-fashion-1",
|
|
1015
|
-
productTitle: "Pokémon 1st Edition Base Set Charizard Holo — PSA Graded 9 — AUCTION",
|
|
1016
|
-
userId: "user-john-doe-johndoe",
|
|
1017
|
-
userName: "John Doe",
|
|
1018
|
-
userEmail: "john@letitrip.in",
|
|
1019
|
-
bidAmount: 30000,
|
|
1020
|
-
currency: _CURRENCY,
|
|
1021
|
-
status: "outbid",
|
|
1022
|
-
isWinning: false,
|
|
1023
|
-
bidDate: daysAgo(11),
|
|
1024
|
-
createdAt: daysAgo(11),
|
|
1025
|
-
updatedAt: daysAgo(8),
|
|
1026
|
-
},
|
|
1027
|
-
{
|
|
1028
|
-
id: "bid-sony-a7iv-vikram-1-20260301",
|
|
1029
|
-
productId: "auction-pokemon-charizard-1st-ed-fashion-1",
|
|
1030
|
-
productTitle: "Pokémon 1st Edition Base Set Charizard Holo — PSA Graded 9 — AUCTION",
|
|
1031
|
-
userId: "user-vikram-nair-vikram",
|
|
1032
|
-
userName: "Vikram Nair",
|
|
1033
|
-
userEmail: "vikram@letitrip.in",
|
|
1034
|
-
bidAmount: 52000,
|
|
1035
|
-
currency: _CURRENCY,
|
|
1036
|
-
status: "active",
|
|
1037
|
-
isWinning: true,
|
|
1038
|
-
bidDate: daysAgo(8),
|
|
1039
|
-
createdAt: daysAgo(8),
|
|
1040
|
-
updatedAt: daysAgo(8),
|
|
245
|
+
bidDate: daysAgo(4),
|
|
246
|
+
createdAt: daysAgo(4),
|
|
247
|
+
updatedAt: daysAgo(3),
|
|
1041
248
|
},
|
|
1042
|
-
//
|
|
249
|
+
// Bid 3 — Sabrina raises
|
|
1043
250
|
{
|
|
1044
|
-
id: "bid-
|
|
1045
|
-
productId: "auction-
|
|
1046
|
-
productTitle: "
|
|
1047
|
-
userId: "user-
|
|
1048
|
-
userName: "
|
|
1049
|
-
userEmail: "
|
|
1050
|
-
bidAmount:
|
|
251
|
+
id: "bid-mewtwo-psa9-sabrina-2-20260501-q7r8s9",
|
|
252
|
+
productId: "auction-mewtwo-base1-10-psychic-surge-auction-1",
|
|
253
|
+
productTitle: "Mewtwo — Base Set #10 Holo (AUCTION, PSA 9)",
|
|
254
|
+
userId: "user-sabrina-saffron-sabrina",
|
|
255
|
+
userName: "Sabrina",
|
|
256
|
+
userEmail: "sabrina@saffron.gym",
|
|
257
|
+
bidAmount: 54999,
|
|
1051
258
|
currency: _CURRENCY,
|
|
1052
259
|
status: "outbid",
|
|
1053
260
|
isWinning: false,
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
261
|
+
previousBidAmount: 49999,
|
|
262
|
+
bidDate: daysAgo(3),
|
|
263
|
+
createdAt: daysAgo(3),
|
|
264
|
+
updatedAt: daysAgo(2),
|
|
1057
265
|
},
|
|
266
|
+
// Bid 4 — Ash places a bid
|
|
1058
267
|
{
|
|
1059
|
-
id: "bid-
|
|
1060
|
-
productId: "auction-
|
|
1061
|
-
productTitle: "
|
|
1062
|
-
userId: "user-
|
|
1063
|
-
userName: "
|
|
1064
|
-
userEmail: "
|
|
1065
|
-
bidAmount:
|
|
1066
|
-
currency: _CURRENCY,
|
|
1067
|
-
status: "active",
|
|
1068
|
-
isWinning: true,
|
|
1069
|
-
bidDate: daysAgo(5),
|
|
1070
|
-
createdAt: daysAgo(5),
|
|
1071
|
-
updatedAt: daysAgo(5),
|
|
1072
|
-
},
|
|
1073
|
-
// -- Rem Wedding 1/7 GSC (FigureVault JP) — 2 bids -----------------------
|
|
1074
|
-
{
|
|
1075
|
-
id: "bid-nikon-z30-sneha-1-20260303",
|
|
1076
|
-
productId: "auction-rezero-rem-wedding-figure-techhub-1",
|
|
1077
|
-
productTitle: "Re:Zero Rem Wedding Dress 1/7 Scale — Good Smile Company — AUCTION",
|
|
1078
|
-
userId: "user-sneha-gupta-sneha",
|
|
1079
|
-
userName: "Sneha Gupta",
|
|
1080
|
-
userEmail: "sneha@letitrip.in",
|
|
1081
|
-
bidAmount: 22000,
|
|
268
|
+
id: "bid-mewtwo-psa9-ash-1-20260501-t1u2v3",
|
|
269
|
+
productId: "auction-mewtwo-base1-10-psychic-surge-auction-1",
|
|
270
|
+
productTitle: "Mewtwo — Base Set #10 Holo (AUCTION, PSA 9)",
|
|
271
|
+
userId: "user-ash-ketchum-pallet-ash",
|
|
272
|
+
userName: "Ash Ketchum",
|
|
273
|
+
userEmail: "ash@pallet.town",
|
|
274
|
+
bidAmount: 57499,
|
|
1082
275
|
currency: _CURRENCY,
|
|
1083
276
|
status: "outbid",
|
|
1084
277
|
isWinning: false,
|
|
1085
|
-
bidDate: daysAgo(
|
|
1086
|
-
createdAt: daysAgo(
|
|
1087
|
-
updatedAt: daysAgo(
|
|
278
|
+
bidDate: daysAgo(2),
|
|
279
|
+
createdAt: daysAgo(2),
|
|
280
|
+
updatedAt: daysAgo(1),
|
|
1088
281
|
},
|
|
282
|
+
// Bid 5 — Professor Oak bids
|
|
1089
283
|
{
|
|
1090
|
-
id: "bid-
|
|
1091
|
-
productId: "auction-
|
|
1092
|
-
productTitle: "
|
|
1093
|
-
userId: "user-
|
|
1094
|
-
userName: "
|
|
1095
|
-
userEmail: "
|
|
1096
|
-
bidAmount:
|
|
1097
|
-
currency: _CURRENCY,
|
|
1098
|
-
status: "active",
|
|
1099
|
-
isWinning: true,
|
|
1100
|
-
bidDate: daysAgo(4),
|
|
1101
|
-
createdAt: daysAgo(4),
|
|
1102
|
-
updatedAt: daysAgo(4),
|
|
1103
|
-
},
|
|
1104
|
-
// -- Oda Signed Artbook (FigureVault JP) — 2 bids ------------------------
|
|
1105
|
-
{
|
|
1106
|
-
id: "bid-iphone15-bundle-ravi-1-20260304",
|
|
1107
|
-
productId: "auction-one-piece-signed-artbook-techhub-1",
|
|
1108
|
-
productTitle: "One Piece 25th Anniversary Artbook Signed by Eiichiro Oda — AUCTION",
|
|
1109
|
-
userId: "user-ravi-kumar-ravi",
|
|
1110
|
-
userName: "Ravi Kumar",
|
|
1111
|
-
userEmail: "ravi@letitrip.in",
|
|
1112
|
-
bidAmount: 11000,
|
|
284
|
+
id: "bid-mewtwo-psa9-oak-1-20260502-w4x5y6",
|
|
285
|
+
productId: "auction-mewtwo-base1-10-psychic-surge-auction-1",
|
|
286
|
+
productTitle: "Mewtwo — Base Set #10 Holo (AUCTION, PSA 9)",
|
|
287
|
+
userId: "user-prof-oak-pallet-oak",
|
|
288
|
+
userName: "Professor Oak",
|
|
289
|
+
userEmail: "oak@pallettown.lab",
|
|
290
|
+
bidAmount: 59999,
|
|
1113
291
|
currency: _CURRENCY,
|
|
1114
292
|
status: "outbid",
|
|
1115
293
|
isWinning: false,
|
|
1116
|
-
bidDate: daysAgo(
|
|
1117
|
-
createdAt: daysAgo(
|
|
1118
|
-
updatedAt: daysAgo(
|
|
294
|
+
bidDate: daysAgo(1),
|
|
295
|
+
createdAt: daysAgo(1),
|
|
296
|
+
updatedAt: daysAgo(1),
|
|
1119
297
|
},
|
|
298
|
+
// Bid 6 — Gary wins with current highest bid
|
|
1120
299
|
{
|
|
1121
|
-
id: "bid-
|
|
1122
|
-
productId: "auction-
|
|
1123
|
-
productTitle: "
|
|
1124
|
-
userId: "user-
|
|
1125
|
-
userName: "
|
|
1126
|
-
userEmail: "
|
|
1127
|
-
bidAmount:
|
|
300
|
+
id: "bid-mewtwo-psa9-gary-2-20260503-z7a8b9",
|
|
301
|
+
productId: "auction-mewtwo-base1-10-psychic-surge-auction-1",
|
|
302
|
+
productTitle: "Mewtwo — Base Set #10 Holo (AUCTION, PSA 9)",
|
|
303
|
+
userId: "user-gary-oak-pallet-gary",
|
|
304
|
+
userName: "Gary Oak",
|
|
305
|
+
userEmail: "gary@pallet.town",
|
|
306
|
+
bidAmount: 64999,
|
|
1128
307
|
currency: _CURRENCY,
|
|
1129
308
|
status: "active",
|
|
1130
309
|
isWinning: true,
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
{
|
|
1137
|
-
id: "bid-kanjeevaram-ananya-1-20260304",
|
|
1138
|
-
productId: "auction-chainsaw-man-makima-figure-fashion-1",
|
|
1139
|
-
productTitle: "Chainsaw Man Makima 1/7 Scale Figure — Kotobukiya ARTFX J — AUCTION",
|
|
1140
|
-
userId: "user-ananya-bose-ananya",
|
|
1141
|
-
userName: "Ananya Bose",
|
|
1142
|
-
userEmail: "ananya@letitrip.in",
|
|
1143
|
-
bidAmount: 19000,
|
|
1144
|
-
currency: _CURRENCY,
|
|
1145
|
-
status: "outbid",
|
|
1146
|
-
isWinning: false,
|
|
1147
|
-
bidDate: daysAgo(5),
|
|
1148
|
-
createdAt: daysAgo(5),
|
|
1149
|
-
updatedAt: daysAgo(4),
|
|
1150
|
-
},
|
|
1151
|
-
{
|
|
1152
|
-
id: "bid-kanjeevaram-jane-1-20260305",
|
|
1153
|
-
productId: "auction-chainsaw-man-makima-figure-fashion-1",
|
|
1154
|
-
productTitle: "Chainsaw Man Makima 1/7 Scale Figure — Kotobukiya ARTFX J — AUCTION",
|
|
1155
|
-
userId: "user-jane-smith-janes",
|
|
1156
|
-
userName: "Jane Smith",
|
|
1157
|
-
userEmail: "jane@letitrip.in",
|
|
1158
|
-
bidAmount: 20500,
|
|
1159
|
-
currency: _CURRENCY,
|
|
1160
|
-
status: "outbid",
|
|
1161
|
-
isWinning: false,
|
|
1162
|
-
bidDate: daysAgo(4),
|
|
1163
|
-
createdAt: daysAgo(4),
|
|
1164
|
-
updatedAt: daysAgo(4),
|
|
310
|
+
previousBidAmount: 52499,
|
|
311
|
+
autoMaxBid: 85000,
|
|
312
|
+
bidDate: daysAgo(0),
|
|
313
|
+
createdAt: daysAgo(0),
|
|
314
|
+
updatedAt: daysAgo(0),
|
|
1165
315
|
},
|
|
1166
|
-
// No bids on pre-orders — tests "no bids yet" state in auction detail page
|
|
1167
316
|
];
|