@mohasinac/appkit 3.5.2 → 3.5.4
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/features/homepage/components/CustomCardsSection.js +1 -1
- package/dist/features/homepage/components/SectionCarousel.js +1 -1
- package/dist/features/seller/components/CategoryInlineSelect.d.ts +1 -1
- package/dist/features/seller/components/CategoryInlineSelect.js +1 -1
- package/dist/react/hooks/useBulkSelection.js +12 -3
- package/dist/react/hooks/useGesture.js +48 -4
- package/dist/react/hooks/useLongPress.d.ts +1 -0
- package/dist/react/hooks/useLongPress.js +5 -0
- package/dist/react/hooks/usePullToRefresh.js +12 -1
- package/dist/react/hooks/useRealtimeEvent.js +18 -1
- package/dist/react/hooks/useSwipe.js +14 -0
- package/dist/seed/addresses-seed-data.js +8 -99
- package/dist/seed/categories-seed-data.js +103 -2082
- package/dist/seed/homepage-sections-seed-data.js +9 -9
- package/dist/seed/products-art-seed-data.d.ts +1 -10
- package/dist/seed/products-art-seed-data.js +13 -122
- package/dist/seed/products-auctions-seed-data.js +39 -747
- package/dist/seed/products-classifieds-seed-data.d.ts +1 -9
- package/dist/seed/products-classifieds-seed-data.js +13 -195
- package/dist/seed/products-digital-codes-seed-data.d.ts +1 -9
- package/dist/seed/products-digital-codes-seed-data.js +13 -202
- package/dist/seed/products-live-items-seed-data.d.ts +1 -12
- package/dist/seed/products-live-items-seed-data.js +13 -188
- package/dist/seed/products-preorders-seed-data.js +18 -149
- package/dist/seed/products-prize-draws-seed-data.d.ts +1 -16
- package/dist/seed/products-prize-draws-seed-data.js +13 -385
- package/dist/seed/products-standard-seed-data.js +152 -1331
- package/dist/seed/products-stickers-seed-data.d.ts +1 -10
- package/dist/seed/products-stickers-seed-data.js +13 -122
- package/dist/seed/site-settings-seed-data.js +106 -108
- package/dist/seed/store-addresses-seed-data.js +14 -46
- package/dist/seed/stores-seed-data.js +13 -205
- package/dist/styles.css +19 -18
- package/dist/tailwind-utilities.css +1 -1
- package/dist/ui/components/BaseListingCard.d.ts +2 -1
- package/dist/ui/components/BaseListingCard.js +4 -5
- package/dist/ui/components/BulkActionBar.style.css +4 -4
- package/dist/ui/components/Button.js +52 -22
- package/dist/ui/components/Button.style.css +14 -13
- package/dist/ui/components/DateInput.js +1 -0
- package/dist/ui/components/DynamicBgDiv.js +8 -6
- package/dist/ui/components/FormField.js +1 -1
- package/dist/ui/components/HorizontalScroller.js +35 -16
- package/dist/ui/components/Iframe.d.ts +8 -1
- package/dist/ui/components/Layout.d.ts +4 -4
- package/dist/ui/components/Layout.js +8 -8
- package/dist/ui/components/ListingToolbar.js +4 -4
- package/dist/ui/components/Motion.js +4 -1
- package/dist/ui/components/OtpInput.js +1 -1
- package/dist/ui/components/PaginatedSelect.js +29 -3
- package/dist/ui/components/Pagination.js +10 -5
- package/dist/ui/components/RichTextEditor.js +64 -3
- package/dist/ui/components/Select.js +1 -0
- package/dist/ui/components/Semantic.d.ts +10 -10
- package/dist/ui/components/Semantic.js +25 -25
- package/dist/ui/components/SideDrawer.js +13 -11
- package/dist/ui/components/SideModal.js +9 -7
- package/dist/ui/components/SlottedListingView.d.ts +13 -2
- package/dist/ui/components/StickyToolbar.js +9 -5
- package/dist/ui/components/TagInput.js +15 -2
- package/dist/ui/components/Textarea.js +1 -0
- package/dist/ui/components/Toggle.js +8 -1
- package/dist/ui/components/UnsavedChangesModal.js +12 -1
- package/dist/ui/forms/ColorPickerField.js +7 -0
- package/dist/ui/forms/FieldCheckbox.js +1 -1
- package/dist/utils/id-generators.d.ts +7 -4
- package/dist/utils/id-generators.js +53 -31
- package/dist/utils/number.formatter.js +19 -6
- package/dist/utils/string.formatter.js +4 -1
- package/package.json +1 -1
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* WHY: Provides
|
|
3
|
-
*
|
|
4
|
-
*
|
|
2
|
+
* WHY: Provides a minimal, Beyblade-focused category hierarchy plus brand entries for the
|
|
3
|
+
* demo seed. The site itself stays generically branded as a collectibles marketplace —
|
|
4
|
+
* only the seeded catalog data is narrowed to Beyblade so the demo has a coherent,
|
|
5
|
+
* small dataset instead of a sprawling multi-franchise catalog.
|
|
6
|
+
* WHAT: Exports categoriesSeedData — 1 root category (Spinning Tops) + 4 generation leaves
|
|
7
|
+
* (Original, Metal Fight, Burst, X) + 2 brands (categoryType:"brand").
|
|
5
8
|
* Products tag BOTH a leaf category AND its root so array-contains queries work at
|
|
6
9
|
* both levels simultaneously.
|
|
7
10
|
*
|
|
@@ -29,2189 +32,207 @@ const emptyMetrics = {
|
|
|
29
32
|
totalItemCount: 0,
|
|
30
33
|
lastUpdated: daysAgo(1),
|
|
31
34
|
};
|
|
32
|
-
function seedMetrics(productCount, auctionCount = 0) {
|
|
33
|
-
return {
|
|
34
|
-
...emptyMetrics,
|
|
35
|
-
productCount,
|
|
36
|
-
auctionCount,
|
|
37
|
-
totalProductCount: productCount,
|
|
38
|
-
totalAuctionCount: auctionCount,
|
|
39
|
-
totalItemCount: productCount + auctionCount,
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
35
|
// ──────────────────────────────────────────────────────────────────────────────
|
|
43
|
-
// Categories:
|
|
36
|
+
// Categories: 1 root (Spinning Tops) + 4 Beyblade generations
|
|
44
37
|
// ──────────────────────────────────────────────────────────────────────────────
|
|
45
38
|
const rawCategories = [
|
|
46
|
-
// ── ROOT
|
|
39
|
+
// ── ROOT: Spinning Tops ─────────────────────────────────────────────────────
|
|
47
40
|
{
|
|
48
|
-
id: "category-
|
|
49
|
-
slug: "category-
|
|
50
|
-
name: "
|
|
51
|
-
description: "
|
|
52
|
-
rootId: "category-
|
|
41
|
+
id: "category-spinning-tops",
|
|
42
|
+
slug: "category-spinning-tops",
|
|
43
|
+
name: "Spinning Tops",
|
|
44
|
+
description: "Collectible spinning tops and battle systems — Beyblade Original, Metal Fight, Burst, X, and accessories.",
|
|
45
|
+
rootId: "category-spinning-tops",
|
|
53
46
|
parentIds: [],
|
|
54
|
-
childrenIds: [
|
|
55
|
-
"category-monster-cards",
|
|
56
|
-
"category-spell-cards",
|
|
57
|
-
"category-trap-cards",
|
|
58
|
-
"category-extra-deck-cards",
|
|
59
|
-
],
|
|
47
|
+
childrenIds: ["category-beyblade-original", "category-beyblade-metal", "category-beyblade-burst", "category-beyblade-x"],
|
|
60
48
|
tier: 0,
|
|
61
|
-
path: "
|
|
49
|
+
path: "spinning-tops",
|
|
62
50
|
order: 1,
|
|
63
51
|
isLeaf: false,
|
|
64
52
|
position: 0,
|
|
65
53
|
subtreeSize: 4,
|
|
66
|
-
metrics:
|
|
54
|
+
metrics: emptyMetrics,
|
|
67
55
|
isFeatured: true,
|
|
68
56
|
featuredPriority: 1,
|
|
69
57
|
isBrand: false,
|
|
70
|
-
seo: {
|
|
71
|
-
|
|
72
|
-
description: "Buy and sell individual Yu-Gi-Oh! cards — monsters, spells, traps, and extra deck cards. 1st Edition, unlimited, and graded slabs.",
|
|
73
|
-
keywords: ["yugioh singles", "ygo cards", "duel monsters", "trading cards india"],
|
|
74
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg"),
|
|
75
|
-
},
|
|
76
|
-
display: {
|
|
77
|
-
icon: "🃏",
|
|
78
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg"),
|
|
79
|
-
color: "#7c3aed",
|
|
80
|
-
showInMenu: true,
|
|
81
|
-
showInFooter: true,
|
|
82
|
-
},
|
|
58
|
+
seo: { title: "Spinning Tops | LetItRip", description: "Buy Beyblade and spinning tops — Original, Metal Fight, Burst, X, and accessories.", keywords: ["beyblade", "spinning tops", "beyblade x", "beyblade burst"] },
|
|
59
|
+
display: { icon: "🌀", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-spinning-tops-20260101/1200/600"), color: "#0891b2", showInMenu: true, showInFooter: true },
|
|
83
60
|
isActive: true,
|
|
84
61
|
isSearchable: true,
|
|
85
62
|
showOnHomepage: true,
|
|
86
63
|
createdBy: "user-admin-letitrip",
|
|
87
|
-
createdAt: daysAgo(
|
|
64
|
+
createdAt: daysAgo(300),
|
|
88
65
|
updatedAt: daysAgo(1),
|
|
89
66
|
},
|
|
90
67
|
{
|
|
91
|
-
id: "category-
|
|
92
|
-
slug: "category-
|
|
93
|
-
name: "
|
|
94
|
-
description: "
|
|
95
|
-
rootId: "category-
|
|
96
|
-
parentIds: ["category-
|
|
68
|
+
id: "category-beyblade-original",
|
|
69
|
+
slug: "category-beyblade-original",
|
|
70
|
+
name: "Beyblade Original",
|
|
71
|
+
description: "The original Beyblade series (1999–2003) by Takara — Plastic Generation tops, Ultimate Beyblade, and the launchers that started the franchise.",
|
|
72
|
+
rootId: "category-spinning-tops",
|
|
73
|
+
parentIds: ["category-spinning-tops"],
|
|
97
74
|
childrenIds: [],
|
|
98
75
|
tier: 1,
|
|
99
|
-
path: "
|
|
76
|
+
path: "spinning-tops/beyblade-original",
|
|
100
77
|
order: 1,
|
|
101
78
|
isLeaf: true,
|
|
102
79
|
position: 0,
|
|
103
80
|
subtreeSize: 0,
|
|
104
|
-
metrics:
|
|
81
|
+
metrics: emptyMetrics,
|
|
105
82
|
isFeatured: false,
|
|
106
83
|
isBrand: false,
|
|
107
|
-
seo: {
|
|
108
|
-
|
|
109
|
-
description: "Shop Yu-Gi-Oh! monster cards — Dark Magician, Blue-Eyes White Dragon, Jinzo, Gate Guardian, and more.",
|
|
110
|
-
keywords: ["monster cards", "dark magician", "blue-eyes white dragon", "yugioh monsters"],
|
|
111
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg"),
|
|
112
|
-
},
|
|
113
|
-
display: {
|
|
114
|
-
icon: "⚔️",
|
|
115
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg"),
|
|
116
|
-
color: "#dc2626",
|
|
117
|
-
showInMenu: true,
|
|
118
|
-
showInFooter: false,
|
|
119
|
-
},
|
|
84
|
+
seo: { title: "Beyblade Original | LetItRip", description: "Buy original-series Beyblade tops and launchers — Plastic Generation, 1999-2003.", keywords: ["beyblade original", "plastic generation", "vintage beyblade", "beyblade 1999"] },
|
|
85
|
+
display: { icon: "🪀", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-beyblade-original-20260101/1200/600"), color: "#b45309", showInMenu: true, showInFooter: false },
|
|
120
86
|
isActive: true,
|
|
121
87
|
isSearchable: true,
|
|
122
88
|
showOnHomepage: false,
|
|
123
89
|
createdBy: "user-admin-letitrip",
|
|
124
|
-
createdAt: daysAgo(
|
|
90
|
+
createdAt: daysAgo(300),
|
|
125
91
|
updatedAt: daysAgo(1),
|
|
126
92
|
},
|
|
127
93
|
{
|
|
128
|
-
id: "category-
|
|
129
|
-
slug: "category-
|
|
130
|
-
name: "
|
|
131
|
-
description: "
|
|
132
|
-
rootId: "category-
|
|
133
|
-
parentIds: ["category-
|
|
94
|
+
id: "category-beyblade-metal",
|
|
95
|
+
slug: "category-beyblade-metal",
|
|
96
|
+
name: "Beyblade Metal Fight",
|
|
97
|
+
description: "Classic Beyblade Metal Fight series — Metal Fusion, Metal Masters, Metal Fury, and Zero-G. Highly collectible vintage tops.",
|
|
98
|
+
rootId: "category-spinning-tops",
|
|
99
|
+
parentIds: ["category-spinning-tops"],
|
|
134
100
|
childrenIds: [],
|
|
135
101
|
tier: 1,
|
|
136
|
-
path: "
|
|
102
|
+
path: "spinning-tops/beyblade-metal",
|
|
137
103
|
order: 2,
|
|
138
104
|
isLeaf: true,
|
|
139
105
|
position: 1,
|
|
140
106
|
subtreeSize: 0,
|
|
141
|
-
metrics:
|
|
107
|
+
metrics: emptyMetrics,
|
|
142
108
|
isFeatured: false,
|
|
143
109
|
isBrand: false,
|
|
144
|
-
seo: {
|
|
145
|
-
|
|
146
|
-
description: "Shop Yu-Gi-Oh! spell cards — Pot of Greed, Raigeki, Monster Reborn, Dark Hole, Change of Heart.",
|
|
147
|
-
keywords: ["spell cards", "magic cards", "pot of greed", "raigeki", "yugioh spells"],
|
|
148
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/55144522.jpg"),
|
|
149
|
-
},
|
|
150
|
-
display: {
|
|
151
|
-
icon: "✨",
|
|
152
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/55144522.jpg"),
|
|
153
|
-
color: "#059669",
|
|
154
|
-
showInMenu: true,
|
|
155
|
-
showInFooter: false,
|
|
156
|
-
},
|
|
110
|
+
seo: { title: "Beyblade Metal Fight | LetItRip", description: "Buy vintage Beyblade Metal Fight tops — Fusion, Masters, Fury.", keywords: ["beyblade metal fight", "metal fusion", "metal masters", "vintage beyblade"] },
|
|
111
|
+
display: { icon: "⚙️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-beyblade-metal-20260101/1200/600"), color: "#64748b", showInMenu: true, showInFooter: false },
|
|
157
112
|
isActive: true,
|
|
158
113
|
isSearchable: true,
|
|
159
114
|
showOnHomepage: false,
|
|
160
115
|
createdBy: "user-admin-letitrip",
|
|
161
|
-
createdAt: daysAgo(
|
|
116
|
+
createdAt: daysAgo(300),
|
|
162
117
|
updatedAt: daysAgo(1),
|
|
163
118
|
},
|
|
164
119
|
{
|
|
165
|
-
id: "category-
|
|
166
|
-
slug: "category-
|
|
167
|
-
name: "
|
|
168
|
-
description: "
|
|
169
|
-
rootId: "category-
|
|
170
|
-
parentIds: ["category-
|
|
120
|
+
id: "category-beyblade-burst",
|
|
121
|
+
slug: "category-beyblade-burst",
|
|
122
|
+
name: "Beyblade Burst",
|
|
123
|
+
description: "Beyblade Burst by Takara-Tomy/Hasbro — Burst system tops, launchers, and stadiums from all Burst sub-generations.",
|
|
124
|
+
rootId: "category-spinning-tops",
|
|
125
|
+
parentIds: ["category-spinning-tops"],
|
|
171
126
|
childrenIds: [],
|
|
172
127
|
tier: 1,
|
|
173
|
-
path: "
|
|
128
|
+
path: "spinning-tops/beyblade-burst",
|
|
174
129
|
order: 3,
|
|
175
130
|
isLeaf: true,
|
|
176
131
|
position: 2,
|
|
177
132
|
subtreeSize: 0,
|
|
178
|
-
metrics:
|
|
133
|
+
metrics: emptyMetrics,
|
|
179
134
|
isFeatured: false,
|
|
180
135
|
isBrand: false,
|
|
181
|
-
seo: {
|
|
182
|
-
|
|
183
|
-
description: "Shop Yu-Gi-Oh! trap cards — Mirror Force, Torrential Tribute, Call of the Haunted.",
|
|
184
|
-
keywords: ["trap cards", "mirror force", "torrential tribute", "yugioh traps"],
|
|
185
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/44095762.jpg"),
|
|
186
|
-
},
|
|
187
|
-
display: {
|
|
188
|
-
icon: "🪤",
|
|
189
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/44095762.jpg"),
|
|
190
|
-
color: "#9333ea",
|
|
191
|
-
showInMenu: true,
|
|
192
|
-
showInFooter: false,
|
|
193
|
-
},
|
|
136
|
+
seo: { title: "Beyblade Burst | LetItRip", description: "Buy Beyblade Burst tops, launchers, and stadiums.", keywords: ["beyblade burst", "burst system", "beyblade burst pro"] },
|
|
137
|
+
display: { icon: "💥", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-beyblade-burst-20260101/1200/600"), color: "#059669", showInMenu: true, showInFooter: false },
|
|
194
138
|
isActive: true,
|
|
195
139
|
isSearchable: true,
|
|
196
140
|
showOnHomepage: false,
|
|
197
141
|
createdBy: "user-admin-letitrip",
|
|
198
|
-
createdAt: daysAgo(
|
|
142
|
+
createdAt: daysAgo(300),
|
|
199
143
|
updatedAt: daysAgo(1),
|
|
200
144
|
},
|
|
201
145
|
{
|
|
202
|
-
id: "category-
|
|
203
|
-
slug: "category-
|
|
204
|
-
name: "
|
|
205
|
-
description: "
|
|
206
|
-
rootId: "category-
|
|
207
|
-
parentIds: ["category-
|
|
146
|
+
id: "category-beyblade-x",
|
|
147
|
+
slug: "category-beyblade-x",
|
|
148
|
+
name: "Beyblade X",
|
|
149
|
+
description: "Beyblade X by Takara-Tomy — the latest generation with Xtreme Gear system, X Dash, and tournament-grade stadiums.",
|
|
150
|
+
rootId: "category-spinning-tops",
|
|
151
|
+
parentIds: ["category-spinning-tops"],
|
|
208
152
|
childrenIds: [],
|
|
209
153
|
tier: 1,
|
|
210
|
-
path: "
|
|
154
|
+
path: "spinning-tops/beyblade-x",
|
|
211
155
|
order: 4,
|
|
212
156
|
isLeaf: true,
|
|
213
157
|
position: 3,
|
|
214
158
|
subtreeSize: 0,
|
|
215
|
-
metrics:
|
|
216
|
-
isFeatured:
|
|
159
|
+
metrics: emptyMetrics,
|
|
160
|
+
isFeatured: true,
|
|
217
161
|
isBrand: false,
|
|
218
|
-
seo: {
|
|
219
|
-
|
|
220
|
-
description: "Shop Yu-Gi-Oh! fusion monsters — Blue-Eyes Ultimate Dragon, Elemental HERO Flame Wingman, Five-Headed Dragon.",
|
|
221
|
-
keywords: ["fusion monsters", "extra deck", "blue-eyes ultimate dragon", "yugioh fusion"],
|
|
222
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/23995346.jpg"),
|
|
223
|
-
},
|
|
224
|
-
display: {
|
|
225
|
-
icon: "🔀",
|
|
226
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/23995346.jpg"),
|
|
227
|
-
color: "#ea580c",
|
|
228
|
-
showInMenu: true,
|
|
229
|
-
showInFooter: false,
|
|
230
|
-
},
|
|
162
|
+
seo: { title: "Beyblade X | LetItRip", description: "Buy Beyblade X tops and stadiums by Takara-Tomy.", keywords: ["beyblade x", "xtreme gear", "beyblade x starter", "takara tomy beyblade"] },
|
|
163
|
+
display: { icon: "💫", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-beyblade-x-20260101/1200/600"), color: "#0d9488", showInMenu: true, showInFooter: false },
|
|
231
164
|
isActive: true,
|
|
232
165
|
isSearchable: true,
|
|
233
166
|
showOnHomepage: false,
|
|
234
167
|
createdBy: "user-admin-letitrip",
|
|
235
|
-
createdAt: daysAgo(
|
|
168
|
+
createdAt: daysAgo(300),
|
|
236
169
|
updatedAt: daysAgo(1),
|
|
237
170
|
},
|
|
238
|
-
|
|
171
|
+
];
|
|
172
|
+
const sublistingRows = [];
|
|
173
|
+
// ──────────────────────────────────────────────────────────────────────────────
|
|
174
|
+
// Brands (categoryType:"brand") — narrowed to the two brands relevant to the
|
|
175
|
+
// Beyblade catalog. Takara-Tomy is a real manufacturer (also makes Tomica,
|
|
176
|
+
// Transformers Japan) so it stays generic; Beyblade is the franchise brand.
|
|
177
|
+
// ──────────────────────────────────────────────────────────────────────────────
|
|
178
|
+
const brandRows = [
|
|
239
179
|
{
|
|
240
|
-
id: "
|
|
241
|
-
slug: "
|
|
242
|
-
name: "
|
|
243
|
-
|
|
244
|
-
|
|
180
|
+
id: "brand-takara-tomy",
|
|
181
|
+
slug: "brand-takara-tomy",
|
|
182
|
+
name: "Takara-Tomy",
|
|
183
|
+
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
184
|
+
description: "Japanese toy company behind Beyblade, Tomica, Transformers (Japan), and Duel Masters. Known for premium quality and Japan-exclusive releases.",
|
|
185
|
+
brandWebsite: "https://www.takaratomy.co.jp",
|
|
186
|
+
brandCountry: "Japan",
|
|
187
|
+
brandFounded: 2006,
|
|
188
|
+
rootId: "brand-takara-tomy",
|
|
245
189
|
parentIds: [],
|
|
246
|
-
childrenIds: [
|
|
247
|
-
"category-booster-packs",
|
|
248
|
-
"category-booster-boxes",
|
|
249
|
-
"category-collector-tins",
|
|
250
|
-
"category-starter-structure",
|
|
251
|
-
],
|
|
252
190
|
tier: 0,
|
|
253
|
-
path: "
|
|
254
|
-
order: 2,
|
|
255
|
-
isLeaf: false,
|
|
256
|
-
position: 0,
|
|
257
|
-
subtreeSize: 4,
|
|
258
|
-
metrics: seedMetrics(25, 1),
|
|
259
|
-
isFeatured: true,
|
|
260
|
-
featuredPriority: 2,
|
|
261
|
-
isBrand: false,
|
|
262
|
-
seo: {
|
|
263
|
-
title: "Sealed YGO Products | LetItRip",
|
|
264
|
-
description: "Buy factory-sealed Yu-Gi-Oh! booster packs, boxes, tins, and decks. Authentic, unweighed, unopened.",
|
|
265
|
-
keywords: ["sealed yugioh", "booster box", "starter deck", "collector tin", "yugioh sealed"],
|
|
266
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"),
|
|
267
|
-
},
|
|
268
|
-
display: {
|
|
269
|
-
icon: "📦",
|
|
270
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"),
|
|
271
|
-
color: "#2563eb",
|
|
272
|
-
showInMenu: true,
|
|
273
|
-
showInFooter: true,
|
|
274
|
-
},
|
|
275
|
-
isActive: true,
|
|
276
|
-
isSearchable: true,
|
|
277
|
-
showOnHomepage: true,
|
|
278
|
-
createdBy: "user-admin-letitrip",
|
|
279
|
-
createdAt: daysAgo(400),
|
|
280
|
-
updatedAt: daysAgo(1),
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
id: "category-booster-packs",
|
|
284
|
-
slug: "category-booster-packs",
|
|
285
|
-
name: "Booster Packs",
|
|
286
|
-
description: "Individual booster packs — LOB, MRD, PSV, POTD, EEN, and more.",
|
|
287
|
-
rootId: "category-sealed-products",
|
|
288
|
-
parentIds: ["category-sealed-products"],
|
|
289
|
-
childrenIds: [],
|
|
290
|
-
tier: 1,
|
|
291
|
-
path: "sealed-products/booster-packs",
|
|
292
|
-
order: 1,
|
|
293
|
-
isLeaf: true,
|
|
294
|
-
position: 0,
|
|
295
|
-
subtreeSize: 0,
|
|
296
|
-
metrics: seedMetrics(3),
|
|
297
|
-
isFeatured: false,
|
|
298
|
-
isBrand: false,
|
|
299
|
-
seo: { title: "Booster Packs | LetItRip", description: "Buy individual YGO booster packs.", keywords: ["booster pack", "yugioh pack"] },
|
|
300
|
-
display: { icon: "🎴", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"), color: "#1d4ed8", showInMenu: true, showInFooter: false },
|
|
301
|
-
isActive: true,
|
|
302
|
-
isSearchable: true,
|
|
303
|
-
showOnHomepage: false,
|
|
304
|
-
createdBy: "user-admin-letitrip",
|
|
305
|
-
createdAt: daysAgo(400),
|
|
306
|
-
updatedAt: daysAgo(1),
|
|
307
|
-
},
|
|
308
|
-
{
|
|
309
|
-
id: "category-booster-boxes",
|
|
310
|
-
slug: "category-booster-boxes",
|
|
311
|
-
name: "Booster Boxes",
|
|
312
|
-
description: "Full 24-pack booster boxes — the collector's preferred sealed investment.",
|
|
313
|
-
rootId: "category-sealed-products",
|
|
314
|
-
parentIds: ["category-sealed-products"],
|
|
315
|
-
childrenIds: [],
|
|
316
|
-
tier: 1,
|
|
317
|
-
path: "sealed-products/booster-boxes",
|
|
318
|
-
order: 2,
|
|
319
|
-
isLeaf: true,
|
|
320
|
-
position: 1,
|
|
321
|
-
subtreeSize: 0,
|
|
322
|
-
metrics: seedMetrics(4),
|
|
323
|
-
isFeatured: false,
|
|
324
|
-
isBrand: false,
|
|
325
|
-
seo: { title: "Booster Boxes | LetItRip", description: "Buy full YGO booster boxes (24 packs).", keywords: ["booster box", "yugioh box"] },
|
|
326
|
-
display: { icon: "📫", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"), color: "#1e40af", showInMenu: true, showInFooter: false },
|
|
327
|
-
isActive: true,
|
|
328
|
-
isSearchable: true,
|
|
329
|
-
showOnHomepage: false,
|
|
330
|
-
createdBy: "user-admin-letitrip",
|
|
331
|
-
createdAt: daysAgo(400),
|
|
332
|
-
updatedAt: daysAgo(1),
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
id: "category-collector-tins",
|
|
336
|
-
slug: "category-collector-tins",
|
|
337
|
-
name: "Collector Tins",
|
|
338
|
-
description: "Collector tins containing promo cards and booster packs — 2002, 2004, 2005 series.",
|
|
339
|
-
rootId: "category-sealed-products",
|
|
340
|
-
parentIds: ["category-sealed-products"],
|
|
341
|
-
childrenIds: [],
|
|
342
|
-
tier: 1,
|
|
343
|
-
path: "sealed-products/collector-tins",
|
|
344
|
-
order: 3,
|
|
345
|
-
isLeaf: true,
|
|
346
|
-
position: 2,
|
|
347
|
-
subtreeSize: 0,
|
|
348
|
-
metrics: seedMetrics(3),
|
|
349
|
-
isFeatured: false,
|
|
350
|
-
isBrand: false,
|
|
351
|
-
seo: { title: "Collector Tins | LetItRip", description: "Buy YGO collector tins with promo cards.", keywords: ["collector tin", "yugioh tin"] },
|
|
352
|
-
display: { icon: "🗳️", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"), color: "#1e3a8a", showInMenu: true, showInFooter: false },
|
|
353
|
-
isActive: true,
|
|
354
|
-
isSearchable: true,
|
|
355
|
-
showOnHomepage: false,
|
|
356
|
-
createdBy: "user-admin-letitrip",
|
|
357
|
-
createdAt: daysAgo(400),
|
|
358
|
-
updatedAt: daysAgo(1),
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
id: "category-starter-structure",
|
|
362
|
-
slug: "category-starter-structure",
|
|
363
|
-
name: "Starters & Structure Decks",
|
|
364
|
-
description: "Starter decks and structure decks — Yugi, Kaiba, Joey, and GX starter sets.",
|
|
365
|
-
rootId: "category-sealed-products",
|
|
366
|
-
parentIds: ["category-sealed-products"],
|
|
367
|
-
childrenIds: [],
|
|
368
|
-
tier: 1,
|
|
369
|
-
path: "sealed-products/starter-structure",
|
|
370
|
-
order: 4,
|
|
191
|
+
path: "brand-takara-tomy",
|
|
371
192
|
isLeaf: true,
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
isBrand: false,
|
|
377
|
-
seo: { title: "Starter & Structure Decks | LetItRip", description: "Buy YGO starter and structure decks.", keywords: ["starter deck", "structure deck", "yugioh deck"] },
|
|
378
|
-
display: { icon: "🗂️", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg"), color: "#312e81", showInMenu: true, showInFooter: false },
|
|
193
|
+
order: 1,
|
|
194
|
+
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-takara-tomy-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
195
|
+
isFeatured: true,
|
|
196
|
+
isBrand: true,
|
|
379
197
|
isActive: true,
|
|
380
198
|
isSearchable: true,
|
|
381
|
-
showOnHomepage: false,
|
|
382
199
|
createdBy: "user-admin-letitrip",
|
|
383
|
-
createdAt: daysAgo(
|
|
384
|
-
updatedAt: daysAgo(
|
|
200
|
+
createdAt: daysAgo(300),
|
|
201
|
+
updatedAt: daysAgo(30),
|
|
202
|
+
seo: { title: "Takara-Tomy | LetItRip", description: "Shop Takara-Tomy collectibles — Beyblade, Tomica, Transformers.", keywords: ["takara tomy", "takara tomy beyblade", "tomica takara"] },
|
|
385
203
|
},
|
|
386
|
-
// ── ROOT 3: Graded Cards ───────────────────────────────────────────────────
|
|
387
204
|
{
|
|
388
|
-
id: "
|
|
389
|
-
slug: "
|
|
390
|
-
name: "
|
|
391
|
-
|
|
392
|
-
|
|
205
|
+
id: "brand-beyblade",
|
|
206
|
+
slug: "brand-beyblade",
|
|
207
|
+
name: "Beyblade",
|
|
208
|
+
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
209
|
+
description: "Spinning top battle franchise by Takara-Tomy (Japan) and Hasbro (international). Covers the Original series, Metal Fight, Burst, and the latest Beyblade X generation.",
|
|
210
|
+
brandWebsite: "https://beyblade.takaratomy.co.jp",
|
|
211
|
+
brandCountry: "Japan",
|
|
212
|
+
brandFounded: 1999,
|
|
213
|
+
rootId: "brand-beyblade",
|
|
393
214
|
parentIds: [],
|
|
394
|
-
childrenIds: [
|
|
395
|
-
"category-psa-graded",
|
|
396
|
-
"category-bgs-graded",
|
|
397
|
-
"category-cgc-graded",
|
|
398
|
-
"category-raw-near-mint",
|
|
399
|
-
],
|
|
400
215
|
tier: 0,
|
|
401
|
-
path: "
|
|
402
|
-
order: 3,
|
|
403
|
-
isLeaf: false,
|
|
404
|
-
position: 0,
|
|
405
|
-
subtreeSize: 4,
|
|
406
|
-
metrics: seedMetrics(1, 6),
|
|
407
|
-
isFeatured: true,
|
|
408
|
-
featuredPriority: 3,
|
|
409
|
-
isBrand: false,
|
|
410
|
-
seo: {
|
|
411
|
-
title: "Graded YGO Cards | LetItRip",
|
|
412
|
-
description: "Buy and sell professionally graded Yu-Gi-Oh! cards in PSA, BGS, and CGC slabs.",
|
|
413
|
-
keywords: ["graded yugioh", "psa yugioh", "bgs yugioh", "cgc yugioh", "graded slab"],
|
|
414
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg"),
|
|
415
|
-
},
|
|
416
|
-
display: {
|
|
417
|
-
icon: "🏆",
|
|
418
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg"),
|
|
419
|
-
color: "#ca8a04",
|
|
420
|
-
showInMenu: true,
|
|
421
|
-
showInFooter: true,
|
|
422
|
-
},
|
|
423
|
-
isActive: true,
|
|
424
|
-
isSearchable: true,
|
|
425
|
-
showOnHomepage: true,
|
|
426
|
-
createdBy: "user-admin-letitrip",
|
|
427
|
-
createdAt: daysAgo(400),
|
|
428
|
-
updatedAt: daysAgo(1),
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
id: "category-psa-graded",
|
|
432
|
-
slug: "category-psa-graded",
|
|
433
|
-
name: "PSA Graded",
|
|
434
|
-
description: "Cards graded by Professional Sports Authenticator (PSA) — grades 1–10.",
|
|
435
|
-
rootId: "category-graded-cards",
|
|
436
|
-
parentIds: ["category-graded-cards"],
|
|
437
|
-
childrenIds: [],
|
|
438
|
-
tier: 1,
|
|
439
|
-
path: "graded-cards/psa-graded",
|
|
440
|
-
order: 1,
|
|
216
|
+
path: "brand-beyblade",
|
|
441
217
|
isLeaf: true,
|
|
442
|
-
position: 0,
|
|
443
|
-
subtreeSize: 0,
|
|
444
|
-
metrics: seedMetrics(1, 6),
|
|
445
|
-
isFeatured: false,
|
|
446
|
-
isBrand: false,
|
|
447
|
-
seo: { title: "PSA Graded YGO | LetItRip", description: "Shop PSA graded Yu-Gi-Oh! cards.", keywords: ["psa graded", "psa yugioh", "psa slab"] },
|
|
448
|
-
display: { icon: "🔵", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"), color: "#b45309", showInMenu: true, showInFooter: false },
|
|
449
|
-
isActive: true,
|
|
450
|
-
isSearchable: true,
|
|
451
|
-
showOnHomepage: false,
|
|
452
|
-
createdBy: "user-admin-letitrip",
|
|
453
|
-
createdAt: daysAgo(400),
|
|
454
|
-
updatedAt: daysAgo(1),
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
id: "category-bgs-graded",
|
|
458
|
-
slug: "category-bgs-graded",
|
|
459
|
-
name: "BGS / Beckett Graded",
|
|
460
|
-
description: "Cards graded by Beckett Grading Services (BGS/BCCG) — grades 1–10 with sub-grades.",
|
|
461
|
-
rootId: "category-graded-cards",
|
|
462
|
-
parentIds: ["category-graded-cards"],
|
|
463
|
-
childrenIds: [],
|
|
464
|
-
tier: 1,
|
|
465
|
-
path: "graded-cards/bgs-graded",
|
|
466
218
|
order: 2,
|
|
467
|
-
|
|
468
|
-
position: 1,
|
|
469
|
-
subtreeSize: 0,
|
|
470
|
-
metrics: emptyMetrics,
|
|
471
|
-
isFeatured: false,
|
|
472
|
-
isBrand: false,
|
|
473
|
-
seo: { title: "BGS Graded YGO | LetItRip", description: "Shop BGS / Beckett graded Yu-Gi-Oh! cards.", keywords: ["bgs graded", "beckett yugioh", "bgs slab"] },
|
|
474
|
-
display: { icon: "🟡", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/38033121.jpg"), color: "#92400e", showInMenu: true, showInFooter: false },
|
|
475
|
-
isActive: true,
|
|
476
|
-
isSearchable: true,
|
|
477
|
-
showOnHomepage: false,
|
|
478
|
-
createdBy: "user-admin-letitrip",
|
|
479
|
-
createdAt: daysAgo(400),
|
|
480
|
-
updatedAt: daysAgo(1),
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
id: "category-cgc-graded",
|
|
484
|
-
slug: "category-cgc-graded",
|
|
485
|
-
name: "CGC Graded",
|
|
486
|
-
description: "Cards graded by Certified Guaranty Company (CGC) — grades 1–10.",
|
|
487
|
-
rootId: "category-graded-cards",
|
|
488
|
-
parentIds: ["category-graded-cards"],
|
|
489
|
-
childrenIds: [],
|
|
490
|
-
tier: 1,
|
|
491
|
-
path: "graded-cards/cgc-graded",
|
|
492
|
-
order: 3,
|
|
493
|
-
isLeaf: true,
|
|
494
|
-
position: 2,
|
|
495
|
-
subtreeSize: 0,
|
|
496
|
-
metrics: emptyMetrics,
|
|
497
|
-
isFeatured: false,
|
|
498
|
-
isBrand: false,
|
|
499
|
-
seo: { title: "CGC Graded YGO | LetItRip", description: "Shop CGC graded Yu-Gi-Oh! cards.", keywords: ["cgc graded", "cgc yugioh", "cgc slab"] },
|
|
500
|
-
display: { icon: "🟢", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/12580477.jpg"), color: "#78350f", showInMenu: true, showInFooter: false },
|
|
501
|
-
isActive: true,
|
|
502
|
-
isSearchable: true,
|
|
503
|
-
showOnHomepage: false,
|
|
504
|
-
createdBy: "user-admin-letitrip",
|
|
505
|
-
createdAt: daysAgo(400),
|
|
506
|
-
updatedAt: daysAgo(1),
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
id: "category-raw-near-mint",
|
|
510
|
-
slug: "category-raw-near-mint",
|
|
511
|
-
name: "Raw / Ungraded NM",
|
|
512
|
-
description: "Ungraded Near Mint / Mint condition cards — ready for grading or direct play.",
|
|
513
|
-
rootId: "category-graded-cards",
|
|
514
|
-
parentIds: ["category-graded-cards"],
|
|
515
|
-
childrenIds: [],
|
|
516
|
-
tier: 1,
|
|
517
|
-
path: "graded-cards/raw-near-mint",
|
|
518
|
-
order: 4,
|
|
519
|
-
isLeaf: true,
|
|
520
|
-
position: 3,
|
|
521
|
-
subtreeSize: 0,
|
|
522
|
-
metrics: emptyMetrics,
|
|
523
|
-
isFeatured: false,
|
|
524
|
-
isBrand: false,
|
|
525
|
-
seo: { title: "Raw NM YGO Cards | LetItRip", description: "Shop ungraded Near Mint Yu-Gi-Oh! cards.", keywords: ["raw nm", "near mint yugioh", "ungraded yugioh"] },
|
|
526
|
-
display: { icon: "📋", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg"), color: "#451a03", showInMenu: true, showInFooter: false },
|
|
527
|
-
isActive: true,
|
|
528
|
-
isSearchable: true,
|
|
529
|
-
showOnHomepage: false,
|
|
530
|
-
createdBy: "user-admin-letitrip",
|
|
531
|
-
createdAt: daysAgo(400),
|
|
532
|
-
updatedAt: daysAgo(1),
|
|
533
|
-
},
|
|
534
|
-
// ── ROOT 4: Duel Monsters Era ──────────────────────────────────────────────
|
|
535
|
-
{
|
|
536
|
-
id: "category-duel-monsters-era",
|
|
537
|
-
slug: "category-duel-monsters-era",
|
|
538
|
-
name: "Duel Monsters Era",
|
|
539
|
-
description: "Classic Duel Monsters / Season 1 era sets — LOB, MRD, PSV, LON, and the original power cards.",
|
|
540
|
-
rootId: "category-duel-monsters-era",
|
|
541
|
-
parentIds: [],
|
|
542
|
-
childrenIds: [
|
|
543
|
-
"category-legend-of-blue-eyes",
|
|
544
|
-
"category-metal-raiders",
|
|
545
|
-
"category-pharaoh-servant",
|
|
546
|
-
"category-labyrinth-nightmare",
|
|
547
|
-
],
|
|
548
|
-
tier: 0,
|
|
549
|
-
path: "duel-monsters-era",
|
|
550
|
-
order: 4,
|
|
551
|
-
isLeaf: false,
|
|
552
|
-
position: 0,
|
|
553
|
-
subtreeSize: 4,
|
|
554
|
-
metrics: emptyMetrics,
|
|
219
|
+
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-beyblade-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
555
220
|
isFeatured: true,
|
|
556
|
-
|
|
557
|
-
isBrand: false,
|
|
558
|
-
seo: {
|
|
559
|
-
title: "Duel Monsters Era YGO | LetItRip",
|
|
560
|
-
description: "Shop Duel Monsters era (Season 1) Yu-Gi-Oh! cards — LOB, MRD, PSV, LON sets.",
|
|
561
|
-
keywords: ["duel monsters era", "lob yugioh", "legend of blue eyes", "original yugioh"],
|
|
562
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"),
|
|
563
|
-
},
|
|
564
|
-
display: {
|
|
565
|
-
icon: "⚡",
|
|
566
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"),
|
|
567
|
-
color: "#1d4ed8",
|
|
568
|
-
showInMenu: true,
|
|
569
|
-
showInFooter: true,
|
|
570
|
-
},
|
|
571
|
-
isActive: true,
|
|
572
|
-
isSearchable: true,
|
|
573
|
-
showOnHomepage: true,
|
|
574
|
-
createdBy: "user-admin-letitrip",
|
|
575
|
-
createdAt: daysAgo(400),
|
|
576
|
-
updatedAt: daysAgo(1),
|
|
577
|
-
},
|
|
578
|
-
{
|
|
579
|
-
id: "category-legend-of-blue-eyes",
|
|
580
|
-
slug: "category-legend-of-blue-eyes",
|
|
581
|
-
name: "Legend of Blue Eyes (LOB)",
|
|
582
|
-
description: "Cards from the Legend of Blue Eyes White Dragon set — the first YGO TCG set released in the West.",
|
|
583
|
-
rootId: "category-duel-monsters-era",
|
|
584
|
-
parentIds: ["category-duel-monsters-era"],
|
|
585
|
-
childrenIds: [],
|
|
586
|
-
tier: 1,
|
|
587
|
-
path: "duel-monsters-era/legend-of-blue-eyes",
|
|
588
|
-
order: 1,
|
|
589
|
-
isLeaf: true,
|
|
590
|
-
position: 0,
|
|
591
|
-
subtreeSize: 0,
|
|
592
|
-
metrics: emptyMetrics,
|
|
593
|
-
isFeatured: false,
|
|
594
|
-
isBrand: false,
|
|
595
|
-
seo: { title: "LOB Cards | LetItRip", description: "Shop Legend of Blue Eyes White Dragon set cards.", keywords: ["lob", "legend of blue eyes", "lob 1st edition"] },
|
|
596
|
-
display: { icon: "👁️", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"), color: "#1e40af", showInMenu: true, showInFooter: false },
|
|
597
|
-
isActive: true,
|
|
598
|
-
isSearchable: true,
|
|
599
|
-
showOnHomepage: false,
|
|
600
|
-
createdBy: "user-admin-letitrip",
|
|
601
|
-
createdAt: daysAgo(400),
|
|
602
|
-
updatedAt: daysAgo(1),
|
|
603
|
-
},
|
|
604
|
-
{
|
|
605
|
-
id: "category-metal-raiders",
|
|
606
|
-
slug: "category-metal-raiders",
|
|
607
|
-
name: "Metal Raiders (MRD)",
|
|
608
|
-
description: "Cards from the Metal Raiders set — Mirror Force, Gate Guardian, Jinzo, and more.",
|
|
609
|
-
rootId: "category-duel-monsters-era",
|
|
610
|
-
parentIds: ["category-duel-monsters-era"],
|
|
611
|
-
childrenIds: [],
|
|
612
|
-
tier: 1,
|
|
613
|
-
path: "duel-monsters-era/metal-raiders",
|
|
614
|
-
order: 2,
|
|
615
|
-
isLeaf: true,
|
|
616
|
-
position: 1,
|
|
617
|
-
subtreeSize: 0,
|
|
618
|
-
metrics: emptyMetrics,
|
|
619
|
-
isFeatured: false,
|
|
620
|
-
isBrand: false,
|
|
621
|
-
seo: { title: "MRD Cards | LetItRip", description: "Shop Metal Raiders set cards.", keywords: ["mrd", "metal raiders", "mirror force"] },
|
|
622
|
-
display: { icon: "🔩", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/44095762.jpg"), color: "#1e3a8a", showInMenu: true, showInFooter: false },
|
|
623
|
-
isActive: true,
|
|
624
|
-
isSearchable: true,
|
|
625
|
-
showOnHomepage: false,
|
|
626
|
-
createdBy: "user-admin-letitrip",
|
|
627
|
-
createdAt: daysAgo(400),
|
|
628
|
-
updatedAt: daysAgo(1),
|
|
629
|
-
},
|
|
630
|
-
{
|
|
631
|
-
id: "category-pharaoh-servant",
|
|
632
|
-
slug: "category-pharaoh-servant",
|
|
633
|
-
name: "Pharaoh's Servant (PSV)",
|
|
634
|
-
description: "Cards from the Pharaoh's Servant set — Jinzo, MST, and classic PSV staples.",
|
|
635
|
-
rootId: "category-duel-monsters-era",
|
|
636
|
-
parentIds: ["category-duel-monsters-era"],
|
|
637
|
-
childrenIds: [],
|
|
638
|
-
tier: 1,
|
|
639
|
-
path: "duel-monsters-era/pharaoh-servant",
|
|
640
|
-
order: 3,
|
|
641
|
-
isLeaf: true,
|
|
642
|
-
position: 2,
|
|
643
|
-
subtreeSize: 0,
|
|
644
|
-
metrics: emptyMetrics,
|
|
645
|
-
isFeatured: false,
|
|
646
|
-
isBrand: false,
|
|
647
|
-
seo: { title: "PSV Cards | LetItRip", description: "Shop Pharaoh's Servant set cards.", keywords: ["psv", "pharaoh servant", "jinzo"] },
|
|
648
|
-
display: { icon: "🪄", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/77585513.jpg"), color: "#312e81", showInMenu: true, showInFooter: false },
|
|
649
|
-
isActive: true,
|
|
650
|
-
isSearchable: true,
|
|
651
|
-
showOnHomepage: false,
|
|
652
|
-
createdBy: "user-admin-letitrip",
|
|
653
|
-
createdAt: daysAgo(400),
|
|
654
|
-
updatedAt: daysAgo(1),
|
|
655
|
-
},
|
|
656
|
-
{
|
|
657
|
-
id: "category-labyrinth-nightmare",
|
|
658
|
-
slug: "category-labyrinth-nightmare",
|
|
659
|
-
name: "Labyrinth of Nightmare (LON)",
|
|
660
|
-
description: "Cards from the Labyrinth of Nightmare set — Chaos Emperor Dragon, exchange format staples.",
|
|
661
|
-
rootId: "category-duel-monsters-era",
|
|
662
|
-
parentIds: ["category-duel-monsters-era"],
|
|
663
|
-
childrenIds: [],
|
|
664
|
-
tier: 1,
|
|
665
|
-
path: "duel-monsters-era/labyrinth-nightmare",
|
|
666
|
-
order: 4,
|
|
667
|
-
isLeaf: true,
|
|
668
|
-
position: 3,
|
|
669
|
-
subtreeSize: 0,
|
|
670
|
-
metrics: emptyMetrics,
|
|
671
|
-
isFeatured: false,
|
|
672
|
-
isBrand: false,
|
|
673
|
-
seo: { title: "LON Cards | LetItRip", description: "Shop Labyrinth of Nightmare set cards.", keywords: ["lon", "labyrinth of nightmare", "chaos emperor dragon"] },
|
|
674
|
-
display: { icon: "🌀", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/82301904.jpg"), color: "#4c1d95", showInMenu: true, showInFooter: false },
|
|
675
|
-
isActive: true,
|
|
676
|
-
isSearchable: true,
|
|
677
|
-
showOnHomepage: false,
|
|
678
|
-
createdBy: "user-admin-letitrip",
|
|
679
|
-
createdAt: daysAgo(400),
|
|
680
|
-
updatedAt: daysAgo(1),
|
|
681
|
-
},
|
|
682
|
-
// ── ROOT 5: GX Era ─────────────────────────────────────────────────────────
|
|
683
|
-
{
|
|
684
|
-
id: "category-gx-era",
|
|
685
|
-
slug: "category-gx-era",
|
|
686
|
-
name: "GX Era",
|
|
687
|
-
description: "Yu-Gi-Oh! GX era sets — Shadow of Infinity, Elemental Energy, Power of the Duelist, Cyberdark Impact.",
|
|
688
|
-
rootId: "category-gx-era",
|
|
689
|
-
parentIds: [],
|
|
690
|
-
childrenIds: [
|
|
691
|
-
"category-shadow-of-infinity",
|
|
692
|
-
"category-elemental-energy",
|
|
693
|
-
"category-power-of-the-duelist",
|
|
694
|
-
"category-cyberdark-impact",
|
|
695
|
-
],
|
|
696
|
-
tier: 0,
|
|
697
|
-
path: "gx-era",
|
|
698
|
-
order: 5,
|
|
699
|
-
isLeaf: false,
|
|
700
|
-
position: 0,
|
|
701
|
-
subtreeSize: 4,
|
|
702
|
-
metrics: seedMetrics(8, 2),
|
|
703
|
-
isFeatured: true,
|
|
704
|
-
featuredPriority: 5,
|
|
705
|
-
isBrand: false,
|
|
706
|
-
seo: {
|
|
707
|
-
title: "GX Era YGO | LetItRip",
|
|
708
|
-
description: "Shop Yu-Gi-Oh! GX era cards — Elemental HEROes, Destiny HEROes, Cyber Dragon, Rainbow Dragon.",
|
|
709
|
-
keywords: ["yugioh gx", "elemental hero", "cyber dragon", "shadow of infinity", "potd"],
|
|
710
|
-
ogImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg"),
|
|
711
|
-
},
|
|
712
|
-
display: {
|
|
713
|
-
icon: "🌈",
|
|
714
|
-
coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg"),
|
|
715
|
-
color: "#16a34a",
|
|
716
|
-
showInMenu: true,
|
|
717
|
-
showInFooter: true,
|
|
718
|
-
},
|
|
719
|
-
isActive: true,
|
|
720
|
-
isSearchable: true,
|
|
721
|
-
showOnHomepage: true,
|
|
722
|
-
createdBy: "user-admin-letitrip",
|
|
723
|
-
createdAt: daysAgo(400),
|
|
724
|
-
updatedAt: daysAgo(1),
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
id: "category-shadow-of-infinity",
|
|
728
|
-
slug: "category-shadow-of-infinity",
|
|
729
|
-
name: "Shadow of Infinity (SOI)",
|
|
730
|
-
description: "Cards from Shadow of Infinity — Elemental HERO cards and early GX staples.",
|
|
731
|
-
rootId: "category-gx-era",
|
|
732
|
-
parentIds: ["category-gx-era"],
|
|
733
|
-
childrenIds: [],
|
|
734
|
-
tier: 1,
|
|
735
|
-
path: "gx-era/shadow-of-infinity",
|
|
736
|
-
order: 1,
|
|
737
|
-
isLeaf: true,
|
|
738
|
-
position: 0,
|
|
739
|
-
subtreeSize: 0,
|
|
740
|
-
metrics: emptyMetrics,
|
|
741
|
-
isFeatured: false,
|
|
742
|
-
isBrand: false,
|
|
743
|
-
seo: { title: "SOI Cards | LetItRip", description: "Shop Shadow of Infinity set cards.", keywords: ["soi", "shadow of infinity", "elemental hero"] },
|
|
744
|
-
display: { icon: "🌑", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg"), color: "#15803d", showInMenu: true, showInFooter: false },
|
|
745
|
-
isActive: true,
|
|
746
|
-
isSearchable: true,
|
|
747
|
-
showOnHomepage: false,
|
|
748
|
-
createdBy: "user-admin-letitrip",
|
|
749
|
-
createdAt: daysAgo(400),
|
|
750
|
-
updatedAt: daysAgo(1),
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
id: "category-elemental-energy",
|
|
754
|
-
slug: "category-elemental-energy",
|
|
755
|
-
name: "Elemental Energy (EEN)",
|
|
756
|
-
description: "Cards from Elemental Energy — Elemental HERO fusions, Flame Wingman, Thunder Giant.",
|
|
757
|
-
rootId: "category-gx-era",
|
|
758
|
-
parentIds: ["category-gx-era"],
|
|
759
|
-
childrenIds: [],
|
|
760
|
-
tier: 1,
|
|
761
|
-
path: "gx-era/elemental-energy",
|
|
762
|
-
order: 2,
|
|
763
|
-
isLeaf: true,
|
|
764
|
-
position: 1,
|
|
765
|
-
subtreeSize: 0,
|
|
766
|
-
metrics: emptyMetrics,
|
|
767
|
-
isFeatured: false,
|
|
768
|
-
isBrand: false,
|
|
769
|
-
seo: { title: "EEN Cards | LetItRip", description: "Shop Elemental Energy set cards.", keywords: ["een", "elemental energy", "flame wingman"] },
|
|
770
|
-
display: { icon: "⚡", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/35809262.jpg"), color: "#166534", showInMenu: true, showInFooter: false },
|
|
771
|
-
isActive: true,
|
|
772
|
-
isSearchable: true,
|
|
773
|
-
showOnHomepage: false,
|
|
774
|
-
createdBy: "user-admin-letitrip",
|
|
775
|
-
createdAt: daysAgo(400),
|
|
776
|
-
updatedAt: daysAgo(1),
|
|
777
|
-
},
|
|
778
|
-
{
|
|
779
|
-
id: "category-power-of-the-duelist",
|
|
780
|
-
slug: "category-power-of-the-duelist",
|
|
781
|
-
name: "Power of the Duelist (POTD)",
|
|
782
|
-
description: "Cards from Power of the Duelist — E-HERO Neos, Cyber Dragon, Rainbow Dragon, Neo-Spacians.",
|
|
783
|
-
rootId: "category-gx-era",
|
|
784
|
-
parentIds: ["category-gx-era"],
|
|
785
|
-
childrenIds: [],
|
|
786
|
-
tier: 1,
|
|
787
|
-
path: "gx-era/power-of-the-duelist",
|
|
788
|
-
order: 3,
|
|
789
|
-
isLeaf: true,
|
|
790
|
-
position: 2,
|
|
791
|
-
subtreeSize: 0,
|
|
792
|
-
metrics: emptyMetrics,
|
|
793
|
-
isFeatured: false,
|
|
794
|
-
isBrand: false,
|
|
795
|
-
seo: { title: "POTD Cards | LetItRip", description: "Shop Power of the Duelist set cards.", keywords: ["potd", "power of the duelist", "elemental hero neos", "rainbow dragon"] },
|
|
796
|
-
display: { icon: "✊", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg"), color: "#14532d", showInMenu: true, showInFooter: false },
|
|
797
|
-
isActive: true,
|
|
798
|
-
isSearchable: true,
|
|
799
|
-
showOnHomepage: false,
|
|
800
|
-
createdBy: "user-admin-letitrip",
|
|
801
|
-
createdAt: daysAgo(400),
|
|
802
|
-
updatedAt: daysAgo(1),
|
|
803
|
-
},
|
|
804
|
-
{
|
|
805
|
-
id: "category-cyberdark-impact",
|
|
806
|
-
slug: "category-cyberdark-impact",
|
|
807
|
-
name: "Cyberdark Impact (CDIP)",
|
|
808
|
-
description: "Cards from Cyberdark Impact — Cyber Dragon evolution line and Destiny HERO cards.",
|
|
809
|
-
rootId: "category-gx-era",
|
|
810
|
-
parentIds: ["category-gx-era"],
|
|
811
|
-
childrenIds: [],
|
|
812
|
-
tier: 1,
|
|
813
|
-
path: "gx-era/cyberdark-impact",
|
|
814
|
-
order: 4,
|
|
815
|
-
isLeaf: true,
|
|
816
|
-
position: 3,
|
|
817
|
-
subtreeSize: 0,
|
|
818
|
-
metrics: emptyMetrics,
|
|
819
|
-
isFeatured: false,
|
|
820
|
-
isBrand: false,
|
|
821
|
-
seo: { title: "CDIP Cards | LetItRip", description: "Shop Cyberdark Impact set cards.", keywords: ["cdip", "cyberdark impact", "cyber dragon", "destiny hero"] },
|
|
822
|
-
display: { icon: "🤖", coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/70095154.jpg"), color: "#052e16", showInMenu: true, showInFooter: false },
|
|
823
|
-
isActive: true,
|
|
824
|
-
isSearchable: true,
|
|
825
|
-
showOnHomepage: false,
|
|
826
|
-
createdBy: "user-admin-letitrip",
|
|
827
|
-
createdAt: daysAgo(400),
|
|
828
|
-
updatedAt: daysAgo(1),
|
|
829
|
-
},
|
|
830
|
-
// ── ROOT 6: Trading Cards (broad — umbrella for YGO + Pokémon + others) ───
|
|
831
|
-
{
|
|
832
|
-
id: "category-trading-cards",
|
|
833
|
-
slug: "category-trading-cards",
|
|
834
|
-
name: "Trading Cards",
|
|
835
|
-
description: "Collectible trading card games — Pokémon, Yu-Gi-Oh!, One Piece, Dragon Ball, Cardfight!! Vanguard, and more. Singles, sealed product, and graded slabs.",
|
|
836
|
-
rootId: "category-trading-cards",
|
|
837
|
-
parentIds: [],
|
|
838
|
-
childrenIds: ["category-pokemon-tcg", "category-one-piece-tcg", "category-dragon-ball-tcg", "category-cardfight-vanguard"],
|
|
839
|
-
tier: 0,
|
|
840
|
-
path: "trading-cards",
|
|
841
|
-
order: 6,
|
|
842
|
-
isLeaf: false,
|
|
843
|
-
position: 0,
|
|
844
|
-
subtreeSize: 4,
|
|
845
|
-
metrics: seedMetrics(1),
|
|
846
|
-
isFeatured: true,
|
|
847
|
-
featuredPriority: 6,
|
|
848
|
-
isBrand: false,
|
|
849
|
-
seo: { title: "Trading Cards | LetItRip", description: "Buy and sell collectible trading cards — Pokémon, Yu-Gi-Oh!, One Piece TCG and more.", keywords: ["trading cards", "tcg", "collectible cards", "pokemon cards", "yugioh cards"] },
|
|
850
|
-
display: { icon: "🃏", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-trading-cards-20260101/1200/600"), color: "#7c3aed", showInMenu: true, showInFooter: true },
|
|
851
|
-
isActive: true,
|
|
852
|
-
isSearchable: true,
|
|
853
|
-
showOnHomepage: true,
|
|
854
|
-
createdBy: "user-admin-letitrip",
|
|
855
|
-
createdAt: daysAgo(300),
|
|
856
|
-
updatedAt: daysAgo(1),
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
id: "category-pokemon-tcg",
|
|
860
|
-
slug: "category-pokemon-tcg",
|
|
861
|
-
name: "Pokémon TCG",
|
|
862
|
-
description: "Pokémon Trading Card Game — booster packs, elite trainer boxes, singles, and graded cards from Base Set to Scarlet & Violet.",
|
|
863
|
-
rootId: "category-trading-cards",
|
|
864
|
-
parentIds: ["category-trading-cards"],
|
|
865
|
-
childrenIds: [],
|
|
866
|
-
tier: 1,
|
|
867
|
-
path: "trading-cards/pokemon-tcg",
|
|
868
|
-
order: 1,
|
|
869
|
-
isLeaf: true,
|
|
870
|
-
position: 0,
|
|
871
|
-
subtreeSize: 0,
|
|
872
|
-
metrics: seedMetrics(1),
|
|
873
|
-
isFeatured: true,
|
|
874
|
-
isBrand: false,
|
|
875
|
-
seo: { title: "Pokémon TCG | LetItRip", description: "Buy Pokémon cards — booster packs, ETBs, singles, graded slabs.", keywords: ["pokemon tcg", "pokemon cards", "charizard", "pikachu card"] },
|
|
876
|
-
display: { icon: "⚡", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-pokemon-tcg-20260101/1200/600"), color: "#eab308", showInMenu: true, showInFooter: false },
|
|
877
|
-
isActive: true,
|
|
878
|
-
isSearchable: true,
|
|
879
|
-
showOnHomepage: false,
|
|
880
|
-
createdBy: "user-admin-letitrip",
|
|
881
|
-
createdAt: daysAgo(300),
|
|
882
|
-
updatedAt: daysAgo(1),
|
|
883
|
-
},
|
|
884
|
-
{
|
|
885
|
-
id: "category-one-piece-tcg",
|
|
886
|
-
slug: "category-one-piece-tcg",
|
|
887
|
-
name: "One Piece TCG",
|
|
888
|
-
description: "One Piece Card Game by Bandai — booster packs, starter decks, leaders, and special art cards.",
|
|
889
|
-
rootId: "category-trading-cards",
|
|
890
|
-
parentIds: ["category-trading-cards"],
|
|
891
|
-
childrenIds: [],
|
|
892
|
-
tier: 1,
|
|
893
|
-
path: "trading-cards/one-piece-tcg",
|
|
894
|
-
order: 2,
|
|
895
|
-
isLeaf: true,
|
|
896
|
-
position: 1,
|
|
897
|
-
subtreeSize: 0,
|
|
898
|
-
metrics: emptyMetrics,
|
|
899
|
-
isFeatured: false,
|
|
900
|
-
isBrand: false,
|
|
901
|
-
seo: { title: "One Piece TCG | LetItRip", description: "Buy One Piece trading cards — booster packs, starter decks, special art.", keywords: ["one piece tcg", "one piece cards", "bandai card game"] },
|
|
902
|
-
display: { icon: "🏴☠️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-one-piece-tcg-20260101/1200/600"), color: "#dc2626", showInMenu: true, showInFooter: false },
|
|
903
|
-
isActive: true,
|
|
904
|
-
isSearchable: true,
|
|
905
|
-
showOnHomepage: false,
|
|
906
|
-
createdBy: "user-admin-letitrip",
|
|
907
|
-
createdAt: daysAgo(300),
|
|
908
|
-
updatedAt: daysAgo(1),
|
|
909
|
-
},
|
|
910
|
-
{
|
|
911
|
-
id: "category-dragon-ball-tcg",
|
|
912
|
-
slug: "category-dragon-ball-tcg",
|
|
913
|
-
name: "Dragon Ball Super TCG",
|
|
914
|
-
description: "Dragon Ball Super Card Game — booster packs, starter decks, and tournament promos.",
|
|
915
|
-
rootId: "category-trading-cards",
|
|
916
|
-
parentIds: ["category-trading-cards"],
|
|
917
|
-
childrenIds: [],
|
|
918
|
-
tier: 1,
|
|
919
|
-
path: "trading-cards/dragon-ball-tcg",
|
|
920
|
-
order: 3,
|
|
921
|
-
isLeaf: true,
|
|
922
|
-
position: 2,
|
|
923
|
-
subtreeSize: 0,
|
|
924
|
-
metrics: emptyMetrics,
|
|
925
|
-
isFeatured: false,
|
|
926
|
-
isBrand: false,
|
|
927
|
-
seo: { title: "Dragon Ball Super TCG | LetItRip", description: "Buy Dragon Ball Super trading cards.", keywords: ["dragon ball tcg", "dbs card game", "bandai dragon ball"] },
|
|
928
|
-
display: { icon: "🐉", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-dragon-ball-tcg-20260101/1200/600"), color: "#f97316", showInMenu: true, showInFooter: false },
|
|
929
|
-
isActive: true,
|
|
930
|
-
isSearchable: true,
|
|
931
|
-
showOnHomepage: false,
|
|
932
|
-
createdBy: "user-admin-letitrip",
|
|
933
|
-
createdAt: daysAgo(300),
|
|
934
|
-
updatedAt: daysAgo(1),
|
|
935
|
-
},
|
|
936
|
-
{
|
|
937
|
-
id: "category-cardfight-vanguard",
|
|
938
|
-
slug: "category-cardfight-vanguard",
|
|
939
|
-
name: "Cardfight!! Vanguard",
|
|
940
|
-
description: "Cardfight!! Vanguard by Bushiroad — booster packs, trial decks, and premium collection cards.",
|
|
941
|
-
rootId: "category-trading-cards",
|
|
942
|
-
parentIds: ["category-trading-cards"],
|
|
943
|
-
childrenIds: [],
|
|
944
|
-
tier: 1,
|
|
945
|
-
path: "trading-cards/cardfight-vanguard",
|
|
946
|
-
order: 4,
|
|
947
|
-
isLeaf: true,
|
|
948
|
-
position: 3,
|
|
949
|
-
subtreeSize: 0,
|
|
950
|
-
metrics: emptyMetrics,
|
|
951
|
-
isFeatured: false,
|
|
952
|
-
isBrand: false,
|
|
953
|
-
seo: { title: "Cardfight!! Vanguard | LetItRip", description: "Buy Cardfight!! Vanguard cards by Bushiroad.", keywords: ["cardfight vanguard", "bushiroad tcg", "vanguard cards"] },
|
|
954
|
-
display: { icon: "⚔️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-cardfight-vanguard-20260101/1200/600"), color: "#2563eb", showInMenu: true, showInFooter: false },
|
|
955
|
-
isActive: true,
|
|
956
|
-
isSearchable: true,
|
|
957
|
-
showOnHomepage: false,
|
|
958
|
-
createdBy: "user-admin-letitrip",
|
|
959
|
-
createdAt: daysAgo(300),
|
|
960
|
-
updatedAt: daysAgo(1),
|
|
961
|
-
},
|
|
962
|
-
// ── ROOT 7: Action Figures ─────────────────────────────────────────────────
|
|
963
|
-
{
|
|
964
|
-
id: "category-action-figures",
|
|
965
|
-
slug: "category-action-figures",
|
|
966
|
-
name: "Action Figures",
|
|
967
|
-
description: "Collectible action figures — Gundam, Funko Pop, S.H.Figuarts, Nendoroid, Marvel Legends, NECA, McFarlane, and more.",
|
|
968
|
-
rootId: "category-action-figures",
|
|
969
|
-
parentIds: [],
|
|
970
|
-
childrenIds: ["category-gundam-figures", "category-funko-pop", "category-shf-figuarts", "category-nendoroid", "category-marvel-legends"],
|
|
971
|
-
tier: 0,
|
|
972
|
-
path: "action-figures",
|
|
973
|
-
order: 7,
|
|
974
|
-
isLeaf: false,
|
|
975
|
-
position: 0,
|
|
976
|
-
subtreeSize: 5,
|
|
977
|
-
metrics: emptyMetrics,
|
|
978
|
-
isFeatured: true,
|
|
979
|
-
featuredPriority: 7,
|
|
980
|
-
isBrand: false,
|
|
981
|
-
seo: { title: "Action Figures | LetItRip", description: "Buy collectible action figures — anime, Marvel, DC, and more.", keywords: ["action figures", "collectible figures", "anime figures", "funko pop"] },
|
|
982
|
-
display: { icon: "🦸", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-action-figures-20260101/1200/600"), color: "#dc2626", showInMenu: true, showInFooter: true },
|
|
983
|
-
isActive: true,
|
|
984
|
-
isSearchable: true,
|
|
985
|
-
showOnHomepage: true,
|
|
986
|
-
createdBy: "user-admin-letitrip",
|
|
987
|
-
createdAt: daysAgo(300),
|
|
988
|
-
updatedAt: daysAgo(1),
|
|
989
|
-
},
|
|
990
|
-
{
|
|
991
|
-
id: "category-gundam-figures",
|
|
992
|
-
slug: "category-gundam-figures",
|
|
993
|
-
name: "Gundam Figures",
|
|
994
|
-
description: "Pre-built Gundam action figures — Robot Spirits, Metal Build, GFFMC, and Universe series.",
|
|
995
|
-
rootId: "category-action-figures",
|
|
996
|
-
parentIds: ["category-action-figures"],
|
|
997
|
-
childrenIds: [],
|
|
998
|
-
tier: 1,
|
|
999
|
-
path: "action-figures/gundam-figures",
|
|
1000
|
-
order: 1,
|
|
1001
|
-
isLeaf: true,
|
|
1002
|
-
position: 0,
|
|
1003
|
-
subtreeSize: 0,
|
|
1004
|
-
metrics: emptyMetrics,
|
|
1005
|
-
isFeatured: false,
|
|
1006
|
-
isBrand: false,
|
|
1007
|
-
seo: { title: "Gundam Figures | LetItRip", description: "Buy Gundam action figures — Robot Spirits, Metal Build.", keywords: ["gundam figures", "robot spirits", "metal build gundam"] },
|
|
1008
|
-
display: { icon: "🤖", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-gundam-figures-20260101/1200/600"), color: "#1d4ed8", showInMenu: true, showInFooter: false },
|
|
1009
|
-
isActive: true,
|
|
1010
|
-
isSearchable: true,
|
|
1011
|
-
showOnHomepage: false,
|
|
1012
|
-
createdBy: "user-admin-letitrip",
|
|
1013
|
-
createdAt: daysAgo(300),
|
|
1014
|
-
updatedAt: daysAgo(1),
|
|
1015
|
-
},
|
|
1016
|
-
{
|
|
1017
|
-
id: "category-funko-pop",
|
|
1018
|
-
slug: "category-funko-pop",
|
|
1019
|
-
name: "Funko Pop!",
|
|
1020
|
-
description: "Funko Pop! vinyl figures — anime, Marvel, DC, Star Wars, Disney, and exclusive chase variants.",
|
|
1021
|
-
rootId: "category-action-figures",
|
|
1022
|
-
parentIds: ["category-action-figures"],
|
|
1023
|
-
childrenIds: [],
|
|
1024
|
-
tier: 1,
|
|
1025
|
-
path: "action-figures/funko-pop",
|
|
1026
|
-
order: 2,
|
|
1027
|
-
isLeaf: true,
|
|
1028
|
-
position: 1,
|
|
1029
|
-
subtreeSize: 0,
|
|
1030
|
-
metrics: emptyMetrics,
|
|
1031
|
-
isFeatured: true,
|
|
1032
|
-
isBrand: false,
|
|
1033
|
-
seo: { title: "Funko Pop! | LetItRip", description: "Buy Funko Pop! vinyl figures — anime, Marvel, DC, exclusive chases.", keywords: ["funko pop", "pop vinyl", "funko chase", "funko exclusive"] },
|
|
1034
|
-
display: { icon: "🎭", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-funko-pop-20260101/1200/600"), color: "#7c3aed", showInMenu: true, showInFooter: false },
|
|
1035
|
-
isActive: true,
|
|
1036
|
-
isSearchable: true,
|
|
1037
|
-
showOnHomepage: false,
|
|
1038
|
-
createdBy: "user-admin-letitrip",
|
|
1039
|
-
createdAt: daysAgo(300),
|
|
1040
|
-
updatedAt: daysAgo(1),
|
|
1041
|
-
},
|
|
1042
|
-
{
|
|
1043
|
-
id: "category-shf-figuarts",
|
|
1044
|
-
slug: "category-shf-figuarts",
|
|
1045
|
-
name: "S.H.Figuarts",
|
|
1046
|
-
description: "S.H.Figuarts by Bandai Tamashii Nations — Dragon Ball, Naruto, One Piece, Kamen Rider, and more.",
|
|
1047
|
-
rootId: "category-action-figures",
|
|
1048
|
-
parentIds: ["category-action-figures"],
|
|
1049
|
-
childrenIds: [],
|
|
1050
|
-
tier: 1,
|
|
1051
|
-
path: "action-figures/shf-figuarts",
|
|
1052
|
-
order: 3,
|
|
1053
|
-
isLeaf: true,
|
|
1054
|
-
position: 2,
|
|
1055
|
-
subtreeSize: 0,
|
|
1056
|
-
metrics: emptyMetrics,
|
|
1057
|
-
isFeatured: false,
|
|
1058
|
-
isBrand: false,
|
|
1059
|
-
seo: { title: "S.H.Figuarts | LetItRip", description: "Buy S.H.Figuarts figures by Tamashii Nations.", keywords: ["sh figuarts", "tamashii nations", "dragon ball figures", "naruto figures"] },
|
|
1060
|
-
display: { icon: "💪", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-shf-figuarts-20260101/1200/600"), color: "#0891b2", showInMenu: true, showInFooter: false },
|
|
1061
|
-
isActive: true,
|
|
1062
|
-
isSearchable: true,
|
|
1063
|
-
showOnHomepage: false,
|
|
1064
|
-
createdBy: "user-admin-letitrip",
|
|
1065
|
-
createdAt: daysAgo(300),
|
|
1066
|
-
updatedAt: daysAgo(1),
|
|
1067
|
-
},
|
|
1068
|
-
{
|
|
1069
|
-
id: "category-nendoroid",
|
|
1070
|
-
slug: "category-nendoroid",
|
|
1071
|
-
name: "Nendoroid",
|
|
1072
|
-
description: "Nendoroid by Good Smile Company — chibi-style poseable figures with interchangeable face plates and accessories.",
|
|
1073
|
-
rootId: "category-action-figures",
|
|
1074
|
-
parentIds: ["category-action-figures"],
|
|
1075
|
-
childrenIds: [],
|
|
1076
|
-
tier: 1,
|
|
1077
|
-
path: "action-figures/nendoroid",
|
|
1078
|
-
order: 4,
|
|
1079
|
-
isLeaf: true,
|
|
1080
|
-
position: 3,
|
|
1081
|
-
subtreeSize: 0,
|
|
1082
|
-
metrics: emptyMetrics,
|
|
1083
|
-
isFeatured: false,
|
|
1084
|
-
isBrand: false,
|
|
1085
|
-
seo: { title: "Nendoroid | LetItRip", description: "Buy Nendoroid figures by Good Smile Company.", keywords: ["nendoroid", "good smile company", "chibi figure", "nendoroid anime"] },
|
|
1086
|
-
display: { icon: "😊", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-nendoroid-20260101/1200/600"), color: "#ec4899", showInMenu: true, showInFooter: false },
|
|
1087
|
-
isActive: true,
|
|
1088
|
-
isSearchable: true,
|
|
1089
|
-
showOnHomepage: false,
|
|
1090
|
-
createdBy: "user-admin-letitrip",
|
|
1091
|
-
createdAt: daysAgo(300),
|
|
1092
|
-
updatedAt: daysAgo(1),
|
|
1093
|
-
},
|
|
1094
|
-
{
|
|
1095
|
-
id: "category-marvel-legends",
|
|
1096
|
-
slug: "category-marvel-legends",
|
|
1097
|
-
name: "Marvel Legends",
|
|
1098
|
-
description: "Marvel Legends by Hasbro — 6-inch scale Marvel action figures with Build-A-Figure parts.",
|
|
1099
|
-
rootId: "category-action-figures",
|
|
1100
|
-
parentIds: ["category-action-figures"],
|
|
1101
|
-
childrenIds: [],
|
|
1102
|
-
tier: 1,
|
|
1103
|
-
path: "action-figures/marvel-legends",
|
|
1104
|
-
order: 5,
|
|
1105
|
-
isLeaf: true,
|
|
1106
|
-
position: 4,
|
|
1107
|
-
subtreeSize: 0,
|
|
1108
|
-
metrics: emptyMetrics,
|
|
1109
|
-
isFeatured: false,
|
|
1110
|
-
isBrand: false,
|
|
1111
|
-
seo: { title: "Marvel Legends | LetItRip", description: "Buy Marvel Legends 6-inch figures by Hasbro.", keywords: ["marvel legends", "hasbro marvel", "build a figure", "marvel action figures"] },
|
|
1112
|
-
display: { icon: "🦸♂️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-marvel-legends-20260101/1200/600"), color: "#b91c1c", showInMenu: true, showInFooter: false },
|
|
1113
|
-
isActive: true,
|
|
1114
|
-
isSearchable: true,
|
|
1115
|
-
showOnHomepage: false,
|
|
1116
|
-
createdBy: "user-admin-letitrip",
|
|
1117
|
-
createdAt: daysAgo(300),
|
|
1118
|
-
updatedAt: daysAgo(1),
|
|
1119
|
-
},
|
|
1120
|
-
// ── ROOT 9: Spinning Tops ─────────────────────────────────────────────────
|
|
1121
|
-
{
|
|
1122
|
-
id: "category-spinning-tops",
|
|
1123
|
-
slug: "category-spinning-tops",
|
|
1124
|
-
name: "Spinning Tops",
|
|
1125
|
-
description: "Collectible spinning tops and battle systems — Beyblade X, Beyblade Burst, classic Metal Fight, and accessories.",
|
|
1126
|
-
rootId: "category-spinning-tops",
|
|
1127
|
-
parentIds: [],
|
|
1128
|
-
childrenIds: ["category-beyblade-x", "category-beyblade-burst", "category-beyblade-metal"],
|
|
1129
|
-
tier: 0,
|
|
1130
|
-
path: "spinning-tops",
|
|
1131
|
-
order: 9,
|
|
1132
|
-
isLeaf: false,
|
|
1133
|
-
position: 0,
|
|
1134
|
-
subtreeSize: 3,
|
|
1135
|
-
metrics: emptyMetrics,
|
|
1136
|
-
isFeatured: true,
|
|
1137
|
-
featuredPriority: 9,
|
|
1138
|
-
isBrand: false,
|
|
1139
|
-
seo: { title: "Spinning Tops | LetItRip", description: "Buy Beyblade and spinning tops — X, Burst, Metal Fight, and accessories.", keywords: ["beyblade", "spinning tops", "beyblade x", "beyblade burst"] },
|
|
1140
|
-
display: { icon: "🌀", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-spinning-tops-20260101/1200/600"), color: "#0891b2", showInMenu: true, showInFooter: true },
|
|
1141
|
-
isActive: true,
|
|
1142
|
-
isSearchable: true,
|
|
1143
|
-
showOnHomepage: true,
|
|
1144
|
-
createdBy: "user-admin-letitrip",
|
|
1145
|
-
createdAt: daysAgo(300),
|
|
1146
|
-
updatedAt: daysAgo(1),
|
|
1147
|
-
},
|
|
1148
|
-
{
|
|
1149
|
-
id: "category-beyblade-x",
|
|
1150
|
-
slug: "category-beyblade-x",
|
|
1151
|
-
name: "Beyblade X",
|
|
1152
|
-
description: "Beyblade X by Takara-Tomy — the latest generation with Xtreme Gear system, X Dash, and tournament-grade stadiums.",
|
|
1153
|
-
rootId: "category-spinning-tops",
|
|
1154
|
-
parentIds: ["category-spinning-tops"],
|
|
1155
|
-
childrenIds: [],
|
|
1156
|
-
tier: 1,
|
|
1157
|
-
path: "spinning-tops/beyblade-x",
|
|
1158
|
-
order: 1,
|
|
1159
|
-
isLeaf: true,
|
|
1160
|
-
position: 0,
|
|
1161
|
-
subtreeSize: 0,
|
|
1162
|
-
metrics: emptyMetrics,
|
|
1163
|
-
isFeatured: true,
|
|
1164
|
-
isBrand: false,
|
|
1165
|
-
seo: { title: "Beyblade X | LetItRip", description: "Buy Beyblade X tops and stadiums by Takara-Tomy.", keywords: ["beyblade x", "xtreme gear", "beyblade x starter", "takara tomy beyblade"] },
|
|
1166
|
-
display: { icon: "💫", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-beyblade-x-20260101/1200/600"), color: "#0d9488", showInMenu: true, showInFooter: false },
|
|
1167
|
-
isActive: true,
|
|
1168
|
-
isSearchable: true,
|
|
1169
|
-
showOnHomepage: false,
|
|
1170
|
-
createdBy: "user-admin-letitrip",
|
|
1171
|
-
createdAt: daysAgo(300),
|
|
1172
|
-
updatedAt: daysAgo(1),
|
|
1173
|
-
},
|
|
1174
|
-
{
|
|
1175
|
-
id: "category-beyblade-burst",
|
|
1176
|
-
slug: "category-beyblade-burst",
|
|
1177
|
-
name: "Beyblade Burst",
|
|
1178
|
-
description: "Beyblade Burst by Takara-Tomy/Hasbro — Burst system tops, launchers, and stadiums from all Burst sub-generations.",
|
|
1179
|
-
rootId: "category-spinning-tops",
|
|
1180
|
-
parentIds: ["category-spinning-tops"],
|
|
1181
|
-
childrenIds: [],
|
|
1182
|
-
tier: 1,
|
|
1183
|
-
path: "spinning-tops/beyblade-burst",
|
|
1184
|
-
order: 2,
|
|
1185
|
-
isLeaf: true,
|
|
1186
|
-
position: 1,
|
|
1187
|
-
subtreeSize: 0,
|
|
1188
|
-
metrics: emptyMetrics,
|
|
1189
|
-
isFeatured: false,
|
|
1190
|
-
isBrand: false,
|
|
1191
|
-
seo: { title: "Beyblade Burst | LetItRip", description: "Buy Beyblade Burst tops, launchers, and stadiums.", keywords: ["beyblade burst", "burst system", "beyblade burst pro"] },
|
|
1192
|
-
display: { icon: "💥", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-beyblade-burst-20260101/1200/600"), color: "#059669", showInMenu: true, showInFooter: false },
|
|
1193
|
-
isActive: true,
|
|
1194
|
-
isSearchable: true,
|
|
1195
|
-
showOnHomepage: false,
|
|
1196
|
-
createdBy: "user-admin-letitrip",
|
|
1197
|
-
createdAt: daysAgo(300),
|
|
1198
|
-
updatedAt: daysAgo(1),
|
|
1199
|
-
},
|
|
1200
|
-
{
|
|
1201
|
-
id: "category-beyblade-metal",
|
|
1202
|
-
slug: "category-beyblade-metal",
|
|
1203
|
-
name: "Beyblade Metal Fight",
|
|
1204
|
-
description: "Classic Beyblade Metal Fight series — Metal Fusion, Metal Masters, Metal Fury, and Zero-G. Highly collectible vintage tops.",
|
|
1205
|
-
rootId: "category-spinning-tops",
|
|
1206
|
-
parentIds: ["category-spinning-tops"],
|
|
1207
|
-
childrenIds: [],
|
|
1208
|
-
tier: 1,
|
|
1209
|
-
path: "spinning-tops/beyblade-metal",
|
|
1210
|
-
order: 3,
|
|
1211
|
-
isLeaf: true,
|
|
1212
|
-
position: 2,
|
|
1213
|
-
subtreeSize: 0,
|
|
1214
|
-
metrics: emptyMetrics,
|
|
1215
|
-
isFeatured: false,
|
|
1216
|
-
isBrand: false,
|
|
1217
|
-
seo: { title: "Beyblade Metal Fight | LetItRip", description: "Buy vintage Beyblade Metal Fight tops — Fusion, Masters, Fury.", keywords: ["beyblade metal fight", "metal fusion", "metal masters", "vintage beyblade"] },
|
|
1218
|
-
display: { icon: "⚙️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-beyblade-metal-20260101/1200/600"), color: "#64748b", showInMenu: true, showInFooter: false },
|
|
1219
|
-
isActive: true,
|
|
1220
|
-
isSearchable: true,
|
|
1221
|
-
showOnHomepage: false,
|
|
1222
|
-
createdBy: "user-admin-letitrip",
|
|
1223
|
-
createdAt: daysAgo(300),
|
|
1224
|
-
updatedAt: daysAgo(1),
|
|
1225
|
-
},
|
|
1226
|
-
// ── ROOT 10: Model Kits ────────────────────────────────────────────────────
|
|
1227
|
-
{
|
|
1228
|
-
id: "category-model-kits",
|
|
1229
|
-
slug: "category-model-kits",
|
|
1230
|
-
name: "Model Kits",
|
|
1231
|
-
description: "Plastic model kits for hobbyists — Gunpla, Frame Arms, 30 Minutes Missions, mecha, and military models.",
|
|
1232
|
-
rootId: "category-model-kits",
|
|
1233
|
-
parentIds: [],
|
|
1234
|
-
childrenIds: ["category-gunpla", "category-frame-arms", "category-30mm"],
|
|
1235
|
-
tier: 0,
|
|
1236
|
-
path: "model-kits",
|
|
1237
|
-
order: 10,
|
|
1238
|
-
isLeaf: false,
|
|
1239
|
-
position: 0,
|
|
1240
|
-
subtreeSize: 3,
|
|
1241
|
-
metrics: emptyMetrics,
|
|
1242
|
-
isFeatured: true,
|
|
1243
|
-
featuredPriority: 10,
|
|
1244
|
-
isBrand: false,
|
|
1245
|
-
seo: { title: "Model Kits | LetItRip", description: "Buy model kits — Gunpla, Frame Arms, 30 Minutes Missions, and more.", keywords: ["model kits", "gunpla", "plastic model", "bandai model kit"] },
|
|
1246
|
-
display: { icon: "🔧", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-model-kits-20260101/1200/600"), color: "#1e40af", showInMenu: true, showInFooter: true },
|
|
1247
|
-
isActive: true,
|
|
1248
|
-
isSearchable: true,
|
|
1249
|
-
showOnHomepage: true,
|
|
1250
|
-
createdBy: "user-admin-letitrip",
|
|
1251
|
-
createdAt: daysAgo(300),
|
|
1252
|
-
updatedAt: daysAgo(1),
|
|
1253
|
-
},
|
|
1254
|
-
{
|
|
1255
|
-
id: "category-gunpla",
|
|
1256
|
-
slug: "category-gunpla",
|
|
1257
|
-
name: "Gunpla (Gundam Model Kits)",
|
|
1258
|
-
description: "Gundam plastic models by Bandai — HG, RG, MG, PG, and SD grades. Japan's #1 hobby export.",
|
|
1259
|
-
rootId: "category-model-kits",
|
|
1260
|
-
parentIds: ["category-model-kits"],
|
|
1261
|
-
childrenIds: [],
|
|
1262
|
-
tier: 1,
|
|
1263
|
-
path: "model-kits/gunpla",
|
|
1264
|
-
order: 1,
|
|
1265
|
-
isLeaf: true,
|
|
1266
|
-
position: 0,
|
|
1267
|
-
subtreeSize: 0,
|
|
1268
|
-
metrics: emptyMetrics,
|
|
1269
|
-
isFeatured: true,
|
|
1270
|
-
isBrand: false,
|
|
1271
|
-
seo: { title: "Gunpla | LetItRip", description: "Buy Gundam model kits — HG, RG, MG, PG grades by Bandai.", keywords: ["gunpla", "gundam model kit", "master grade", "perfect grade", "bandai gunpla"] },
|
|
1272
|
-
display: { icon: "🤖", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-gunpla-20260101/1200/600"), color: "#1d4ed8", showInMenu: true, showInFooter: false },
|
|
1273
|
-
isActive: true,
|
|
1274
|
-
isSearchable: true,
|
|
1275
|
-
showOnHomepage: false,
|
|
1276
|
-
createdBy: "user-admin-letitrip",
|
|
1277
|
-
createdAt: daysAgo(300),
|
|
1278
|
-
updatedAt: daysAgo(1),
|
|
1279
|
-
},
|
|
1280
|
-
{
|
|
1281
|
-
id: "category-frame-arms",
|
|
1282
|
-
slug: "category-frame-arms",
|
|
1283
|
-
name: "Frame Arms / Frame Arms Girl",
|
|
1284
|
-
description: "Frame Arms by Kotobukiya — customizable mecha model kits and Frame Arms Girl humanoid kits.",
|
|
1285
|
-
rootId: "category-model-kits",
|
|
1286
|
-
parentIds: ["category-model-kits"],
|
|
1287
|
-
childrenIds: [],
|
|
1288
|
-
tier: 1,
|
|
1289
|
-
path: "model-kits/frame-arms",
|
|
1290
|
-
order: 2,
|
|
1291
|
-
isLeaf: true,
|
|
1292
|
-
position: 1,
|
|
1293
|
-
subtreeSize: 0,
|
|
1294
|
-
metrics: emptyMetrics,
|
|
1295
|
-
isFeatured: false,
|
|
1296
|
-
isBrand: false,
|
|
1297
|
-
seo: { title: "Frame Arms | LetItRip", description: "Buy Frame Arms and Frame Arms Girl kits by Kotobukiya.", keywords: ["frame arms", "kotobukiya model kit", "frame arms girl"] },
|
|
1298
|
-
display: { icon: "🛡️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-frame-arms-20260101/1200/600"), color: "#4338ca", showInMenu: true, showInFooter: false },
|
|
1299
|
-
isActive: true,
|
|
1300
|
-
isSearchable: true,
|
|
1301
|
-
showOnHomepage: false,
|
|
1302
|
-
createdBy: "user-admin-letitrip",
|
|
1303
|
-
createdAt: daysAgo(300),
|
|
1304
|
-
updatedAt: daysAgo(1),
|
|
1305
|
-
},
|
|
1306
|
-
{
|
|
1307
|
-
id: "category-30mm",
|
|
1308
|
-
slug: "category-30mm",
|
|
1309
|
-
name: "30 Minutes Missions",
|
|
1310
|
-
description: "30 Minutes Missions (30MM) by Bandai — beginner-friendly mecha kits designed for 30-minute builds with extensive customization.",
|
|
1311
|
-
rootId: "category-model-kits",
|
|
1312
|
-
parentIds: ["category-model-kits"],
|
|
1313
|
-
childrenIds: [],
|
|
1314
|
-
tier: 1,
|
|
1315
|
-
path: "model-kits/30mm",
|
|
1316
|
-
order: 3,
|
|
1317
|
-
isLeaf: true,
|
|
1318
|
-
position: 2,
|
|
1319
|
-
subtreeSize: 0,
|
|
1320
|
-
metrics: emptyMetrics,
|
|
1321
|
-
isFeatured: false,
|
|
1322
|
-
isBrand: false,
|
|
1323
|
-
seo: { title: "30 Minutes Missions | LetItRip", description: "Buy 30MM model kits by Bandai — beginner-friendly mecha builds.", keywords: ["30 minutes missions", "30mm", "bandai 30mm", "beginner model kit"] },
|
|
1324
|
-
display: { icon: "⏱️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-30mm-20260101/1200/600"), color: "#0f766e", showInMenu: true, showInFooter: false },
|
|
1325
|
-
isActive: true,
|
|
1326
|
-
isSearchable: true,
|
|
1327
|
-
showOnHomepage: false,
|
|
1328
|
-
createdBy: "user-admin-letitrip",
|
|
1329
|
-
createdAt: daysAgo(300),
|
|
1330
|
-
updatedAt: daysAgo(1),
|
|
1331
|
-
},
|
|
1332
|
-
// ── ROOT 11: Vintage & Rare ────────────────────────────────────────────────
|
|
1333
|
-
{
|
|
1334
|
-
id: "category-vintage-rare",
|
|
1335
|
-
slug: "category-vintage-rare",
|
|
1336
|
-
name: "Vintage & Rare",
|
|
1337
|
-
description: "Vintage and rare collectibles — retro toys, discontinued figures, first-edition cards, and antique memorabilia.",
|
|
1338
|
-
rootId: "category-vintage-rare",
|
|
1339
|
-
parentIds: [],
|
|
1340
|
-
childrenIds: ["category-retro-toys", "category-vintage-cards", "category-antique-memorabilia"],
|
|
1341
|
-
tier: 0,
|
|
1342
|
-
path: "vintage-rare",
|
|
1343
|
-
order: 11,
|
|
1344
|
-
isLeaf: false,
|
|
1345
|
-
position: 0,
|
|
1346
|
-
subtreeSize: 3,
|
|
1347
|
-
metrics: emptyMetrics,
|
|
1348
|
-
isFeatured: true,
|
|
1349
|
-
featuredPriority: 11,
|
|
1350
|
-
isBrand: false,
|
|
1351
|
-
seo: { title: "Vintage & Rare | LetItRip", description: "Buy vintage and rare collectibles — retro toys, first-edition cards, discontinued items.", keywords: ["vintage collectibles", "rare toys", "retro toys", "vintage cards", "antique collectibles"] },
|
|
1352
|
-
display: { icon: "🏺", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-vintage-rare-20260101/1200/600"), color: "#92400e", showInMenu: true, showInFooter: true },
|
|
1353
|
-
isActive: true,
|
|
1354
|
-
isSearchable: true,
|
|
1355
|
-
showOnHomepage: true,
|
|
1356
|
-
createdBy: "user-admin-letitrip",
|
|
1357
|
-
createdAt: daysAgo(300),
|
|
1358
|
-
updatedAt: daysAgo(1),
|
|
1359
|
-
},
|
|
1360
|
-
{
|
|
1361
|
-
id: "category-retro-toys",
|
|
1362
|
-
slug: "category-retro-toys",
|
|
1363
|
-
name: "Retro Toys",
|
|
1364
|
-
description: "Vintage and discontinued toys — 80s/90s action figures, original Transformers, G.I. Joe, He-Man, and more.",
|
|
1365
|
-
rootId: "category-vintage-rare",
|
|
1366
|
-
parentIds: ["category-vintage-rare"],
|
|
1367
|
-
childrenIds: [],
|
|
1368
|
-
tier: 1,
|
|
1369
|
-
path: "vintage-rare/retro-toys",
|
|
1370
|
-
order: 1,
|
|
1371
|
-
isLeaf: true,
|
|
1372
|
-
position: 0,
|
|
1373
|
-
subtreeSize: 0,
|
|
1374
|
-
metrics: emptyMetrics,
|
|
1375
|
-
isFeatured: false,
|
|
1376
|
-
isBrand: false,
|
|
1377
|
-
seo: { title: "Retro Toys | LetItRip", description: "Buy vintage 80s/90s action figures and toys.", keywords: ["retro toys", "vintage action figures", "80s toys", "90s toys"] },
|
|
1378
|
-
display: { icon: "🕹️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-retro-toys-20260101/1200/600"), color: "#78350f", showInMenu: true, showInFooter: false },
|
|
1379
|
-
isActive: true,
|
|
1380
|
-
isSearchable: true,
|
|
1381
|
-
showOnHomepage: false,
|
|
1382
|
-
createdBy: "user-admin-letitrip",
|
|
1383
|
-
createdAt: daysAgo(300),
|
|
1384
|
-
updatedAt: daysAgo(1),
|
|
1385
|
-
},
|
|
1386
|
-
{
|
|
1387
|
-
id: "category-vintage-cards",
|
|
1388
|
-
slug: "category-vintage-cards",
|
|
1389
|
-
name: "Vintage Cards",
|
|
1390
|
-
description: "Vintage trading cards from pre-2010 — 1st Edition Pokémon Base Set, early YGO, Magic: The Gathering Alpha/Beta, and sports cards.",
|
|
1391
|
-
rootId: "category-vintage-rare",
|
|
1392
|
-
parentIds: ["category-vintage-rare"],
|
|
1393
|
-
childrenIds: [],
|
|
1394
|
-
tier: 1,
|
|
1395
|
-
path: "vintage-rare/vintage-cards",
|
|
1396
|
-
order: 2,
|
|
1397
|
-
isLeaf: true,
|
|
1398
|
-
position: 1,
|
|
1399
|
-
subtreeSize: 0,
|
|
1400
|
-
metrics: emptyMetrics,
|
|
1401
|
-
isFeatured: false,
|
|
1402
|
-
isBrand: false,
|
|
1403
|
-
seo: { title: "Vintage Cards | LetItRip", description: "Buy vintage trading cards — 1st Edition Pokémon, early Yu-Gi-Oh!, classic MTG.", keywords: ["vintage cards", "1st edition pokemon", "alpha beta mtg", "vintage yugioh"] },
|
|
1404
|
-
display: { icon: "📜", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-vintage-cards-20260101/1200/600"), color: "#451a03", showInMenu: true, showInFooter: false },
|
|
1405
|
-
isActive: true,
|
|
1406
|
-
isSearchable: true,
|
|
1407
|
-
showOnHomepage: false,
|
|
1408
|
-
createdBy: "user-admin-letitrip",
|
|
1409
|
-
createdAt: daysAgo(300),
|
|
1410
|
-
updatedAt: daysAgo(1),
|
|
1411
|
-
},
|
|
1412
|
-
{
|
|
1413
|
-
id: "category-antique-memorabilia",
|
|
1414
|
-
slug: "category-antique-memorabilia",
|
|
1415
|
-
name: "Antique Memorabilia",
|
|
1416
|
-
description: "Antique and rare memorabilia — signed merchandise, production proofs, prototype toys, and one-of-a-kind collectibles.",
|
|
1417
|
-
rootId: "category-vintage-rare",
|
|
1418
|
-
parentIds: ["category-vintage-rare"],
|
|
1419
|
-
childrenIds: [],
|
|
1420
|
-
tier: 1,
|
|
1421
|
-
path: "vintage-rare/antique-memorabilia",
|
|
1422
|
-
order: 3,
|
|
1423
|
-
isLeaf: true,
|
|
1424
|
-
position: 2,
|
|
1425
|
-
subtreeSize: 0,
|
|
1426
|
-
metrics: emptyMetrics,
|
|
1427
|
-
isFeatured: false,
|
|
1428
|
-
isBrand: false,
|
|
1429
|
-
seo: { title: "Antique Memorabilia | LetItRip", description: "Buy rare memorabilia — signed items, prototypes, production proofs.", keywords: ["antique memorabilia", "signed collectibles", "prototype toys", "rare memorabilia"] },
|
|
1430
|
-
display: { icon: "🖼️", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-antique-memorabilia-20260101/1200/600"), color: "#292524", showInMenu: true, showInFooter: false },
|
|
1431
|
-
isActive: true,
|
|
1432
|
-
isSearchable: true,
|
|
1433
|
-
showOnHomepage: false,
|
|
1434
|
-
createdBy: "user-admin-letitrip",
|
|
1435
|
-
createdAt: daysAgo(300),
|
|
1436
|
-
updatedAt: daysAgo(1),
|
|
1437
|
-
},
|
|
1438
|
-
// ── SB-UNI-J: Digital Codes root + leaf ───────────────────────────────────
|
|
1439
|
-
{
|
|
1440
|
-
id: "category-digital-codes",
|
|
1441
|
-
slug: "category-digital-codes",
|
|
1442
|
-
name: "Digital Codes",
|
|
1443
|
-
description: "Instant-delivery digital redemption codes — game currency, DLC unlocks, subscription passes, and in-app purchases for Yu-Gi-Oh! digital platforms.",
|
|
1444
|
-
rootId: "category-digital-codes",
|
|
1445
|
-
parentIds: [],
|
|
1446
|
-
childrenIds: [],
|
|
1447
|
-
tier: 0,
|
|
1448
|
-
path: "digital-codes",
|
|
1449
|
-
order: 7,
|
|
1450
|
-
isLeaf: true,
|
|
1451
|
-
position: 0,
|
|
1452
|
-
subtreeSize: 0,
|
|
1453
|
-
metrics: seedMetrics(5),
|
|
1454
|
-
isFeatured: false,
|
|
1455
|
-
isBrand: false,
|
|
1456
|
-
seo: { title: "Digital Codes | LetItRip", description: "Buy Yu-Gi-Oh! digital codes — Master Duel gems, Duel Links gems, battle passes.", keywords: ["digital codes", "master duel gems", "duel links", "yugioh codes"] },
|
|
1457
|
-
display: { icon: "🔑", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-digital-codes-20260101/1200/600"), color: "#1e40af", showInMenu: true, showInFooter: false },
|
|
1458
|
-
isActive: true,
|
|
1459
|
-
isSearchable: true,
|
|
1460
|
-
showOnHomepage: false,
|
|
1461
|
-
createdBy: "user-admin-letitrip",
|
|
1462
|
-
createdAt: daysAgo(300),
|
|
1463
|
-
updatedAt: daysAgo(1),
|
|
1464
|
-
},
|
|
1465
|
-
// ── SB-UNI-K: Live Aquatics root + leaf ─────────────────────────────────
|
|
1466
|
-
{
|
|
1467
|
-
id: "category-live-aquatics",
|
|
1468
|
-
slug: "category-live-aquatics",
|
|
1469
|
-
name: "Live Aquatics",
|
|
1470
|
-
description: "Collectible live aquatic species — koi, bettas, axolotls, shrimp, and other aquarium inhabitants. All vendors verified, CITES-compliant, specialist shipping.",
|
|
1471
|
-
rootId: "category-live-aquatics",
|
|
1472
|
-
parentIds: [],
|
|
1473
|
-
childrenIds: [],
|
|
1474
|
-
tier: 0,
|
|
1475
|
-
path: "live-aquatics",
|
|
1476
|
-
order: 8,
|
|
1477
|
-
isLeaf: true,
|
|
1478
|
-
position: 0,
|
|
1479
|
-
subtreeSize: 0,
|
|
1480
|
-
metrics: emptyMetrics,
|
|
1481
|
-
isFeatured: false,
|
|
1482
|
-
isBrand: false,
|
|
1483
|
-
seo: { title: "Live Aquatics | LetItRip", description: "Buy collectible live aquatics — koi, bettas, axolotls. Verified vendors, specialist shipping.", keywords: ["live aquatics", "koi", "betta", "axolotl", "live fish"] },
|
|
1484
|
-
display: { icon: "🐟", coverImage: seedExtMedia("https://picsum.photos/seed/category-image-live-aquatics-20260101/1200/600"), color: "#0891b2", showInMenu: true, showInFooter: false },
|
|
1485
|
-
isActive: true,
|
|
1486
|
-
isSearchable: true,
|
|
1487
|
-
showOnHomepage: false,
|
|
1488
|
-
createdBy: "user-admin-letitrip",
|
|
1489
|
-
createdAt: daysAgo(300),
|
|
1490
|
-
updatedAt: daysAgo(1),
|
|
1491
|
-
},
|
|
1492
|
-
];
|
|
1493
|
-
// ──────────────────────────────────────────────────────────────────────────────
|
|
1494
|
-
// 25 Brands (SB-UNI-C: brands stored as categoryType:"brand")
|
|
1495
|
-
// ──────────────────────────────────────────────────────────────────────────────
|
|
1496
|
-
const brandRows = [
|
|
1497
|
-
{
|
|
1498
|
-
id: "brand-konami",
|
|
1499
|
-
slug: "brand-konami",
|
|
1500
|
-
name: "Konami",
|
|
1501
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1502
|
-
description: "Japanese entertainment conglomerate and the publisher of the Yu-Gi-Oh! Trading Card Game. Konami holds the master license for YGO and releases all official TCG/OCG product worldwide.",
|
|
1503
|
-
brandWebsite: "https://www.konami.com/yugioh",
|
|
1504
|
-
brandCountry: "Japan",
|
|
1505
|
-
brandFounded: 1969,
|
|
1506
|
-
brandBannerImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg"),
|
|
1507
|
-
rootId: "brand-konami",
|
|
1508
|
-
parentIds: [],
|
|
1509
|
-
tier: 0,
|
|
1510
|
-
path: "brand-konami",
|
|
1511
|
-
isLeaf: true,
|
|
1512
|
-
order: 1,
|
|
1513
|
-
display: { coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/small/46986414.jpg"), showInMenu: false, showInFooter: true },
|
|
1514
|
-
isFeatured: true,
|
|
1515
|
-
isBrand: true,
|
|
1516
|
-
isActive: true,
|
|
1517
|
-
isSearchable: true,
|
|
1518
|
-
createdBy: "user-admin-letitrip",
|
|
1519
|
-
createdAt: daysAgo(400),
|
|
1520
|
-
updatedAt: daysAgo(30),
|
|
1521
|
-
seo: { title: "Konami | LetItRip", description: "Official YGO TCG publisher. All Konami Yu-Gi-Oh! cards on LetItRip.", keywords: ["konami", "yugioh publisher", "ygo tcg"] },
|
|
1522
|
-
},
|
|
1523
|
-
{
|
|
1524
|
-
id: "brand-upper-deck",
|
|
1525
|
-
slug: "brand-upper-deck",
|
|
1526
|
-
name: "Upper Deck Entertainment",
|
|
1527
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1528
|
-
description: "Upper Deck Entertainment was the original North American distributor of Yu-Gi-Oh! TCG (2002–2008). Early LOB, MRD, PSV, and LON printings bear the Upper Deck license. Highly collectible.",
|
|
1529
|
-
brandWebsite: "https://www.upperdeck.com",
|
|
1530
|
-
brandCountry: "USA",
|
|
1531
|
-
brandFounded: 1988,
|
|
1532
|
-
brandBannerImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"),
|
|
1533
|
-
rootId: "brand-upper-deck",
|
|
1534
|
-
parentIds: [],
|
|
1535
|
-
tier: 0,
|
|
1536
|
-
path: "brand-upper-deck",
|
|
1537
|
-
isLeaf: true,
|
|
1538
|
-
order: 2,
|
|
1539
|
-
display: { coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/small/89631139.jpg"), showInMenu: false, showInFooter: true },
|
|
1540
|
-
isFeatured: false,
|
|
1541
|
-
isBrand: true,
|
|
1542
|
-
isActive: true,
|
|
1543
|
-
isSearchable: true,
|
|
1544
|
-
createdBy: "user-admin-letitrip",
|
|
1545
|
-
createdAt: daysAgo(400),
|
|
1546
|
-
updatedAt: daysAgo(30),
|
|
1547
|
-
seo: { title: "Upper Deck Entertainment | LetItRip", description: "Upper Deck early YGO printings — LOB, MRD, PSV, LON era cards.", keywords: ["upper deck", "upper deck yugioh", "early yugioh"] },
|
|
1548
|
-
},
|
|
1549
|
-
{
|
|
1550
|
-
id: "brand-bandai",
|
|
1551
|
-
slug: "brand-bandai",
|
|
1552
|
-
name: "Bandai",
|
|
1553
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1554
|
-
description: "Japan's leading toy manufacturer. Produced the original Bandai Yu-Gi-Oh! card game (1998) before the Konami TCG launched. Bandai YGO cards are extremely rare collectibles.",
|
|
1555
|
-
brandWebsite: "https://www.bandai.co.jp",
|
|
1556
|
-
brandCountry: "Japan",
|
|
1557
|
-
brandFounded: 1950,
|
|
1558
|
-
brandBannerImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/40640057.jpg"),
|
|
1559
|
-
rootId: "brand-bandai",
|
|
1560
|
-
parentIds: [],
|
|
1561
|
-
tier: 0,
|
|
1562
|
-
path: "brand-bandai",
|
|
1563
|
-
isLeaf: true,
|
|
1564
|
-
order: 3,
|
|
1565
|
-
display: { coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/small/40640057.jpg"), showInMenu: false, showInFooter: false },
|
|
1566
|
-
isFeatured: false,
|
|
1567
|
-
isBrand: true,
|
|
1568
|
-
isActive: true,
|
|
1569
|
-
isSearchable: true,
|
|
1570
|
-
createdBy: "user-admin-letitrip",
|
|
1571
|
-
createdAt: daysAgo(400),
|
|
1572
|
-
updatedAt: daysAgo(30),
|
|
1573
|
-
seo: { title: "Bandai | LetItRip", description: "Rare Bandai Yu-Gi-Oh! cards and merchandise.", keywords: ["bandai", "bandai yugioh", "original yugioh cards"] },
|
|
1574
|
-
},
|
|
1575
|
-
{
|
|
1576
|
-
id: "brand-toei-animation",
|
|
1577
|
-
slug: "brand-toei-animation",
|
|
1578
|
-
name: "Toei Animation",
|
|
1579
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1580
|
-
description: "Toei Animation produced the original 1998 YGO anime series. Toei-licensed merchandise — plushies, figures, and collectibles — are rare and highly sought after by Season 0 collectors.",
|
|
1581
|
-
brandWebsite: "https://www.toei-animation.co.jp",
|
|
1582
|
-
brandCountry: "Japan",
|
|
1583
|
-
brandFounded: 1956,
|
|
1584
|
-
brandBannerImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg"),
|
|
1585
|
-
rootId: "brand-toei-animation",
|
|
1586
|
-
parentIds: [],
|
|
1587
|
-
tier: 0,
|
|
1588
|
-
path: "brand-toei-animation",
|
|
1589
|
-
isLeaf: true,
|
|
1590
|
-
order: 4,
|
|
1591
|
-
display: { coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/small/46986414.jpg"), showInMenu: false, showInFooter: false },
|
|
1592
|
-
isFeatured: false,
|
|
1593
|
-
isBrand: true,
|
|
1594
|
-
isActive: true,
|
|
1595
|
-
isSearchable: true,
|
|
1596
|
-
createdBy: "user-admin-letitrip",
|
|
1597
|
-
createdAt: daysAgo(400),
|
|
1598
|
-
updatedAt: daysAgo(30),
|
|
1599
|
-
seo: { title: "Toei Animation | LetItRip", description: "Toei Animation YGO merchandise and collectibles.", keywords: ["toei animation", "yugioh anime merchandise", "season 0"] },
|
|
1600
|
-
},
|
|
1601
|
-
{
|
|
1602
|
-
id: "brand-score-entertainment",
|
|
1603
|
-
slug: "brand-score-entertainment",
|
|
1604
|
-
name: "Score Entertainment",
|
|
1605
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1606
|
-
description: "Score Entertainment distributed Yu-Gi-Oh! in some international markets during the early 2000s. Score-distributed printings of LOB and MRD are rare alternate editions.",
|
|
1607
|
-
brandWebsite: "https://www.score-entertainment.com",
|
|
1608
|
-
brandCountry: "USA",
|
|
1609
|
-
brandFounded: 1992,
|
|
1610
|
-
brandBannerImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg"),
|
|
1611
|
-
rootId: "brand-score-entertainment",
|
|
1612
|
-
parentIds: [],
|
|
1613
|
-
tier: 0,
|
|
1614
|
-
path: "brand-score-entertainment",
|
|
1615
|
-
isLeaf: true,
|
|
1616
|
-
order: 5,
|
|
1617
|
-
display: { coverImage: seedExtMedia("https://images.ygoprodeck.com/images/cards/small/89631139.jpg"), showInMenu: false, showInFooter: false },
|
|
1618
|
-
isFeatured: false,
|
|
1619
|
-
isBrand: true,
|
|
1620
|
-
isActive: true,
|
|
1621
|
-
isSearchable: true,
|
|
1622
|
-
createdBy: "user-admin-letitrip",
|
|
1623
|
-
createdAt: daysAgo(400),
|
|
1624
|
-
updatedAt: daysAgo(30),
|
|
1625
|
-
seo: { title: "Score Entertainment | LetItRip", description: "Score Entertainment distributed YGO printings.", keywords: ["score entertainment", "score yugioh"] },
|
|
1626
|
-
},
|
|
1627
|
-
// ── Broader collectibles brands ────────────────────────────────────────────
|
|
1628
|
-
{
|
|
1629
|
-
id: "brand-hasbro",
|
|
1630
|
-
slug: "brand-hasbro",
|
|
1631
|
-
name: "Hasbro",
|
|
1632
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1633
|
-
description: "American toy and entertainment giant. Makes Marvel Legends, Transformers, Beyblade (international), Nerf, and more. One of the world's largest toy companies.",
|
|
1634
|
-
brandWebsite: "https://www.hasbro.com",
|
|
1635
|
-
brandCountry: "USA",
|
|
1636
|
-
brandFounded: 1923,
|
|
1637
|
-
rootId: "brand-hasbro",
|
|
1638
|
-
parentIds: [],
|
|
1639
|
-
tier: 0,
|
|
1640
|
-
path: "brand-hasbro",
|
|
1641
|
-
isLeaf: true,
|
|
1642
|
-
order: 6,
|
|
1643
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-hasbro-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
1644
|
-
isFeatured: true,
|
|
1645
|
-
isBrand: true,
|
|
1646
|
-
isActive: true,
|
|
1647
|
-
isSearchable: true,
|
|
1648
|
-
createdBy: "user-admin-letitrip",
|
|
1649
|
-
createdAt: daysAgo(300),
|
|
1650
|
-
updatedAt: daysAgo(30),
|
|
1651
|
-
seo: { title: "Hasbro | LetItRip", description: "Shop Hasbro collectibles — Marvel Legends, Transformers, Beyblade.", keywords: ["hasbro", "hasbro toys", "marvel legends hasbro"] },
|
|
1652
|
-
},
|
|
1653
|
-
{
|
|
1654
|
-
id: "brand-takara-tomy",
|
|
1655
|
-
slug: "brand-takara-tomy",
|
|
1656
|
-
name: "Takara-Tomy",
|
|
1657
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1658
|
-
description: "Japanese toy company behind Beyblade, Tomica, Transformers (Japan), and Duel Masters. Known for premium quality and Japan-exclusive releases.",
|
|
1659
|
-
brandWebsite: "https://www.takaratomy.co.jp",
|
|
1660
|
-
brandCountry: "Japan",
|
|
1661
|
-
brandFounded: 2006,
|
|
1662
|
-
rootId: "brand-takara-tomy",
|
|
1663
|
-
parentIds: [],
|
|
1664
|
-
tier: 0,
|
|
1665
|
-
path: "brand-takara-tomy",
|
|
1666
|
-
isLeaf: true,
|
|
1667
|
-
order: 7,
|
|
1668
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-takara-tomy-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
1669
|
-
isFeatured: true,
|
|
1670
|
-
isBrand: true,
|
|
1671
|
-
isActive: true,
|
|
1672
|
-
isSearchable: true,
|
|
1673
|
-
createdBy: "user-admin-letitrip",
|
|
1674
|
-
createdAt: daysAgo(300),
|
|
1675
|
-
updatedAt: daysAgo(30),
|
|
1676
|
-
seo: { title: "Takara-Tomy | LetItRip", description: "Shop Takara-Tomy collectibles — Beyblade, Tomica, Transformers.", keywords: ["takara tomy", "takara tomy beyblade", "tomica takara"] },
|
|
1677
|
-
},
|
|
1678
|
-
{
|
|
1679
|
-
id: "brand-mattel",
|
|
1680
|
-
slug: "brand-mattel",
|
|
1681
|
-
name: "Mattel",
|
|
1682
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1683
|
-
description: "American toy corporation — parent of Hot Wheels, Matchbox, Barbie, Masters of the Universe, and UNO.",
|
|
1684
|
-
brandWebsite: "https://www.mattel.com",
|
|
1685
|
-
brandCountry: "USA",
|
|
1686
|
-
brandFounded: 1945,
|
|
1687
|
-
rootId: "brand-mattel",
|
|
1688
|
-
parentIds: [],
|
|
1689
|
-
tier: 0,
|
|
1690
|
-
path: "brand-mattel",
|
|
1691
|
-
isLeaf: true,
|
|
1692
|
-
order: 8,
|
|
1693
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-mattel-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
1694
|
-
isFeatured: true,
|
|
1695
|
-
isBrand: true,
|
|
1696
|
-
isActive: true,
|
|
1697
|
-
isSearchable: true,
|
|
1698
|
-
createdBy: "user-admin-letitrip",
|
|
1699
|
-
createdAt: daysAgo(300),
|
|
1700
|
-
updatedAt: daysAgo(30),
|
|
1701
|
-
seo: { title: "Mattel | LetItRip", description: "Shop Mattel collectibles — Hot Wheels, Matchbox, Masters of the Universe.", keywords: ["mattel", "hot wheels mattel", "matchbox mattel"] },
|
|
1702
|
-
},
|
|
1703
|
-
{
|
|
1704
|
-
id: "brand-pokemon-company",
|
|
1705
|
-
slug: "brand-pokemon-company",
|
|
1706
|
-
name: "The Pokémon Company",
|
|
1707
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1708
|
-
description: "Joint venture of Nintendo, Game Freak, and Creatures. Publishes the Pokémon TCG worldwide. Largest trading card game brand by revenue.",
|
|
1709
|
-
brandWebsite: "https://www.pokemon.com",
|
|
1710
|
-
brandCountry: "Japan",
|
|
1711
|
-
brandFounded: 1998,
|
|
1712
|
-
rootId: "brand-pokemon-company",
|
|
1713
|
-
parentIds: [],
|
|
1714
|
-
tier: 0,
|
|
1715
|
-
path: "brand-pokemon-company",
|
|
1716
|
-
isLeaf: true,
|
|
1717
|
-
order: 9,
|
|
1718
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-pokemon-company-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
1719
|
-
isFeatured: true,
|
|
1720
|
-
isBrand: true,
|
|
1721
|
-
isActive: true,
|
|
1722
|
-
isSearchable: true,
|
|
1723
|
-
createdBy: "user-admin-letitrip",
|
|
1724
|
-
createdAt: daysAgo(300),
|
|
1725
|
-
updatedAt: daysAgo(30),
|
|
1726
|
-
seo: { title: "The Pokémon Company | LetItRip", description: "Shop Pokémon TCG products from The Pokémon Company.", keywords: ["pokemon company", "pokemon tcg", "pikachu", "charizard"] },
|
|
1727
|
-
},
|
|
1728
|
-
{
|
|
1729
|
-
id: "brand-funko",
|
|
1730
|
-
slug: "brand-funko",
|
|
1731
|
-
name: "Funko",
|
|
1732
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1733
|
-
description: "American company known for Funko Pop! vinyl figures. Covers every major IP — anime, Marvel, DC, Disney, Star Wars, and more.",
|
|
1734
|
-
brandWebsite: "https://www.funko.com",
|
|
1735
|
-
brandCountry: "USA",
|
|
1736
|
-
brandFounded: 1998,
|
|
1737
|
-
rootId: "brand-funko",
|
|
1738
|
-
parentIds: [],
|
|
1739
|
-
tier: 0,
|
|
1740
|
-
path: "brand-funko",
|
|
1741
|
-
isLeaf: true,
|
|
1742
|
-
order: 10,
|
|
1743
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-funko-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
1744
|
-
isFeatured: true,
|
|
1745
|
-
isBrand: true,
|
|
1746
|
-
isActive: true,
|
|
1747
|
-
isSearchable: true,
|
|
1748
|
-
createdBy: "user-admin-letitrip",
|
|
1749
|
-
createdAt: daysAgo(300),
|
|
1750
|
-
updatedAt: daysAgo(30),
|
|
1751
|
-
seo: { title: "Funko | LetItRip", description: "Shop Funko Pop! vinyl figures — anime, Marvel, DC, Star Wars.", keywords: ["funko", "funko pop", "pop vinyl", "funko exclusive"] },
|
|
1752
|
-
},
|
|
1753
|
-
{
|
|
1754
|
-
id: "brand-neca",
|
|
1755
|
-
slug: "brand-neca",
|
|
1756
|
-
name: "NECA",
|
|
1757
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1758
|
-
description: "National Entertainment Collectibles Association. Premium 7-inch figures — horror, sci-fi, gaming, and TMNT lines.",
|
|
1759
|
-
brandWebsite: "https://www.necaonline.com",
|
|
1760
|
-
brandCountry: "USA",
|
|
1761
|
-
brandFounded: 1996,
|
|
1762
|
-
rootId: "brand-neca",
|
|
1763
|
-
parentIds: [],
|
|
1764
|
-
tier: 0,
|
|
1765
|
-
path: "brand-neca",
|
|
1766
|
-
isLeaf: true,
|
|
1767
|
-
order: 11,
|
|
1768
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-neca-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
1769
|
-
isFeatured: false,
|
|
1770
|
-
isBrand: true,
|
|
1771
|
-
isActive: true,
|
|
1772
|
-
isSearchable: true,
|
|
1773
|
-
createdBy: "user-admin-letitrip",
|
|
1774
|
-
createdAt: daysAgo(300),
|
|
1775
|
-
updatedAt: daysAgo(30),
|
|
1776
|
-
seo: { title: "NECA | LetItRip", description: "Shop NECA figures — horror, sci-fi, TMNT, and gaming collectibles.", keywords: ["neca", "neca figures", "neca tmnt", "neca horror"] },
|
|
1777
|
-
},
|
|
1778
|
-
{
|
|
1779
|
-
id: "brand-mcfarlane",
|
|
1780
|
-
slug: "brand-mcfarlane",
|
|
1781
|
-
name: "McFarlane Toys",
|
|
1782
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1783
|
-
description: "Founded by Todd McFarlane. Known for hyper-detailed DC Multiverse, Spawn, and sports figures.",
|
|
1784
|
-
brandWebsite: "https://mcfarlane.com",
|
|
1785
|
-
brandCountry: "USA",
|
|
1786
|
-
brandFounded: 1994,
|
|
1787
|
-
rootId: "brand-mcfarlane",
|
|
1788
|
-
parentIds: [],
|
|
1789
|
-
tier: 0,
|
|
1790
|
-
path: "brand-mcfarlane",
|
|
1791
|
-
isLeaf: true,
|
|
1792
|
-
order: 12,
|
|
1793
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-mcfarlane-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
1794
|
-
isFeatured: false,
|
|
1795
|
-
isBrand: true,
|
|
1796
|
-
isActive: true,
|
|
1797
|
-
isSearchable: true,
|
|
1798
|
-
createdBy: "user-admin-letitrip",
|
|
1799
|
-
createdAt: daysAgo(300),
|
|
1800
|
-
updatedAt: daysAgo(30),
|
|
1801
|
-
seo: { title: "McFarlane Toys | LetItRip", description: "Shop McFarlane Toys — DC Multiverse, Spawn, and sports figures.", keywords: ["mcfarlane toys", "dc multiverse", "spawn figure", "mcfarlane dc"] },
|
|
1802
|
-
},
|
|
1803
|
-
{
|
|
1804
|
-
id: "brand-good-smile",
|
|
1805
|
-
slug: "brand-good-smile",
|
|
1806
|
-
name: "Good Smile Company",
|
|
1807
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1808
|
-
description: "Japanese figure manufacturer. Makes Nendoroid, figma, and scale figures. The gold standard for anime collectible figures.",
|
|
1809
|
-
brandWebsite: "https://www.goodsmile.info",
|
|
1810
|
-
brandCountry: "Japan",
|
|
1811
|
-
brandFounded: 2001,
|
|
1812
|
-
rootId: "brand-good-smile",
|
|
1813
|
-
parentIds: [],
|
|
1814
|
-
tier: 0,
|
|
1815
|
-
path: "brand-good-smile",
|
|
1816
|
-
isLeaf: true,
|
|
1817
|
-
order: 13,
|
|
1818
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-good-smile-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
1819
|
-
isFeatured: true,
|
|
1820
|
-
isBrand: true,
|
|
1821
|
-
isActive: true,
|
|
1822
|
-
isSearchable: true,
|
|
1823
|
-
createdBy: "user-admin-letitrip",
|
|
1824
|
-
createdAt: daysAgo(300),
|
|
1825
|
-
updatedAt: daysAgo(30),
|
|
1826
|
-
seo: { title: "Good Smile Company | LetItRip", description: "Shop Good Smile Company — Nendoroid, figma, and scale figures.", keywords: ["good smile company", "nendoroid", "figma", "anime figures"] },
|
|
1827
|
-
},
|
|
1828
|
-
{
|
|
1829
|
-
id: "brand-beyblade",
|
|
1830
|
-
slug: "brand-beyblade",
|
|
1831
|
-
name: "Beyblade",
|
|
1832
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1833
|
-
description: "Spinning top battle franchise by Takara-Tomy (Japan) and Hasbro (international). Covers Metal Fight, Burst, and the latest Beyblade X generation.",
|
|
1834
|
-
brandWebsite: "https://beyblade.takaratomy.co.jp",
|
|
1835
|
-
brandCountry: "Japan",
|
|
1836
|
-
brandFounded: 1999,
|
|
1837
|
-
rootId: "brand-beyblade",
|
|
1838
|
-
parentIds: [],
|
|
1839
|
-
tier: 0,
|
|
1840
|
-
path: "brand-beyblade",
|
|
1841
|
-
isLeaf: true,
|
|
1842
|
-
order: 16,
|
|
1843
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-beyblade-20260101/800/800"), showInMenu: false, showInFooter: true },
|
|
1844
|
-
isFeatured: true,
|
|
1845
|
-
isBrand: true,
|
|
1846
|
-
isActive: true,
|
|
1847
|
-
isSearchable: true,
|
|
1848
|
-
createdBy: "user-admin-letitrip",
|
|
1849
|
-
createdAt: daysAgo(300),
|
|
1850
|
-
updatedAt: daysAgo(30),
|
|
1851
|
-
seo: { title: "Beyblade | LetItRip", description: "Shop Beyblade — X, Burst, Metal Fight tops and stadiums.", keywords: ["beyblade", "beyblade x", "beyblade burst", "spinning top battle"] },
|
|
1852
|
-
},
|
|
1853
|
-
{
|
|
1854
|
-
id: "brand-bushiroad",
|
|
1855
|
-
slug: "brand-bushiroad",
|
|
1856
|
-
name: "Bushiroad",
|
|
1857
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1858
|
-
description: "Japanese entertainment company. Publishes Cardfight!! Vanguard, Weiss Schwarz, and Future Card Buddyfight TCGs.",
|
|
1859
|
-
brandWebsite: "https://en.bushiroad.com",
|
|
1860
|
-
brandCountry: "Japan",
|
|
1861
|
-
brandFounded: 2007,
|
|
1862
|
-
rootId: "brand-bushiroad",
|
|
1863
|
-
parentIds: [],
|
|
1864
|
-
tier: 0,
|
|
1865
|
-
path: "brand-bushiroad",
|
|
1866
|
-
isLeaf: true,
|
|
1867
|
-
order: 17,
|
|
1868
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-bushiroad-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
1869
|
-
isFeatured: false,
|
|
1870
|
-
isBrand: true,
|
|
1871
|
-
isActive: true,
|
|
1872
|
-
isSearchable: true,
|
|
1873
|
-
createdBy: "user-admin-letitrip",
|
|
1874
|
-
createdAt: daysAgo(300),
|
|
1875
|
-
updatedAt: daysAgo(30),
|
|
1876
|
-
seo: { title: "Bushiroad | LetItRip", description: "Shop Bushiroad TCGs — Cardfight!! Vanguard, Weiss Schwarz.", keywords: ["bushiroad", "cardfight vanguard", "weiss schwarz"] },
|
|
1877
|
-
},
|
|
1878
|
-
{
|
|
1879
|
-
id: "brand-bandai-spirits",
|
|
1880
|
-
slug: "brand-bandai-spirits",
|
|
1881
|
-
name: "Bandai Spirits",
|
|
1882
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1883
|
-
description: "Bandai Namco subsidiary focused on collector-grade products. Makes Gunpla, S.H.Figuarts, Robot Spirits, and Chogokin.",
|
|
1884
|
-
brandWebsite: "https://www.bandaispirits.co.jp",
|
|
1885
|
-
brandCountry: "Japan",
|
|
1886
|
-
brandFounded: 2018,
|
|
1887
|
-
rootId: "brand-bandai-spirits",
|
|
1888
|
-
parentIds: [],
|
|
1889
|
-
tier: 0,
|
|
1890
|
-
path: "brand-bandai-spirits",
|
|
1891
|
-
isLeaf: true,
|
|
1892
|
-
order: 18,
|
|
1893
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-bandai-spirits-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
1894
|
-
isFeatured: false,
|
|
1895
|
-
isBrand: true,
|
|
1896
|
-
isActive: true,
|
|
1897
|
-
isSearchable: true,
|
|
1898
|
-
createdBy: "user-admin-letitrip",
|
|
1899
|
-
createdAt: daysAgo(300),
|
|
1900
|
-
updatedAt: daysAgo(30),
|
|
1901
|
-
seo: { title: "Bandai Spirits | LetItRip", description: "Shop Bandai Spirits — Gunpla, S.H.Figuarts, Robot Spirits.", keywords: ["bandai spirits", "gunpla bandai", "sh figuarts", "robot spirits"] },
|
|
1902
|
-
},
|
|
1903
|
-
{
|
|
1904
|
-
id: "brand-kotobukiya",
|
|
1905
|
-
slug: "brand-kotobukiya",
|
|
1906
|
-
name: "Kotobukiya",
|
|
1907
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1908
|
-
description: "Japanese manufacturer of model kits and figures. Known for Frame Arms, Bishoujo series, and ARTFX+ statues.",
|
|
1909
|
-
brandWebsite: "https://www.kotobukiya.co.jp",
|
|
1910
|
-
brandCountry: "Japan",
|
|
1911
|
-
brandFounded: 1953,
|
|
1912
|
-
rootId: "brand-kotobukiya",
|
|
1913
|
-
parentIds: [],
|
|
1914
|
-
tier: 0,
|
|
1915
|
-
path: "brand-kotobukiya",
|
|
1916
|
-
isLeaf: true,
|
|
1917
|
-
order: 19,
|
|
1918
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-kotobukiya-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
1919
|
-
isFeatured: false,
|
|
1920
|
-
isBrand: true,
|
|
221
|
+
isBrand: true,
|
|
1921
222
|
isActive: true,
|
|
1922
223
|
isSearchable: true,
|
|
1923
224
|
createdBy: "user-admin-letitrip",
|
|
1924
225
|
createdAt: daysAgo(300),
|
|
1925
226
|
updatedAt: daysAgo(30),
|
|
1926
|
-
seo: { title: "
|
|
1927
|
-
},
|
|
1928
|
-
{
|
|
1929
|
-
id: "brand-megahouse",
|
|
1930
|
-
slug: "brand-megahouse",
|
|
1931
|
-
name: "MegaHouse",
|
|
1932
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1933
|
-
description: "Bandai Namco subsidiary. Makes Portrait of Pirates (One Piece), Variable Action Heroes, and Lookup chibi figures.",
|
|
1934
|
-
brandWebsite: "https://www.megahobby.jp",
|
|
1935
|
-
brandCountry: "Japan",
|
|
1936
|
-
brandFounded: 1962,
|
|
1937
|
-
rootId: "brand-megahouse",
|
|
1938
|
-
parentIds: [],
|
|
1939
|
-
tier: 0,
|
|
1940
|
-
path: "brand-megahouse",
|
|
1941
|
-
isLeaf: true,
|
|
1942
|
-
order: 20,
|
|
1943
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-megahouse-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
1944
|
-
isFeatured: false,
|
|
1945
|
-
isBrand: true,
|
|
1946
|
-
isActive: true,
|
|
1947
|
-
isSearchable: true,
|
|
1948
|
-
createdBy: "user-admin-letitrip",
|
|
1949
|
-
createdAt: daysAgo(300),
|
|
1950
|
-
updatedAt: daysAgo(30),
|
|
1951
|
-
seo: { title: "MegaHouse | LetItRip", description: "Shop MegaHouse — Portrait of Pirates, Variable Action Heroes.", keywords: ["megahouse", "portrait of pirates", "variable action heroes"] },
|
|
1952
|
-
},
|
|
1953
|
-
{
|
|
1954
|
-
id: "brand-tamashii-nations",
|
|
1955
|
-
slug: "brand-tamashii-nations",
|
|
1956
|
-
name: "Tamashii Nations",
|
|
1957
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1958
|
-
description: "Bandai Spirits' premium collector brand. Produces S.H.Figuarts, Robot Spirits, Chogokin, and FiguartsZERO lines.",
|
|
1959
|
-
brandWebsite: "https://tamashiinations.com",
|
|
1960
|
-
brandCountry: "Japan",
|
|
1961
|
-
brandFounded: 2008,
|
|
1962
|
-
rootId: "brand-tamashii-nations",
|
|
1963
|
-
parentIds: [],
|
|
1964
|
-
tier: 0,
|
|
1965
|
-
path: "brand-tamashii-nations",
|
|
1966
|
-
isLeaf: true,
|
|
1967
|
-
order: 21,
|
|
1968
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-tamashii-nations-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
1969
|
-
isFeatured: false,
|
|
1970
|
-
isBrand: true,
|
|
1971
|
-
isActive: true,
|
|
1972
|
-
isSearchable: true,
|
|
1973
|
-
createdBy: "user-admin-letitrip",
|
|
1974
|
-
createdAt: daysAgo(300),
|
|
1975
|
-
updatedAt: daysAgo(30),
|
|
1976
|
-
seo: { title: "Tamashii Nations | LetItRip", description: "Shop Tamashii Nations — S.H.Figuarts, Chogokin, Robot Spirits.", keywords: ["tamashii nations", "figuarts", "chogokin", "robot spirits bandai"] },
|
|
1977
|
-
},
|
|
1978
|
-
{
|
|
1979
|
-
id: "brand-kaiyodo",
|
|
1980
|
-
slug: "brand-kaiyodo",
|
|
1981
|
-
name: "Kaiyodo",
|
|
1982
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1983
|
-
description: "Japanese figure company known for Revoltech action figures and museum-quality dinosaur/animal models.",
|
|
1984
|
-
brandWebsite: "https://kaiyodo.co.jp",
|
|
1985
|
-
brandCountry: "Japan",
|
|
1986
|
-
brandFounded: 1964,
|
|
1987
|
-
rootId: "brand-kaiyodo",
|
|
1988
|
-
parentIds: [],
|
|
1989
|
-
tier: 0,
|
|
1990
|
-
path: "brand-kaiyodo",
|
|
1991
|
-
isLeaf: true,
|
|
1992
|
-
order: 22,
|
|
1993
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-kaiyodo-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
1994
|
-
isFeatured: false,
|
|
1995
|
-
isBrand: true,
|
|
1996
|
-
isActive: true,
|
|
1997
|
-
isSearchable: true,
|
|
1998
|
-
createdBy: "user-admin-letitrip",
|
|
1999
|
-
createdAt: daysAgo(300),
|
|
2000
|
-
updatedAt: daysAgo(30),
|
|
2001
|
-
seo: { title: "Kaiyodo | LetItRip", description: "Shop Kaiyodo — Revoltech figures and museum models.", keywords: ["kaiyodo", "revoltech", "kaiyodo figures"] },
|
|
2002
|
-
},
|
|
2003
|
-
{
|
|
2004
|
-
id: "brand-medicom",
|
|
2005
|
-
slug: "brand-medicom",
|
|
2006
|
-
name: "Medicom Toy",
|
|
2007
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
2008
|
-
description: "Japanese company known for BE@RBRICK, MAFEX action figures, and RAH (Real Action Heroes). Designer toy icons.",
|
|
2009
|
-
brandWebsite: "https://www.medicomtoy.co.jp",
|
|
2010
|
-
brandCountry: "Japan",
|
|
2011
|
-
brandFounded: 1996,
|
|
2012
|
-
rootId: "brand-medicom",
|
|
2013
|
-
parentIds: [],
|
|
2014
|
-
tier: 0,
|
|
2015
|
-
path: "brand-medicom",
|
|
2016
|
-
isLeaf: true,
|
|
2017
|
-
order: 23,
|
|
2018
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-medicom-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
2019
|
-
isFeatured: false,
|
|
2020
|
-
isBrand: true,
|
|
2021
|
-
isActive: true,
|
|
2022
|
-
isSearchable: true,
|
|
2023
|
-
createdBy: "user-admin-letitrip",
|
|
2024
|
-
createdAt: daysAgo(300),
|
|
2025
|
-
updatedAt: daysAgo(30),
|
|
2026
|
-
seo: { title: "Medicom Toy | LetItRip", description: "Shop Medicom Toy — BE@RBRICK, MAFEX, and RAH figures.", keywords: ["medicom toy", "bearbrick", "mafex", "real action heroes"] },
|
|
2027
|
-
},
|
|
2028
|
-
{
|
|
2029
|
-
id: "brand-spin-master",
|
|
2030
|
-
slug: "brand-spin-master",
|
|
2031
|
-
name: "Spin Master",
|
|
2032
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
2033
|
-
description: "Canadian toy company. Makes Bakugan, PAW Patrol, Monster Jam, and DC Comics figures. Growing collectibles presence in India.",
|
|
2034
|
-
brandWebsite: "https://www.spinmaster.com",
|
|
2035
|
-
brandCountry: "Canada",
|
|
2036
|
-
brandFounded: 1994,
|
|
2037
|
-
rootId: "brand-spin-master",
|
|
2038
|
-
parentIds: [],
|
|
2039
|
-
tier: 0,
|
|
2040
|
-
path: "brand-spin-master",
|
|
2041
|
-
isLeaf: true,
|
|
2042
|
-
order: 24,
|
|
2043
|
-
display: { coverImage: seedExtMedia("https://picsum.photos/seed/brand-logo-spin-master-20260101/800/800"), showInMenu: false, showInFooter: false },
|
|
2044
|
-
isFeatured: false,
|
|
2045
|
-
isBrand: true,
|
|
2046
|
-
isActive: true,
|
|
2047
|
-
isSearchable: true,
|
|
2048
|
-
createdBy: "user-admin-letitrip",
|
|
2049
|
-
createdAt: daysAgo(300),
|
|
2050
|
-
updatedAt: daysAgo(30),
|
|
2051
|
-
seo: { title: "Spin Master | LetItRip", description: "Shop Spin Master — Bakugan, Monster Jam, DC Comics figures.", keywords: ["spin master", "bakugan", "monster jam", "spin master toys"] },
|
|
2052
|
-
},
|
|
2053
|
-
];
|
|
2054
|
-
const sublistingRows = [];
|
|
2055
|
-
// ──────────────────────────────────────────────────────────────────────────────
|
|
2056
|
-
// Bundles (SB-UNI-D: categoryType:"bundle"). Buy-flow loads these via
|
|
2057
|
-
// categoriesRepository.findBySlugAndType(slug, "bundle"). Member products
|
|
2058
|
-
// referenced via bundleProductIds.
|
|
2059
|
-
// ──────────────────────────────────────────────────────────────────────────────
|
|
2060
|
-
const YGO_CARD_IDS = {
|
|
2061
|
-
exodiaHead: 33396948,
|
|
2062
|
-
blueEyesWhiteDragon: 89631139,
|
|
2063
|
-
darkMagician: 46986414,
|
|
2064
|
-
elementalHeroNeos: 89943723,
|
|
2065
|
-
};
|
|
2066
|
-
const bundleRows = [
|
|
2067
|
-
{
|
|
2068
|
-
id: "bundle-exodia-complete-set",
|
|
2069
|
-
slug: "bundle-exodia-complete-set",
|
|
2070
|
-
name: "Exodia Complete Set — All 5 Pieces",
|
|
2071
|
-
description: "All 5 Exodia pieces (head + 4 limbs) bundled together.",
|
|
2072
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BUNDLE,
|
|
2073
|
-
bundleKind: "special",
|
|
2074
|
-
bundlePriceInPaise: 899900,
|
|
2075
|
-
bundleStockStatus: "in_stock",
|
|
2076
|
-
bundleProductIds: [],
|
|
2077
|
-
rootId: "bundle-exodia-complete-set",
|
|
2078
|
-
parentIds: [],
|
|
2079
|
-
tier: 0,
|
|
2080
|
-
path: "bundle-exodia-complete-set",
|
|
2081
|
-
isLeaf: true,
|
|
2082
|
-
order: 1,
|
|
2083
|
-
display: { coverImage: seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${YGO_CARD_IDS.exodiaHead}.jpg`), showInMenu: false, showInFooter: false },
|
|
2084
|
-
isFeatured: false,
|
|
2085
|
-
isBrand: false,
|
|
2086
|
-
isActive: true,
|
|
2087
|
-
isSearchable: true,
|
|
2088
|
-
createdBy: "user-admin-letitrip",
|
|
2089
|
-
createdByStoreId: "store-kaiba-corp-cards",
|
|
2090
|
-
createdByStoreName: "Kaiba Corp Card Vault",
|
|
2091
|
-
createdAt: daysAgo(30),
|
|
2092
|
-
updatedAt: daysAgo(2),
|
|
2093
|
-
seo: { title: "Exodia Complete Set | LetItRip", description: "All 5 Exodia pieces bundled together.", keywords: ["exodia", "yugioh bundle", "complete set"] },
|
|
2094
|
-
},
|
|
2095
|
-
{
|
|
2096
|
-
id: "bundle-three-blue-eyes",
|
|
2097
|
-
slug: "bundle-three-blue-eyes",
|
|
2098
|
-
name: "Blue-Eyes Trio",
|
|
2099
|
-
description: "3x Blue-Eyes White Dragon (SDK edition).",
|
|
2100
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BUNDLE,
|
|
2101
|
-
bundleKind: "special",
|
|
2102
|
-
bundlePriceInPaise: 899900,
|
|
2103
|
-
bundleStockStatus: "in_stock",
|
|
2104
|
-
bundleProductIds: [],
|
|
2105
|
-
rootId: "bundle-three-blue-eyes",
|
|
2106
|
-
parentIds: [],
|
|
2107
|
-
tier: 0,
|
|
2108
|
-
path: "bundle-three-blue-eyes",
|
|
2109
|
-
isLeaf: true,
|
|
2110
|
-
order: 2,
|
|
2111
|
-
display: { coverImage: seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${YGO_CARD_IDS.blueEyesWhiteDragon}.jpg`), showInMenu: false, showInFooter: false },
|
|
2112
|
-
isFeatured: false,
|
|
2113
|
-
isBrand: false,
|
|
2114
|
-
isActive: true,
|
|
2115
|
-
isSearchable: true,
|
|
2116
|
-
createdBy: "user-admin-letitrip",
|
|
2117
|
-
createdByStoreId: "store-kaiba-corp-cards",
|
|
2118
|
-
createdByStoreName: "Kaiba Corp Card Vault",
|
|
2119
|
-
createdAt: daysAgo(30),
|
|
2120
|
-
updatedAt: daysAgo(2),
|
|
2121
|
-
seo: { title: "Blue-Eyes Trio | LetItRip", description: "3x Blue-Eyes White Dragon SDK edition.", keywords: ["blue-eyes", "yugioh bundle", "sdk"] },
|
|
2122
|
-
},
|
|
2123
|
-
{
|
|
2124
|
-
id: "bundle-duelist-starter-kit",
|
|
2125
|
-
slug: "bundle-duelist-starter-kit",
|
|
2126
|
-
name: "Beginner Duelist Bundle",
|
|
2127
|
-
description: "Perfect starter kit: 2 decks + sleeves + deck box.",
|
|
2128
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BUNDLE,
|
|
2129
|
-
bundleKind: "special",
|
|
2130
|
-
bundlePriceInPaise: 499900,
|
|
2131
|
-
bundleStockStatus: "in_stock",
|
|
2132
|
-
bundleProductIds: [],
|
|
2133
|
-
rootId: "bundle-duelist-starter-kit",
|
|
2134
|
-
parentIds: [],
|
|
2135
|
-
tier: 0,
|
|
2136
|
-
path: "bundle-duelist-starter-kit",
|
|
2137
|
-
isLeaf: true,
|
|
2138
|
-
order: 3,
|
|
2139
|
-
display: { coverImage: seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${YGO_CARD_IDS.darkMagician}.jpg`), showInMenu: false, showInFooter: false },
|
|
2140
|
-
isFeatured: true,
|
|
2141
|
-
isBrand: false,
|
|
2142
|
-
isActive: true,
|
|
2143
|
-
isSearchable: true,
|
|
2144
|
-
createdBy: "user-admin-letitrip",
|
|
2145
|
-
createdByStoreId: "store-kaiba-corp-cards",
|
|
2146
|
-
createdByStoreName: "Kaiba Corp Card Vault",
|
|
2147
|
-
createdAt: daysAgo(30),
|
|
2148
|
-
updatedAt: daysAgo(2),
|
|
2149
|
-
seo: { title: "Beginner Duelist Bundle | LetItRip", description: "Starter kit: 2 decks + sleeves + deck box.", keywords: ["duelist starter", "yugioh bundle", "deck box"] },
|
|
2150
|
-
},
|
|
2151
|
-
{
|
|
2152
|
-
id: "bundle-gx-elemental-hero-fusion",
|
|
2153
|
-
slug: "bundle-gx-elemental-hero-fusion",
|
|
2154
|
-
name: "GX E-HERO Fusion Kit",
|
|
2155
|
-
description: "Complete E-HERO core: 4 fusion materials + polymerization.",
|
|
2156
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BUNDLE,
|
|
2157
|
-
bundleKind: "special",
|
|
2158
|
-
bundlePriceInPaise: 699900,
|
|
2159
|
-
bundleStockStatus: "in_stock",
|
|
2160
|
-
bundleProductIds: [],
|
|
2161
|
-
rootId: "bundle-gx-elemental-hero-fusion",
|
|
2162
|
-
parentIds: [],
|
|
2163
|
-
tier: 0,
|
|
2164
|
-
path: "bundle-gx-elemental-hero-fusion",
|
|
2165
|
-
isLeaf: true,
|
|
2166
|
-
order: 4,
|
|
2167
|
-
display: { coverImage: seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${YGO_CARD_IDS.elementalHeroNeos}.jpg`), showInMenu: false, showInFooter: false },
|
|
2168
|
-
isFeatured: false,
|
|
2169
|
-
isBrand: false,
|
|
2170
|
-
isActive: true,
|
|
2171
|
-
isSearchable: true,
|
|
2172
|
-
createdBy: "user-admin-letitrip",
|
|
2173
|
-
createdByStoreId: "store-kaiba-corp-cards",
|
|
2174
|
-
createdByStoreName: "Kaiba Corp Card Vault",
|
|
2175
|
-
createdAt: daysAgo(30),
|
|
2176
|
-
updatedAt: daysAgo(2),
|
|
2177
|
-
seo: { title: "GX E-HERO Fusion Kit | LetItRip", description: "E-HERO core: fusion materials + polymerization.", keywords: ["e-hero", "elemental hero", "fusion kit"] },
|
|
2178
|
-
},
|
|
2179
|
-
{
|
|
2180
|
-
id: "bundle-graded-showcase-collection",
|
|
2181
|
-
slug: "bundle-graded-showcase-collection",
|
|
2182
|
-
name: "Graded Showcase Set",
|
|
2183
|
-
description: "Curated graded card selection from top auctions.",
|
|
2184
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BUNDLE,
|
|
2185
|
-
bundleKind: "special",
|
|
2186
|
-
bundlePriceInPaise: 2499900,
|
|
2187
|
-
bundleStockStatus: "in_stock",
|
|
2188
|
-
bundleProductIds: [],
|
|
2189
|
-
rootId: "bundle-graded-showcase-collection",
|
|
2190
|
-
parentIds: [],
|
|
2191
|
-
tier: 0,
|
|
2192
|
-
path: "bundle-graded-showcase-collection",
|
|
2193
|
-
isLeaf: true,
|
|
2194
|
-
order: 5,
|
|
2195
|
-
display: { coverImage: seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${YGO_CARD_IDS.exodiaHead}.jpg`), showInMenu: false, showInFooter: false },
|
|
2196
|
-
isFeatured: true,
|
|
2197
|
-
isBrand: false,
|
|
2198
|
-
isActive: true,
|
|
2199
|
-
isSearchable: true,
|
|
2200
|
-
createdBy: "user-admin-letitrip",
|
|
2201
|
-
createdByStoreId: "store-kaiba-corp-cards",
|
|
2202
|
-
createdByStoreName: "Kaiba Corp Card Vault",
|
|
2203
|
-
createdAt: daysAgo(30),
|
|
2204
|
-
updatedAt: daysAgo(2),
|
|
2205
|
-
seo: { title: "Graded Showcase Set | LetItRip", description: "Curated graded card flagship bundle.", keywords: ["graded cards", "psa", "flagship bundle"] },
|
|
227
|
+
seo: { title: "Beyblade | LetItRip", description: "Shop Beyblade — Original, X, Burst, Metal Fight tops and stadiums.", keywords: ["beyblade", "beyblade x", "beyblade burst", "spinning top battle"] },
|
|
2206
228
|
},
|
|
2207
229
|
];
|
|
2208
230
|
export const categoriesSeedData = [
|
|
2209
231
|
...rawCategories.map((c) => ({ ancestors: [], ...c, createdByType: "admin" })),
|
|
2210
232
|
...sublistingRows.map((s) => ({ ancestors: [], ...s, createdByType: "admin" })),
|
|
2211
233
|
...brandRows.map((b) => ({ ancestors: [], ...b, createdByType: "admin" })),
|
|
2212
|
-
...bundleRows.map((bundle) => ({ ancestors: [], ...bundle, createdByType: "admin" })),
|
|
2213
234
|
];
|
|
2214
|
-
// P-1 default seed:
|
|
235
|
+
// P-1 default seed: identical to categoriesSeedData now that bundle rows have been removed.
|
|
2215
236
|
export const categoriesP1SeedData = [
|
|
2216
237
|
...rawCategories.map((c) => ({ ancestors: [], ...c, createdByType: "admin" })),
|
|
2217
238
|
...sublistingRows.map((s) => ({ ancestors: [], ...s, createdByType: "admin" })),
|