@mohasinac/appkit 2.4.3 → 2.4.5
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/constants/api-endpoints.d.ts +6 -0
- package/dist/constants/api-endpoints.js +2 -0
- package/dist/features/admin/components/AdminSublistingCategoriesView.d.ts +1 -0
- package/dist/features/admin/components/AdminSublistingCategoriesView.js +56 -0
- package/dist/features/admin/components/AdminSublistingCategoryEditorView.d.ts +7 -0
- package/dist/features/admin/components/AdminSublistingCategoryEditorView.js +83 -0
- package/dist/features/admin/components/index.d.ts +3 -0
- package/dist/features/admin/components/index.js +2 -0
- package/dist/features/auctions/components/AuctionDetailPageView.js +9 -1
- package/dist/features/auctions/schemas/index.d.ts +2 -2
- package/dist/features/pre-orders/components/PreOrderDetailPageView.js +9 -1
- package/dist/features/products/components/CustomFieldsEditor.d.ts +8 -0
- package/dist/features/products/components/CustomFieldsEditor.js +33 -0
- package/dist/features/products/components/CustomSectionTabContent.d.ts +4 -0
- package/dist/features/products/components/CustomSectionTabContent.js +13 -0
- package/dist/features/products/components/CustomSectionsEditor.d.ts +6 -0
- package/dist/features/products/components/CustomSectionsEditor.js +27 -0
- package/dist/features/products/components/ProductDetailPageView.js +9 -1
- package/dist/features/products/components/ProductForm.js +4 -2
- package/dist/features/products/components/ProductTabsShell.d.ts +8 -1
- package/dist/features/products/components/ProductTabsShell.js +19 -9
- package/dist/features/products/components/SublistingCarouselSection.d.ts +6 -0
- package/dist/features/products/components/SublistingCarouselSection.js +53 -0
- package/dist/features/products/components/SublistingCategorySelect.d.ts +7 -0
- package/dist/features/products/components/SublistingCategorySelect.js +40 -0
- package/dist/features/products/components/index.d.ts +6 -1
- package/dist/features/products/components/index.js +3 -0
- package/dist/features/products/repository/sublisting-categories.repository.d.ts +16 -0
- package/dist/features/products/repository/sublisting-categories.repository.js +126 -0
- package/dist/features/products/schemas/firestore.d.ts +20 -2
- package/dist/features/products/schemas/firestore.js +8 -0
- package/dist/features/products/schemas/index.d.ts +147 -56
- package/dist/features/products/schemas/index.js +24 -0
- package/dist/features/products/schemas/sublisting-categories.d.ts +45 -0
- package/dist/features/products/schemas/sublisting-categories.js +16 -0
- package/dist/features/products/types/index.d.ts +5 -0
- package/dist/features/search/schemas/index.d.ts +2 -2
- package/dist/index.d.ts +7 -2
- package/dist/index.js +8 -1
- package/dist/next/routing/route-map.d.ts +6 -0
- package/dist/next/routing/route-map.js +3 -0
- package/dist/repositories/index.d.ts +2 -0
- package/dist/repositories/index.js +1 -0
- package/dist/seed/sublisting-categories-seed-data.d.ts +5 -5
- package/dist/seed/sublisting-categories-seed-data.js +81 -237
- package/dist/styles.css +1 -0
- package/dist/tailwind-input.css +4 -0
- package/dist/tailwind-utilities.css +1 -0
- package/package.json +5 -4
|
@@ -1,315 +1,159 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Sublisting Categories Seed Data
|
|
3
|
-
*
|
|
4
|
-
* id === slug
|
|
2
|
+
* Sublisting Categories Seed Data
|
|
3
|
+
* 12 curated sub-listing buckets across all LetItRip collectible verticals.
|
|
4
|
+
* id === slug, prefix: sublisting-
|
|
5
5
|
*/
|
|
6
|
-
const NOW = new Date();
|
|
6
|
+
const NOW = new Date("2026-05-10T00:00:00.000Z");
|
|
7
7
|
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
8
|
+
const ADMIN_ID = "user-admin-letitrip";
|
|
8
9
|
export const sublistingCategoriesSeedData = [
|
|
9
10
|
// ── Trading Cards / Pokémon ──────────────────────────────────────────────
|
|
10
11
|
{
|
|
11
12
|
id: "sublisting-pokemon-base-set",
|
|
12
13
|
slug: "sublisting-pokemon-base-set",
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
description: "Complete set of all 102 Base Set cards including Shadowless, 1st Edition, and Unlimited variants. The original 1999 Wizards of the Coast set that started the Pokémon TCG.",
|
|
14
|
+
name: "Base Set (102/102)",
|
|
15
|
+
itemCode: "BS-102",
|
|
16
|
+
description: "All 102 Base Set Pokémon TCG cards — Shadowless, 1st Edition, and Unlimited. The original 1999 Wizards of the Coast set that launched the entire hobby.",
|
|
17
17
|
coverImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=600&fit=crop",
|
|
18
|
-
sortOrder: 1,
|
|
19
|
-
isActive: true,
|
|
20
|
-
isFeatured: true,
|
|
21
18
|
productCount: 0,
|
|
22
|
-
seoTitle: "Pokémon Base Set Cards — Buy Base Set Singles, Holos & Shadowless",
|
|
23
|
-
seoDescription: "Shop original 1999 Pokémon Base Set cards. Charizard, Blastoise, Venusaur, and all 102 cards. Shadowless, 1st Edition, and Unlimited variants available.",
|
|
24
19
|
createdAt: daysAgo(60),
|
|
25
20
|
updatedAt: daysAgo(1),
|
|
21
|
+
createdBy: ADMIN_ID,
|
|
26
22
|
},
|
|
27
23
|
{
|
|
28
24
|
id: "sublisting-pokemon-psa-graded",
|
|
29
25
|
slug: "sublisting-pokemon-psa-graded",
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
description: "PSA-authenticated and graded Pokémon cards. Grades PSA 7 through PSA 10 Gem Mint. Investment-grade collectibles with guaranteed authenticity.",
|
|
26
|
+
name: "PSA Graded Pokémon Cards",
|
|
27
|
+
itemCode: "PSA",
|
|
28
|
+
description: "Investment-grade Pokémon cards authenticated and slabbed by PSA. Grades 7 through 10 Gem Mint. Authenticity guaranteed.",
|
|
34
29
|
coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=600&fit=crop",
|
|
35
|
-
sortOrder: 2,
|
|
36
|
-
isActive: true,
|
|
37
|
-
isFeatured: true,
|
|
38
30
|
productCount: 0,
|
|
39
|
-
seoTitle: "PSA Graded Pokémon Cards India — Buy PSA 9, PSA 10 Slabs",
|
|
40
|
-
seoDescription: "Verified PSA-graded Pokémon cards. Base Set holos, ex cards, V-max, and modern rare cards in PSA slabs. Secure packaging, authentic certificates.",
|
|
41
31
|
createdAt: daysAgo(55),
|
|
42
32
|
updatedAt: daysAgo(2),
|
|
33
|
+
createdBy: ADMIN_ID,
|
|
43
34
|
},
|
|
44
35
|
{
|
|
45
|
-
id: "sublisting-pokemon-sealed-
|
|
46
|
-
slug: "sublisting-pokemon-sealed-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
rootCategorySlug: "category-trading-cards",
|
|
50
|
-
description: "Factory-sealed Pokémon TCG booster boxes. Current sets, vintage boxes, and Japanese exclusives. All boxes inspected for intact shrinkwrap before listing.",
|
|
36
|
+
id: "sublisting-pokemon-sealed-boxes",
|
|
37
|
+
slug: "sublisting-pokemon-sealed-boxes",
|
|
38
|
+
name: "Sealed Pokémon Booster Boxes",
|
|
39
|
+
description: "Factory-sealed Pokémon TCG booster boxes. Current sets, vintage boxes, and Japanese exclusives. All shrinkwrap-intact.",
|
|
51
40
|
coverImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=600&fit=crop",
|
|
52
|
-
sortOrder: 3,
|
|
53
|
-
isActive: true,
|
|
54
|
-
isFeatured: true,
|
|
55
41
|
productCount: 0,
|
|
56
42
|
createdAt: daysAgo(50),
|
|
57
43
|
updatedAt: daysAgo(3),
|
|
44
|
+
createdBy: ADMIN_ID,
|
|
58
45
|
},
|
|
59
|
-
// ──
|
|
46
|
+
// ── Diecast Vehicles / Hot Wheels ────────────────────────────────────────
|
|
60
47
|
{
|
|
61
|
-
id: "sublisting-
|
|
62
|
-
slug: "sublisting-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
description: "The original Yu-Gi-Oh! LOB set 1st Edition singles. Blue-Eyes White Dragon, Dark Magician, Exodia pieces, and other iconic WOTC-era cards.",
|
|
67
|
-
coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=600&fit=crop",
|
|
68
|
-
sortOrder: 1,
|
|
69
|
-
isActive: true,
|
|
70
|
-
isFeatured: false,
|
|
71
|
-
productCount: 0,
|
|
72
|
-
createdAt: daysAgo(45),
|
|
73
|
-
updatedAt: daysAgo(5),
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
id: "sublisting-yugioh-tournament-singles",
|
|
77
|
-
slug: "sublisting-yugioh-tournament-singles",
|
|
78
|
-
title: "Tournament-Ready Singles",
|
|
79
|
-
parentCategorySlug: "category-yugioh-cards",
|
|
80
|
-
rootCategorySlug: "category-trading-cards",
|
|
81
|
-
description: "TCG-legal singles for competitive play. Current format staples, hand traps, board breakers, and meta-relevant cards verified against latest banlist.",
|
|
82
|
-
coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=600&fit=crop",
|
|
83
|
-
sortOrder: 2,
|
|
84
|
-
isActive: true,
|
|
85
|
-
isFeatured: false,
|
|
86
|
-
productCount: 0,
|
|
87
|
-
createdAt: daysAgo(40),
|
|
88
|
-
updatedAt: daysAgo(4),
|
|
89
|
-
},
|
|
90
|
-
// ── Diecast Vehicles ─────────────────────────────────────────────────────
|
|
91
|
-
{
|
|
92
|
-
id: "sublisting-hotwheels-vintage-redlines",
|
|
93
|
-
slug: "sublisting-hotwheels-vintage-redlines",
|
|
94
|
-
title: "Vintage Redlines (1968–1977)",
|
|
95
|
-
parentCategorySlug: "category-hot-wheels-cars",
|
|
96
|
-
rootCategorySlug: "category-diecast-vehicles",
|
|
97
|
-
description: "Original Hot Wheels Redline era cars from the first decade of production. US cards, Hong Kong manufacturing, and rare color variants. Collector's paradise.",
|
|
48
|
+
id: "sublisting-hotwheels-redlines",
|
|
49
|
+
slug: "sublisting-hotwheels-redlines",
|
|
50
|
+
name: "Hot Wheels Vintage Redlines (1968–1977)",
|
|
51
|
+
itemCode: "Redline",
|
|
52
|
+
description: "Original Hot Wheels Redline-era cars from the first decade of production. US cards, Hong Kong manufacturing, rare colour variants.",
|
|
98
53
|
coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
|
|
99
|
-
sortOrder: 1,
|
|
100
|
-
isActive: true,
|
|
101
|
-
isFeatured: true,
|
|
102
54
|
productCount: 0,
|
|
103
|
-
seoTitle: "Hot Wheels Vintage Redlines India — 1968-1977 Original Cars",
|
|
104
|
-
seoDescription: "Buy original Hot Wheels Redline cars from 1968-1977. US card, Hong Kong cars, rare color variants. Authenticated vintage diecast collectibles.",
|
|
105
55
|
createdAt: daysAgo(38),
|
|
106
56
|
updatedAt: daysAgo(1),
|
|
57
|
+
createdBy: ADMIN_ID,
|
|
107
58
|
},
|
|
108
59
|
{
|
|
109
60
|
id: "sublisting-hotwheels-super-treasure-hunts",
|
|
110
61
|
slug: "sublisting-hotwheels-super-treasure-hunts",
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
description: "Hot Wheels Super Treasure Hunt cars — the rarest regular production releases. Real Riders rubber tyres, spectraflame paint, Treasure Hunt logo. One per case.",
|
|
62
|
+
name: "Hot Wheels Super Treasure Hunts",
|
|
63
|
+
itemCode: "STH",
|
|
64
|
+
description: "The rarest regular production Hot Wheels releases — Real Riders tyres, spectraflame paint, Treasure Hunt logo. One per case.",
|
|
115
65
|
coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
|
|
116
|
-
sortOrder: 2,
|
|
117
|
-
isActive: true,
|
|
118
|
-
isFeatured: true,
|
|
119
66
|
productCount: 0,
|
|
120
67
|
createdAt: daysAgo(35),
|
|
121
68
|
updatedAt: daysAgo(2),
|
|
122
|
-
|
|
123
|
-
{
|
|
124
|
-
id: "sublisting-hotwheels-car-culture",
|
|
125
|
-
slug: "sublisting-hotwheels-car-culture",
|
|
126
|
-
title: "Car Culture Series",
|
|
127
|
-
parentCategorySlug: "category-hot-wheels-cars",
|
|
128
|
-
rootCategorySlug: "category-diecast-vehicles",
|
|
129
|
-
description: "Hot Wheels Car Culture premium 1:64 diecast cars. Real Riders, premium paint, highly detailed castings. Series: Japan Historics, Germany, Boulevard, Team Transport, and more.",
|
|
130
|
-
coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
|
|
131
|
-
sortOrder: 3,
|
|
132
|
-
isActive: true,
|
|
133
|
-
isFeatured: false,
|
|
134
|
-
productCount: 0,
|
|
135
|
-
createdAt: daysAgo(32),
|
|
136
|
-
updatedAt: daysAgo(3),
|
|
137
|
-
},
|
|
138
|
-
{
|
|
139
|
-
id: "sublisting-tomica-limited-vintage",
|
|
140
|
-
slug: "sublisting-tomica-limited-vintage",
|
|
141
|
-
title: "Tomica Limited Vintage",
|
|
142
|
-
parentCategorySlug: "category-tomica-cars",
|
|
143
|
-
rootCategorySlug: "category-diecast-vehicles",
|
|
144
|
-
description: "Tomica Limited Vintage (TLV) 1:64 scale Japanese cars. Highly accurate models of classic Japanese vehicles from the 1950s–1980s. Display stands included.",
|
|
145
|
-
coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
|
|
146
|
-
sortOrder: 1,
|
|
147
|
-
isActive: true,
|
|
148
|
-
isFeatured: false,
|
|
149
|
-
productCount: 0,
|
|
150
|
-
createdAt: daysAgo(30),
|
|
151
|
-
updatedAt: daysAgo(5),
|
|
152
|
-
},
|
|
153
|
-
// ── Action Figures / Anime ───────────────────────────────────────────────
|
|
154
|
-
{
|
|
155
|
-
id: "sublisting-nendoroid-001-100",
|
|
156
|
-
slug: "sublisting-nendoroid-001-100",
|
|
157
|
-
title: "Nendoroid #001–#100",
|
|
158
|
-
parentCategorySlug: "category-anime-figures",
|
|
159
|
-
rootCategorySlug: "category-action-figures",
|
|
160
|
-
description: "Early Nendoroid series numbers 001 through 100 — the foundational GSC figures. Many are discontinued and highly sought after. Includes Saber, Haruhi, Yotsuba, and Miku.",
|
|
161
|
-
coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
|
|
162
|
-
sortOrder: 1,
|
|
163
|
-
isActive: true,
|
|
164
|
-
isFeatured: true,
|
|
165
|
-
productCount: 0,
|
|
166
|
-
seoTitle: "Nendoroid #001-#100 — Buy Rare Early Series Good Smile Figures",
|
|
167
|
-
seoDescription: "Shop discontinued early Nendoroid figures numbered 001-100. Original Good Smile Company releases. Rare collector finds with original boxes.",
|
|
168
|
-
createdAt: daysAgo(28),
|
|
169
|
-
updatedAt: daysAgo(2),
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
id: "sublisting-shf-dragonball",
|
|
173
|
-
slug: "sublisting-shf-dragonball",
|
|
174
|
-
title: "S.H.Figuarts Dragon Ball",
|
|
175
|
-
parentCategorySlug: "category-anime-figures",
|
|
176
|
-
rootCategorySlug: "category-action-figures",
|
|
177
|
-
description: "Bandai S.H.Figuarts Dragon Ball Z and Super figures. Goku, Vegeta, Gohan, Piccolo, Frieza, and more. Ultra articulation, premium accessories, Kame House stand compatible.",
|
|
178
|
-
coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
|
|
179
|
-
sortOrder: 2,
|
|
180
|
-
isActive: true,
|
|
181
|
-
isFeatured: true,
|
|
182
|
-
productCount: 0,
|
|
183
|
-
createdAt: daysAgo(25),
|
|
184
|
-
updatedAt: daysAgo(1),
|
|
185
|
-
},
|
|
186
|
-
{
|
|
187
|
-
id: "sublisting-funko-pop-anime",
|
|
188
|
-
slug: "sublisting-funko-pop-anime",
|
|
189
|
-
title: "Funko Pop! Anime",
|
|
190
|
-
parentCategorySlug: "category-vinyl-figures",
|
|
191
|
-
rootCategorySlug: "category-action-figures",
|
|
192
|
-
description: "Official Funko Pop! vinyl figures from anime franchises: Naruto, Dragon Ball Z, One Piece, Attack on Titan, My Hero Academia, Demon Slayer, and Jujutsu Kaisen.",
|
|
193
|
-
coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
|
|
194
|
-
sortOrder: 1,
|
|
195
|
-
isActive: true,
|
|
196
|
-
isFeatured: false,
|
|
197
|
-
productCount: 0,
|
|
198
|
-
createdAt: daysAgo(22),
|
|
199
|
-
updatedAt: daysAgo(3),
|
|
69
|
+
createdBy: ADMIN_ID,
|
|
200
70
|
},
|
|
201
71
|
// ── Spinning Tops / Beyblade ─────────────────────────────────────────────
|
|
202
72
|
{
|
|
203
73
|
id: "sublisting-beyblade-x-series",
|
|
204
74
|
slug: "sublisting-beyblade-x-series",
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
description: "All Beyblade X (2023+) products. The latest generation with xtreme dash ratchet system. BX-01 through current releases. Takara Tomy Japan import only.",
|
|
75
|
+
name: "Beyblade X Series (2023+)",
|
|
76
|
+
itemCode: "BX",
|
|
77
|
+
description: "All Beyblade X generation products — the new xtreme dash ratchet system. BX-01 onward. Official Takara Tomy Japan import.",
|
|
209
78
|
coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=600&fit=crop",
|
|
210
|
-
sortOrder: 1,
|
|
211
|
-
isActive: true,
|
|
212
|
-
isFeatured: true,
|
|
213
79
|
productCount: 0,
|
|
214
|
-
seoTitle: "Beyblade X Series India — BX-01 and Beyond, Takara Tomy Import",
|
|
215
|
-
seoDescription: "Buy Beyblade X generation tops from Japan. BX-01 Dran Sword, BX-02 Hells Scythe, XStadiums, launchers. Official Takara Tomy import.",
|
|
216
80
|
createdAt: daysAgo(20),
|
|
217
81
|
updatedAt: daysAgo(1),
|
|
218
|
-
|
|
219
|
-
{
|
|
220
|
-
id: "sublisting-beyblade-burst-gt",
|
|
221
|
-
slug: "sublisting-beyblade-burst-gt",
|
|
222
|
-
title: "Beyblade Burst GT / Sparking",
|
|
223
|
-
parentCategorySlug: "category-beyblade-tops",
|
|
224
|
-
rootCategorySlug: "category-spinning-tops",
|
|
225
|
-
description: "Beyblade Burst GT (Sparking) generation. The final gen of the Burst era with DBZ crossover tops. Achilles, Longinus, Ragnaruk, and God chip variants.",
|
|
226
|
-
coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=600&fit=crop",
|
|
227
|
-
sortOrder: 2,
|
|
228
|
-
isActive: true,
|
|
229
|
-
isFeatured: false,
|
|
230
|
-
productCount: 0,
|
|
231
|
-
createdAt: daysAgo(18),
|
|
232
|
-
updatedAt: daysAgo(4),
|
|
82
|
+
createdBy: ADMIN_ID,
|
|
233
83
|
},
|
|
234
84
|
// ── Model Kits / Gundam ──────────────────────────────────────────────────
|
|
235
85
|
{
|
|
236
86
|
id: "sublisting-gundam-master-grade",
|
|
237
87
|
slug: "sublisting-gundam-master-grade",
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
description: "Bandai Gundam Master Grade kits. 1/100 scale with full inner frame and panel-line detail. For intermediate to advanced builders. Wide selection from UC to SEED to 00 to IBO.",
|
|
88
|
+
name: "Gundam Master Grade (MG) 1/100",
|
|
89
|
+
itemCode: "MG",
|
|
90
|
+
description: "Bandai Gundam MG 1/100 kits with full inner frame. Intermediate to advanced builders. UC, SEED, 00, IBO ranges.",
|
|
242
91
|
coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
|
|
243
|
-
sortOrder: 1,
|
|
244
|
-
isActive: true,
|
|
245
|
-
isFeatured: true,
|
|
246
92
|
productCount: 0,
|
|
247
|
-
seoTitle: "Gundam MG 1/100 Model Kits India — Buy Master Grade Gunpla",
|
|
248
|
-
seoDescription: "Shop Gundam Master Grade 1/100 scale kits. RX-78, Unicorn, Wing Zero, Exia, Strike. Official Bandai Spirits Japan release. Beginner to advanced.",
|
|
249
93
|
createdAt: daysAgo(15),
|
|
250
94
|
updatedAt: daysAgo(2),
|
|
251
|
-
|
|
252
|
-
{
|
|
253
|
-
id: "sublisting-gundam-real-grade",
|
|
254
|
-
slug: "sublisting-gundam-real-grade",
|
|
255
|
-
title: "Gundam Real Grade (RG) 1/144",
|
|
256
|
-
parentCategorySlug: "category-gundam-kits",
|
|
257
|
-
rootCategorySlug: "category-model-kits",
|
|
258
|
-
description: "Bandai Gundam Real Grade kits. 1/144 scale with Advanced MS Joint system — incredible detail in a smaller form. Great for collectors with limited display space.",
|
|
259
|
-
coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
|
|
260
|
-
sortOrder: 2,
|
|
261
|
-
isActive: true,
|
|
262
|
-
isFeatured: false,
|
|
263
|
-
productCount: 0,
|
|
264
|
-
createdAt: daysAgo(12),
|
|
265
|
-
updatedAt: daysAgo(3),
|
|
95
|
+
createdBy: ADMIN_ID,
|
|
266
96
|
},
|
|
267
97
|
{
|
|
268
98
|
id: "sublisting-gundam-high-grade",
|
|
269
99
|
slug: "sublisting-gundam-high-grade",
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
description: "Bandai Gundam High Grade kits. 1/144 scale entry-level kits — perfect for beginners or collectors who want to build quickly. Wide selection, lowest price point in the Gunpla lineup.",
|
|
100
|
+
name: "Gundam High Grade (HG) 1/144",
|
|
101
|
+
itemCode: "HG",
|
|
102
|
+
description: "Entry-level Bandai Gundam HG 1/144 kits. Best for beginners or builders who want quick builds. Huge selection across all series.",
|
|
274
103
|
coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
|
|
275
|
-
sortOrder: 3,
|
|
276
|
-
isActive: true,
|
|
277
|
-
isFeatured: false,
|
|
278
104
|
productCount: 0,
|
|
279
105
|
createdAt: daysAgo(10),
|
|
280
106
|
updatedAt: daysAgo(4),
|
|
107
|
+
createdBy: ADMIN_ID,
|
|
108
|
+
},
|
|
109
|
+
// ── Action Figures / Anime ───────────────────────────────────────────────
|
|
110
|
+
{
|
|
111
|
+
id: "sublisting-nendoroid-early-series",
|
|
112
|
+
slug: "sublisting-nendoroid-early-series",
|
|
113
|
+
name: "Nendoroid Early Series (#001–#100)",
|
|
114
|
+
itemCode: "GSC-001-100",
|
|
115
|
+
description: "Discontinued Good Smile Company Nendoroid figures #001–#100. Many are rare, OOP, and command a premium on the secondary market.",
|
|
116
|
+
coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
|
|
117
|
+
productCount: 0,
|
|
118
|
+
createdAt: daysAgo(28),
|
|
119
|
+
updatedAt: daysAgo(2),
|
|
120
|
+
createdBy: ADMIN_ID,
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
id: "sublisting-shf-dragonball",
|
|
124
|
+
slug: "sublisting-shf-dragonball",
|
|
125
|
+
name: "S.H.Figuarts Dragon Ball Series",
|
|
126
|
+
itemCode: "SHF-DBZ",
|
|
127
|
+
description: "Bandai S.H.Figuarts Dragon Ball Z and Super articulated figures. Goku, Vegeta, Gohan, Piccolo, Frieza — ultra-articulated with premium accessories.",
|
|
128
|
+
coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
|
|
129
|
+
productCount: 0,
|
|
130
|
+
createdAt: daysAgo(25),
|
|
131
|
+
updatedAt: daysAgo(1),
|
|
132
|
+
createdBy: ADMIN_ID,
|
|
281
133
|
},
|
|
282
134
|
// ── Vintage & Rare ───────────────────────────────────────────────────────
|
|
283
135
|
{
|
|
284
|
-
id: "sublisting-vintage-
|
|
285
|
-
slug: "sublisting-vintage-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
description: "Pokémon TCG from the Wizards of the Coast era: Base Set, Jungle, Fossil, Base Set 2, Team Rocket, Gym Heroes, Gym Challenge, Neo Genesis, Neo Discovery, Neo Revelation, Neo Destiny, Legendary Collection.",
|
|
136
|
+
id: "sublisting-vintage-wotc-era",
|
|
137
|
+
slug: "sublisting-vintage-wotc-era",
|
|
138
|
+
name: "WOTC Era Pokémon (1999–2003)",
|
|
139
|
+
itemCode: "WOTC",
|
|
140
|
+
description: "All Wizards of the Coast era Pokémon TCG sets: Base Set through Legendary Collection. Raw and graded copies accepted.",
|
|
290
141
|
coverImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=600&fit=crop",
|
|
291
|
-
sortOrder: 1,
|
|
292
|
-
isActive: true,
|
|
293
|
-
isFeatured: true,
|
|
294
142
|
productCount: 0,
|
|
295
|
-
seoTitle: "WOTC Era Pokémon Cards India — Buy Vintage 1999-2003 TCG",
|
|
296
|
-
seoDescription: "Shop vintage Wizards of the Coast era Pokémon cards from 1999-2003. Base Set, Jungle, Fossil, Neo series. Graded and raw copies available.",
|
|
297
143
|
createdAt: daysAgo(8),
|
|
298
144
|
updatedAt: daysAgo(1),
|
|
145
|
+
createdBy: ADMIN_ID,
|
|
299
146
|
},
|
|
300
147
|
{
|
|
301
|
-
id: "sublisting-
|
|
302
|
-
slug: "sublisting-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
|
|
308
|
-
sortOrder: 2,
|
|
309
|
-
isActive: true,
|
|
310
|
-
isFeatured: false,
|
|
148
|
+
id: "sublisting-yugioh-lob-1st-edition",
|
|
149
|
+
slug: "sublisting-yugioh-lob-1st-edition",
|
|
150
|
+
name: "Yu-Gi-Oh! LOB 1st Edition",
|
|
151
|
+
itemCode: "LOB-1E",
|
|
152
|
+
description: "Legend of Blue-Eyes White Dragon 1st Edition singles. Blue-Eyes, Dark Magician, Exodia pieces — iconic WOTC-era Yu-Gi-Oh! from 2002.",
|
|
153
|
+
coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=600&fit=crop",
|
|
311
154
|
productCount: 0,
|
|
312
|
-
createdAt: daysAgo(
|
|
313
|
-
updatedAt: daysAgo(
|
|
155
|
+
createdAt: daysAgo(45),
|
|
156
|
+
updatedAt: daysAgo(5),
|
|
157
|
+
createdBy: ADMIN_ID,
|
|
314
158
|
},
|
|
315
159
|
];
|
package/dist/styles.css
CHANGED