@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,493 +1,192 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
* 5 pre-
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
1
|
+
/*
|
|
2
|
+
* WHY: Seeds pre-order product listings for the YGO marketplace, allowing customers to reserve upcoming releases with deposit payments.
|
|
3
|
+
* WHAT: Exports 5 pre-order products (25th Anniversary LOB reprint, GX Tournament Pack 2026, Blue-Eyes Collector Tin, Dark Magician Structure Deck, Master Duel Promo Bundle). All in Kaiba Corp Card Vault. Delivery dates range +30 to +120 days from seed time. Deposit percentages 25% standard. Production status ranges from "upcoming" to "in_production". Images from YGOPRODECK free API. Status: 3 published, 2 draft.
|
|
4
|
+
*
|
|
5
|
+
* EXPORTS:
|
|
6
|
+
* productsPreordersSeedData — Array of 5 pre-order products with listingType:"pre-order"
|
|
7
|
+
*
|
|
8
|
+
* @tag domain:products,pre-orders
|
|
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
|
|
7
14
|
*/
|
|
8
|
-
import { PRODUCT_FIELDS
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
const
|
|
12
|
-
|
|
13
|
-
|
|
15
|
+
import { PRODUCT_FIELDS } from "../constants/field-names";
|
|
16
|
+
import { buildSearchTokens } from "../utils/search-tokens";
|
|
17
|
+
// Card ID mappings for YGOPRODECK image API
|
|
18
|
+
const CARD_IDS = {
|
|
19
|
+
blueEyesWhiteDragon: 89631139,
|
|
20
|
+
darkMagician: 46986414,
|
|
21
|
+
elementalHeroNeos: 89943723,
|
|
22
|
+
};
|
|
23
|
+
const _rawPreordersSeedData = [
|
|
14
24
|
{
|
|
15
|
-
id: "preorder-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
preOrderCurrentCount: 37,
|
|
28
|
-
preOrderProductionStatus: "in_production",
|
|
29
|
-
preOrderCancellable: true,
|
|
30
|
-
price: 499900,
|
|
31
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
32
|
-
stockQuantity: 100,
|
|
33
|
-
availableQuantity: 63,
|
|
34
|
-
mainImage: "https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
25
|
+
id: "preorder-25th-anniversary-lob",
|
|
26
|
+
storeId: "store-kaiba-corp-cards",
|
|
27
|
+
brandSlug: "brand-konami",
|
|
28
|
+
title: "25th Anniversary LOB Reprint",
|
|
29
|
+
slug: "preorder-25th-anniversary-lob",
|
|
30
|
+
description: "Highly anticipated 25th Anniversary reprint of the classic Legend of Blue Eyes White Dragon booster set. Limited production run. Secure your allocation now.",
|
|
31
|
+
price: 299900, // ₹2,999
|
|
32
|
+
currency: "INR",
|
|
33
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
34
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
35
|
+
listingType: "pre-order",
|
|
36
|
+
categorySlugs: ["category-sealed-products", "category-booster-boxes"],
|
|
35
37
|
images: [
|
|
36
|
-
|
|
37
|
-
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
38
|
-
"https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
38
|
+
`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`,
|
|
39
39
|
],
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
40
|
+
isSold: false,
|
|
41
|
+
availableQuantity: 1,
|
|
42
|
+
customFields: [],
|
|
43
|
+
customSections: [],
|
|
43
44
|
featured: false,
|
|
44
45
|
isPromoted: false,
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"bx-10",
|
|
48
|
-
"dran-dagger",
|
|
49
|
-
"pre-order",
|
|
50
|
-
"takara-tomy",
|
|
51
|
-
"booster",
|
|
52
|
-
],
|
|
53
|
-
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
54
|
-
specifications: [
|
|
55
|
-
{ name: "Generation", value: "Beyblade X" },
|
|
56
|
-
{ name: "Product Code", value: "BX-10" },
|
|
57
|
-
{ name: "Top Name", value: "Dran Dagger" },
|
|
58
|
-
{ name: "Deposit Required", value: "30% (₹1,499)" },
|
|
59
|
-
{ name: "Estimated Shipping", value: "~45 days" },
|
|
60
|
-
{ name: "Manufacturer", value: "Takara Tomy Japan" },
|
|
61
|
-
],
|
|
62
|
-
features: [
|
|
63
|
-
"Beyblade X latest wave — BX-10 Dran Dagger",
|
|
64
|
-
"30% deposit secures your unit",
|
|
65
|
-
"Cancellable before shipping confirmation",
|
|
66
|
-
"Authentic Takara Tomy Japan import",
|
|
67
|
-
"37 units already pre-ordered — limited stock",
|
|
68
|
-
],
|
|
69
|
-
shippingInfo: "Deposit paid now. Balance collected before shipping. Free standard shipping on pre-order delivery. 4–6 business days post-dispatch.",
|
|
70
|
-
returnPolicy: "Pre-orders cancellable before shipment confirmation — full deposit refund. Once shipped, standard 7-day return policy applies.",
|
|
71
|
-
allowOffers: false,
|
|
72
|
-
createdAt: daysAgo(20),
|
|
73
|
-
updatedAt: daysAgo(1),
|
|
74
|
-
},
|
|
75
|
-
// ── 2. ACTIVE — Pokémon SV5 Shrouded Fable Booster Box (deposit 30%, 60 days) ─
|
|
76
|
-
{
|
|
77
|
-
id: "preorder-pokemon-sv5-booster-box",
|
|
78
|
-
slug: "preorder-pokemon-sv5-booster-box",
|
|
79
|
-
title: "PRE-ORDER: Pokémon TCG Scarlet & Violet — Shrouded Fable Booster Box (36 Packs, Ships ~60 Days)",
|
|
80
|
-
description: "Pre-order the sealed Scarlet & Violet — Shrouded Fable Booster Box (36 packs) before the official India release. SV Shrouded Fable focuses on the mysterious Pecharunt and features returning Pokémon as shiny Illustration Rare special art cards. A pivotal investment set with high pull rates for gold and special illustration rares. Deposit 30% (₹2,999) now. Remaining ₹6,999 charged on shipment confirmation. Estimated 60-day window to official India release via authorised distributor.",
|
|
81
|
-
categorySlugs: ["category-sealed-product"],
|
|
82
|
-
categoryNames: ["Sealed Product"],
|
|
83
|
-
brand: "The Pokémon Company",
|
|
84
|
-
brandSlug: "brand-pokemon-company",
|
|
85
|
-
preOrderDeliveryDate: daysAhead(60),
|
|
86
|
-
preOrderDepositPercent: 30,
|
|
87
|
-
preOrderDepositAmount: 299900,
|
|
88
|
-
preOrderMaxQuantity: 50,
|
|
89
|
-
preOrderCurrentCount: 22,
|
|
46
|
+
isOnSale: false,
|
|
47
|
+
preOrderDeliveryDate: new Date(Date.now() + 90 * 24 * 60 * 60 * 1000), // +90 days
|
|
90
48
|
preOrderProductionStatus: "in_production",
|
|
49
|
+
preOrderDepositPercent: 25,
|
|
50
|
+
preOrderMaxQuantity: 100,
|
|
51
|
+
preOrderCurrentCount: 42,
|
|
91
52
|
preOrderCancellable: true,
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
stockQuantity: 50,
|
|
95
|
-
availableQuantity: 28,
|
|
96
|
-
mainImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
97
|
-
images: [
|
|
98
|
-
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
99
|
-
"https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
100
|
-
"https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
101
|
-
],
|
|
102
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
103
|
-
storeName: "Pokémon Palace",
|
|
104
|
-
storeId: "store-pokemon-palace",
|
|
105
|
-
featured: true,
|
|
106
|
-
isPromoted: false,
|
|
107
|
-
tags: [
|
|
108
|
-
"pokemon",
|
|
109
|
-
"sv5",
|
|
110
|
-
"shrouded-fable",
|
|
111
|
-
"booster-box",
|
|
112
|
-
"sealed",
|
|
113
|
-
"pre-order",
|
|
114
|
-
"scarlet-violet",
|
|
115
|
-
],
|
|
116
|
-
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
117
|
-
specifications: [
|
|
118
|
-
{ name: "Set", value: "Scarlet & Violet — Shrouded Fable" },
|
|
119
|
-
{ name: "Packs per Box", value: "36" },
|
|
120
|
-
{ name: "Deposit Required", value: "30% (₹2,999)" },
|
|
121
|
-
{ name: "Estimated Shipping", value: "~60 days" },
|
|
122
|
-
{ name: "Language", value: "English" },
|
|
123
|
-
{ name: "Source", value: "Authorised Indian distributor" },
|
|
124
|
-
],
|
|
125
|
-
features: [
|
|
126
|
-
"Sealed 36-pack booster box — factory sealed",
|
|
127
|
-
"SV Shrouded Fable — Pecharunt and special art cards",
|
|
128
|
-
"30% deposit locks your price",
|
|
129
|
-
"Cancellable before shipping confirmation",
|
|
130
|
-
"22 of 50 units already reserved",
|
|
131
|
-
],
|
|
132
|
-
shippingInfo: "Deposit paid now. Balance on shipment confirmation. Double-boxed with foam — no corner damage.",
|
|
133
|
-
returnPolicy: "Pre-orders cancellable before shipping — full deposit refund. Once dispatched, 7-day return on sealed (seal intact).",
|
|
134
|
-
allowOffers: false,
|
|
135
|
-
createdAt: daysAgo(15),
|
|
136
|
-
updatedAt: daysAgo(2),
|
|
53
|
+
createdAt: new Date(Date.now() - 14 * 24 * 60 * 60 * 1000), // -14 days
|
|
54
|
+
updatedAt: new Date(),
|
|
137
55
|
},
|
|
138
|
-
// ── 3. ACTIVE — S.H.Figuarts Broly Super Hero (deposit 50%, 30 days) ───────
|
|
139
56
|
{
|
|
140
|
-
id: "preorder-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
preOrderCurrentCount: 18,
|
|
153
|
-
preOrderProductionStatus: "ready_to_ship",
|
|
154
|
-
preOrderCancellable: false,
|
|
155
|
-
price: 699900,
|
|
156
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
157
|
-
stockQuantity: 30,
|
|
158
|
-
availableQuantity: 12,
|
|
159
|
-
mainImage: "https://images.unsplash.com/photo-1560762484-813fc97650a0?w=800&h=800&fit=crop",
|
|
57
|
+
id: "preorder-gx-tournament-pack-2026",
|
|
58
|
+
storeId: "store-kaiba-corp-cards",
|
|
59
|
+
brandSlug: "brand-konami",
|
|
60
|
+
title: "GX Tournament Pack 2026",
|
|
61
|
+
slug: "preorder-gx-tournament-pack-2026",
|
|
62
|
+
description: "Official tournament pack from Konami featuring exclusive GX era promos and tournament-legal deck staples. Perfect for competitive players.",
|
|
63
|
+
price: 199900, // ₹1,999
|
|
64
|
+
currency: "INR",
|
|
65
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
66
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
67
|
+
listingType: "pre-order",
|
|
68
|
+
categorySlugs: ["category-sealed-products", "category-booster-packs"],
|
|
160
69
|
images: [
|
|
161
|
-
|
|
162
|
-
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
163
|
-
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
70
|
+
`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`,
|
|
164
71
|
],
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
72
|
+
isSold: false,
|
|
73
|
+
availableQuantity: 1,
|
|
74
|
+
customFields: [],
|
|
75
|
+
customSections: [],
|
|
168
76
|
featured: false,
|
|
169
|
-
isPromoted:
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
"sh-figuarts",
|
|
173
|
-
"broly",
|
|
174
|
-
"dragon-ball",
|
|
175
|
-
"super-hero",
|
|
176
|
-
"tamashii",
|
|
177
|
-
"pre-order",
|
|
178
|
-
],
|
|
179
|
-
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
180
|
-
specifications: [
|
|
181
|
-
{ name: "Character", value: "Broly" },
|
|
182
|
-
{ name: "Series", value: "Dragon Ball Super: Super Hero" },
|
|
183
|
-
{ name: "Height", value: "~18 cm", unit: "cm" },
|
|
184
|
-
{ name: "Deposit Required", value: "50% (₹3,499.50) — non-refundable" },
|
|
185
|
-
{ name: "Estimated Shipping", value: "~30 days" },
|
|
186
|
-
{ name: "Edition", value: "Tamashii Web Exclusive" },
|
|
187
|
-
],
|
|
188
|
-
features: [
|
|
189
|
-
"Ready to ship in ~30 days",
|
|
190
|
-
"Tamashii Web Exclusive — very limited",
|
|
191
|
-
"Rage expression faceplate + green ki effect parts",
|
|
192
|
-
"50% deposit secures your unit",
|
|
193
|
-
"Non-cancellable after deposit — ship window imminent",
|
|
194
|
-
],
|
|
195
|
-
shippingInfo: "50% deposit now, balance before dispatch. Fast dispatch once stock arrives from Japan. 3–5 business days India delivery.",
|
|
196
|
-
returnPolicy: "Non-cancellable after deposit (ship window imminent). 7-day return if product is defective on arrival.",
|
|
197
|
-
allowOffers: false,
|
|
198
|
-
createdAt: daysAgo(10),
|
|
199
|
-
updatedAt: daysAgo(1),
|
|
200
|
-
},
|
|
201
|
-
// ── 4. UPCOMING — Gundam PG Unicorn Ver. 1.5 (opens for pre-order in 14 days) ─
|
|
202
|
-
{
|
|
203
|
-
id: "preorder-gundam-pg-unicorn-ver15",
|
|
204
|
-
slug: "preorder-gundam-pg-unicorn-ver15",
|
|
205
|
-
title: "UPCOMING PRE-ORDER: Bandai Gunpla PG 1/60 Unicorn Gundam Ver. 1.5 — Pre-Orders Open in ~14 Days",
|
|
206
|
-
description: "Coming soon: the Bandai Perfect Grade 1/60 Unicorn Gundam Ver. 1.5 — a revised and enhanced version of the legendary PG Unicorn featuring improved transformation mechanism, updated LED unit compatibility, and revised psychoframe effect parts. The PG Unicorn is one of Bandai's greatest engineering achievements: transforms between Unicorn Mode (white armour closed) and Destroy Mode (psychoframe exposed) with 500+ parts. Est. delivery 120 days from pre-order open. Register your interest now to be notified when pre-orders open in approximately 14 days.",
|
|
207
|
-
categorySlugs: ["category-gunpla"],
|
|
208
|
-
categoryNames: ["Gunpla"],
|
|
209
|
-
brand: "Bandai",
|
|
210
|
-
brandSlug: "brand-bandai",
|
|
211
|
-
preOrderDeliveryDate: daysAhead(134),
|
|
212
|
-
preOrderDepositPercent: 30,
|
|
213
|
-
preOrderDepositAmount: 449970,
|
|
214
|
-
preOrderMaxQuantity: 20,
|
|
215
|
-
preOrderCurrentCount: 0,
|
|
77
|
+
isPromoted: false,
|
|
78
|
+
isOnSale: false,
|
|
79
|
+
preOrderDeliveryDate: new Date(Date.now() + 60 * 24 * 60 * 60 * 1000), // +60 days
|
|
216
80
|
preOrderProductionStatus: "upcoming",
|
|
81
|
+
preOrderDepositPercent: 25,
|
|
82
|
+
preOrderMaxQuantity: 150,
|
|
83
|
+
preOrderCurrentCount: 67,
|
|
217
84
|
preOrderCancellable: true,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
stockQuantity: 20,
|
|
221
|
-
availableQuantity: 20,
|
|
222
|
-
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
223
|
-
images: [
|
|
224
|
-
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
225
|
-
"https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
226
|
-
"https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
227
|
-
],
|
|
228
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
229
|
-
storeName: "LetItRip Official",
|
|
230
|
-
storeId: "store-letitrip-official",
|
|
231
|
-
featured: true,
|
|
232
|
-
isPromoted: false,
|
|
233
|
-
tags: [
|
|
234
|
-
"gunpla",
|
|
235
|
-
"perfect-grade",
|
|
236
|
-
"unicorn-gundam",
|
|
237
|
-
"pg",
|
|
238
|
-
"bandai",
|
|
239
|
-
"upcoming",
|
|
240
|
-
"pre-order",
|
|
241
|
-
],
|
|
242
|
-
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
243
|
-
specifications: [
|
|
244
|
-
{ name: "Grade", value: "Perfect Grade (PG)" },
|
|
245
|
-
{ name: "Scale", value: "1/60" },
|
|
246
|
-
{ name: "Version", value: "Ver. 1.5 — revised transformation" },
|
|
247
|
-
{ name: "Deposit Required", value: "30% (₹4,499.70) when opens" },
|
|
248
|
-
{ name: "Estimated Delivery", value: "~120 days from order open" },
|
|
249
|
-
{ name: "Pre-Orders Open", value: "~14 days from today" },
|
|
250
|
-
],
|
|
251
|
-
features: [
|
|
252
|
-
"PG Unicorn Ver. 1.5 — improved transformation mechanism",
|
|
253
|
-
"500+ parts — Unicorn + Destroy mode transformation",
|
|
254
|
-
"Updated LED unit compatibility (sold separately)",
|
|
255
|
-
"Pre-orders not yet open — register interest",
|
|
256
|
-
"Only 20 units allocated — extremely limited",
|
|
257
|
-
],
|
|
258
|
-
shippingInfo: "Pre-orders not yet open. Deposit collected when pre-orders go live. Double-boxed with foam padding.",
|
|
259
|
-
returnPolicy: "Cancellable at any time before shipment confirmation — full deposit refund.",
|
|
260
|
-
allowOffers: false,
|
|
261
|
-
createdAt: daysAgo(5),
|
|
262
|
-
updatedAt: daysAgo(1),
|
|
85
|
+
createdAt: new Date(Date.now() - 21 * 24 * 60 * 60 * 1000), // -21 days
|
|
86
|
+
updatedAt: new Date(),
|
|
263
87
|
},
|
|
264
|
-
// ── 6. ACTIVE — Pokémon Stellar Crown ETB (deposit 30%, 30 days) ────────────
|
|
265
88
|
{
|
|
266
|
-
id: "preorder-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
preOrderCurrentCount: 14,
|
|
279
|
-
preOrderProductionStatus: "in_production",
|
|
280
|
-
preOrderCancellable: true,
|
|
281
|
-
price: 449900,
|
|
282
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
283
|
-
stockQuantity: 40,
|
|
284
|
-
availableQuantity: 26,
|
|
285
|
-
mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
89
|
+
id: "preorder-blue-eyes-collector-tin",
|
|
90
|
+
storeId: "store-kaiba-corp-cards",
|
|
91
|
+
brandSlug: "brand-konami",
|
|
92
|
+
title: "Blue-Eyes Collector Tin 2026",
|
|
93
|
+
slug: "preorder-blue-eyes-collector-tin",
|
|
94
|
+
description: "Premium collector's edition tin featuring Blue-Eyes artwork and exclusive foil promos. Mint condition guaranteed on delivery.",
|
|
95
|
+
price: 399900, // ₹3,999
|
|
96
|
+
currency: "INR",
|
|
97
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
98
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
99
|
+
listingType: "pre-order",
|
|
100
|
+
categorySlugs: ["category-sealed-products", "category-collector-tins"],
|
|
286
101
|
images: [
|
|
287
|
-
|
|
288
|
-
"https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
102
|
+
`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`,
|
|
289
103
|
],
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
104
|
+
isSold: false,
|
|
105
|
+
availableQuantity: 1,
|
|
106
|
+
customFields: [],
|
|
107
|
+
customSections: [],
|
|
108
|
+
featured: true,
|
|
294
109
|
isPromoted: false,
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
specifications: [
|
|
298
|
-
{ name: "Set", value: "Scarlet & Violet — Stellar Crown" },
|
|
299
|
-
{ name: "Contents", value: "9 packs, 65 sleeves, energy, accessories" },
|
|
300
|
-
{ name: "Deposit Required", value: "30% (₹1,349)" },
|
|
301
|
-
{ name: "Estimated Shipping", value: "~30 days" },
|
|
302
|
-
{ name: "Language", value: "English" },
|
|
303
|
-
],
|
|
304
|
-
features: [
|
|
305
|
-
"Stellar Crown — Terastallization mechanic",
|
|
306
|
-
"30% deposit locks your price",
|
|
307
|
-
"14 of 40 units already reserved",
|
|
308
|
-
"Cancellable before shipping confirmation",
|
|
309
|
-
"Authorised distributor — factory sealed",
|
|
310
|
-
],
|
|
311
|
-
shippingInfo: "Deposit paid now. Balance on shipment confirmation. Double-boxed with foam.",
|
|
312
|
-
returnPolicy: "Pre-orders cancellable before shipping — full deposit refund.",
|
|
313
|
-
allowOffers: false,
|
|
314
|
-
createdAt: daysAgo(8),
|
|
315
|
-
updatedAt: daysAgo(1),
|
|
316
|
-
},
|
|
317
|
-
// ── 7. ACTIVE — Beyblade X BX-20 Phoenix Wing (deposit 30%, 60 days) ───────
|
|
318
|
-
{
|
|
319
|
-
id: "preorder-beyblade-x-bx20-phoenix-wing",
|
|
320
|
-
slug: "preorder-beyblade-x-bx20-phoenix-wing",
|
|
321
|
-
title: "PRE-ORDER: Beyblade X BX-20 Phoenix Wing Starter Set — Official Takara Tomy (Ships ~60 Days)",
|
|
322
|
-
description: "Pre-order the next-gen Beyblade X BX-20 Phoenix Wing starter set — the most anticipated release in the Beyblade X second wave. Phoenix Wing features the redesigned Wing 5 blade with aerodynamic profile adjustments for improved X-Dash trajectory control, and the new Phoenix driver for balance-type play. This is a Japan-warehouse pre-order — direct Takara Tomy import. Deposit 30% (₹599.70) now, balance charged on shipment confirmation in approximately 60 days.",
|
|
323
|
-
categorySlugs: ["category-beyblade-x"],
|
|
324
|
-
categoryNames: ["Beyblade X"],
|
|
325
|
-
brand: "Beyblade",
|
|
326
|
-
brandSlug: "brand-beyblade",
|
|
327
|
-
preOrderDeliveryDate: daysAhead(60),
|
|
328
|
-
preOrderDepositPercent: 30,
|
|
329
|
-
preOrderDepositAmount: 179970,
|
|
330
|
-
preOrderMaxQuantity: 80,
|
|
331
|
-
preOrderCurrentCount: 31,
|
|
110
|
+
isOnSale: false,
|
|
111
|
+
preOrderDeliveryDate: new Date(Date.now() + 45 * 24 * 60 * 60 * 1000), // +45 days
|
|
332
112
|
preOrderProductionStatus: "in_production",
|
|
113
|
+
preOrderDepositPercent: 25,
|
|
114
|
+
preOrderMaxQuantity: 200,
|
|
115
|
+
preOrderCurrentCount: 156,
|
|
333
116
|
preOrderCancellable: true,
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
stockQuantity: 80,
|
|
337
|
-
availableQuantity: 49,
|
|
338
|
-
mainImage: "https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
339
|
-
images: [
|
|
340
|
-
"https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
341
|
-
"https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
342
|
-
],
|
|
343
|
-
status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
|
|
344
|
-
storeName: "Beyblade Arena",
|
|
345
|
-
storeId: "store-beyblade-arena",
|
|
346
|
-
featured: false,
|
|
347
|
-
isPromoted: true,
|
|
348
|
-
tags: ["beyblade-x", "bx-20", "phoenix-wing", "takara-tomy", "pre-order", "second-wave"],
|
|
349
|
-
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
350
|
-
specifications: [
|
|
351
|
-
{ name: "Generation", value: "Beyblade X" },
|
|
352
|
-
{ name: "Product Code", value: "BX-20" },
|
|
353
|
-
{ name: "Top Name", value: "Phoenix Wing 5" },
|
|
354
|
-
{ name: "Deposit Required", value: "30% (₹1,799)" },
|
|
355
|
-
{ name: "Estimated Shipping", value: "~60 days" },
|
|
356
|
-
],
|
|
357
|
-
features: [
|
|
358
|
-
"Second-wave BX-20 — next-gen X-Dash control",
|
|
359
|
-
"30% deposit secures your unit",
|
|
360
|
-
"31 of 80 units already reserved",
|
|
361
|
-
"Cancellable before shipping confirmation",
|
|
362
|
-
"Authentic Takara Tomy Japan import",
|
|
363
|
-
],
|
|
364
|
-
shippingInfo: "Deposit paid now. Balance before shipping. Free standard shipping on delivery.",
|
|
365
|
-
returnPolicy: "Cancellable before shipment — full deposit refund. Standard return after delivery.",
|
|
366
|
-
allowOffers: false,
|
|
367
|
-
createdAt: daysAgo(12),
|
|
368
|
-
updatedAt: daysAgo(1),
|
|
117
|
+
createdAt: new Date(Date.now() - 28 * 24 * 60 * 60 * 1000), // -28 days
|
|
118
|
+
updatedAt: new Date(),
|
|
369
119
|
},
|
|
370
|
-
// ── 8. ACTIVE — Gundam RG Hi-Nu Ver.Ka (deposit 30%, 90 days) ───────────────
|
|
371
120
|
{
|
|
372
|
-
id: "preorder-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
preOrderCurrentCount: 9,
|
|
385
|
-
preOrderProductionStatus: "in_production",
|
|
386
|
-
preOrderCancellable: true,
|
|
387
|
-
price: 399900,
|
|
388
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
389
|
-
stockQuantity: 25,
|
|
390
|
-
availableQuantity: 16,
|
|
391
|
-
mainImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
121
|
+
id: "preorder-dark-magician-struct-2026",
|
|
122
|
+
storeId: "store-kaiba-corp-cards",
|
|
123
|
+
brandSlug: "brand-konami",
|
|
124
|
+
title: "Dark Magician Structure Deck 2026",
|
|
125
|
+
slug: "preorder-dark-magician-struct-2026",
|
|
126
|
+
description: "Definitive Dark Magician structure deck for 2026 with updated support cards and powerful synergies. Perfect starter deck for new players.",
|
|
127
|
+
price: 149900, // ₹1,499
|
|
128
|
+
currency: "INR",
|
|
129
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
130
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.DRAFT,
|
|
131
|
+
listingType: "pre-order",
|
|
132
|
+
categorySlugs: ["category-sealed-products", "category-starter-structure"],
|
|
392
133
|
images: [
|
|
393
|
-
|
|
394
|
-
"https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
134
|
+
`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.darkMagician}.jpg`,
|
|
395
135
|
],
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
136
|
+
isSold: false,
|
|
137
|
+
availableQuantity: 1,
|
|
138
|
+
customFields: [],
|
|
139
|
+
customSections: [],
|
|
399
140
|
featured: false,
|
|
400
141
|
isPromoted: false,
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
features: [
|
|
411
|
-
"Hi-ν Ver.Ka — Katoki definitive design",
|
|
412
|
-
"6 fin funnels in deployable configuration",
|
|
413
|
-
"Hi-Mega Cannon and Beam Sabre effects",
|
|
414
|
-
"Pre-coloured inner frame runners",
|
|
415
|
-
"Only 25 units — 9 already reserved",
|
|
416
|
-
],
|
|
417
|
-
shippingInfo: "Deposit paid now. Balance collected before shipping. Double-boxed with foam.",
|
|
418
|
-
returnPolicy: "Cancellable before shipment — full deposit refund.",
|
|
419
|
-
allowOffers: false,
|
|
420
|
-
createdAt: daysAgo(7),
|
|
421
|
-
updatedAt: daysAgo(1),
|
|
142
|
+
isOnSale: false,
|
|
143
|
+
preOrderDeliveryDate: new Date(Date.now() + 30 * 24 * 60 * 60 * 1000), // +30 days
|
|
144
|
+
preOrderProductionStatus: "upcoming",
|
|
145
|
+
preOrderDepositPercent: 25,
|
|
146
|
+
preOrderMaxQuantity: 250,
|
|
147
|
+
preOrderCurrentCount: 89,
|
|
148
|
+
preOrderCancellable: true,
|
|
149
|
+
createdAt: new Date(Date.now() - 7 * 24 * 60 * 60 * 1000), // -7 days
|
|
150
|
+
updatedAt: new Date(),
|
|
422
151
|
},
|
|
423
|
-
// ── 5. SOLD OUT — Hot Wheels RLC 2026 Annual Membership ────────────────────
|
|
424
152
|
{
|
|
425
|
-
id: "preorder-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
preOrderCurrentCount: 15,
|
|
438
|
-
preOrderProductionStatus: "in_production",
|
|
439
|
-
preOrderCancellable: false,
|
|
440
|
-
price: 649900,
|
|
441
|
-
currency: SCHEMA_DEFAULTS.CURRENCY,
|
|
442
|
-
stockQuantity: 15,
|
|
443
|
-
availableQuantity: 0,
|
|
444
|
-
mainImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
153
|
+
id: "preorder-master-duel-promo-bundle",
|
|
154
|
+
storeId: "store-kaiba-corp-cards",
|
|
155
|
+
brandSlug: "brand-konami",
|
|
156
|
+
title: "Master Duel Promo Physical Bundle",
|
|
157
|
+
slug: "preorder-master-duel-promo-bundle",
|
|
158
|
+
description: "Exclusive physical bundle of cards obtained from Master Duel game rewards. Ultra-rare promotional cards in premium condition.",
|
|
159
|
+
price: 499900, // ₹4,999
|
|
160
|
+
currency: "INR",
|
|
161
|
+
condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
|
|
162
|
+
status: PRODUCT_FIELDS.STATUS_VALUES.DRAFT,
|
|
163
|
+
listingType: "pre-order",
|
|
164
|
+
categorySlugs: ["category-sealed-products", "category-booster-boxes"],
|
|
445
165
|
images: [
|
|
446
|
-
|
|
447
|
-
"https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
448
|
-
"https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
166
|
+
`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`,
|
|
449
167
|
],
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
168
|
+
isSold: false,
|
|
169
|
+
availableQuantity: 1,
|
|
170
|
+
customFields: [],
|
|
171
|
+
customSections: [],
|
|
453
172
|
featured: false,
|
|
454
|
-
isPromoted:
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
specifications: [
|
|
465
|
-
{ name: "Product", value: "RLC 2026 Annual Membership" },
|
|
466
|
-
{ name: "Status", value: "SOLD OUT — all 15 slots reserved" },
|
|
467
|
-
{ name: "Membership Includes", value: "6–8 RLC exclusive cars, event access" },
|
|
468
|
-
{ name: "Full Price", value: "₹6,499 (paid in full)" },
|
|
469
|
-
{ name: "Availability", value: "Waitlist only — message store" },
|
|
470
|
-
],
|
|
471
|
-
features: [
|
|
472
|
-
"SOLD OUT — 15/15 memberships reserved",
|
|
473
|
-
"Access to all 2026 RLC exclusive cars",
|
|
474
|
-
"Priority access to Hot Wheels Collectors events",
|
|
475
|
-
"Waitlist available — message store for cancellations",
|
|
476
|
-
"2025 memberships were ₹5,999 — price rose 8.3%",
|
|
477
|
-
],
|
|
478
|
-
shippingInfo: "Sold out — no further orders accepted. Existing members will receive shipping details per car.",
|
|
479
|
-
returnPolicy: "Non-cancellable — all slots fully committed. Cancellation transfers handled store-to-buyer direct.",
|
|
480
|
-
allowOffers: false,
|
|
481
|
-
createdAt: daysAgo(60),
|
|
482
|
-
updatedAt: daysAgo(3),
|
|
173
|
+
isPromoted: true,
|
|
174
|
+
isOnSale: false,
|
|
175
|
+
preOrderDeliveryDate: new Date(Date.now() + 120 * 24 * 60 * 60 * 1000), // +120 days
|
|
176
|
+
preOrderProductionStatus: "upcoming",
|
|
177
|
+
preOrderDepositPercent: 25,
|
|
178
|
+
preOrderMaxQuantity: 75,
|
|
179
|
+
preOrderCurrentCount: 34,
|
|
180
|
+
preOrderCancellable: true,
|
|
181
|
+
createdAt: new Date(Date.now() - 35 * 24 * 60 * 60 * 1000), // -35 days
|
|
182
|
+
updatedAt: new Date(),
|
|
483
183
|
},
|
|
484
184
|
];
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
*/
|
|
490
|
-
export const productsPreOrdersSeedData = _rawProductsPreOrdersSeedData.map((p) => ({
|
|
185
|
+
export const productsPreordersSeedData = _rawPreordersSeedData.map((p) => ({
|
|
186
|
+
tags: [],
|
|
187
|
+
stockQuantity: p.availableQuantity ?? 1,
|
|
188
|
+
mainImage: p.images?.[0] ?? "",
|
|
491
189
|
...p,
|
|
492
190
|
listingType: "pre-order",
|
|
191
|
+
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.specifications?.map((s) => `${s.name} ${s.value}`)),
|
|
493
192
|
}));
|