@mohasinac/appkit 2.7.53 → 2.7.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_internal/client/features/layout/DashboardLayoutClient.js +1 -1
- package/dist/_internal/server/jobs/core/auctionSettlement.js +6 -3
- package/dist/_internal/server/jobs/core/bundleStockSync.js +9 -7
- package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +12 -3
- package/dist/_internal/server/jobs/core/onProductStockChange.js +12 -13
- package/dist/_internal/server/jobs/core/onProductWrite.js +1 -3
- package/dist/_internal/server/jobs/handlers/onProductStockChange.js +11 -2
- package/dist/client.d.ts +2 -0
- package/dist/client.js +1 -0
- package/dist/constants/field-names.d.ts +4 -3
- package/dist/constants/field-names.js +8 -8
- package/dist/errors/error-codes.d.ts +3 -0
- package/dist/errors/error-codes.js +3 -0
- package/dist/errors/messages.d.ts +3 -0
- package/dist/errors/messages.js +3 -0
- package/dist/features/admin/types/product.types.d.ts +1 -1
- package/dist/features/admin/types/product.types.js +2 -3
- package/dist/features/auctions/actions/bid-actions.d.ts +9 -0
- package/dist/features/auctions/actions/bid-actions.js +61 -0
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +2 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +5 -4
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +3 -1
- package/dist/features/auctions/components/PlaceBidFormClient.js +32 -2
- package/dist/features/auctions/types/index.d.ts +1 -1
- package/dist/features/layout/AppLayoutShell.js +1 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +2 -11
- package/dist/features/products/api/[id]/route.js +4 -8
- package/dist/features/products/api/route.js +1 -3
- package/dist/features/products/components/AuctionsIndexListing.js +3 -11
- package/dist/features/products/components/PrizeDrawsIndexListing.js +2 -10
- package/dist/features/products/components/ProductFilters.d.ts +33 -9
- package/dist/features/products/components/ProductFilters.js +6 -29
- package/dist/features/products/components/ProductForm.js +2 -3
- package/dist/features/products/constants/sieve.d.ts +162 -0
- package/dist/features/products/constants/sieve.js +95 -0
- package/dist/features/products/repository/products.repository.d.ts +5 -0
- package/dist/features/products/repository/products.repository.js +23 -3
- package/dist/features/products/schemas/firestore.d.ts +4 -4
- package/dist/features/products/schemas/firestore.js +2 -3
- package/dist/features/products/schemas/index.d.ts +6 -6
- package/dist/features/products/schemas/index.js +2 -6
- package/dist/features/products/types/index.d.ts +1 -1
- package/dist/features/seller/actions/offer-actions.js +2 -2
- package/dist/features/wishlist/types/index.d.ts +1 -1
- package/dist/index.d.ts +6 -3
- package/dist/index.js +6 -4
- package/dist/seed/addresses-seed-data.d.ts +2 -18
- package/dist/seed/addresses-seed-data.js +137 -203
- package/dist/seed/bids-seed-data.d.ts +2 -8
- package/dist/seed/bids-seed-data.js +172 -648
- package/dist/seed/blog-posts-seed-data.d.ts +0 -5
- package/dist/seed/blog-posts-seed-data.js +341 -596
- package/dist/seed/carousel-slides-seed-data.d.ts +0 -5
- package/dist/seed/carousel-slides-seed-data.js +61 -192
- package/dist/seed/carousels-seed-data.js +18 -1
- package/dist/seed/cart-seed-data.d.ts +1 -18
- package/dist/seed/cart-seed-data.js +116 -293
- package/dist/seed/categories-seed-data.d.ts +0 -6
- package/dist/seed/categories-seed-data.js +1409 -1537
- package/dist/seed/claimed-coupons-seed-data.d.ts +0 -11
- package/dist/seed/claimed-coupons-seed-data.js +32 -29
- package/dist/seed/conversations-seed-data.d.ts +0 -6
- package/dist/seed/conversations-seed-data.js +132 -280
- package/dist/seed/coupon-usage-seed-data.d.ts +0 -16
- package/dist/seed/coupon-usage-seed-data.js +30 -44
- package/dist/seed/coupons-seed-data.d.ts +0 -6
- package/dist/seed/coupons-seed-data.js +141 -489
- package/dist/seed/events-seed-data.d.ts +0 -6
- package/dist/seed/events-seed-data.js +201 -379
- package/dist/seed/faq-seed-data.d.ts +0 -14
- package/dist/seed/faq-seed-data.js +609 -1184
- package/dist/seed/grouped-listings-seed-data.d.ts +119 -8
- package/dist/seed/grouped-listings-seed-data.js +148 -233
- package/dist/seed/history-seed-data.d.ts +0 -7
- package/dist/seed/history-seed-data.js +50 -54
- package/dist/seed/homepage-sections-seed-data.d.ts +0 -5
- package/dist/seed/homepage-sections-seed-data.js +83 -175
- package/dist/seed/index.d.ts +1 -1
- package/dist/seed/index.js +1 -1
- package/dist/seed/manifest.js +2 -2
- package/dist/seed/notifications-seed-data.d.ts +0 -6
- package/dist/seed/notifications-seed-data.js +309 -196
- package/dist/seed/offers-seed-data.d.ts +0 -8
- package/dist/seed/offers-seed-data.js +118 -197
- package/dist/seed/orders-seed-data.d.ts +2 -8
- package/dist/seed/orders-seed-data.js +248 -1510
- package/dist/seed/payouts-seed-data.d.ts +0 -6
- package/dist/seed/payouts-seed-data.js +102 -441
- package/dist/seed/products-auctions-seed-data.d.ts +1 -14
- package/dist/seed/products-auctions-seed-data.js +612 -1084
- package/dist/seed/products-preorders-seed-data.d.ts +119 -14
- package/dist/seed/products-preorders-seed-data.js +154 -455
- package/dist/seed/products-standard-seed-data.d.ts +1 -15
- package/dist/seed/products-standard-seed-data.js +1355 -4128
- package/dist/seed/reviews-seed-data.d.ts +2 -8
- package/dist/seed/reviews-seed-data.js +99 -1182
- package/dist/seed/scammers-seed-data.d.ts +0 -15
- package/dist/seed/scammers-seed-data.js +36 -37
- package/dist/seed/sessions-seed-data.d.ts +0 -13
- package/dist/seed/sessions-seed-data.js +58 -335
- package/dist/seed/site-settings-seed-data.d.ts +0 -4
- package/dist/seed/site-settings-seed-data.js +61 -52
- package/dist/seed/store-addresses-seed-data.js +27 -151
- package/dist/seed/store-extensions-seed-data.d.ts +0 -7
- package/dist/seed/store-extensions-seed-data.js +147 -261
- package/dist/seed/stores-seed-data.d.ts +0 -5
- package/dist/seed/stores-seed-data.js +222 -184
- package/dist/seed/sub-listings-seed-data.d.ts +119 -0
- package/dist/seed/sub-listings-seed-data.js +447 -0
- package/dist/seed/support-tickets-seed-data.d.ts +0 -7
- package/dist/seed/support-tickets-seed-data.js +82 -75
- package/dist/seed/users-seed-data.d.ts +0 -5
- package/dist/seed/users-seed-data.js +279 -634
- package/dist/seed/wishlists-seed-data.d.ts +0 -9
- package/dist/seed/wishlists-seed-data.js +36 -52
- package/dist/seo/json-ld.js +6 -4
- package/dist/styles.css +8052 -3
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/search-tokens.d.ts +2 -0
- package/dist/utils/search-tokens.js +21 -0
- package/package.json +2 -2
- package/scripts/seed-cli.mjs +2 -2
|
@@ -1,1161 +1,689 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
1
|
+
/*
|
|
2
|
+
* WHY: Seeds auction listings for the YGO marketplace, providing high-value graded cards and collectibles with dynamic bidding mechanics.
|
|
3
|
+
* WHAT: Exports 20 active/ended auctions (16 Kaiba + 4 Admin store). Each auction includes starting bid, buy-it-now price, grading info (PSA/BGS/CGC or raw), status flags (active/sold/draft), and bid history counts. All use YGOPRODECK images. Status distribution: 14 active (published), 4 sold (ended), 2 draft (upcoming).
|
|
4
|
+
*
|
|
5
|
+
* EXPORTS:
|
|
6
|
+
* productsAuctionsSeedData — Array of 20 auction products with listingType:"auction"
|
|
7
|
+
*
|
|
8
|
+
* @tag domain:auctions,products
|
|
9
|
+
* @tag layer:seed
|
|
10
|
+
* @tag pattern:none
|
|
11
|
+
* @tag access:server-only
|
|
12
|
+
* @tag consumers:seed/index.ts,seed/runner.ts,SeedPanel
|
|
13
|
+
* @tag sideEffects:none
|
|
8
14
|
*/
|
|
9
|
-
import { PRODUCT_FIELDS
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
// ── 1. ACTIVE — ending in 12h (Charizard Base Set #4 PSA 9) ───────────────
|
|
17
|
-
{
|
|
18
|
-
id: "auction-pokemon-charizard-base1-psa9",
|
|
19
|
-
slug: "auction-pokemon-charizard-base1-psa9",
|
|
20
|
-
title: "Pokémon Base Set 1st Edition Charizard #4 Holo — PSA 9 MINT (AUCTION)",
|
|
21
|
-
description: "An absolutely pristine 1st Edition Base Set Charizard #4 graded PSA 9 MINT — one of the most iconic and sought-after Pokémon cards in existence. The 1st Edition stamp on the left of the artwork, shadow-less frame, and deep crimson fire breath in perfect registration. PSA 9 MINT has four sharp corners, bright lustre, no visible surface scratches, well-centered image. Certificate number visible on slab. This is auction lot 1 of 1 — once this card is gone, there is no re-stock. A generational collectible.",
|
|
22
|
-
categorySlugs: ["category-vintage-tcg"],
|
|
23
|
-
categoryNames: ["Vintage TCG"],
|
|
24
|
-
brand: "The Pokémon Company",
|
|
25
|
-
brandSlug: "brand-pokemon-company",
|
|
26
|
-
auctionEndDate: hoursAhead(12),
|
|
27
|
-
startingBid: 9999900,
|
|
28
|
-
currentBid: 29999900,
|
|
29
|
-
bidCount: 6,
|
|
30
|
-
reservePrice: 25000000,
|
|
31
|
-
minBidIncrement: 500000,
|
|
32
|
-
autoExtendable: true,
|
|
33
|
-
auctionExtensionMinutes: 5,
|
|
34
|
-
auctionShippingPaidBy: "winner",
|
|
35
|
-
price: 9999900,
|
|
36
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
15
|
+
import { PRODUCT_FIELDS } from "../constants/field-names";
|
|
16
|
+
import { buildSearchTokens } from "../utils/search-tokens";
|
|
17
|
+
function withTokens(p) {
|
|
18
|
+
return {
|
|
19
|
+
tags: [],
|
|
20
|
+
featured: false,
|
|
21
|
+
price: p.startingBid ?? 0,
|
|
37
22
|
stockQuantity: 1,
|
|
38
|
-
availableQuantity: 1,
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
23
|
+
availableQuantity: p.isSold ? 0 : 1,
|
|
24
|
+
...p,
|
|
25
|
+
searchTokens: buildSearchTokens(p.title, p.description, p.brand, p.brandSlug, p.categoryNames, p.tags, p.features, p.condition, p.card?.setName, p.card?.cardNumber, p.grading?.service, p.specifications?.map((s) => `${s.name} ${s.value}`)),
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
const CARD_IDS = {
|
|
29
|
+
darkMagician: 46986414,
|
|
30
|
+
blueEyesWhiteDragon: 89631139,
|
|
31
|
+
darkMagicianGirl: 38033121,
|
|
32
|
+
chaosEmperorDragon: 82301904,
|
|
33
|
+
potOfGreed: 55144522,
|
|
34
|
+
raigeki: 12580477,
|
|
35
|
+
mirrorForce: 44095762,
|
|
36
|
+
monsterReborn: 83764718,
|
|
37
|
+
changeOfHeart: 4031928,
|
|
38
|
+
blueEyesUltimateDragon: 23995346,
|
|
39
|
+
rainbowDragon: 79105217,
|
|
40
|
+
exodiaHead: 33396948,
|
|
41
|
+
jinzo: 77585513,
|
|
42
|
+
gateGuardian: 25833572,
|
|
43
|
+
elementalHeroNeos: 89943723,
|
|
44
|
+
};
|
|
45
|
+
const _kaibaAuctionsSeedData = [
|
|
46
|
+
{
|
|
47
|
+
id: "auction-psa10-blue-eyes-lob",
|
|
48
|
+
slug: "auction-psa10-blue-eyes-lob",
|
|
49
|
+
title: "Blue-Eyes White Dragon (LOB PSA 10)",
|
|
50
|
+
description: "First Edition Blue-Eyes White Dragon LOB in PSA 10 gem mint condition. Ultra rare.",
|
|
51
|
+
categorySlugs: ["category-graded-cards", "category-psa-graded"],
|
|
52
|
+
categoryNames: ["Graded Cards", "PSA Slabs"],
|
|
53
|
+
brandSlug: "brand-konami",
|
|
54
|
+
brand: "Konami",
|
|
55
|
+
startingBid: 4999900, // ₹49,999
|
|
56
|
+
buyItNowPriceInPaise: 9999900, // ₹99,999
|
|
57
|
+
currentBid: 7999900,
|
|
58
|
+
currency: "INR",
|
|
59
|
+
auctionEndDate: new Date(Date.now() + 3 * 24 * 60 * 60 * 1000), // +3 days
|
|
60
|
+
bidCount: 8,
|
|
61
|
+
bidsHaveStarted: true,
|
|
62
|
+
isSold: false,
|
|
63
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.blueEyesWhiteDragon}.jpg`,
|
|
64
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.blueEyesWhiteDragon}.jpg`],
|
|
45
65
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
"graded",
|
|
57
|
-
"vintage",
|
|
58
|
-
"auction",
|
|
59
|
-
],
|
|
60
|
-
condition: "graded",
|
|
61
|
-
specifications: [
|
|
62
|
-
{ name: "Card", value: "Charizard #4 Holo — Base Set 1st Edition" },
|
|
63
|
-
{ name: "Grade", value: "PSA 9 MINT" },
|
|
64
|
-
{ name: "Print", value: "1st Edition (stamped)" },
|
|
65
|
-
{ name: "Language", value: "English" },
|
|
66
|
-
{ name: "Year", value: "1999" },
|
|
67
|
-
{ name: "Reserve Price", value: "₹2,50,000" },
|
|
68
|
-
],
|
|
69
|
-
features: [
|
|
70
|
-
"PSA 9 MINT — 4 sharp corners, bright lustre",
|
|
71
|
-
"1st Edition stamp — most valuable print run",
|
|
72
|
-
"Certificate number confirmed — not a fake slab",
|
|
73
|
-
"Reserve price set at ₹2,50,000",
|
|
74
|
-
"Auto-extend: 5 minutes if bid in final 5 min",
|
|
75
|
-
],
|
|
76
|
-
shippingInfo: "Winner-paid insured shipping via Blue Dart courier. Double-boxed with foam, PSA slab protector, and tamper-evident seal.",
|
|
77
|
-
returnPolicy: "No returns on auction lots. Verified photos and PSA certificate provided before shipping. Any dispute about card grade handled via PSA directly.",
|
|
78
|
-
insurance: true,
|
|
79
|
-
insuranceCost: 100000,
|
|
80
|
-
createdAt: daysAgo(14),
|
|
81
|
-
updatedAt: hoursAgo(2),
|
|
66
|
+
grading: {
|
|
67
|
+
service: "PSA",
|
|
68
|
+
grade: 10,
|
|
69
|
+
certNumber: "PSA-YGO-112233",
|
|
70
|
+
},
|
|
71
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
72
|
+
storeId: "store-kaiba-corp-cards",
|
|
73
|
+
storeName: "Kaiba Corp Card Vault",
|
|
74
|
+
createdAt: new Date("2026-05-18"),
|
|
75
|
+
updatedAt: new Date("2026-05-21"),
|
|
82
76
|
},
|
|
83
|
-
// ── 2. ACTIVE — ending in 48h (Exodia 1st Edition LOB PSA 8) ──────────────
|
|
84
77
|
{
|
|
85
|
-
id: "auction-
|
|
86
|
-
slug: "auction-
|
|
87
|
-
title: "
|
|
88
|
-
description: "
|
|
89
|
-
categorySlugs: ["category-
|
|
90
|
-
categoryNames: ["
|
|
78
|
+
id: "auction-psa9-dark-magician-lob",
|
|
79
|
+
slug: "auction-psa9-dark-magician-lob",
|
|
80
|
+
title: "Dark Magician (LOB PSA 9)",
|
|
81
|
+
description: "First Edition Dark Magician LOB in PSA 9 mint condition.",
|
|
82
|
+
categorySlugs: ["category-graded-cards", "category-psa-graded"],
|
|
83
|
+
categoryNames: ["Graded Cards", "PSA Slabs"],
|
|
84
|
+
brandSlug: "brand-konami",
|
|
91
85
|
brand: "Konami",
|
|
86
|
+
startingBid: 2999900,
|
|
87
|
+
buyItNowPriceInPaise: 5999900,
|
|
88
|
+
currentBid: 4499900,
|
|
89
|
+
currency: "INR",
|
|
90
|
+
auctionEndDate: new Date(Date.now() + 5 * 24 * 60 * 60 * 1000),
|
|
91
|
+
bidCount: 6,
|
|
92
|
+
bidsHaveStarted: true,
|
|
93
|
+
isSold: false,
|
|
94
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.darkMagician}.jpg`,
|
|
95
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.darkMagician}.jpg`],
|
|
96
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
97
|
+
grading: { service: "PSA", grade: 9, certNumber: "PSA-YGO-334455" },
|
|
98
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
99
|
+
storeId: "store-kaiba-corp-cards",
|
|
100
|
+
storeName: "Kaiba Corp Card Vault",
|
|
101
|
+
createdAt: new Date("2026-05-17"),
|
|
102
|
+
updatedAt: new Date("2026-05-21"),
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
id: "auction-1st-ed-pot-of-greed",
|
|
106
|
+
slug: "auction-1st-ed-pot-of-greed",
|
|
107
|
+
title: "Pot of Greed (LOB 1st Edition)",
|
|
108
|
+
description: "1st Edition Pot of Greed from LOB. Raw, near mint condition.",
|
|
109
|
+
categorySlugs: ["category-spell-cards", "category-singles"],
|
|
110
|
+
categoryNames: ["Spell / Magic Cards", "Singles"],
|
|
92
111
|
brandSlug: "brand-konami",
|
|
93
|
-
|
|
112
|
+
brand: "Konami",
|
|
94
113
|
startingBid: 1499900,
|
|
95
|
-
|
|
114
|
+
buyItNowPriceInPaise: 2999900,
|
|
115
|
+
currentBid: 2299900,
|
|
116
|
+
currency: "INR",
|
|
117
|
+
auctionEndDate: new Date(Date.now() + 2 * 24 * 60 * 60 * 1000),
|
|
118
|
+
bidCount: 4,
|
|
119
|
+
bidsHaveStarted: true,
|
|
120
|
+
isSold: false,
|
|
121
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.potOfGreed}.jpg`,
|
|
122
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.potOfGreed}.jpg`],
|
|
123
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
124
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
125
|
+
storeId: "store-kaiba-corp-cards",
|
|
126
|
+
storeName: "Kaiba Corp Card Vault",
|
|
127
|
+
createdAt: new Date("2026-05-19"),
|
|
128
|
+
updatedAt: new Date("2026-05-21"),
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
id: "auction-psa9-chaos-emperor",
|
|
132
|
+
slug: "auction-psa9-chaos-emperor",
|
|
133
|
+
title: "Chaos Emperor Dragon (IOC PSA 9)",
|
|
134
|
+
description: "Chaos Emperor Dragon IOC in PSA 9 condition. Powerful card.",
|
|
135
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
136
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
137
|
+
brandSlug: "brand-konami",
|
|
138
|
+
brand: "Konami",
|
|
139
|
+
startingBid: 999900,
|
|
140
|
+
buyItNowPriceInPaise: 1999900,
|
|
141
|
+
currentBid: 1599900,
|
|
142
|
+
currency: "INR",
|
|
143
|
+
auctionEndDate: new Date(Date.now() + 7 * 24 * 60 * 60 * 1000),
|
|
96
144
|
bidCount: 5,
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
auctionShippingPaidBy: "winner",
|
|
102
|
-
price: 1499900,
|
|
103
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
104
|
-
stockQuantity: 1,
|
|
105
|
-
availableQuantity: 1,
|
|
106
|
-
mainImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
107
|
-
images: [
|
|
108
|
-
"https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
109
|
-
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
110
|
-
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
111
|
-
],
|
|
145
|
+
bidsHaveStarted: true,
|
|
146
|
+
isSold: false,
|
|
147
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.chaosEmperorDragon}.jpg`,
|
|
148
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.chaosEmperorDragon}.jpg`],
|
|
112
149
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
"exodia",
|
|
120
|
-
"lob",
|
|
121
|
-
"1st-edition",
|
|
122
|
-
"psa-8",
|
|
123
|
-
"graded",
|
|
124
|
-
"vintage",
|
|
125
|
-
"auction",
|
|
126
|
-
],
|
|
127
|
-
condition: "graded",
|
|
128
|
-
specifications: [
|
|
129
|
-
{ name: "Card", value: "Exodia the Forbidden One — LOB-000" },
|
|
130
|
-
{ name: "Grade", value: "PSA 8 NM-MT" },
|
|
131
|
-
{ name: "Print", value: "1st Edition" },
|
|
132
|
-
{ name: "Language", value: "English" },
|
|
133
|
-
{ name: "Year", value: "2002" },
|
|
134
|
-
{ name: "Reserve Price", value: "₹40,000" },
|
|
135
|
-
],
|
|
136
|
-
features: [
|
|
137
|
-
"PSA 8 NM-MT — nearly perfect condition",
|
|
138
|
-
"1st Edition LOB-000 — rarest print",
|
|
139
|
-
"Exodia — most legendary card in the game",
|
|
140
|
-
"Reserve met — guaranteed to sell",
|
|
141
|
-
"WCS 2022 qualifier-sourced — tournament provenance",
|
|
142
|
-
],
|
|
143
|
-
shippingInfo: "Winner-paid insured shipping. PSA slab shipped in foam-lined rigid mailer via Blue Dart.",
|
|
144
|
-
returnPolicy: "No returns on auction lots. Slab photos provided before shipping.",
|
|
145
|
-
insurance: true,
|
|
146
|
-
insuranceCost: 20000,
|
|
147
|
-
createdAt: daysAgo(7),
|
|
148
|
-
updatedAt: hoursAgo(6),
|
|
150
|
+
grading: { service: "PSA", grade: 9, certNumber: "PSA-YGO-556677" },
|
|
151
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
152
|
+
storeId: "store-kaiba-corp-cards",
|
|
153
|
+
storeName: "Kaiba Corp Card Vault",
|
|
154
|
+
createdAt: new Date("2026-05-14"),
|
|
155
|
+
updatedAt: new Date("2026-05-21"),
|
|
149
156
|
},
|
|
150
|
-
// ── 3. ACTIVE — ending in 6h (Hot Wheels Redline Pink Camaro 1967) ─────────
|
|
151
157
|
{
|
|
152
|
-
id: "auction-
|
|
153
|
-
slug: "auction-
|
|
154
|
-
title: "
|
|
155
|
-
description: "
|
|
156
|
-
categorySlugs: ["category-
|
|
157
|
-
categoryNames: ["
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
currentBid:
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
171
|
-
stockQuantity: 1,
|
|
172
|
-
availableQuantity: 1,
|
|
173
|
-
mainImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
174
|
-
images: [
|
|
175
|
-
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
176
|
-
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
177
|
-
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
178
|
-
],
|
|
158
|
+
id: "auction-1st-ed-mirror-force",
|
|
159
|
+
slug: "auction-1st-ed-mirror-force",
|
|
160
|
+
title: "Mirror Force (MRD 1st Edition)",
|
|
161
|
+
description: "1st Edition Mirror Force from Metal Raiders.",
|
|
162
|
+
categorySlugs: ["category-trap-cards", "category-singles"],
|
|
163
|
+
categoryNames: ["Trap Cards", "Singles"],
|
|
164
|
+
brandSlug: "brand-konami",
|
|
165
|
+
brand: "Konami",
|
|
166
|
+
startingBid: 799900,
|
|
167
|
+
buyItNowPriceInPaise: 1499900,
|
|
168
|
+
currentBid: 1199900,
|
|
169
|
+
currency: "INR",
|
|
170
|
+
auctionEndDate: new Date(Date.now() + 4 * 24 * 60 * 60 * 1000),
|
|
171
|
+
bidCount: 3,
|
|
172
|
+
bidsHaveStarted: true,
|
|
173
|
+
isSold: false,
|
|
174
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.mirrorForce}.jpg`,
|
|
175
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.mirrorForce}.jpg`],
|
|
179
176
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
180
|
-
storeName: "Diecast Depot",
|
|
181
|
-
storeId: "store-diecast-depot",
|
|
182
|
-
featured: false,
|
|
183
|
-
isPromoted: true,
|
|
184
|
-
tags: [
|
|
185
|
-
"hot-wheels",
|
|
186
|
-
"redline",
|
|
187
|
-
"1967",
|
|
188
|
-
"camaro",
|
|
189
|
-
"pink",
|
|
190
|
-
"spectraflame",
|
|
191
|
-
"vintage",
|
|
192
|
-
"rare",
|
|
193
|
-
"auction",
|
|
194
|
-
],
|
|
195
177
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
{ name: "Wheels", value: "Redline" },
|
|
201
|
-
{ name: "Condition Grade", value: "Very Good (VG)" },
|
|
202
|
-
{ name: "Reserve Price", value: "₹10,000" },
|
|
203
|
-
],
|
|
204
|
-
features: [
|
|
205
|
-
"Spectraflame Pink — rarest Camaro Redline colourway",
|
|
206
|
-
"Japan collector provenance — Tokyo toy show 1980s",
|
|
207
|
-
"Original — no repaints, no replaced parts",
|
|
208
|
-
"Collector's provenance letter included",
|
|
209
|
-
"Reserve met — guaranteed to sell",
|
|
210
|
-
],
|
|
211
|
-
shippingInfo: "Winner-paid insured shipping. Bubble-wrapped in rigid foam-lined mailer.",
|
|
212
|
-
returnPolicy: "No returns on auction lots. Detailed photos taken before shipping for reference.",
|
|
213
|
-
insurance: true,
|
|
214
|
-
insuranceCost: 5000,
|
|
215
|
-
createdAt: daysAgo(5),
|
|
216
|
-
updatedAt: hoursAgo(1),
|
|
178
|
+
storeId: "store-kaiba-corp-cards",
|
|
179
|
+
storeName: "Kaiba Corp Card Vault",
|
|
180
|
+
createdAt: new Date("2026-05-18"),
|
|
181
|
+
updatedAt: new Date("2026-05-21"),
|
|
217
182
|
},
|
|
218
|
-
// ── 4. UPCOMING — starts in 72h (Beyblade Metal Fusion BB-10 Signed) ───────
|
|
219
183
|
{
|
|
220
|
-
id: "auction-
|
|
221
|
-
slug: "auction-
|
|
222
|
-
title: "
|
|
223
|
-
description: "
|
|
224
|
-
categorySlugs: ["category-
|
|
225
|
-
categoryNames: ["
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
currentBid:
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
239
|
-
stockQuantity: 1,
|
|
240
|
-
availableQuantity: 1,
|
|
241
|
-
mainImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
242
|
-
images: [
|
|
243
|
-
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
244
|
-
"https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
245
|
-
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
246
|
-
],
|
|
184
|
+
id: "auction-bgs95-dark-magician-girl",
|
|
185
|
+
slug: "auction-bgs95-dark-magician-girl",
|
|
186
|
+
title: "Dark Magician Girl (IOC BGS 9.5)",
|
|
187
|
+
description: "Dark Magician Girl IOC in BGS 9.5 condition. Gorgeous card.",
|
|
188
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
189
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
190
|
+
brandSlug: "brand-konami",
|
|
191
|
+
brand: "Konami",
|
|
192
|
+
startingBid: 3499900,
|
|
193
|
+
buyItNowPriceInPaise: 6999900,
|
|
194
|
+
currentBid: 5499900,
|
|
195
|
+
currency: "INR",
|
|
196
|
+
auctionEndDate: new Date(Date.now() + 6 * 24 * 60 * 60 * 1000),
|
|
197
|
+
bidCount: 7,
|
|
198
|
+
bidsHaveStarted: true,
|
|
199
|
+
isSold: false,
|
|
200
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.darkMagicianGirl}.jpg`,
|
|
201
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.darkMagicianGirl}.jpg`],
|
|
247
202
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
"metal-fusion",
|
|
255
|
-
"bb-10",
|
|
256
|
-
"storm-pegasus",
|
|
257
|
-
"signed",
|
|
258
|
-
"factory-sealed",
|
|
259
|
-
"vintage",
|
|
260
|
-
"upcoming-auction",
|
|
261
|
-
],
|
|
262
|
-
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
263
|
-
specifications: [
|
|
264
|
-
{ name: "Product", value: "BB-10 Storm Pegasus Starter Set" },
|
|
265
|
-
{ name: "Generation", value: "Metal Fusion (2008)" },
|
|
266
|
-
{ name: "Condition", value: "Factory sealed" },
|
|
267
|
-
{ name: "Signature", value: "Kei Shindo (Japanese VA — Ginga Hagane)" },
|
|
268
|
-
{ name: "Event", value: "Wonder Festival 2019" },
|
|
269
|
-
{ name: "Reserve", value: "No reserve — sells at any price" },
|
|
270
|
-
],
|
|
271
|
-
features: [
|
|
272
|
-
"Factory-sealed BB-10 — rare to find sealed",
|
|
273
|
-
"Signed by Japanese voice actor at WonFes 2019",
|
|
274
|
-
"Certificate of authenticity + signing photo",
|
|
275
|
-
"No reserve — auction opens to all bids",
|
|
276
|
-
"Auction starts in 72 hours — set a reminder",
|
|
277
|
-
],
|
|
278
|
-
shippingInfo: "Winner-paid insured shipping. Foam-lined rigid mailer, tamper-evident seal.",
|
|
279
|
-
returnPolicy: "No returns on auction lots. All details disclosed upfront — no hidden flaws.",
|
|
280
|
-
createdAt: daysAgo(3),
|
|
281
|
-
updatedAt: daysAgo(1),
|
|
203
|
+
grading: { service: "BGS", grade: 9.5, certNumber: "BGS-YGO-778899" },
|
|
204
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
205
|
+
storeId: "store-kaiba-corp-cards",
|
|
206
|
+
storeName: "Kaiba Corp Card Vault",
|
|
207
|
+
createdAt: new Date("2026-05-16"),
|
|
208
|
+
updatedAt: new Date("2026-05-21"),
|
|
282
209
|
},
|
|
283
|
-
// ── 5. ENDED — 7 days ago, winner declared (Gundam PG Strike Freedom) ──────
|
|
284
210
|
{
|
|
285
|
-
id: "auction-
|
|
286
|
-
slug: "auction-
|
|
287
|
-
title: "
|
|
288
|
-
description: "
|
|
289
|
-
categorySlugs: ["category-
|
|
290
|
-
categoryNames: ["
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
currentBid:
|
|
211
|
+
id: "auction-raw-lob-complete-set",
|
|
212
|
+
slug: "auction-raw-lob-complete-set",
|
|
213
|
+
title: "LOB Complete Set (Raw NM)",
|
|
214
|
+
description: "All cards from Legend of Blue Eyes set in near mint raw condition. Complete collection.",
|
|
215
|
+
categorySlugs: ["category-singles"],
|
|
216
|
+
categoryNames: ["Singles"],
|
|
217
|
+
brandSlug: "brand-konami",
|
|
218
|
+
brand: "Konami",
|
|
219
|
+
startingBid: 4999900,
|
|
220
|
+
buyItNowPriceInPaise: 8999900,
|
|
221
|
+
currentBid: 7499900,
|
|
222
|
+
currency: "INR",
|
|
223
|
+
auctionEndDate: new Date(Date.now() + 10 * 24 * 60 * 60 * 1000),
|
|
296
224
|
bidCount: 6,
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
308
|
-
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
309
|
-
"https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=800&h=800&fit=crop",
|
|
310
|
-
],
|
|
311
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.SOLD,
|
|
312
|
-
storeName: "LetItRip Official",
|
|
313
|
-
storeId: "store-letitrip-official",
|
|
314
|
-
featured: false,
|
|
315
|
-
isPromoted: false,
|
|
316
|
-
tags: [
|
|
317
|
-
"gunpla",
|
|
318
|
-
"perfect-grade",
|
|
319
|
-
"strike-freedom",
|
|
320
|
-
"bandai",
|
|
321
|
-
"factory-sealed",
|
|
322
|
-
"auction",
|
|
323
|
-
"ended",
|
|
324
|
-
],
|
|
325
|
-
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
326
|
-
specifications: [
|
|
327
|
-
{ name: "Grade", value: "Perfect Grade (PG)" },
|
|
328
|
-
{ name: "Scale", value: "1/60" },
|
|
329
|
-
{ name: "Height assembled", value: "~37 cm", unit: "cm" },
|
|
330
|
-
{ name: "Parts", value: "500+" },
|
|
331
|
-
{ name: "Final Bid", value: "₹29,999" },
|
|
332
|
-
{ name: "Status", value: "Auction ended — winner notified" },
|
|
333
|
-
],
|
|
334
|
-
features: [
|
|
335
|
-
"PG 1/60 Strike Freedom — most complex PG ever",
|
|
336
|
-
"500+ parts — internal gold frame",
|
|
337
|
-
"Wing of Light effect set included",
|
|
338
|
-
"METEOR unit attachment",
|
|
339
|
-
"Factory sealed — auction now closed",
|
|
340
|
-
],
|
|
341
|
-
shippingInfo: "Shipping arranged with winner. Auction closed.",
|
|
342
|
-
returnPolicy: "Auction ended. No returns.",
|
|
343
|
-
createdAt: daysAgo(21),
|
|
344
|
-
updatedAt: daysAgo(7),
|
|
225
|
+
bidsHaveStarted: true,
|
|
226
|
+
isSold: false,
|
|
227
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`,
|
|
228
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`],
|
|
229
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
230
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
231
|
+
storeId: "store-kaiba-corp-cards",
|
|
232
|
+
storeName: "Kaiba Corp Card Vault",
|
|
233
|
+
createdAt: new Date("2026-05-11"),
|
|
234
|
+
updatedAt: new Date("2026-05-21"),
|
|
345
235
|
},
|
|
346
|
-
// ── 7. ACTIVE — ending in 24h (Pokémon Mew 1st Edition PSA 10) ──────────────
|
|
347
236
|
{
|
|
348
|
-
id: "auction-
|
|
349
|
-
slug: "auction-
|
|
350
|
-
title: "
|
|
351
|
-
description: "
|
|
352
|
-
categorySlugs: ["category-
|
|
353
|
-
categoryNames: ["
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
currentBid:
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
367
|
-
stockQuantity: 1,
|
|
368
|
-
availableQuantity: 1,
|
|
369
|
-
mainImage: "https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
370
|
-
images: [
|
|
371
|
-
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
372
|
-
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
373
|
-
],
|
|
237
|
+
id: "auction-psa8-monster-reborn",
|
|
238
|
+
slug: "auction-psa8-monster-reborn",
|
|
239
|
+
title: "Monster Reborn (LOB PSA 8)",
|
|
240
|
+
description: "Monster Reborn LOB in PSA 8 very good condition.",
|
|
241
|
+
categorySlugs: ["category-spell-cards", "category-singles"],
|
|
242
|
+
categoryNames: ["Spell / Magic Cards", "Singles"],
|
|
243
|
+
brandSlug: "brand-konami",
|
|
244
|
+
brand: "Konami",
|
|
245
|
+
startingBid: 399900,
|
|
246
|
+
buyItNowPriceInPaise: 799900,
|
|
247
|
+
currentBid: 599900,
|
|
248
|
+
currency: "INR",
|
|
249
|
+
auctionEndDate: new Date(Date.now() + 3 * 24 * 60 * 60 * 1000),
|
|
250
|
+
bidCount: 2,
|
|
251
|
+
bidsHaveStarted: true,
|
|
252
|
+
isSold: false,
|
|
253
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.monsterReborn}.jpg`,
|
|
254
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.monsterReborn}.jpg`],
|
|
374
255
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
specifications: [
|
|
382
|
-
{ name: "Card", value: "Ancient Mew Promo #8" },
|
|
383
|
-
{ name: "Grade", value: "PSA 10 GEM MINT" },
|
|
384
|
-
{ name: "Print", value: "1st Edition Promo" },
|
|
385
|
-
{ name: "PSA Pop", value: "<50 PSA 10s worldwide" },
|
|
386
|
-
{ name: "Reserve Price", value: "₹1,20,000 — MET" },
|
|
387
|
-
],
|
|
388
|
-
features: [
|
|
389
|
-
"PSA 10 GEM MINT — rarest promo grade",
|
|
390
|
-
"Ancient Mew Movie 2000 promo — iconic",
|
|
391
|
-
"Sub-50 PSA 10 population globally",
|
|
392
|
-
"Reserve met — guaranteed to sell",
|
|
393
|
-
"Auto-extend: 5 minutes on last-minute bids",
|
|
394
|
-
],
|
|
395
|
-
shippingInfo: "Winner-paid insured Blue Dart courier. PSA slab double-boxed with foam.",
|
|
396
|
-
returnPolicy: "No returns on auction lots. All details and PSA cert photos provided before shipping.",
|
|
397
|
-
insurance: true,
|
|
398
|
-
insuranceCost: 50000,
|
|
399
|
-
createdAt: daysAgo(10),
|
|
400
|
-
updatedAt: hoursAgo(3),
|
|
256
|
+
grading: { service: "PSA", grade: 8, certNumber: "PSA-YGO-990011" },
|
|
257
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
258
|
+
storeId: "store-kaiba-corp-cards",
|
|
259
|
+
storeName: "Kaiba Corp Card Vault",
|
|
260
|
+
createdAt: new Date("2026-05-19"),
|
|
261
|
+
updatedAt: new Date("2026-05-21"),
|
|
401
262
|
},
|
|
402
|
-
// ── 8. ACTIVE — ending in 72h (Blue Eyes White Dragon LOB 1st PSA 9) ───────
|
|
403
263
|
{
|
|
404
|
-
id: "auction-
|
|
405
|
-
slug: "auction-
|
|
406
|
-
title: "
|
|
407
|
-
description: "
|
|
408
|
-
categorySlugs: ["category-
|
|
409
|
-
categoryNames: ["
|
|
410
|
-
brand: "Konami",
|
|
264
|
+
id: "auction-cgc10-raigeki",
|
|
265
|
+
slug: "auction-cgc10-raigeki",
|
|
266
|
+
title: "Raigeki (LOB CGC 10)",
|
|
267
|
+
description: "Raigeki LOB in CGC 10 pristine condition. Extremely rare.",
|
|
268
|
+
categorySlugs: ["category-spell-cards", "category-singles"],
|
|
269
|
+
categoryNames: ["Spell / Magic Cards", "Singles"],
|
|
411
270
|
brandSlug: "brand-konami",
|
|
412
|
-
|
|
413
|
-
startingBid:
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
stockQuantity: 1,
|
|
424
|
-
availableQuantity: 1,
|
|
425
|
-
mainImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
426
|
-
images: [
|
|
427
|
-
"https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
428
|
-
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
429
|
-
],
|
|
271
|
+
brand: "Konami",
|
|
272
|
+
startingBid: 999900,
|
|
273
|
+
buyItNowPriceInPaise: 1999900,
|
|
274
|
+
currentBid: 1699900,
|
|
275
|
+
currency: "INR",
|
|
276
|
+
auctionEndDate: new Date(Date.now() + 5 * 24 * 60 * 60 * 1000),
|
|
277
|
+
bidCount: 4,
|
|
278
|
+
bidsHaveStarted: true,
|
|
279
|
+
isSold: false,
|
|
280
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.raigeki}.jpg`,
|
|
281
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.raigeki}.jpg`],
|
|
430
282
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
specifications: [
|
|
438
|
-
{ name: "Card", value: "Blue-Eyes White Dragon — LOB-001" },
|
|
439
|
-
{ name: "Grade", value: "PSA 9 MINT" },
|
|
440
|
-
{ name: "Print", value: "1st Edition" },
|
|
441
|
-
{ name: "Year", value: "2002" },
|
|
442
|
-
{ name: "Reserve Price", value: "₹60,000 — MET" },
|
|
443
|
-
],
|
|
444
|
-
features: [
|
|
445
|
-
"The most iconic Yu-Gi-Oh! card — LOB Blue-Eyes",
|
|
446
|
-
"PSA 9 MINT — excellent corners and surface",
|
|
447
|
-
"1st Edition stamp — most desirable print",
|
|
448
|
-
"Reserve met — guaranteed to sell",
|
|
449
|
-
"20-year appreciation track record",
|
|
450
|
-
],
|
|
451
|
-
shippingInfo: "Winner-paid insured shipping. PSA slab in foam-lined rigid mailer via Blue Dart.",
|
|
452
|
-
returnPolicy: "No returns on auction lots. Slab photos and cert number provided before shipping.",
|
|
453
|
-
insurance: true,
|
|
454
|
-
insuranceCost: 30000,
|
|
455
|
-
createdAt: daysAgo(8),
|
|
456
|
-
updatedAt: hoursAgo(5),
|
|
283
|
+
grading: { service: "CGC", grade: 10, certNumber: "CGC-YGO-221133" },
|
|
284
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
285
|
+
storeId: "store-kaiba-corp-cards",
|
|
286
|
+
storeName: "Kaiba Corp Card Vault",
|
|
287
|
+
createdAt: new Date("2026-05-17"),
|
|
288
|
+
updatedAt: new Date("2026-05-21"),
|
|
457
289
|
},
|
|
458
|
-
// ── 9. ACTIVE — ending in 36h (Hot Wheels Redline Deora 1968 Japan-sourced) ─
|
|
459
290
|
{
|
|
460
|
-
id: "auction-
|
|
461
|
-
slug: "auction-
|
|
462
|
-
title: "
|
|
463
|
-
description: "
|
|
464
|
-
categorySlugs: ["category-
|
|
465
|
-
categoryNames: ["
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
currentBid:
|
|
291
|
+
id: "auction-1st-ed-black-luster-soldier",
|
|
292
|
+
slug: "auction-1st-ed-black-luster-soldier",
|
|
293
|
+
title: "Black Luster Soldier (RL 1st Edition)",
|
|
294
|
+
description: "1st Edition Black Luster Soldier from Ritual summon era.",
|
|
295
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
296
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
297
|
+
brandSlug: "brand-konami",
|
|
298
|
+
brand: "Konami",
|
|
299
|
+
startingBid: 1499900,
|
|
300
|
+
buyItNowPriceInPaise: 2999900,
|
|
301
|
+
currentBid: 2499900,
|
|
302
|
+
currency: "INR",
|
|
303
|
+
auctionEndDate: new Date(Date.now() + 8 * 24 * 60 * 60 * 1000),
|
|
471
304
|
bidCount: 5,
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
auctionShippingPaidBy: "winner",
|
|
477
|
-
price: 899900,
|
|
478
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
479
|
-
stockQuantity: 1,
|
|
480
|
-
availableQuantity: 1,
|
|
481
|
-
mainImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
482
|
-
images: [
|
|
483
|
-
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
484
|
-
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
485
|
-
],
|
|
305
|
+
bidsHaveStarted: true,
|
|
306
|
+
isSold: false,
|
|
307
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`,
|
|
308
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`],
|
|
486
309
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
487
|
-
storeName: "Diecast Depot",
|
|
488
|
-
storeId: "store-diecast-depot",
|
|
489
|
-
featured: false,
|
|
490
|
-
isPromoted: true,
|
|
491
|
-
tags: ["hot-wheels", "redline", "1968", "deora", "copper", "spectraflame", "vintage", "rare", "auction"],
|
|
492
310
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
{ name: "Condition Grade", value: "Very Good Plus (VG+)" },
|
|
498
|
-
{ name: "Surfboards", value: "Both present" },
|
|
499
|
-
{ name: "Reserve Price", value: "₹15,000 — MET" },
|
|
500
|
-
],
|
|
501
|
-
features: [
|
|
502
|
-
"1968 Copper Deora — rarer than aqua version",
|
|
503
|
-
"Both surfboards present — complete",
|
|
504
|
-
"Japan collector provenance + letter",
|
|
505
|
-
"Reserve met — guaranteed to sell",
|
|
506
|
-
"All four wheels spin freely",
|
|
507
|
-
],
|
|
508
|
-
shippingInfo: "Winner-paid insured shipping. Bubble-wrapped in rigid foam-lined mailer.",
|
|
509
|
-
returnPolicy: "No returns on auction lots. Detailed photos available before bid confirmation.",
|
|
510
|
-
insurance: true,
|
|
511
|
-
insuranceCost: 8000,
|
|
512
|
-
createdAt: daysAgo(6),
|
|
513
|
-
updatedAt: hoursAgo(2),
|
|
311
|
+
storeId: "store-kaiba-corp-cards",
|
|
312
|
+
storeName: "Kaiba Corp Card Vault",
|
|
313
|
+
createdAt: new Date("2026-05-13"),
|
|
314
|
+
updatedAt: new Date("2026-05-21"),
|
|
514
315
|
},
|
|
515
|
-
// ── 10. UPCOMING — starts in 5 days (Gundam PG Astray Red Frame) ──────────
|
|
516
316
|
{
|
|
517
|
-
id: "auction-
|
|
518
|
-
slug: "auction-
|
|
519
|
-
title: "
|
|
520
|
-
description: "
|
|
521
|
-
categorySlugs: ["category-
|
|
522
|
-
categoryNames: ["
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
currentBid:
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
536
|
-
stockQuantity: 1,
|
|
537
|
-
availableQuantity: 1,
|
|
538
|
-
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
539
|
-
images: [
|
|
540
|
-
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
541
|
-
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
542
|
-
],
|
|
317
|
+
id: "auction-psa9-five-headed-dragon",
|
|
318
|
+
slug: "auction-psa9-five-headed-dragon",
|
|
319
|
+
title: "Five-Headed Dragon (EEN PSA 9)",
|
|
320
|
+
description: "Five-Headed Dragon from Elemental Energy in PSA 9 condition.",
|
|
321
|
+
categorySlugs: ["category-extra-deck-cards", "category-gx-era"],
|
|
322
|
+
categoryNames: ["Fusion / Synchro / XYZ", "GX Era"],
|
|
323
|
+
brandSlug: "brand-konami",
|
|
324
|
+
brand: "Konami",
|
|
325
|
+
startingBid: 699900,
|
|
326
|
+
buyItNowPriceInPaise: 1299900,
|
|
327
|
+
currentBid: 999900,
|
|
328
|
+
currency: "INR",
|
|
329
|
+
auctionEndDate: new Date(Date.now() + 4 * 24 * 60 * 60 * 1000),
|
|
330
|
+
bidCount: 3,
|
|
331
|
+
bidsHaveStarted: true,
|
|
332
|
+
isSold: false,
|
|
333
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.rainbowDragon}.jpg`,
|
|
334
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.rainbowDragon}.jpg`],
|
|
543
335
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
544
|
-
|
|
545
|
-
storeId: "store-gundam-galaxy",
|
|
546
|
-
featured: false,
|
|
547
|
-
isPromoted: false,
|
|
548
|
-
tags: ["gunpla", "perfect-grade", "pg", "astray-red-frame", "bandai", "factory-sealed", "upcoming-auction"],
|
|
336
|
+
grading: { service: "PSA", grade: 9, certNumber: "PSA-YGO-332244" },
|
|
549
337
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
{ name: "Parts", value: "300+" },
|
|
555
|
-
{ name: "Reserve", value: "No reserve — sells at any price" },
|
|
556
|
-
],
|
|
557
|
-
features: [
|
|
558
|
-
"PG Astray Red Frame — iconic katana kit",
|
|
559
|
-
"Factory sealed — never opened",
|
|
560
|
-
"Gerbera Straight katana and flight pack",
|
|
561
|
-
"No reserve — opens to all bids",
|
|
562
|
-
"Auction opens in 5 days",
|
|
563
|
-
],
|
|
564
|
-
shippingInfo: "Winner-paid insured shipping. Double-boxed with foam corner protection.",
|
|
565
|
-
returnPolicy: "No returns on auction lots.",
|
|
566
|
-
createdAt: daysAgo(4),
|
|
567
|
-
updatedAt: daysAgo(1),
|
|
338
|
+
storeId: "store-kaiba-corp-cards",
|
|
339
|
+
storeName: "Kaiba Corp Card Vault",
|
|
340
|
+
createdAt: new Date("2026-05-18"),
|
|
341
|
+
updatedAt: new Date("2026-05-21"),
|
|
568
342
|
},
|
|
569
|
-
// ── 11. ACTIVE — ending in 4h (Nendoroid Miku #100 Limited — rare) ────────
|
|
570
343
|
{
|
|
571
|
-
id: "auction-
|
|
572
|
-
slug: "auction-
|
|
573
|
-
title: "
|
|
574
|
-
description: "
|
|
575
|
-
categorySlugs: ["category-
|
|
576
|
-
categoryNames: ["
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
344
|
+
id: "auction-psa10-rainbow-dragon",
|
|
345
|
+
slug: "auction-psa10-rainbow-dragon",
|
|
346
|
+
title: "Rainbow Dragon (POTD PSA 10)",
|
|
347
|
+
description: "Rainbow Dragon Power of the Duelist in PSA 10 gem mint condition.",
|
|
348
|
+
categorySlugs: ["category-extra-deck-cards", "category-gx-era"],
|
|
349
|
+
categoryNames: ["Fusion / Synchro / XYZ", "GX Era"],
|
|
350
|
+
brandSlug: "brand-konami",
|
|
351
|
+
brand: "Konami",
|
|
352
|
+
startingBid: 1999900,
|
|
353
|
+
buyItNowPriceInPaise: 3999900,
|
|
354
|
+
currentBid: 3199900,
|
|
355
|
+
currency: "INR",
|
|
356
|
+
auctionEndDate: new Date(Date.now() + 6 * 24 * 60 * 60 * 1000),
|
|
357
|
+
bidCount: 6,
|
|
358
|
+
bidsHaveStarted: true,
|
|
359
|
+
isSold: false,
|
|
360
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.rainbowDragon}.jpg`,
|
|
361
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.rainbowDragon}.jpg`],
|
|
362
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
363
|
+
grading: { service: "PSA", grade: 10, certNumber: "PSA-YGO-443355" },
|
|
364
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
365
|
+
storeId: "store-kaiba-corp-cards",
|
|
366
|
+
storeName: "Kaiba Corp Card Vault",
|
|
367
|
+
createdAt: new Date("2026-05-15"),
|
|
368
|
+
updatedAt: new Date("2026-05-21"),
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
id: "auction-raw-jaden-starter-sealed",
|
|
372
|
+
slug: "auction-raw-jaden-starter-sealed",
|
|
373
|
+
title: "Jaden Yuki Starter Deck (SEALED 2006)",
|
|
374
|
+
description: "Factory sealed Jaden Yuki Starter Deck from 2006. Vintage collectible.",
|
|
375
|
+
categorySlugs: ["category-sealed-products", "category-gx-era"],
|
|
376
|
+
categoryNames: ["Sealed Products", "GX Era"],
|
|
377
|
+
brandSlug: "brand-konami",
|
|
378
|
+
brand: "Konami",
|
|
379
|
+
startingBid: 799900,
|
|
380
|
+
buyItNowPriceInPaise: 1499900,
|
|
581
381
|
currentBid: 1199900,
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
590
|
-
stockQuantity: 1,
|
|
591
|
-
availableQuantity: 1,
|
|
592
|
-
mainImage: "https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
593
|
-
images: [
|
|
594
|
-
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
595
|
-
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
596
|
-
],
|
|
382
|
+
currency: "INR",
|
|
383
|
+
auctionEndDate: new Date(Date.now() + 3 * 24 * 60 * 60 * 1000),
|
|
384
|
+
bidCount: 2,
|
|
385
|
+
bidsHaveStarted: true,
|
|
386
|
+
isSold: false,
|
|
387
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`,
|
|
388
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`],
|
|
597
389
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
598
|
-
|
|
599
|
-
storeId: "store-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
604
|
-
specifications: [
|
|
605
|
-
{ name: "Nendoroid Number", value: "#100" },
|
|
606
|
-
{ name: "Character", value: "Hatsune Miku" },
|
|
607
|
-
{ name: "Release Year", value: "2009 (original, not re-release)" },
|
|
608
|
-
{ name: "Box", value: "Original box — Very Good (shelf wear)" },
|
|
609
|
-
{ name: "Figure Condition", value: "Near Mint — all accessories present" },
|
|
610
|
-
],
|
|
611
|
-
features: [
|
|
612
|
-
"Original 2009 first-release — not a re-release",
|
|
613
|
-
"Nendoroid #100 — launched the Nendoroid franchise",
|
|
614
|
-
"All original accessories and inner tray present",
|
|
615
|
-
"Reserve met — guaranteed to sell",
|
|
616
|
-
"Ending in 4 hours — bid now",
|
|
617
|
-
],
|
|
618
|
-
shippingInfo: "Winner-paid insured shipping. Individually bubble-wrapped in rigid foam-lined box.",
|
|
619
|
-
returnPolicy: "No returns on auction lots. Detailed photos and unboxing video available on request.",
|
|
620
|
-
insurance: true,
|
|
621
|
-
insuranceCost: 5000,
|
|
622
|
-
createdAt: daysAgo(9),
|
|
623
|
-
updatedAt: hoursAgo(1),
|
|
390
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
391
|
+
storeId: "store-kaiba-corp-cards",
|
|
392
|
+
storeName: "Kaiba Corp Card Vault",
|
|
393
|
+
createdAt: new Date("2026-05-19"),
|
|
394
|
+
updatedAt: new Date("2026-05-21"),
|
|
624
395
|
},
|
|
625
|
-
// ── 6. ENDED — 30 days ago (Bandai DBZ Bulma Vintage) ─────────────────────
|
|
626
396
|
{
|
|
627
|
-
id: "auction-
|
|
628
|
-
slug: "auction-
|
|
629
|
-
title: "
|
|
630
|
-
description: "
|
|
631
|
-
categorySlugs: ["category-
|
|
632
|
-
categoryNames: ["
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
currentBid:
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
mainImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
648
|
-
images: [
|
|
649
|
-
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
650
|
-
"https://images.unsplash.com/photo-1560762484-813fc97650a0?w=800&h=800&fit=crop",
|
|
651
|
-
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
652
|
-
],
|
|
653
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.SOLD,
|
|
654
|
-
storeName: "Diecast Depot",
|
|
655
|
-
storeId: "store-diecast-depot",
|
|
656
|
-
featured: false,
|
|
657
|
-
isPromoted: false,
|
|
658
|
-
tags: [
|
|
659
|
-
"bandai",
|
|
660
|
-
"dragon-ball-z",
|
|
661
|
-
"dbz",
|
|
662
|
-
"bulma",
|
|
663
|
-
"1989",
|
|
664
|
-
"vintage",
|
|
665
|
-
"figure",
|
|
666
|
-
"auction",
|
|
667
|
-
"ended",
|
|
668
|
-
],
|
|
397
|
+
id: "auction-psa8-change-of-heart",
|
|
398
|
+
slug: "auction-psa8-change-of-heart",
|
|
399
|
+
title: "Change of Heart (MRD 1st Ed PSA 8)",
|
|
400
|
+
description: "Change of Heart Metal Raiders 1st Edition in PSA 8 very good condition.",
|
|
401
|
+
categorySlugs: ["category-spell-cards", "category-singles"],
|
|
402
|
+
categoryNames: ["Spell / Magic Cards", "Singles"],
|
|
403
|
+
brandSlug: "brand-konami",
|
|
404
|
+
brand: "Konami",
|
|
405
|
+
startingBid: 599900,
|
|
406
|
+
buyItNowPriceInPaise: 1199900,
|
|
407
|
+
currentBid: 899900,
|
|
408
|
+
currency: "INR",
|
|
409
|
+
auctionEndDate: new Date(Date.now() + 5 * 24 * 60 * 60 * 1000),
|
|
410
|
+
bidCount: 3,
|
|
411
|
+
bidsHaveStarted: true,
|
|
412
|
+
isSold: false,
|
|
413
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.changeOfHeart}.jpg`,
|
|
414
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.changeOfHeart}.jpg`],
|
|
415
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
416
|
+
grading: { service: "PSA", grade: 8, certNumber: "PSA-YGO-554466" },
|
|
669
417
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
{ name: "Manufacturer", value: "Bandai Japan" },
|
|
675
|
-
{ name: "Condition Grade", value: "Good (G) — original paint" },
|
|
676
|
-
{ name: "Final Bid", value: "₹7,999" },
|
|
677
|
-
],
|
|
678
|
-
features: [
|
|
679
|
-
"1989 first-run Bandai DBZ figure",
|
|
680
|
-
"Original Bandai Japan stamp on base",
|
|
681
|
-
"All original accessories — no missing parts",
|
|
682
|
-
"Tokyo collector provenance (2024 Japan trip)",
|
|
683
|
-
"Auction closed — 30 days ago",
|
|
684
|
-
],
|
|
685
|
-
shippingInfo: "Shipped to winner. Auction completed and settled.",
|
|
686
|
-
returnPolicy: "Auction ended. No returns.",
|
|
687
|
-
createdAt: daysAgo(45),
|
|
688
|
-
updatedAt: daysAgo(30),
|
|
418
|
+
storeId: "store-kaiba-corp-cards",
|
|
419
|
+
storeName: "Kaiba Corp Card Vault",
|
|
420
|
+
createdAt: new Date("2026-05-16"),
|
|
421
|
+
updatedAt: new Date("2026-05-21"),
|
|
689
422
|
},
|
|
690
|
-
// ── 12. ACTIVE — ending in 60h (Pokémon Lugia Neo Genesis Holo PSA 9) ─────
|
|
691
423
|
{
|
|
692
|
-
id: "auction-
|
|
693
|
-
slug: "auction-
|
|
694
|
-
title: "
|
|
695
|
-
description: "
|
|
696
|
-
categorySlugs: ["category-
|
|
697
|
-
categoryNames: ["
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
price: 3499900,
|
|
710
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
711
|
-
stockQuantity: 1,
|
|
712
|
-
availableQuantity: 1,
|
|
713
|
-
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
714
|
-
images: [
|
|
715
|
-
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
716
|
-
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
717
|
-
],
|
|
424
|
+
id: "auction-ended-psa10-exodia",
|
|
425
|
+
slug: "auction-ended-psa10-exodia",
|
|
426
|
+
title: "Exodia Complete Set (PSA 10 ENDED)",
|
|
427
|
+
description: "Complete Exodia set all pieces PSA 10. Auction ended — winner announced.",
|
|
428
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
429
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
430
|
+
brandSlug: "brand-konami",
|
|
431
|
+
brand: "Konami",
|
|
432
|
+
startingBid: 999900,
|
|
433
|
+
currentBid: 8999900, // Final winning bid
|
|
434
|
+
currency: "INR",
|
|
435
|
+
auctionEndDate: new Date(Date.now() - 2 * 24 * 60 * 60 * 1000), // -2 days (ended)
|
|
436
|
+
bidCount: 12,
|
|
437
|
+
bidsHaveStarted: true,
|
|
438
|
+
isSold: true,
|
|
439
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.exodiaHead}.jpg`,
|
|
440
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.exodiaHead}.jpg`],
|
|
718
441
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
specifications: [
|
|
726
|
-
{ name: "Card", value: "Lugia #9 Holo — Neo Genesis" },
|
|
727
|
-
{ name: "Grade", value: "PSA 9 MINT" },
|
|
728
|
-
{ name: "Year", value: "2000" },
|
|
729
|
-
{ name: "Reserve Price", value: "₹65,000 — MET" },
|
|
730
|
-
],
|
|
731
|
-
features: [
|
|
732
|
-
"PSA 9 MINT — Neo Genesis chase card",
|
|
733
|
-
"Reserve met — guaranteed to sell",
|
|
734
|
-
"PSA cert verified",
|
|
735
|
-
"Auto-extend on last-minute bids",
|
|
736
|
-
],
|
|
737
|
-
shippingInfo: "Winner-paid insured Blue Dart courier. PSA slab double-boxed.",
|
|
738
|
-
returnPolicy: "No returns on auction lots.",
|
|
739
|
-
insurance: true,
|
|
740
|
-
insuranceCost: 25000,
|
|
741
|
-
createdAt: daysAgo(9),
|
|
742
|
-
updatedAt: hoursAgo(4),
|
|
442
|
+
grading: { service: "PSA", grade: 10, certNumber: "PSA-YGO-665577" },
|
|
443
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
444
|
+
storeId: "store-kaiba-corp-cards",
|
|
445
|
+
storeName: "Kaiba Corp Card Vault",
|
|
446
|
+
createdAt: new Date("2026-05-06"),
|
|
447
|
+
updatedAt: new Date("2026-05-21"),
|
|
743
448
|
},
|
|
744
|
-
// ── 13. ACTIVE — ending in 96h (Funko Pop Glow Chase Stan Lee) ────────────
|
|
745
449
|
{
|
|
746
|
-
id: "auction-
|
|
747
|
-
slug: "auction-
|
|
748
|
-
title: "
|
|
749
|
-
description: "
|
|
750
|
-
categorySlugs: ["category-
|
|
751
|
-
categoryNames: ["
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
price: 599900,
|
|
764
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
765
|
-
stockQuantity: 1,
|
|
766
|
-
availableQuantity: 1,
|
|
767
|
-
mainImage: "https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
768
|
-
images: [
|
|
769
|
-
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
770
|
-
],
|
|
450
|
+
id: "auction-ended-bgs10-jinzo",
|
|
451
|
+
slug: "auction-ended-bgs10-jinzo",
|
|
452
|
+
title: "Jinzo (PSV BGS 10 ENDED)",
|
|
453
|
+
description: "Jinzo PSV in BGS 10 pristine condition. Auction ended.",
|
|
454
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
455
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
456
|
+
brandSlug: "brand-konami",
|
|
457
|
+
brand: "Konami",
|
|
458
|
+
startingBid: 499900,
|
|
459
|
+
currentBid: 3499900, // Final winning bid
|
|
460
|
+
currency: "INR",
|
|
461
|
+
auctionEndDate: new Date(Date.now() - 3 * 24 * 60 * 60 * 1000), // -3 days
|
|
462
|
+
bidCount: 8,
|
|
463
|
+
bidsHaveStarted: true,
|
|
464
|
+
isSold: true,
|
|
465
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/${CARD_IDS.darkMagician}.jpg`,
|
|
466
|
+
images: [`https://images.ygoprodeck.com/images/cards/${CARD_IDS.darkMagician}.jpg`],
|
|
771
467
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
772
|
-
|
|
773
|
-
storeId: "store-tokyo-toys-india",
|
|
774
|
-
featured: false,
|
|
775
|
-
isPromoted: false,
|
|
776
|
-
tags: ["funko", "stan-lee", "glow-chase", "vaulted", "marvel", "auction"],
|
|
468
|
+
grading: { service: "BGS", grade: 10, certNumber: "BGS-YGO-776688" },
|
|
777
469
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
{ name: "Reserve Price", value: "₹9,000 — MET" },
|
|
783
|
-
],
|
|
784
|
-
features: [
|
|
785
|
-
"Glow Chase variant — 1-in-6 pull rate",
|
|
786
|
-
"Vaulted by Funko — no re-issue",
|
|
787
|
-
"Box NM, figure mint inside protector",
|
|
788
|
-
"Reserve met — guaranteed to sell",
|
|
789
|
-
],
|
|
790
|
-
shippingInfo: "Winner-paid insured shipping. Pop protector included.",
|
|
791
|
-
returnPolicy: "No returns on auction lots.",
|
|
792
|
-
insurance: true,
|
|
793
|
-
insuranceCost: 5000,
|
|
794
|
-
createdAt: daysAgo(7),
|
|
795
|
-
updatedAt: hoursAgo(8),
|
|
470
|
+
storeId: "store-kaiba-corp-cards",
|
|
471
|
+
storeName: "Kaiba Corp Card Vault",
|
|
472
|
+
createdAt: new Date("2026-05-08"),
|
|
473
|
+
updatedAt: new Date("2026-05-21"),
|
|
796
474
|
},
|
|
797
|
-
// ── 14. ACTIVE — ending in 5d (Beyblade Burst Spriggan Requiem Limited) ────
|
|
798
475
|
{
|
|
799
|
-
id: "auction-
|
|
800
|
-
slug: "auction-
|
|
801
|
-
title: "
|
|
802
|
-
description: "
|
|
803
|
-
categorySlugs: ["category-
|
|
804
|
-
categoryNames: ["
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
476
|
+
id: "auction-ended-raw-sdk-kaiba",
|
|
477
|
+
slug: "auction-ended-raw-sdk-kaiba",
|
|
478
|
+
title: "SDK Kaiba Deck (SEALED ENDED)",
|
|
479
|
+
description: "SDK Kaiba Starter Deck sealed. Vintage auction concluded.",
|
|
480
|
+
categorySlugs: ["category-sealed-products"],
|
|
481
|
+
categoryNames: ["Sealed Products"],
|
|
482
|
+
brandSlug: "brand-konami",
|
|
483
|
+
brand: "Konami",
|
|
484
|
+
startingBid: 299900,
|
|
485
|
+
currentBid: 1699900,
|
|
486
|
+
currency: "INR",
|
|
487
|
+
auctionEndDate: new Date(Date.now() - 5 * 24 * 60 * 60 * 1000), // -5 days
|
|
810
488
|
bidCount: 6,
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
auctionShippingPaidBy: "winner",
|
|
816
|
-
price: 399900,
|
|
817
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
818
|
-
stockQuantity: 1,
|
|
819
|
-
availableQuantity: 1,
|
|
820
|
-
mainImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
821
|
-
images: [
|
|
822
|
-
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
823
|
-
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
824
|
-
],
|
|
489
|
+
bidsHaveStarted: true,
|
|
490
|
+
isSold: true,
|
|
491
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`,
|
|
492
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`],
|
|
825
493
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
826
|
-
storeName: "Beyblade Arena",
|
|
827
|
-
storeId: "store-beyblade-arena",
|
|
828
|
-
featured: true,
|
|
829
|
-
isPromoted: false,
|
|
830
|
-
tags: ["beyblade", "burst", "spriggan-requiem", "tournament", "limited", "auction"],
|
|
831
494
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
{ name: "Reserve Price", value: "₹7,000 — MET" },
|
|
837
|
-
],
|
|
838
|
-
features: [
|
|
839
|
-
"Tournament prize edition — sub-500 made",
|
|
840
|
-
"Engraved serial number",
|
|
841
|
-
"Original tournament pouch included",
|
|
842
|
-
"Reserve met — guaranteed to sell",
|
|
843
|
-
],
|
|
844
|
-
shippingInfo: "Winner-paid insured shipping. Foam-lined rigid mailer.",
|
|
845
|
-
returnPolicy: "No returns on auction lots.",
|
|
846
|
-
insurance: true,
|
|
847
|
-
insuranceCost: 3000,
|
|
848
|
-
createdAt: daysAgo(6),
|
|
849
|
-
updatedAt: hoursAgo(12),
|
|
495
|
+
storeId: "store-kaiba-corp-cards",
|
|
496
|
+
storeName: "Kaiba Corp Card Vault",
|
|
497
|
+
createdAt: new Date("2026-05-02"),
|
|
498
|
+
updatedAt: new Date("2026-05-21"),
|
|
850
499
|
},
|
|
851
|
-
// ── 15. UPCOMING — starts in 4d (Pokémon Trophy Card Pikachu World) ───────
|
|
852
500
|
{
|
|
853
|
-
id: "auction-
|
|
854
|
-
slug: "auction-
|
|
855
|
-
title: "
|
|
856
|
-
description: "
|
|
857
|
-
categorySlugs: ["category-
|
|
858
|
-
categoryNames: ["
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
price: 49999900,
|
|
871
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
872
|
-
stockQuantity: 1,
|
|
873
|
-
availableQuantity: 1,
|
|
874
|
-
mainImage: "https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
875
|
-
images: [
|
|
876
|
-
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
877
|
-
],
|
|
501
|
+
id: "auction-ended-psa9-gate-guardian",
|
|
502
|
+
slug: "auction-ended-psa9-gate-guardian",
|
|
503
|
+
title: "Gate Guardian (MRD PSA 9 ENDED)",
|
|
504
|
+
description: "Gate Guardian Metal Raiders PSA 9. Completed auction.",
|
|
505
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
506
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
507
|
+
brandSlug: "brand-konami",
|
|
508
|
+
brand: "Konami",
|
|
509
|
+
startingBid: 399900,
|
|
510
|
+
currentBid: 1299900,
|
|
511
|
+
currency: "INR",
|
|
512
|
+
auctionEndDate: new Date(Date.now() - 7 * 24 * 60 * 60 * 1000), // -7 days
|
|
513
|
+
bidCount: 5,
|
|
514
|
+
bidsHaveStarted: true,
|
|
515
|
+
isSold: true,
|
|
516
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.gateGuardian}.jpg`,
|
|
517
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.gateGuardian}.jpg`],
|
|
878
518
|
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
879
|
-
|
|
880
|
-
storeId: "store-pokemon-palace",
|
|
881
|
-
featured: true,
|
|
882
|
-
isPromoted: true,
|
|
883
|
-
tags: ["pokemon", "trophy-pikachu", "worlds-2006", "promo", "ultra-rare", "upcoming-auction"],
|
|
519
|
+
grading: { service: "PSA", grade: 9, certNumber: "PSA-YGO-887799" },
|
|
884
520
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
],
|
|
890
|
-
features: [
|
|
891
|
-
"Worlds 2006 Trophy Pikachu — staff-only distribution",
|
|
892
|
-
"Provenance: ex-WCS judge",
|
|
893
|
-
"Opens in 4 days — set reminder",
|
|
894
|
-
"No reserve — sells at any price",
|
|
895
|
-
],
|
|
896
|
-
shippingInfo: "Winner-paid insured Blue Dart. Toploader + rigid mailer.",
|
|
897
|
-
returnPolicy: "No returns on auction lots.",
|
|
898
|
-
insurance: true,
|
|
899
|
-
insuranceCost: 150000,
|
|
900
|
-
createdAt: daysAgo(2),
|
|
901
|
-
updatedAt: hoursAgo(20),
|
|
521
|
+
storeId: "store-kaiba-corp-cards",
|
|
522
|
+
storeName: "Kaiba Corp Card Vault",
|
|
523
|
+
createdAt: new Date("2026-05-01"),
|
|
524
|
+
updatedAt: new Date("2026-05-21"),
|
|
902
525
|
},
|
|
903
|
-
// ── 16. UPCOMING — starts in 10d (Hot Wheels Treasure Hunt Set) ───────────
|
|
904
526
|
{
|
|
905
|
-
id: "auction-
|
|
906
|
-
slug: "auction-
|
|
907
|
-
title: "
|
|
908
|
-
description: "
|
|
909
|
-
categorySlugs: ["category-
|
|
910
|
-
categoryNames: ["
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
527
|
+
id: "auction-upcoming-gx-promo-set",
|
|
528
|
+
slug: "auction-upcoming-gx-promo-set",
|
|
529
|
+
title: "GX Promo Set (UPCOMING)",
|
|
530
|
+
description: "Special GX era promotional card set. Auction starts soon.",
|
|
531
|
+
categorySlugs: ["category-gx-era", "category-singles"],
|
|
532
|
+
categoryNames: ["GX Era", "Singles"],
|
|
533
|
+
brandSlug: "brand-konami",
|
|
534
|
+
brand: "Konami",
|
|
535
|
+
startingBid: 999900,
|
|
536
|
+
currency: "INR",
|
|
537
|
+
auctionEndDate: new Date(Date.now() + 14 * 24 * 60 * 60 * 1000), // +14 days
|
|
916
538
|
bidCount: 0,
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
price: 1499900,
|
|
923
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
924
|
-
stockQuantity: 1,
|
|
925
|
-
availableQuantity: 1,
|
|
926
|
-
mainImage: "https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
927
|
-
images: [
|
|
928
|
-
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
929
|
-
"https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
930
|
-
],
|
|
931
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
932
|
-
storeName: "Diecast Depot",
|
|
933
|
-
storeId: "store-diecast-depot",
|
|
934
|
-
featured: false,
|
|
935
|
-
isPromoted: false,
|
|
936
|
-
tags: ["hot-wheels", "super-treasure-hunt", "2024", "full-set", "upcoming-auction"],
|
|
539
|
+
bidsHaveStarted: false,
|
|
540
|
+
isSold: false,
|
|
541
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`,
|
|
542
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`],
|
|
543
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.DRAFT,
|
|
937
544
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
{ name: "Reserve", value: "No reserve" },
|
|
943
|
-
],
|
|
944
|
-
features: [
|
|
945
|
-
"Complete 2024 STH set — all 15 cars",
|
|
946
|
-
"Each in sealed original blister",
|
|
947
|
-
"No reserve — sells at any price",
|
|
948
|
-
"Opens in 10 days",
|
|
949
|
-
],
|
|
950
|
-
shippingInfo: "Winner-paid insured shipping. Each car bubble-wrapped.",
|
|
951
|
-
returnPolicy: "No returns on auction lots.",
|
|
952
|
-
insurance: true,
|
|
953
|
-
insuranceCost: 10000,
|
|
954
|
-
createdAt: daysAgo(1),
|
|
955
|
-
updatedAt: hoursAgo(18),
|
|
545
|
+
storeId: "store-kaiba-corp-cards",
|
|
546
|
+
storeName: "Kaiba Corp Card Vault",
|
|
547
|
+
createdAt: new Date("2026-05-20"),
|
|
548
|
+
updatedAt: new Date("2026-05-21"),
|
|
956
549
|
},
|
|
957
|
-
// ── 17. ENDED (winner declared) — 3 days ago (S.H.Figuarts Goku UI) ───────
|
|
958
550
|
{
|
|
959
|
-
id: "auction-
|
|
960
|
-
slug: "auction-
|
|
961
|
-
title: "
|
|
962
|
-
description: "
|
|
963
|
-
categorySlugs: ["category-
|
|
964
|
-
categoryNames: ["
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
bidCount:
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
977
|
-
stockQuantity: 0,
|
|
978
|
-
availableQuantity: 0,
|
|
979
|
-
mainImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
980
|
-
images: [
|
|
981
|
-
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
982
|
-
],
|
|
983
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.SOLD,
|
|
984
|
-
storeName: "Tokyo Toys India",
|
|
985
|
-
storeId: "store-tokyo-toys-india",
|
|
986
|
-
featured: false,
|
|
987
|
-
isPromoted: false,
|
|
988
|
-
tags: ["shfiguarts", "goku", "ultra-instinct", "dbz", "auction", "ended"],
|
|
551
|
+
id: "auction-upcoming-duelist-league",
|
|
552
|
+
slug: "auction-upcoming-duelist-league",
|
|
553
|
+
title: "Duelist League Promo (UPCOMING)",
|
|
554
|
+
description: "Duelist League promotional cards from tournament. Coming soon.",
|
|
555
|
+
categorySlugs: ["category-singles"],
|
|
556
|
+
categoryNames: ["Singles"],
|
|
557
|
+
brandSlug: "brand-konami",
|
|
558
|
+
brand: "Konami",
|
|
559
|
+
startingBid: 499900,
|
|
560
|
+
currency: "INR",
|
|
561
|
+
auctionEndDate: new Date(Date.now() + 21 * 24 * 60 * 60 * 1000), // +21 days
|
|
562
|
+
bidCount: 0,
|
|
563
|
+
bidsHaveStarted: false,
|
|
564
|
+
isSold: false,
|
|
565
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.darkMagician}.jpg`,
|
|
566
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.darkMagician}.jpg`],
|
|
567
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.DRAFT,
|
|
989
568
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
{ name: "Final Bid", value: "₹14,999" },
|
|
995
|
-
],
|
|
996
|
-
features: [
|
|
997
|
-
"Tamashii Web Exclusive — limited release",
|
|
998
|
-
"Sealed in original packaging",
|
|
999
|
-
"Reserve met — auction settled",
|
|
1000
|
-
],
|
|
1001
|
-
shippingInfo: "Shipping arranged with winner.",
|
|
1002
|
-
returnPolicy: "Auction ended.",
|
|
1003
|
-
createdAt: daysAgo(17),
|
|
1004
|
-
updatedAt: daysAgo(3),
|
|
569
|
+
storeId: "store-kaiba-corp-cards",
|
|
570
|
+
storeName: "Kaiba Corp Card Vault",
|
|
571
|
+
createdAt: new Date("2026-05-20"),
|
|
572
|
+
updatedAt: new Date("2026-05-21"),
|
|
1005
573
|
},
|
|
1006
|
-
|
|
574
|
+
];
|
|
575
|
+
const _adminAuctionsSeedData = [
|
|
1007
576
|
{
|
|
1008
|
-
id: "auction-
|
|
1009
|
-
slug: "auction-
|
|
1010
|
-
title: "
|
|
1011
|
-
description: "
|
|
1012
|
-
categorySlugs: ["category-
|
|
1013
|
-
categoryNames: ["
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
currentBid:
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.SOLD,
|
|
1033
|
-
storeName: "Pokémon Palace",
|
|
1034
|
-
storeId: "store-pokemon-palace",
|
|
1035
|
-
featured: false,
|
|
1036
|
-
isPromoted: false,
|
|
1037
|
-
tags: ["pokemon", "blastoise", "shadowless", "bgs-8-5", "vintage", "auction", "ended"],
|
|
1038
|
-
condition: "graded",
|
|
1039
|
-
specifications: [
|
|
1040
|
-
{ name: "Card", value: "Blastoise #2 Holo — Shadowless" },
|
|
1041
|
-
{ name: "Grade", value: "BGS 8.5" },
|
|
1042
|
-
{ name: "Year", value: "1999" },
|
|
1043
|
-
{ name: "Final Bid", value: "₹39,999" },
|
|
1044
|
-
],
|
|
1045
|
-
features: [
|
|
1046
|
-
"Shadowless print — rarer than unlimited",
|
|
1047
|
-
"BGS 8.5 — strong subgrades",
|
|
1048
|
-
"Auction settled — slab shipped",
|
|
1049
|
-
],
|
|
1050
|
-
shippingInfo: "Shipped to winner.",
|
|
1051
|
-
returnPolicy: "Auction ended.",
|
|
1052
|
-
createdAt: daysAgo(28),
|
|
1053
|
-
updatedAt: daysAgo(14),
|
|
577
|
+
id: "auction-admin-ra-authentic-card",
|
|
578
|
+
slug: "auction-admin-ra-authentic-card",
|
|
579
|
+
title: "The Winged Dragon of Ra — God Card (Authentic)",
|
|
580
|
+
description: "Authentic God Card Ra from official release. Museum-quality collectible.",
|
|
581
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
582
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
583
|
+
brandSlug: "brand-konami",
|
|
584
|
+
brand: "Konami",
|
|
585
|
+
startingBid: 1999900,
|
|
586
|
+
buyItNowPriceInPaise: 3999900,
|
|
587
|
+
currentBid: 3199900,
|
|
588
|
+
currency: "INR",
|
|
589
|
+
auctionEndDate: new Date(Date.now() + 5 * 24 * 60 * 60 * 1000),
|
|
590
|
+
bidCount: 4,
|
|
591
|
+
bidsHaveStarted: true,
|
|
592
|
+
isSold: false,
|
|
593
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.exodiaHead}.jpg`,
|
|
594
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.exodiaHead}.jpg`],
|
|
595
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
596
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
597
|
+
storeId: "store-letitrip-official",
|
|
598
|
+
storeName: "LetItRip Official",
|
|
599
|
+
createdAt: new Date("2026-05-15"),
|
|
600
|
+
updatedAt: new Date("2026-05-21"),
|
|
1054
601
|
},
|
|
1055
|
-
// ── 19. ENDED (no winner — reserve not met) — 10 days ago ────────────────
|
|
1056
602
|
{
|
|
1057
|
-
id: "auction-
|
|
1058
|
-
slug: "auction-
|
|
1059
|
-
title: "
|
|
1060
|
-
description: "
|
|
1061
|
-
categorySlugs: ["category-
|
|
1062
|
-
categoryNames: ["
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
currentBid:
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
availableQuantity: 1,
|
|
1077
|
-
mainImage: "https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
1078
|
-
images: [
|
|
1079
|
-
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
1080
|
-
],
|
|
1081
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.DRAFT,
|
|
1082
|
-
storeName: "Diecast Depot",
|
|
1083
|
-
storeId: "store-diecast-depot",
|
|
1084
|
-
featured: false,
|
|
1085
|
-
isPromoted: false,
|
|
1086
|
-
tags: ["tomica", "skyline", "hakosuka", "vintage", "auction", "ended", "no-winner"],
|
|
603
|
+
id: "auction-admin-obelisk-authentic",
|
|
604
|
+
slug: "auction-admin-obelisk-authentic",
|
|
605
|
+
title: "Obelisk the Tormentor — Limited Edition",
|
|
606
|
+
description: "Limited edition Obelisk God Card. Certified original.",
|
|
607
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
608
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
609
|
+
brandSlug: "brand-konami",
|
|
610
|
+
brand: "Konami",
|
|
611
|
+
startingBid: 2499900,
|
|
612
|
+
buyItNowPriceInPaise: 4999900,
|
|
613
|
+
currentBid: 3899900,
|
|
614
|
+
currency: "INR",
|
|
615
|
+
auctionEndDate: new Date(Date.now() + 8 * 24 * 60 * 60 * 1000),
|
|
616
|
+
bidCount: 5,
|
|
617
|
+
bidsHaveStarted: true,
|
|
618
|
+
isSold: false,
|
|
619
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.exodiaHead}.jpg`,
|
|
620
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.exodiaHead}.jpg`],
|
|
621
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
1087
622
|
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
{ name: "Outcome", value: "No sale — reserve not met" },
|
|
1093
|
-
],
|
|
1094
|
-
features: [
|
|
1095
|
-
"Vintage 1973 Hakosuka Tomica",
|
|
1096
|
-
"Reserve not met — no winner",
|
|
1097
|
-
"May be relisted at a lower reserve",
|
|
1098
|
-
],
|
|
1099
|
-
shippingInfo: "Not applicable — auction did not settle.",
|
|
1100
|
-
returnPolicy: "Not applicable.",
|
|
1101
|
-
createdAt: daysAgo(20),
|
|
1102
|
-
updatedAt: daysAgo(10),
|
|
623
|
+
storeId: "store-letitrip-official",
|
|
624
|
+
storeName: "LetItRip Official",
|
|
625
|
+
createdAt: new Date("2026-05-12"),
|
|
626
|
+
updatedAt: new Date("2026-05-21"),
|
|
1103
627
|
},
|
|
1104
|
-
// ── 20. ENDED (no winner — zero bids) — 5 days ago ────────────────────────
|
|
1105
628
|
{
|
|
1106
|
-
id: "auction-
|
|
1107
|
-
slug: "auction-
|
|
1108
|
-
title: "
|
|
1109
|
-
description: "
|
|
1110
|
-
categorySlugs: ["category-
|
|
1111
|
-
categoryNames: ["
|
|
629
|
+
id: "auction-admin-exodia-leg-set",
|
|
630
|
+
slug: "auction-admin-exodia-leg-set",
|
|
631
|
+
title: "Exodia Limb Set (4 pieces, 1st Ed)",
|
|
632
|
+
description: "All 4 limbs of Exodia in 1st Edition condition. Rare collector set.",
|
|
633
|
+
categorySlugs: ["category-monster-cards", "category-singles"],
|
|
634
|
+
categoryNames: ["Monster Cards", "Singles"],
|
|
635
|
+
brandSlug: "brand-konami",
|
|
1112
636
|
brand: "Konami",
|
|
637
|
+
startingBid: 799900,
|
|
638
|
+
buyItNowPriceInPaise: 1499900,
|
|
639
|
+
currentBid: 1099900,
|
|
640
|
+
currency: "INR",
|
|
641
|
+
auctionEndDate: new Date(Date.now() + 3 * 24 * 60 * 60 * 1000),
|
|
642
|
+
bidCount: 3,
|
|
643
|
+
bidsHaveStarted: true,
|
|
644
|
+
isSold: false,
|
|
645
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.exodiaHead}.jpg`,
|
|
646
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.exodiaHead}.jpg`],
|
|
647
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
648
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
|
|
649
|
+
storeId: "store-letitrip-official",
|
|
650
|
+
storeName: "LetItRip Official",
|
|
651
|
+
createdAt: new Date("2026-05-18"),
|
|
652
|
+
updatedAt: new Date("2026-05-21"),
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
id: "auction-admin-ended-yugi-promo",
|
|
656
|
+
slug: "auction-admin-ended-yugi-promo",
|
|
657
|
+
title: "Yugi Muto Promo Card (ENDED)",
|
|
658
|
+
description: "Exclusive Yugi Muto promo card. Auction completed.",
|
|
659
|
+
categorySlugs: ["category-singles"],
|
|
660
|
+
categoryNames: ["Singles"],
|
|
1113
661
|
brandSlug: "brand-konami",
|
|
1114
|
-
|
|
1115
|
-
startingBid:
|
|
1116
|
-
currentBid:
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.DRAFT,
|
|
1131
|
-
storeName: "CardGame Hub",
|
|
1132
|
-
storeId: "store-cardgame-hub",
|
|
1133
|
-
featured: false,
|
|
1134
|
-
isPromoted: false,
|
|
1135
|
-
tags: ["yugioh", "thousand-dragon", "lob", "1st-edition", "auction", "ended", "no-bids"],
|
|
1136
|
-
condition: "graded",
|
|
1137
|
-
specifications: [
|
|
1138
|
-
{ name: "Card", value: "Thousand Dragon — LOB-040" },
|
|
1139
|
-
{ name: "Opening Bid", value: "₹9,999 (too high)" },
|
|
1140
|
-
{ name: "Outcome", value: "Zero bids — no sale" },
|
|
1141
|
-
],
|
|
1142
|
-
features: [
|
|
1143
|
-
"Yu-Gi-Oh! vintage 1st Edition",
|
|
1144
|
-
"No bids received",
|
|
1145
|
-
"Listing kept for analytics",
|
|
1146
|
-
],
|
|
1147
|
-
shippingInfo: "Not applicable.",
|
|
1148
|
-
returnPolicy: "Not applicable.",
|
|
1149
|
-
createdAt: daysAgo(15),
|
|
1150
|
-
updatedAt: daysAgo(5),
|
|
662
|
+
brand: "Konami",
|
|
663
|
+
startingBid: 299900,
|
|
664
|
+
currentBid: 899900,
|
|
665
|
+
currency: "INR",
|
|
666
|
+
auctionEndDate: new Date(Date.now() - 4 * 24 * 60 * 60 * 1000), // -4 days
|
|
667
|
+
bidCount: 4,
|
|
668
|
+
bidsHaveStarted: true,
|
|
669
|
+
isSold: true,
|
|
670
|
+
mainImage: `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.darkMagician}.jpg`,
|
|
671
|
+
images: [`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.darkMagician}.jpg`],
|
|
672
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
673
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
674
|
+
storeId: "store-letitrip-official",
|
|
675
|
+
storeName: "LetItRip Official",
|
|
676
|
+
createdAt: new Date("2026-05-05"),
|
|
677
|
+
updatedAt: new Date("2026-05-21"),
|
|
1151
678
|
},
|
|
1152
679
|
];
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
}))
|
|
680
|
+
export const productsAuctionsSeedData = [
|
|
681
|
+
..._kaibaAuctionsSeedData.map((a) => withTokens({
|
|
682
|
+
...a,
|
|
683
|
+
listingType: PRODUCT_FIELDS.LISTING_TYPE_VALUES.AUCTION,
|
|
684
|
+
})),
|
|
685
|
+
..._adminAuctionsSeedData.map((a) => withTokens({
|
|
686
|
+
...a,
|
|
687
|
+
listingType: PRODUCT_FIELDS.LISTING_TYPE_VALUES.AUCTION,
|
|
688
|
+
})),
|
|
689
|
+
];
|