@mohasinac/appkit 2.7.53 → 2.7.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_internal/client/features/layout/DashboardLayoutClient.js +1 -1
- package/dist/_internal/server/jobs/core/auctionSettlement.js +6 -3
- package/dist/_internal/server/jobs/core/bundleStockSync.js +9 -7
- package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +12 -3
- package/dist/_internal/server/jobs/core/onProductStockChange.js +12 -13
- package/dist/_internal/server/jobs/core/onProductWrite.js +1 -3
- package/dist/_internal/server/jobs/handlers/onProductStockChange.js +11 -2
- package/dist/client.d.ts +2 -0
- package/dist/client.js +1 -0
- package/dist/constants/field-names.d.ts +4 -3
- package/dist/constants/field-names.js +8 -8
- package/dist/errors/error-codes.d.ts +3 -0
- package/dist/errors/error-codes.js +3 -0
- package/dist/errors/messages.d.ts +3 -0
- package/dist/errors/messages.js +3 -0
- package/dist/features/admin/types/product.types.d.ts +1 -1
- package/dist/features/admin/types/product.types.js +2 -3
- package/dist/features/auctions/actions/bid-actions.d.ts +9 -0
- package/dist/features/auctions/actions/bid-actions.js +61 -0
- package/dist/features/auctions/components/AuctionDetailPageView.d.ts +2 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +5 -4
- package/dist/features/auctions/components/PlaceBidFormClient.d.ts +3 -1
- package/dist/features/auctions/components/PlaceBidFormClient.js +32 -2
- package/dist/features/auctions/types/index.d.ts +1 -1
- package/dist/features/layout/AppLayoutShell.js +1 -1
- package/dist/features/pre-orders/components/PreOrdersIndexListing.js +2 -11
- package/dist/features/products/api/[id]/route.js +4 -8
- package/dist/features/products/api/route.js +1 -3
- package/dist/features/products/components/AuctionsIndexListing.js +3 -11
- package/dist/features/products/components/PrizeDrawsIndexListing.js +2 -10
- package/dist/features/products/components/ProductFilters.d.ts +33 -9
- package/dist/features/products/components/ProductFilters.js +6 -29
- package/dist/features/products/components/ProductForm.js +2 -3
- package/dist/features/products/constants/sieve.d.ts +162 -0
- package/dist/features/products/constants/sieve.js +95 -0
- package/dist/features/products/repository/products.repository.d.ts +5 -0
- package/dist/features/products/repository/products.repository.js +23 -3
- package/dist/features/products/schemas/firestore.d.ts +4 -4
- package/dist/features/products/schemas/firestore.js +2 -3
- package/dist/features/products/schemas/index.d.ts +6 -6
- package/dist/features/products/schemas/index.js +2 -6
- package/dist/features/products/types/index.d.ts +1 -1
- package/dist/features/seller/actions/offer-actions.js +2 -2
- package/dist/features/wishlist/types/index.d.ts +1 -1
- package/dist/index.d.ts +6 -3
- package/dist/index.js +6 -4
- package/dist/seed/addresses-seed-data.d.ts +2 -18
- package/dist/seed/addresses-seed-data.js +137 -203
- package/dist/seed/bids-seed-data.d.ts +2 -8
- package/dist/seed/bids-seed-data.js +172 -648
- package/dist/seed/blog-posts-seed-data.d.ts +0 -5
- package/dist/seed/blog-posts-seed-data.js +341 -596
- package/dist/seed/carousel-slides-seed-data.d.ts +0 -5
- package/dist/seed/carousel-slides-seed-data.js +61 -192
- package/dist/seed/carousels-seed-data.js +18 -1
- package/dist/seed/cart-seed-data.d.ts +1 -18
- package/dist/seed/cart-seed-data.js +116 -293
- package/dist/seed/categories-seed-data.d.ts +0 -6
- package/dist/seed/categories-seed-data.js +1409 -1537
- package/dist/seed/claimed-coupons-seed-data.d.ts +0 -11
- package/dist/seed/claimed-coupons-seed-data.js +32 -29
- package/dist/seed/conversations-seed-data.d.ts +0 -6
- package/dist/seed/conversations-seed-data.js +132 -280
- package/dist/seed/coupon-usage-seed-data.d.ts +0 -16
- package/dist/seed/coupon-usage-seed-data.js +30 -44
- package/dist/seed/coupons-seed-data.d.ts +0 -6
- package/dist/seed/coupons-seed-data.js +141 -489
- package/dist/seed/events-seed-data.d.ts +0 -6
- package/dist/seed/events-seed-data.js +201 -379
- package/dist/seed/faq-seed-data.d.ts +0 -14
- package/dist/seed/faq-seed-data.js +609 -1184
- package/dist/seed/grouped-listings-seed-data.d.ts +119 -8
- package/dist/seed/grouped-listings-seed-data.js +148 -233
- package/dist/seed/history-seed-data.d.ts +0 -7
- package/dist/seed/history-seed-data.js +50 -54
- package/dist/seed/homepage-sections-seed-data.d.ts +0 -5
- package/dist/seed/homepage-sections-seed-data.js +83 -175
- package/dist/seed/index.d.ts +1 -1
- package/dist/seed/index.js +1 -1
- package/dist/seed/manifest.js +2 -2
- package/dist/seed/notifications-seed-data.d.ts +0 -6
- package/dist/seed/notifications-seed-data.js +309 -196
- package/dist/seed/offers-seed-data.d.ts +0 -8
- package/dist/seed/offers-seed-data.js +118 -197
- package/dist/seed/orders-seed-data.d.ts +2 -8
- package/dist/seed/orders-seed-data.js +248 -1510
- package/dist/seed/payouts-seed-data.d.ts +0 -6
- package/dist/seed/payouts-seed-data.js +102 -441
- package/dist/seed/products-auctions-seed-data.d.ts +1 -14
- package/dist/seed/products-auctions-seed-data.js +612 -1084
- package/dist/seed/products-preorders-seed-data.d.ts +119 -14
- package/dist/seed/products-preorders-seed-data.js +154 -455
- package/dist/seed/products-standard-seed-data.d.ts +1 -15
- package/dist/seed/products-standard-seed-data.js +1355 -4128
- package/dist/seed/reviews-seed-data.d.ts +2 -8
- package/dist/seed/reviews-seed-data.js +99 -1182
- package/dist/seed/scammers-seed-data.d.ts +0 -15
- package/dist/seed/scammers-seed-data.js +36 -37
- package/dist/seed/sessions-seed-data.d.ts +0 -13
- package/dist/seed/sessions-seed-data.js +58 -335
- package/dist/seed/site-settings-seed-data.d.ts +0 -4
- package/dist/seed/site-settings-seed-data.js +61 -52
- package/dist/seed/store-addresses-seed-data.js +27 -151
- package/dist/seed/store-extensions-seed-data.d.ts +0 -7
- package/dist/seed/store-extensions-seed-data.js +147 -261
- package/dist/seed/stores-seed-data.d.ts +0 -5
- package/dist/seed/stores-seed-data.js +222 -184
- package/dist/seed/sub-listings-seed-data.d.ts +119 -0
- package/dist/seed/sub-listings-seed-data.js +447 -0
- package/dist/seed/support-tickets-seed-data.d.ts +0 -7
- package/dist/seed/support-tickets-seed-data.js +82 -75
- package/dist/seed/users-seed-data.d.ts +0 -5
- package/dist/seed/users-seed-data.js +279 -634
- package/dist/seed/wishlists-seed-data.d.ts +0 -9
- package/dist/seed/wishlists-seed-data.js +36 -52
- package/dist/seo/json-ld.js +6 -4
- package/dist/styles.css +8052 -3
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/search-tokens.d.ts +2 -0
- package/dist/utils/search-tokens.js +21 -0
- package/package.json +2 -2
- package/scripts/seed-cli.mjs +2 -2
|
@@ -1,8 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
1
|
+
/*
|
|
2
|
+
* WHY: Provides the full collectibles marketplace category hierarchy plus brand entries.
|
|
3
|
+
* WHAT: Exports categoriesSeedData combining 55+ categories (6 broad collectibles roots + YGO-specific
|
|
4
|
+
* sub-roots + leaves), 25 brands (categoryType:"brand"), and empty sublisting/bundle rows.
|
|
5
|
+
* Products tag BOTH a leaf category AND its root so array-contains queries work at
|
|
6
|
+
* both levels simultaneously.
|
|
7
|
+
*
|
|
8
|
+
* EXPORTS:
|
|
9
|
+
* categoriesSeedData — array of Partial<CategoryDocument> for the seed runner
|
|
10
|
+
*
|
|
11
|
+
* @tag domain:categories,brands
|
|
12
|
+
* @tag layer:seed
|
|
13
|
+
* @tag pattern:none
|
|
14
|
+
* @tag access:server-only
|
|
15
|
+
* @tag consumers:seed/runner.ts,SeedPanel
|
|
16
|
+
* @tag sideEffects:none
|
|
6
17
|
*/
|
|
7
18
|
import { CATEGORY_FIELDS } from "../constants/field-names";
|
|
8
19
|
const NOW = new Date();
|
|
@@ -17,27 +28,26 @@ const emptyMetrics = {
|
|
|
17
28
|
totalItemCount: 0,
|
|
18
29
|
lastUpdated: daysAgo(1),
|
|
19
30
|
};
|
|
31
|
+
// ──────────────────────────────────────────────────────────────────────────────
|
|
32
|
+
// Categories: 6 broad collectibles roots + YGO-specific sub-hierarchy + leaves
|
|
33
|
+
// ──────────────────────────────────────────────────────────────────────────────
|
|
20
34
|
const rawCategories = [
|
|
21
|
-
//
|
|
22
|
-
// ROOT 1: Action Figures & Statues (tier 0)
|
|
23
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
35
|
+
// ── ROOT 1: Singles ────────────────────────────────────────────────────────
|
|
24
36
|
{
|
|
25
|
-
id: "category-
|
|
26
|
-
slug: "category-
|
|
27
|
-
name: "
|
|
28
|
-
description: "
|
|
29
|
-
rootId: "category-
|
|
37
|
+
id: "category-singles",
|
|
38
|
+
slug: "category-singles",
|
|
39
|
+
name: "Singles",
|
|
40
|
+
description: "Individual Yu-Gi-Oh! cards — monsters, spells, traps, and extra deck cards sold separately.",
|
|
41
|
+
rootId: "category-singles",
|
|
30
42
|
parentIds: [],
|
|
31
43
|
childrenIds: [
|
|
32
|
-
"category-
|
|
33
|
-
"category-
|
|
34
|
-
"category-
|
|
35
|
-
"category-
|
|
36
|
-
"category-funko-pops",
|
|
37
|
-
"category-superhero-figures",
|
|
44
|
+
"category-monster-cards",
|
|
45
|
+
"category-spell-cards",
|
|
46
|
+
"category-trap-cards",
|
|
47
|
+
"category-extra-deck-cards",
|
|
38
48
|
],
|
|
39
49
|
tier: 0,
|
|
40
|
-
path: "
|
|
50
|
+
path: "singles",
|
|
41
51
|
order: 1,
|
|
42
52
|
isLeaf: false,
|
|
43
53
|
position: 0,
|
|
@@ -47,22 +57,15 @@ const rawCategories = [
|
|
|
47
57
|
featuredPriority: 1,
|
|
48
58
|
isBrand: false,
|
|
49
59
|
seo: {
|
|
50
|
-
title: "
|
|
51
|
-
description: "
|
|
52
|
-
keywords: [
|
|
53
|
-
|
|
54
|
-
"nendoroid",
|
|
55
|
-
"figma",
|
|
56
|
-
"scale figure",
|
|
57
|
-
"action figure",
|
|
58
|
-
"collectibles india",
|
|
59
|
-
],
|
|
60
|
-
ogImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=1200&h=630&fit=crop",
|
|
60
|
+
title: "Yu-Gi-Oh! Singles | LetItRip",
|
|
61
|
+
description: "Buy and sell individual Yu-Gi-Oh! cards — monsters, spells, traps, and extra deck cards. 1st Edition, unlimited, and graded slabs.",
|
|
62
|
+
keywords: ["yugioh singles", "ygo cards", "duel monsters", "trading cards india"],
|
|
63
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg",
|
|
61
64
|
},
|
|
62
65
|
display: {
|
|
63
|
-
icon: "
|
|
64
|
-
coverImage: "https://images.
|
|
65
|
-
color: "#
|
|
66
|
+
icon: "🃏",
|
|
67
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg",
|
|
68
|
+
color: "#7c3aed",
|
|
66
69
|
showInMenu: true,
|
|
67
70
|
showInFooter: true,
|
|
68
71
|
},
|
|
@@ -71,163 +74,190 @@ const rawCategories = [
|
|
|
71
74
|
showOnHomepage: true,
|
|
72
75
|
createdBy: "user-admin-letitrip",
|
|
73
76
|
createdAt: daysAgo(400),
|
|
74
|
-
updatedAt: daysAgo(
|
|
75
|
-
ancestors: [],
|
|
77
|
+
updatedAt: daysAgo(1),
|
|
76
78
|
},
|
|
77
|
-
// Action Figures > Nendoroids & Chibis (tier 1)
|
|
78
79
|
{
|
|
79
|
-
id: "category-
|
|
80
|
-
slug: "category-
|
|
81
|
-
name: "
|
|
82
|
-
description: "
|
|
83
|
-
rootId: "category-
|
|
84
|
-
parentIds: ["category-
|
|
80
|
+
id: "category-monster-cards",
|
|
81
|
+
slug: "category-monster-cards",
|
|
82
|
+
name: "Monster Cards",
|
|
83
|
+
description: "Effect monsters, normal monsters, ritual monsters, and boss monsters from across all YGO eras.",
|
|
84
|
+
rootId: "category-singles",
|
|
85
|
+
parentIds: ["category-singles"],
|
|
85
86
|
childrenIds: [],
|
|
86
87
|
tier: 1,
|
|
87
|
-
path: "
|
|
88
|
+
path: "singles/monster-cards",
|
|
88
89
|
order: 1,
|
|
89
90
|
isLeaf: true,
|
|
90
91
|
position: 0,
|
|
91
|
-
subtreeSize:
|
|
92
|
+
subtreeSize: 0,
|
|
92
93
|
metrics: emptyMetrics,
|
|
93
94
|
isFeatured: false,
|
|
94
95
|
isBrand: false,
|
|
95
96
|
seo: {
|
|
96
|
-
title: "
|
|
97
|
-
description: "
|
|
98
|
-
keywords: ["
|
|
97
|
+
title: "Monster Cards | Yu-Gi-Oh! Singles | LetItRip",
|
|
98
|
+
description: "Shop Yu-Gi-Oh! monster cards — Dark Magician, Blue-Eyes White Dragon, Jinzo, Gate Guardian, and more.",
|
|
99
|
+
keywords: ["monster cards", "dark magician", "blue-eyes white dragon", "yugioh monsters"],
|
|
100
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg",
|
|
99
101
|
},
|
|
100
102
|
display: {
|
|
101
|
-
icon: "
|
|
102
|
-
coverImage: "https://images.
|
|
103
|
+
icon: "⚔️",
|
|
104
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg",
|
|
105
|
+
color: "#dc2626",
|
|
103
106
|
showInMenu: true,
|
|
104
107
|
showInFooter: false,
|
|
105
108
|
},
|
|
106
109
|
isActive: true,
|
|
107
110
|
isSearchable: true,
|
|
108
|
-
|
|
111
|
+
showOnHomepage: false,
|
|
112
|
+
createdBy: "user-admin-letitrip",
|
|
109
113
|
createdAt: daysAgo(400),
|
|
110
|
-
updatedAt: daysAgo(
|
|
111
|
-
ancestors: [{ id: "category-action-figures", name: "Action Figures & Statues", tier: 0 }],
|
|
114
|
+
updatedAt: daysAgo(1),
|
|
112
115
|
},
|
|
113
|
-
// Action Figures > Scale Figures (tier 1)
|
|
114
116
|
{
|
|
115
|
-
id: "category-
|
|
116
|
-
slug: "category-
|
|
117
|
-
name: "
|
|
118
|
-
description: "
|
|
119
|
-
rootId: "category-
|
|
120
|
-
parentIds: ["category-
|
|
117
|
+
id: "category-spell-cards",
|
|
118
|
+
slug: "category-spell-cards",
|
|
119
|
+
name: "Spell / Magic Cards",
|
|
120
|
+
description: "Spell cards (Magic cards in early printings) — Pot of Greed, Raigeki, Monster Reborn, and more.",
|
|
121
|
+
rootId: "category-singles",
|
|
122
|
+
parentIds: ["category-singles"],
|
|
121
123
|
childrenIds: [],
|
|
122
124
|
tier: 1,
|
|
123
|
-
path: "
|
|
125
|
+
path: "singles/spell-cards",
|
|
124
126
|
order: 2,
|
|
125
127
|
isLeaf: true,
|
|
126
|
-
position:
|
|
127
|
-
subtreeSize:
|
|
128
|
+
position: 1,
|
|
129
|
+
subtreeSize: 0,
|
|
128
130
|
metrics: emptyMetrics,
|
|
129
|
-
isFeatured:
|
|
130
|
-
featuredPriority: 2,
|
|
131
|
+
isFeatured: false,
|
|
131
132
|
isBrand: false,
|
|
132
133
|
seo: {
|
|
133
|
-
title: "
|
|
134
|
-
description: "Shop
|
|
135
|
-
keywords: ["
|
|
134
|
+
title: "Spell Cards | Yu-Gi-Oh! Singles | LetItRip",
|
|
135
|
+
description: "Shop Yu-Gi-Oh! spell cards — Pot of Greed, Raigeki, Monster Reborn, Dark Hole, Change of Heart.",
|
|
136
|
+
keywords: ["spell cards", "magic cards", "pot of greed", "raigeki", "yugioh spells"],
|
|
137
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/55144522.jpg",
|
|
136
138
|
},
|
|
137
139
|
display: {
|
|
138
|
-
icon: "
|
|
139
|
-
coverImage: "https://images.
|
|
140
|
+
icon: "✨",
|
|
141
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/55144522.jpg",
|
|
142
|
+
color: "#059669",
|
|
140
143
|
showInMenu: true,
|
|
141
|
-
showInFooter:
|
|
144
|
+
showInFooter: false,
|
|
142
145
|
},
|
|
143
146
|
isActive: true,
|
|
144
147
|
isSearchable: true,
|
|
148
|
+
showOnHomepage: false,
|
|
145
149
|
createdBy: "user-admin-letitrip",
|
|
146
150
|
createdAt: daysAgo(400),
|
|
147
|
-
updatedAt: daysAgo(
|
|
148
|
-
ancestors: [{ id: "category-action-figures", name: "Action Figures & Statues", tier: 0 }],
|
|
151
|
+
updatedAt: daysAgo(1),
|
|
149
152
|
},
|
|
150
|
-
// Action Figures > Poseable Figures (tier 1)
|
|
151
153
|
{
|
|
152
|
-
id: "category-
|
|
153
|
-
slug: "category-
|
|
154
|
-
name: "
|
|
155
|
-
description: "
|
|
156
|
-
rootId: "category-
|
|
157
|
-
parentIds: ["category-
|
|
154
|
+
id: "category-trap-cards",
|
|
155
|
+
slug: "category-trap-cards",
|
|
156
|
+
name: "Trap Cards",
|
|
157
|
+
description: "Trap cards — Mirror Force, Call of the Haunted, Torrential Tribute, and the most sought-after trap staples.",
|
|
158
|
+
rootId: "category-singles",
|
|
159
|
+
parentIds: ["category-singles"],
|
|
158
160
|
childrenIds: [],
|
|
159
161
|
tier: 1,
|
|
160
|
-
path: "
|
|
162
|
+
path: "singles/trap-cards",
|
|
161
163
|
order: 3,
|
|
162
164
|
isLeaf: true,
|
|
163
|
-
position:
|
|
164
|
-
subtreeSize:
|
|
165
|
+
position: 2,
|
|
166
|
+
subtreeSize: 0,
|
|
165
167
|
metrics: emptyMetrics,
|
|
166
168
|
isFeatured: false,
|
|
167
169
|
isBrand: false,
|
|
168
170
|
seo: {
|
|
169
|
-
title: "
|
|
170
|
-
description: "Shop
|
|
171
|
-
keywords: ["
|
|
171
|
+
title: "Trap Cards | Yu-Gi-Oh! Singles | LetItRip",
|
|
172
|
+
description: "Shop Yu-Gi-Oh! trap cards — Mirror Force, Torrential Tribute, Call of the Haunted.",
|
|
173
|
+
keywords: ["trap cards", "mirror force", "torrential tribute", "yugioh traps"],
|
|
174
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/44095762.jpg",
|
|
172
175
|
},
|
|
173
176
|
display: {
|
|
174
|
-
icon: "
|
|
175
|
-
coverImage: "https://images.
|
|
177
|
+
icon: "🪤",
|
|
178
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/44095762.jpg",
|
|
179
|
+
color: "#9333ea",
|
|
176
180
|
showInMenu: true,
|
|
177
181
|
showInFooter: false,
|
|
178
182
|
},
|
|
179
183
|
isActive: true,
|
|
180
184
|
isSearchable: true,
|
|
185
|
+
showOnHomepage: false,
|
|
181
186
|
createdBy: "user-admin-letitrip",
|
|
182
187
|
createdAt: daysAgo(400),
|
|
183
|
-
updatedAt: daysAgo(
|
|
184
|
-
ancestors: [{ id: "category-action-figures", name: "Action Figures & Statues", tier: 0 }],
|
|
188
|
+
updatedAt: daysAgo(1),
|
|
185
189
|
},
|
|
186
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
187
|
-
// ROOT 2: Trading Cards (tier 0)
|
|
188
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
189
190
|
{
|
|
190
|
-
id: "category-
|
|
191
|
-
slug: "category-
|
|
192
|
-
name: "
|
|
193
|
-
description: "
|
|
194
|
-
rootId: "category-
|
|
191
|
+
id: "category-extra-deck-cards",
|
|
192
|
+
slug: "category-extra-deck-cards",
|
|
193
|
+
name: "Extra Deck Cards",
|
|
194
|
+
description: "Fusion, Synchro, and XYZ monsters — Blue-Eyes Ultimate Dragon, Elemental HERO Flame Wingman, Five-Headed Dragon.",
|
|
195
|
+
rootId: "category-singles",
|
|
196
|
+
parentIds: ["category-singles"],
|
|
197
|
+
childrenIds: [],
|
|
198
|
+
tier: 1,
|
|
199
|
+
path: "singles/extra-deck-cards",
|
|
200
|
+
order: 4,
|
|
201
|
+
isLeaf: true,
|
|
202
|
+
position: 3,
|
|
203
|
+
subtreeSize: 0,
|
|
204
|
+
metrics: emptyMetrics,
|
|
205
|
+
isFeatured: false,
|
|
206
|
+
isBrand: false,
|
|
207
|
+
seo: {
|
|
208
|
+
title: "Extra Deck Cards | Yu-Gi-Oh! Singles | LetItRip",
|
|
209
|
+
description: "Shop Yu-Gi-Oh! fusion monsters — Blue-Eyes Ultimate Dragon, Elemental HERO Flame Wingman, Five-Headed Dragon.",
|
|
210
|
+
keywords: ["fusion monsters", "extra deck", "blue-eyes ultimate dragon", "yugioh fusion"],
|
|
211
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/23995346.jpg",
|
|
212
|
+
},
|
|
213
|
+
display: {
|
|
214
|
+
icon: "🔀",
|
|
215
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/23995346.jpg",
|
|
216
|
+
color: "#ea580c",
|
|
217
|
+
showInMenu: true,
|
|
218
|
+
showInFooter: false,
|
|
219
|
+
},
|
|
220
|
+
isActive: true,
|
|
221
|
+
isSearchable: true,
|
|
222
|
+
showOnHomepage: false,
|
|
223
|
+
createdBy: "user-admin-letitrip",
|
|
224
|
+
createdAt: daysAgo(400),
|
|
225
|
+
updatedAt: daysAgo(1),
|
|
226
|
+
},
|
|
227
|
+
// ── ROOT 2: Sealed Products ────────────────────────────────────────────────
|
|
228
|
+
{
|
|
229
|
+
id: "category-sealed-products",
|
|
230
|
+
slug: "category-sealed-products",
|
|
231
|
+
name: "Sealed Products",
|
|
232
|
+
description: "Factory-sealed Yu-Gi-Oh! product — booster packs, booster boxes, collector tins, and starter/structure decks.",
|
|
233
|
+
rootId: "category-sealed-products",
|
|
195
234
|
parentIds: [],
|
|
196
235
|
childrenIds: [
|
|
197
|
-
"category-
|
|
198
|
-
"category-
|
|
199
|
-
"category-
|
|
200
|
-
"category-
|
|
201
|
-
"category-magic-cards",
|
|
202
|
-
"category-flesh-blood-cards",
|
|
236
|
+
"category-booster-packs",
|
|
237
|
+
"category-booster-boxes",
|
|
238
|
+
"category-collector-tins",
|
|
239
|
+
"category-starter-structure",
|
|
203
240
|
],
|
|
204
241
|
tier: 0,
|
|
205
|
-
path: "
|
|
242
|
+
path: "sealed-products",
|
|
206
243
|
order: 2,
|
|
207
244
|
isLeaf: false,
|
|
208
245
|
position: 0,
|
|
209
246
|
subtreeSize: 4,
|
|
210
247
|
metrics: emptyMetrics,
|
|
211
248
|
isFeatured: true,
|
|
212
|
-
featuredPriority:
|
|
249
|
+
featuredPriority: 2,
|
|
213
250
|
isBrand: false,
|
|
214
251
|
seo: {
|
|
215
|
-
title: "
|
|
216
|
-
description: "
|
|
217
|
-
keywords: [
|
|
218
|
-
|
|
219
|
-
"yugioh cards",
|
|
220
|
-
"trading cards india",
|
|
221
|
-
"booster pack",
|
|
222
|
-
"sealed box",
|
|
223
|
-
"graded cards",
|
|
224
|
-
],
|
|
225
|
-
ogImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=630&fit=crop",
|
|
252
|
+
title: "Sealed YGO Products | LetItRip",
|
|
253
|
+
description: "Buy factory-sealed Yu-Gi-Oh! booster packs, boxes, tins, and decks. Authentic, unweighed, unopened.",
|
|
254
|
+
keywords: ["sealed yugioh", "booster box", "starter deck", "collector tin", "yugioh sealed"],
|
|
255
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg",
|
|
226
256
|
},
|
|
227
257
|
display: {
|
|
228
|
-
icon: "
|
|
229
|
-
coverImage: "https://images.
|
|
230
|
-
color: "#
|
|
258
|
+
icon: "📦",
|
|
259
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg",
|
|
260
|
+
color: "#2563eb",
|
|
231
261
|
showInMenu: true,
|
|
232
262
|
showInFooter: true,
|
|
233
263
|
},
|
|
@@ -236,185 +266,146 @@ const rawCategories = [
|
|
|
236
266
|
showOnHomepage: true,
|
|
237
267
|
createdBy: "user-admin-letitrip",
|
|
238
268
|
createdAt: daysAgo(400),
|
|
239
|
-
updatedAt: daysAgo(
|
|
240
|
-
ancestors: [],
|
|
269
|
+
updatedAt: daysAgo(1),
|
|
241
270
|
},
|
|
242
|
-
// Trading Cards > Pokémon TCG (tier 1)
|
|
243
271
|
{
|
|
244
|
-
id: "category-
|
|
245
|
-
slug: "category-
|
|
246
|
-
name: "
|
|
247
|
-
description: "
|
|
248
|
-
rootId: "category-
|
|
249
|
-
parentIds: ["category-
|
|
272
|
+
id: "category-booster-packs",
|
|
273
|
+
slug: "category-booster-packs",
|
|
274
|
+
name: "Booster Packs",
|
|
275
|
+
description: "Individual booster packs — LOB, MRD, PSV, POTD, EEN, and more.",
|
|
276
|
+
rootId: "category-sealed-products",
|
|
277
|
+
parentIds: ["category-sealed-products"],
|
|
250
278
|
childrenIds: [],
|
|
251
279
|
tier: 1,
|
|
252
|
-
path: "
|
|
280
|
+
path: "sealed-products/booster-packs",
|
|
253
281
|
order: 1,
|
|
254
282
|
isLeaf: true,
|
|
255
283
|
position: 0,
|
|
256
|
-
subtreeSize:
|
|
284
|
+
subtreeSize: 0,
|
|
257
285
|
metrics: emptyMetrics,
|
|
258
|
-
isFeatured:
|
|
259
|
-
featuredPriority: 4,
|
|
286
|
+
isFeatured: false,
|
|
260
287
|
isBrand: false,
|
|
261
|
-
seo: {
|
|
262
|
-
|
|
263
|
-
description: "Shop Pokémon TCG booster packs, Elite Trainer Boxes, sealed boxes, and singles. Charizard ex, Pikachu VMAX, and more.",
|
|
264
|
-
keywords: [
|
|
265
|
-
"pokemon tcg",
|
|
266
|
-
"pokemon cards",
|
|
267
|
-
"booster pack",
|
|
268
|
-
"etb",
|
|
269
|
-
"charizard",
|
|
270
|
-
"pikachu vmax",
|
|
271
|
-
"psa graded",
|
|
272
|
-
],
|
|
273
|
-
},
|
|
274
|
-
display: {
|
|
275
|
-
icon: "⚡",
|
|
276
|
-
coverImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
|
|
277
|
-
color: "#fbbf24",
|
|
278
|
-
showInMenu: true,
|
|
279
|
-
showInFooter: true,
|
|
280
|
-
},
|
|
288
|
+
seo: { title: "Booster Packs | LetItRip", description: "Buy individual YGO booster packs.", keywords: ["booster pack", "yugioh pack"] },
|
|
289
|
+
display: { icon: "🎴", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg", color: "#1d4ed8", showInMenu: true, showInFooter: false },
|
|
281
290
|
isActive: true,
|
|
282
291
|
isSearchable: true,
|
|
283
|
-
|
|
292
|
+
showOnHomepage: false,
|
|
293
|
+
createdBy: "user-admin-letitrip",
|
|
284
294
|
createdAt: daysAgo(400),
|
|
285
|
-
updatedAt: daysAgo(
|
|
286
|
-
ancestors: [{ id: "category-trading-cards", name: "Trading Cards", tier: 0 }],
|
|
295
|
+
updatedAt: daysAgo(1),
|
|
287
296
|
},
|
|
288
|
-
// Trading Cards > Yu-Gi-Oh! TCG (tier 1)
|
|
289
297
|
{
|
|
290
|
-
id: "category-
|
|
291
|
-
slug: "category-
|
|
292
|
-
name: "
|
|
293
|
-
description: "
|
|
294
|
-
rootId: "category-
|
|
295
|
-
parentIds: ["category-
|
|
298
|
+
id: "category-booster-boxes",
|
|
299
|
+
slug: "category-booster-boxes",
|
|
300
|
+
name: "Booster Boxes",
|
|
301
|
+
description: "Full 24-pack booster boxes — the collector's preferred sealed investment.",
|
|
302
|
+
rootId: "category-sealed-products",
|
|
303
|
+
parentIds: ["category-sealed-products"],
|
|
296
304
|
childrenIds: [],
|
|
297
305
|
tier: 1,
|
|
298
|
-
path: "
|
|
306
|
+
path: "sealed-products/booster-boxes",
|
|
299
307
|
order: 2,
|
|
300
308
|
isLeaf: true,
|
|
301
|
-
position:
|
|
302
|
-
subtreeSize:
|
|
309
|
+
position: 1,
|
|
310
|
+
subtreeSize: 0,
|
|
303
311
|
metrics: emptyMetrics,
|
|
304
312
|
isFeatured: false,
|
|
305
313
|
isBrand: false,
|
|
306
|
-
seo: {
|
|
307
|
-
|
|
308
|
-
description: "Shop Yu-Gi-Oh! booster packs, structure decks, collector tins, and secret rare singles by Konami.",
|
|
309
|
-
keywords: [
|
|
310
|
-
"yugioh",
|
|
311
|
-
"yu-gi-oh cards",
|
|
312
|
-
"konami tcg",
|
|
313
|
-
"structure deck",
|
|
314
|
-
"secret rare",
|
|
315
|
-
"tournament cards",
|
|
316
|
-
],
|
|
317
|
-
},
|
|
318
|
-
display: {
|
|
319
|
-
icon: "🐉",
|
|
320
|
-
coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
321
|
-
showInMenu: true,
|
|
322
|
-
showInFooter: false,
|
|
323
|
-
},
|
|
314
|
+
seo: { title: "Booster Boxes | LetItRip", description: "Buy full YGO booster boxes (24 packs).", keywords: ["booster box", "yugioh box"] },
|
|
315
|
+
display: { icon: "📫", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg", color: "#1e40af", showInMenu: true, showInFooter: false },
|
|
324
316
|
isActive: true,
|
|
325
317
|
isSearchable: true,
|
|
326
|
-
|
|
318
|
+
showOnHomepage: false,
|
|
319
|
+
createdBy: "user-admin-letitrip",
|
|
327
320
|
createdAt: daysAgo(400),
|
|
328
|
-
updatedAt: daysAgo(
|
|
329
|
-
ancestors: [{ id: "category-trading-cards", name: "Trading Cards", tier: 0 }],
|
|
321
|
+
updatedAt: daysAgo(1),
|
|
330
322
|
},
|
|
331
|
-
// Trading Cards > Sealed Product (tier 1)
|
|
332
323
|
{
|
|
333
|
-
id: "category-
|
|
334
|
-
slug: "category-
|
|
335
|
-
name: "
|
|
336
|
-
description: "
|
|
337
|
-
rootId: "category-
|
|
338
|
-
parentIds: ["category-
|
|
324
|
+
id: "category-collector-tins",
|
|
325
|
+
slug: "category-collector-tins",
|
|
326
|
+
name: "Collector Tins",
|
|
327
|
+
description: "Collector tins containing promo cards and booster packs — 2002, 2004, 2005 series.",
|
|
328
|
+
rootId: "category-sealed-products",
|
|
329
|
+
parentIds: ["category-sealed-products"],
|
|
339
330
|
childrenIds: [],
|
|
340
331
|
tier: 1,
|
|
341
|
-
path: "
|
|
332
|
+
path: "sealed-products/collector-tins",
|
|
342
333
|
order: 3,
|
|
343
334
|
isLeaf: true,
|
|
344
|
-
position:
|
|
345
|
-
subtreeSize:
|
|
335
|
+
position: 2,
|
|
336
|
+
subtreeSize: 0,
|
|
346
337
|
metrics: emptyMetrics,
|
|
347
338
|
isFeatured: false,
|
|
348
339
|
isBrand: false,
|
|
349
|
-
seo: {
|
|
350
|
-
|
|
351
|
-
description: "Investment-grade sealed TCG product. Booster boxes, collector tins, and premium collections for Pokémon and Yu-Gi-Oh!.",
|
|
352
|
-
keywords: [
|
|
353
|
-
"sealed booster box",
|
|
354
|
-
"tcg investment",
|
|
355
|
-
"pokemon booster box",
|
|
356
|
-
"collector tin",
|
|
357
|
-
"first edition",
|
|
358
|
-
"sealed set",
|
|
359
|
-
],
|
|
360
|
-
},
|
|
361
|
-
display: {
|
|
362
|
-
icon: "📦",
|
|
363
|
-
coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
364
|
-
showInMenu: true,
|
|
365
|
-
showInFooter: false,
|
|
366
|
-
},
|
|
340
|
+
seo: { title: "Collector Tins | LetItRip", description: "Buy YGO collector tins with promo cards.", keywords: ["collector tin", "yugioh tin"] },
|
|
341
|
+
display: { icon: "🗳️", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg", color: "#1e3a8a", showInMenu: true, showInFooter: false },
|
|
367
342
|
isActive: true,
|
|
368
343
|
isSearchable: true,
|
|
344
|
+
showOnHomepage: false,
|
|
369
345
|
createdBy: "user-admin-letitrip",
|
|
370
346
|
createdAt: daysAgo(400),
|
|
371
|
-
updatedAt: daysAgo(
|
|
372
|
-
ancestors: [{ id: "category-trading-cards", name: "Trading Cards", tier: 0 }],
|
|
347
|
+
updatedAt: daysAgo(1),
|
|
373
348
|
},
|
|
374
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
375
|
-
// ROOT 3: Diecast & Vehicles (tier 0)
|
|
376
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
377
349
|
{
|
|
378
|
-
id: "category-
|
|
379
|
-
slug: "category-
|
|
380
|
-
name: "
|
|
381
|
-
description: "
|
|
382
|
-
rootId: "category-
|
|
350
|
+
id: "category-starter-structure",
|
|
351
|
+
slug: "category-starter-structure",
|
|
352
|
+
name: "Starters & Structure Decks",
|
|
353
|
+
description: "Starter decks and structure decks — Yugi, Kaiba, Joey, and GX starter sets.",
|
|
354
|
+
rootId: "category-sealed-products",
|
|
355
|
+
parentIds: ["category-sealed-products"],
|
|
356
|
+
childrenIds: [],
|
|
357
|
+
tier: 1,
|
|
358
|
+
path: "sealed-products/starter-structure",
|
|
359
|
+
order: 4,
|
|
360
|
+
isLeaf: true,
|
|
361
|
+
position: 3,
|
|
362
|
+
subtreeSize: 0,
|
|
363
|
+
metrics: emptyMetrics,
|
|
364
|
+
isFeatured: false,
|
|
365
|
+
isBrand: false,
|
|
366
|
+
seo: { title: "Starter & Structure Decks | LetItRip", description: "Buy YGO starter and structure decks.", keywords: ["starter deck", "structure deck", "yugioh deck"] },
|
|
367
|
+
display: { icon: "🗂️", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg", color: "#312e81", showInMenu: true, showInFooter: false },
|
|
368
|
+
isActive: true,
|
|
369
|
+
isSearchable: true,
|
|
370
|
+
showOnHomepage: false,
|
|
371
|
+
createdBy: "user-admin-letitrip",
|
|
372
|
+
createdAt: daysAgo(400),
|
|
373
|
+
updatedAt: daysAgo(1),
|
|
374
|
+
},
|
|
375
|
+
// ── ROOT 3: Graded Cards ───────────────────────────────────────────────────
|
|
376
|
+
{
|
|
377
|
+
id: "category-graded-cards",
|
|
378
|
+
slug: "category-graded-cards",
|
|
379
|
+
name: "Graded Cards",
|
|
380
|
+
description: "Professionally graded Yu-Gi-Oh! cards in sealed slabs — PSA, BGS, CGC grades from 1 to 10.",
|
|
381
|
+
rootId: "category-graded-cards",
|
|
383
382
|
parentIds: [],
|
|
384
383
|
childrenIds: [
|
|
385
|
-
"category-
|
|
386
|
-
"category-
|
|
387
|
-
"category-
|
|
388
|
-
"category-
|
|
389
|
-
"category-corgi-cars",
|
|
384
|
+
"category-psa-graded",
|
|
385
|
+
"category-bgs-graded",
|
|
386
|
+
"category-cgc-graded",
|
|
387
|
+
"category-raw-near-mint",
|
|
390
388
|
],
|
|
391
389
|
tier: 0,
|
|
392
|
-
path: "
|
|
390
|
+
path: "graded-cards",
|
|
393
391
|
order: 3,
|
|
394
392
|
isLeaf: false,
|
|
395
393
|
position: 0,
|
|
396
394
|
subtreeSize: 4,
|
|
397
395
|
metrics: emptyMetrics,
|
|
398
396
|
isFeatured: true,
|
|
399
|
-
featuredPriority:
|
|
397
|
+
featuredPriority: 3,
|
|
400
398
|
isBrand: false,
|
|
401
399
|
seo: {
|
|
402
|
-
title: "
|
|
403
|
-
description: "
|
|
404
|
-
keywords: [
|
|
405
|
-
|
|
406
|
-
"diecast cars",
|
|
407
|
-
"tomica",
|
|
408
|
-
"treasure hunt",
|
|
409
|
-
"car culture",
|
|
410
|
-
"1:64 scale",
|
|
411
|
-
],
|
|
412
|
-
ogImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=630&fit=crop",
|
|
400
|
+
title: "Graded YGO Cards | LetItRip",
|
|
401
|
+
description: "Buy and sell professionally graded Yu-Gi-Oh! cards in PSA, BGS, and CGC slabs.",
|
|
402
|
+
keywords: ["graded yugioh", "psa yugioh", "bgs yugioh", "cgc yugioh", "graded slab"],
|
|
403
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg",
|
|
413
404
|
},
|
|
414
405
|
display: {
|
|
415
|
-
icon: "
|
|
416
|
-
coverImage: "https://images.
|
|
417
|
-
color: "#
|
|
406
|
+
icon: "🏆",
|
|
407
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg",
|
|
408
|
+
color: "#ca8a04",
|
|
418
409
|
showInMenu: true,
|
|
419
410
|
showInFooter: true,
|
|
420
411
|
},
|
|
@@ -423,174 +414,146 @@ const rawCategories = [
|
|
|
423
414
|
showOnHomepage: true,
|
|
424
415
|
createdBy: "user-admin-letitrip",
|
|
425
416
|
createdAt: daysAgo(400),
|
|
426
|
-
updatedAt: daysAgo(
|
|
427
|
-
ancestors: [],
|
|
417
|
+
updatedAt: daysAgo(1),
|
|
428
418
|
},
|
|
429
|
-
// Diecast > Hot Wheels (tier 1)
|
|
430
419
|
{
|
|
431
|
-
id: "category-
|
|
432
|
-
slug: "category-
|
|
433
|
-
name: "
|
|
434
|
-
description: "
|
|
435
|
-
rootId: "category-
|
|
436
|
-
parentIds: ["category-
|
|
420
|
+
id: "category-psa-graded",
|
|
421
|
+
slug: "category-psa-graded",
|
|
422
|
+
name: "PSA Graded",
|
|
423
|
+
description: "Cards graded by Professional Sports Authenticator (PSA) — grades 1–10.",
|
|
424
|
+
rootId: "category-graded-cards",
|
|
425
|
+
parentIds: ["category-graded-cards"],
|
|
437
426
|
childrenIds: [],
|
|
438
427
|
tier: 1,
|
|
439
|
-
path: "
|
|
428
|
+
path: "graded-cards/psa-graded",
|
|
440
429
|
order: 1,
|
|
441
430
|
isLeaf: true,
|
|
442
431
|
position: 0,
|
|
443
|
-
subtreeSize:
|
|
432
|
+
subtreeSize: 0,
|
|
444
433
|
metrics: emptyMetrics,
|
|
445
|
-
isFeatured:
|
|
446
|
-
featuredPriority: 6,
|
|
434
|
+
isFeatured: false,
|
|
447
435
|
isBrand: false,
|
|
448
|
-
seo: {
|
|
449
|
-
|
|
450
|
-
description: "Shop Hot Wheels Mainline, Treasure Hunt, Super Treasure Hunt, Car Culture, and exclusive RLC sets.",
|
|
451
|
-
keywords: [
|
|
452
|
-
"hot wheels",
|
|
453
|
-
"treasure hunt",
|
|
454
|
-
"super treasure hunt",
|
|
455
|
-
"car culture",
|
|
456
|
-
"hot wheels india",
|
|
457
|
-
"rlc",
|
|
458
|
-
],
|
|
459
|
-
},
|
|
460
|
-
display: {
|
|
461
|
-
icon: "🔥",
|
|
462
|
-
coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
|
|
463
|
-
color: "#ef4444",
|
|
464
|
-
showInMenu: true,
|
|
465
|
-
showInFooter: true,
|
|
466
|
-
},
|
|
436
|
+
seo: { title: "PSA Graded YGO | LetItRip", description: "Shop PSA graded Yu-Gi-Oh! cards.", keywords: ["psa graded", "psa yugioh", "psa slab"] },
|
|
437
|
+
display: { icon: "🔵", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg", color: "#b45309", showInMenu: true, showInFooter: false },
|
|
467
438
|
isActive: true,
|
|
468
439
|
isSearchable: true,
|
|
469
|
-
|
|
440
|
+
showOnHomepage: false,
|
|
441
|
+
createdBy: "user-admin-letitrip",
|
|
470
442
|
createdAt: daysAgo(400),
|
|
471
|
-
updatedAt: daysAgo(
|
|
472
|
-
ancestors: [{ id: "category-diecast-vehicles", name: "Diecast & Vehicles", tier: 0 }],
|
|
443
|
+
updatedAt: daysAgo(1),
|
|
473
444
|
},
|
|
474
|
-
// Diecast > Tomica (tier 1)
|
|
475
445
|
{
|
|
476
|
-
id: "category-
|
|
477
|
-
slug: "category-
|
|
478
|
-
name: "
|
|
479
|
-
description: "
|
|
480
|
-
rootId: "category-
|
|
481
|
-
parentIds: ["category-
|
|
446
|
+
id: "category-bgs-graded",
|
|
447
|
+
slug: "category-bgs-graded",
|
|
448
|
+
name: "BGS / Beckett Graded",
|
|
449
|
+
description: "Cards graded by Beckett Grading Services (BGS/BCCG) — grades 1–10 with sub-grades.",
|
|
450
|
+
rootId: "category-graded-cards",
|
|
451
|
+
parentIds: ["category-graded-cards"],
|
|
482
452
|
childrenIds: [],
|
|
483
453
|
tier: 1,
|
|
484
|
-
path: "
|
|
454
|
+
path: "graded-cards/bgs-graded",
|
|
485
455
|
order: 2,
|
|
486
456
|
isLeaf: true,
|
|
487
|
-
position:
|
|
488
|
-
subtreeSize:
|
|
457
|
+
position: 1,
|
|
458
|
+
subtreeSize: 0,
|
|
489
459
|
metrics: emptyMetrics,
|
|
490
460
|
isFeatured: false,
|
|
491
461
|
isBrand: false,
|
|
492
|
-
seo: {
|
|
493
|
-
|
|
494
|
-
description: "Shop Tomica Standard, Tomica Premium, and Tomica Limited Vintage diecast cars by Takara Tomy.",
|
|
495
|
-
keywords: [
|
|
496
|
-
"tomica",
|
|
497
|
-
"tomica premium",
|
|
498
|
-
"tomica limited vintage",
|
|
499
|
-
"takara tomy",
|
|
500
|
-
"japanese diecast",
|
|
501
|
-
],
|
|
502
|
-
},
|
|
503
|
-
display: {
|
|
504
|
-
icon: "🚕",
|
|
505
|
-
coverImage: "https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
506
|
-
showInMenu: true,
|
|
507
|
-
showInFooter: false,
|
|
508
|
-
},
|
|
462
|
+
seo: { title: "BGS Graded YGO | LetItRip", description: "Shop BGS / Beckett graded Yu-Gi-Oh! cards.", keywords: ["bgs graded", "beckett yugioh", "bgs slab"] },
|
|
463
|
+
display: { icon: "🟡", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/38033121.jpg", color: "#92400e", showInMenu: true, showInFooter: false },
|
|
509
464
|
isActive: true,
|
|
510
465
|
isSearchable: true,
|
|
466
|
+
showOnHomepage: false,
|
|
511
467
|
createdBy: "user-admin-letitrip",
|
|
512
468
|
createdAt: daysAgo(400),
|
|
513
|
-
updatedAt: daysAgo(
|
|
514
|
-
ancestors: [{ id: "category-diecast-vehicles", name: "Diecast & Vehicles", tier: 0 }],
|
|
469
|
+
updatedAt: daysAgo(1),
|
|
515
470
|
},
|
|
516
|
-
// Diecast > Premium Diecast (tier 1)
|
|
517
471
|
{
|
|
518
|
-
id: "category-
|
|
519
|
-
slug: "category-
|
|
520
|
-
name: "
|
|
521
|
-
description: "
|
|
522
|
-
rootId: "category-
|
|
523
|
-
parentIds: ["category-
|
|
472
|
+
id: "category-cgc-graded",
|
|
473
|
+
slug: "category-cgc-graded",
|
|
474
|
+
name: "CGC Graded",
|
|
475
|
+
description: "Cards graded by Certified Guaranty Company (CGC) — grades 1–10.",
|
|
476
|
+
rootId: "category-graded-cards",
|
|
477
|
+
parentIds: ["category-graded-cards"],
|
|
524
478
|
childrenIds: [],
|
|
525
479
|
tier: 1,
|
|
526
|
-
path: "
|
|
480
|
+
path: "graded-cards/cgc-graded",
|
|
527
481
|
order: 3,
|
|
528
482
|
isLeaf: true,
|
|
529
|
-
position:
|
|
530
|
-
subtreeSize:
|
|
483
|
+
position: 2,
|
|
484
|
+
subtreeSize: 0,
|
|
531
485
|
metrics: emptyMetrics,
|
|
532
486
|
isFeatured: false,
|
|
533
487
|
isBrand: false,
|
|
534
|
-
seo: {
|
|
535
|
-
|
|
536
|
-
description: "Shop 1:18 and 1:43 scale premium diecast cars from Maisto, Kyosho, and AutoArt. F1 and supercar replicas.",
|
|
537
|
-
keywords: ["1:18 diecast", "premium diecast", "maisto", "kyosho", "autoart", "f1 car"],
|
|
538
|
-
},
|
|
539
|
-
display: {
|
|
540
|
-
icon: "🏎️",
|
|
541
|
-
coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
542
|
-
showInMenu: true,
|
|
543
|
-
showInFooter: false,
|
|
544
|
-
},
|
|
488
|
+
seo: { title: "CGC Graded YGO | LetItRip", description: "Shop CGC graded Yu-Gi-Oh! cards.", keywords: ["cgc graded", "cgc yugioh", "cgc slab"] },
|
|
489
|
+
display: { icon: "🟢", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/12580477.jpg", color: "#78350f", showInMenu: true, showInFooter: false },
|
|
545
490
|
isActive: true,
|
|
546
491
|
isSearchable: true,
|
|
492
|
+
showOnHomepage: false,
|
|
547
493
|
createdBy: "user-admin-letitrip",
|
|
548
494
|
createdAt: daysAgo(400),
|
|
549
|
-
updatedAt: daysAgo(
|
|
550
|
-
ancestors: [{ id: "category-diecast-vehicles", name: "Diecast & Vehicles", tier: 0 }],
|
|
495
|
+
updatedAt: daysAgo(1),
|
|
551
496
|
},
|
|
552
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
553
|
-
// ROOT 4: Spinning Tops (tier 0)
|
|
554
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
555
497
|
{
|
|
556
|
-
id: "category-
|
|
557
|
-
slug: "category-
|
|
558
|
-
name: "
|
|
559
|
-
description: "
|
|
560
|
-
rootId: "category-
|
|
498
|
+
id: "category-raw-near-mint",
|
|
499
|
+
slug: "category-raw-near-mint",
|
|
500
|
+
name: "Raw / Ungraded NM",
|
|
501
|
+
description: "Ungraded Near Mint / Mint condition cards — ready for grading or direct play.",
|
|
502
|
+
rootId: "category-graded-cards",
|
|
503
|
+
parentIds: ["category-graded-cards"],
|
|
504
|
+
childrenIds: [],
|
|
505
|
+
tier: 1,
|
|
506
|
+
path: "graded-cards/raw-near-mint",
|
|
507
|
+
order: 4,
|
|
508
|
+
isLeaf: true,
|
|
509
|
+
position: 3,
|
|
510
|
+
subtreeSize: 0,
|
|
511
|
+
metrics: emptyMetrics,
|
|
512
|
+
isFeatured: false,
|
|
513
|
+
isBrand: false,
|
|
514
|
+
seo: { title: "Raw NM YGO Cards | LetItRip", description: "Shop ungraded Near Mint Yu-Gi-Oh! cards.", keywords: ["raw nm", "near mint yugioh", "ungraded yugioh"] },
|
|
515
|
+
display: { icon: "📋", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg", color: "#451a03", showInMenu: true, showInFooter: false },
|
|
516
|
+
isActive: true,
|
|
517
|
+
isSearchable: true,
|
|
518
|
+
showOnHomepage: false,
|
|
519
|
+
createdBy: "user-admin-letitrip",
|
|
520
|
+
createdAt: daysAgo(400),
|
|
521
|
+
updatedAt: daysAgo(1),
|
|
522
|
+
},
|
|
523
|
+
// ── ROOT 4: Duel Monsters Era ──────────────────────────────────────────────
|
|
524
|
+
{
|
|
525
|
+
id: "category-duel-monsters-era",
|
|
526
|
+
slug: "category-duel-monsters-era",
|
|
527
|
+
name: "Duel Monsters Era",
|
|
528
|
+
description: "Classic Duel Monsters / Season 1 era sets — LOB, MRD, PSV, LON, and the original power cards.",
|
|
529
|
+
rootId: "category-duel-monsters-era",
|
|
561
530
|
parentIds: [],
|
|
562
531
|
childrenIds: [
|
|
563
|
-
"category-
|
|
564
|
-
"category-
|
|
565
|
-
"category-
|
|
532
|
+
"category-legend-of-blue-eyes",
|
|
533
|
+
"category-metal-raiders",
|
|
534
|
+
"category-pharaoh-servant",
|
|
535
|
+
"category-labyrinth-nightmare",
|
|
566
536
|
],
|
|
567
537
|
tier: 0,
|
|
568
|
-
path: "
|
|
538
|
+
path: "duel-monsters-era",
|
|
569
539
|
order: 4,
|
|
570
540
|
isLeaf: false,
|
|
571
541
|
position: 0,
|
|
572
542
|
subtreeSize: 4,
|
|
573
543
|
metrics: emptyMetrics,
|
|
574
544
|
isFeatured: true,
|
|
575
|
-
featuredPriority:
|
|
545
|
+
featuredPriority: 4,
|
|
576
546
|
isBrand: false,
|
|
577
547
|
seo: {
|
|
578
|
-
title: "
|
|
579
|
-
description: "Shop
|
|
580
|
-
keywords: [
|
|
581
|
-
|
|
582
|
-
"beyblade burst",
|
|
583
|
-
"beyblade x",
|
|
584
|
-
"metal fight",
|
|
585
|
-
"spinning top",
|
|
586
|
-
"takara tomy beyblade",
|
|
587
|
-
],
|
|
588
|
-
ogImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=1200&h=630&fit=crop",
|
|
548
|
+
title: "Duel Monsters Era YGO | LetItRip",
|
|
549
|
+
description: "Shop Duel Monsters era (Season 1) Yu-Gi-Oh! cards — LOB, MRD, PSV, LON sets.",
|
|
550
|
+
keywords: ["duel monsters era", "lob yugioh", "legend of blue eyes", "original yugioh"],
|
|
551
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg",
|
|
589
552
|
},
|
|
590
553
|
display: {
|
|
591
|
-
icon: "
|
|
592
|
-
coverImage: "https://images.
|
|
593
|
-
color: "#
|
|
554
|
+
icon: "⚡",
|
|
555
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg",
|
|
556
|
+
color: "#1d4ed8",
|
|
594
557
|
showInMenu: true,
|
|
595
558
|
showInFooter: true,
|
|
596
559
|
},
|
|
@@ -599,185 +562,146 @@ const rawCategories = [
|
|
|
599
562
|
showOnHomepage: true,
|
|
600
563
|
createdBy: "user-admin-letitrip",
|
|
601
564
|
createdAt: daysAgo(400),
|
|
602
|
-
updatedAt: daysAgo(
|
|
603
|
-
ancestors: [],
|
|
565
|
+
updatedAt: daysAgo(1),
|
|
604
566
|
},
|
|
605
|
-
// Spinning Tops > Beyblade Burst (tier 1)
|
|
606
567
|
{
|
|
607
|
-
id: "category-
|
|
608
|
-
slug: "category-
|
|
609
|
-
name: "
|
|
610
|
-
description: "
|
|
611
|
-
rootId: "category-
|
|
612
|
-
parentIds: ["category-
|
|
568
|
+
id: "category-legend-of-blue-eyes",
|
|
569
|
+
slug: "category-legend-of-blue-eyes",
|
|
570
|
+
name: "Legend of Blue Eyes (LOB)",
|
|
571
|
+
description: "Cards from the Legend of Blue Eyes White Dragon set — the first YGO TCG set released in the West.",
|
|
572
|
+
rootId: "category-duel-monsters-era",
|
|
573
|
+
parentIds: ["category-duel-monsters-era"],
|
|
613
574
|
childrenIds: [],
|
|
614
575
|
tier: 1,
|
|
615
|
-
path: "
|
|
576
|
+
path: "duel-monsters-era/legend-of-blue-eyes",
|
|
616
577
|
order: 1,
|
|
617
578
|
isLeaf: true,
|
|
618
579
|
position: 0,
|
|
619
|
-
subtreeSize:
|
|
580
|
+
subtreeSize: 0,
|
|
620
581
|
metrics: emptyMetrics,
|
|
621
|
-
isFeatured:
|
|
622
|
-
featuredPriority: 8,
|
|
582
|
+
isFeatured: false,
|
|
623
583
|
isBrand: false,
|
|
624
|
-
seo: {
|
|
625
|
-
|
|
626
|
-
description: "Shop Beyblade Burst series tops, launchers, and stadiums. GT, Rise, Sparking, and QuadStrike lines.",
|
|
627
|
-
keywords: [
|
|
628
|
-
"beyblade burst",
|
|
629
|
-
"burst gt",
|
|
630
|
-
"burst rise",
|
|
631
|
-
"burst sparking",
|
|
632
|
-
"quadstrike",
|
|
633
|
-
"beyblade combo",
|
|
634
|
-
],
|
|
635
|
-
},
|
|
636
|
-
display: {
|
|
637
|
-
icon: "💥",
|
|
638
|
-
coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
639
|
-
color: "#8b5cf6",
|
|
640
|
-
showInMenu: true,
|
|
641
|
-
showInFooter: true,
|
|
642
|
-
},
|
|
584
|
+
seo: { title: "LOB Cards | LetItRip", description: "Shop Legend of Blue Eyes White Dragon set cards.", keywords: ["lob", "legend of blue eyes", "lob 1st edition"] },
|
|
585
|
+
display: { icon: "👁️", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg", color: "#1e40af", showInMenu: true, showInFooter: false },
|
|
643
586
|
isActive: true,
|
|
644
587
|
isSearchable: true,
|
|
588
|
+
showOnHomepage: false,
|
|
645
589
|
createdBy: "user-admin-letitrip",
|
|
646
590
|
createdAt: daysAgo(400),
|
|
647
|
-
updatedAt: daysAgo(
|
|
648
|
-
ancestors: [{ id: "category-spinning-tops", name: "Spinning Tops", tier: 0 }],
|
|
591
|
+
updatedAt: daysAgo(1),
|
|
649
592
|
},
|
|
650
|
-
// Spinning Tops > Beyblade X (tier 1)
|
|
651
593
|
{
|
|
652
|
-
id: "category-
|
|
653
|
-
slug: "category-
|
|
654
|
-
name: "
|
|
655
|
-
description: "
|
|
656
|
-
rootId: "category-
|
|
657
|
-
parentIds: ["category-
|
|
594
|
+
id: "category-metal-raiders",
|
|
595
|
+
slug: "category-metal-raiders",
|
|
596
|
+
name: "Metal Raiders (MRD)",
|
|
597
|
+
description: "Cards from the Metal Raiders set — Mirror Force, Gate Guardian, Jinzo, and more.",
|
|
598
|
+
rootId: "category-duel-monsters-era",
|
|
599
|
+
parentIds: ["category-duel-monsters-era"],
|
|
658
600
|
childrenIds: [],
|
|
659
601
|
tier: 1,
|
|
660
|
-
path: "
|
|
602
|
+
path: "duel-monsters-era/metal-raiders",
|
|
661
603
|
order: 2,
|
|
662
604
|
isLeaf: true,
|
|
663
|
-
position:
|
|
664
|
-
subtreeSize:
|
|
605
|
+
position: 1,
|
|
606
|
+
subtreeSize: 0,
|
|
665
607
|
metrics: emptyMetrics,
|
|
666
|
-
isFeatured:
|
|
667
|
-
featuredPriority: 9,
|
|
608
|
+
isFeatured: false,
|
|
668
609
|
isBrand: false,
|
|
669
|
-
seo: {
|
|
670
|
-
|
|
671
|
-
description: "Shop Beyblade X generation tops, X-Line launchers, XStadium, and booster packs by Takara Tomy.",
|
|
672
|
-
keywords: [
|
|
673
|
-
"beyblade x",
|
|
674
|
-
"bx",
|
|
675
|
-
"extreme dash",
|
|
676
|
-
"xstadium",
|
|
677
|
-
"dran sword",
|
|
678
|
-
"takara tomy bx",
|
|
679
|
-
],
|
|
680
|
-
},
|
|
681
|
-
display: {
|
|
682
|
-
icon: "⚔️",
|
|
683
|
-
coverImage: "https://images.unsplash.com/photo-1612287230202-1ff1d85d1bdf?w=800&h=800&fit=crop",
|
|
684
|
-
color: "#e11d48",
|
|
685
|
-
showInMenu: true,
|
|
686
|
-
showInFooter: false,
|
|
687
|
-
},
|
|
610
|
+
seo: { title: "MRD Cards | LetItRip", description: "Shop Metal Raiders set cards.", keywords: ["mrd", "metal raiders", "mirror force"] },
|
|
611
|
+
display: { icon: "🔩", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/44095762.jpg", color: "#1e3a8a", showInMenu: true, showInFooter: false },
|
|
688
612
|
isActive: true,
|
|
689
613
|
isSearchable: true,
|
|
690
|
-
|
|
614
|
+
showOnHomepage: false,
|
|
615
|
+
createdBy: "user-admin-letitrip",
|
|
691
616
|
createdAt: daysAgo(400),
|
|
692
|
-
updatedAt: daysAgo(
|
|
693
|
-
ancestors: [{ id: "category-spinning-tops", name: "Spinning Tops", tier: 0 }],
|
|
617
|
+
updatedAt: daysAgo(1),
|
|
694
618
|
},
|
|
695
|
-
// Spinning Tops > Metal Fight Classic (tier 1)
|
|
696
619
|
{
|
|
697
|
-
id: "category-
|
|
698
|
-
slug: "category-
|
|
699
|
-
name: "
|
|
700
|
-
description: "
|
|
701
|
-
rootId: "category-
|
|
702
|
-
parentIds: ["category-
|
|
620
|
+
id: "category-pharaoh-servant",
|
|
621
|
+
slug: "category-pharaoh-servant",
|
|
622
|
+
name: "Pharaoh's Servant (PSV)",
|
|
623
|
+
description: "Cards from the Pharaoh's Servant set — Jinzo, MST, and classic PSV staples.",
|
|
624
|
+
rootId: "category-duel-monsters-era",
|
|
625
|
+
parentIds: ["category-duel-monsters-era"],
|
|
703
626
|
childrenIds: [],
|
|
704
627
|
tier: 1,
|
|
705
|
-
path: "
|
|
628
|
+
path: "duel-monsters-era/pharaoh-servant",
|
|
706
629
|
order: 3,
|
|
707
630
|
isLeaf: true,
|
|
708
|
-
position:
|
|
709
|
-
subtreeSize:
|
|
631
|
+
position: 2,
|
|
632
|
+
subtreeSize: 0,
|
|
710
633
|
metrics: emptyMetrics,
|
|
711
634
|
isFeatured: false,
|
|
712
635
|
isBrand: false,
|
|
713
|
-
seo: {
|
|
714
|
-
|
|
715
|
-
description: "Shop Metal Fight Beyblade and original plastic-gen tops. Pegasis, Leone, Libra, and rare Japanese editions.",
|
|
716
|
-
keywords: [
|
|
717
|
-
"metal fight beyblade",
|
|
718
|
-
"mfb",
|
|
719
|
-
"classic beyblade",
|
|
720
|
-
"pegasis",
|
|
721
|
-
"leone",
|
|
722
|
-
"vintage beyblade",
|
|
723
|
-
],
|
|
724
|
-
},
|
|
725
|
-
display: {
|
|
726
|
-
icon: "🌟",
|
|
727
|
-
coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
|
|
728
|
-
showInMenu: true,
|
|
729
|
-
showInFooter: false,
|
|
730
|
-
},
|
|
636
|
+
seo: { title: "PSV Cards | LetItRip", description: "Shop Pharaoh's Servant set cards.", keywords: ["psv", "pharaoh servant", "jinzo"] },
|
|
637
|
+
display: { icon: "🪄", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/77585513.jpg", color: "#312e81", showInMenu: true, showInFooter: false },
|
|
731
638
|
isActive: true,
|
|
732
639
|
isSearchable: true,
|
|
640
|
+
showOnHomepage: false,
|
|
733
641
|
createdBy: "user-admin-letitrip",
|
|
734
642
|
createdAt: daysAgo(400),
|
|
735
|
-
updatedAt: daysAgo(
|
|
736
|
-
ancestors: [{ id: "category-spinning-tops", name: "Spinning Tops", tier: 0 }],
|
|
643
|
+
updatedAt: daysAgo(1),
|
|
737
644
|
},
|
|
738
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
739
|
-
// ROOT 5: Model Kits & Gunpla (tier 0)
|
|
740
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
741
645
|
{
|
|
742
|
-
id: "category-
|
|
743
|
-
slug: "category-
|
|
744
|
-
name: "
|
|
745
|
-
description: "
|
|
746
|
-
rootId: "category-
|
|
646
|
+
id: "category-labyrinth-nightmare",
|
|
647
|
+
slug: "category-labyrinth-nightmare",
|
|
648
|
+
name: "Labyrinth of Nightmare (LON)",
|
|
649
|
+
description: "Cards from the Labyrinth of Nightmare set — Chaos Emperor Dragon, exchange format staples.",
|
|
650
|
+
rootId: "category-duel-monsters-era",
|
|
651
|
+
parentIds: ["category-duel-monsters-era"],
|
|
652
|
+
childrenIds: [],
|
|
653
|
+
tier: 1,
|
|
654
|
+
path: "duel-monsters-era/labyrinth-nightmare",
|
|
655
|
+
order: 4,
|
|
656
|
+
isLeaf: true,
|
|
657
|
+
position: 3,
|
|
658
|
+
subtreeSize: 0,
|
|
659
|
+
metrics: emptyMetrics,
|
|
660
|
+
isFeatured: false,
|
|
661
|
+
isBrand: false,
|
|
662
|
+
seo: { title: "LON Cards | LetItRip", description: "Shop Labyrinth of Nightmare set cards.", keywords: ["lon", "labyrinth of nightmare", "chaos emperor dragon"] },
|
|
663
|
+
display: { icon: "🌀", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/82301904.jpg", color: "#4c1d95", showInMenu: true, showInFooter: false },
|
|
664
|
+
isActive: true,
|
|
665
|
+
isSearchable: true,
|
|
666
|
+
showOnHomepage: false,
|
|
667
|
+
createdBy: "user-admin-letitrip",
|
|
668
|
+
createdAt: daysAgo(400),
|
|
669
|
+
updatedAt: daysAgo(1),
|
|
670
|
+
},
|
|
671
|
+
// ── ROOT 5: GX Era ─────────────────────────────────────────────────────────
|
|
672
|
+
{
|
|
673
|
+
id: "category-gx-era",
|
|
674
|
+
slug: "category-gx-era",
|
|
675
|
+
name: "GX Era",
|
|
676
|
+
description: "Yu-Gi-Oh! GX era sets — Shadow of Infinity, Elemental Energy, Power of the Duelist, Cyberdark Impact.",
|
|
677
|
+
rootId: "category-gx-era",
|
|
747
678
|
parentIds: [],
|
|
748
679
|
childrenIds: [
|
|
749
|
-
"category-
|
|
750
|
-
"category-
|
|
751
|
-
"category-
|
|
752
|
-
"category-
|
|
680
|
+
"category-shadow-of-infinity",
|
|
681
|
+
"category-elemental-energy",
|
|
682
|
+
"category-power-of-the-duelist",
|
|
683
|
+
"category-cyberdark-impact",
|
|
753
684
|
],
|
|
754
685
|
tier: 0,
|
|
755
|
-
path: "
|
|
686
|
+
path: "gx-era",
|
|
756
687
|
order: 5,
|
|
757
688
|
isLeaf: false,
|
|
758
689
|
position: 0,
|
|
759
|
-
subtreeSize:
|
|
690
|
+
subtreeSize: 4,
|
|
760
691
|
metrics: emptyMetrics,
|
|
761
692
|
isFeatured: true,
|
|
762
|
-
featuredPriority:
|
|
693
|
+
featuredPriority: 5,
|
|
763
694
|
isBrand: false,
|
|
764
695
|
seo: {
|
|
765
|
-
title: "
|
|
766
|
-
description: "Shop
|
|
767
|
-
keywords: [
|
|
768
|
-
|
|
769
|
-
"gundam model kit",
|
|
770
|
-
"high grade",
|
|
771
|
-
"master grade",
|
|
772
|
-
"perfect grade",
|
|
773
|
-
"model kit india",
|
|
774
|
-
],
|
|
775
|
-
ogImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=1200&h=630&fit=crop",
|
|
696
|
+
title: "GX Era YGO | LetItRip",
|
|
697
|
+
description: "Shop Yu-Gi-Oh! GX era cards — Elemental HEROes, Destiny HEROes, Cyber Dragon, Rainbow Dragon.",
|
|
698
|
+
keywords: ["yugioh gx", "elemental hero", "cyber dragon", "shadow of infinity", "potd"],
|
|
699
|
+
ogImage: "https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg",
|
|
776
700
|
},
|
|
777
701
|
display: {
|
|
778
|
-
icon: "
|
|
779
|
-
coverImage: "https://images.
|
|
780
|
-
color: "#
|
|
702
|
+
icon: "🌈",
|
|
703
|
+
coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg",
|
|
704
|
+
color: "#16a34a",
|
|
781
705
|
showInMenu: true,
|
|
782
706
|
showInFooter: true,
|
|
783
707
|
},
|
|
@@ -786,1547 +710,1495 @@ const rawCategories = [
|
|
|
786
710
|
showOnHomepage: true,
|
|
787
711
|
createdBy: "user-admin-letitrip",
|
|
788
712
|
createdAt: daysAgo(400),
|
|
789
|
-
updatedAt: daysAgo(
|
|
790
|
-
ancestors: [],
|
|
713
|
+
updatedAt: daysAgo(1),
|
|
791
714
|
},
|
|
792
|
-
// Model Kits > Gunpla (tier 1)
|
|
793
715
|
{
|
|
794
|
-
id: "category-
|
|
795
|
-
slug: "category-
|
|
796
|
-
name: "
|
|
797
|
-
description: "
|
|
798
|
-
rootId: "category-
|
|
799
|
-
parentIds: ["category-
|
|
716
|
+
id: "category-shadow-of-infinity",
|
|
717
|
+
slug: "category-shadow-of-infinity",
|
|
718
|
+
name: "Shadow of Infinity (SOI)",
|
|
719
|
+
description: "Cards from Shadow of Infinity — Elemental HERO cards and early GX staples.",
|
|
720
|
+
rootId: "category-gx-era",
|
|
721
|
+
parentIds: ["category-gx-era"],
|
|
800
722
|
childrenIds: [],
|
|
801
723
|
tier: 1,
|
|
802
|
-
path: "
|
|
724
|
+
path: "gx-era/shadow-of-infinity",
|
|
803
725
|
order: 1,
|
|
804
726
|
isLeaf: true,
|
|
805
727
|
position: 0,
|
|
806
|
-
subtreeSize:
|
|
728
|
+
subtreeSize: 0,
|
|
807
729
|
metrics: emptyMetrics,
|
|
808
|
-
isFeatured:
|
|
809
|
-
featuredPriority: 11,
|
|
730
|
+
isFeatured: false,
|
|
810
731
|
isBrand: false,
|
|
811
|
-
seo: {
|
|
812
|
-
|
|
813
|
-
description: "Shop Gunpla High Grade, Real Grade, Master Grade, and Perfect Grade kits. Wing Zero, RX-78-2, Strike Freedom, and more.",
|
|
814
|
-
keywords: [
|
|
815
|
-
"gunpla",
|
|
816
|
-
"high grade",
|
|
817
|
-
"master grade",
|
|
818
|
-
"real grade",
|
|
819
|
-
"perfect grade",
|
|
820
|
-
"wing zero",
|
|
821
|
-
"rx-78-2",
|
|
822
|
-
],
|
|
823
|
-
},
|
|
824
|
-
display: {
|
|
825
|
-
icon: "⚙️",
|
|
826
|
-
coverImage: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
827
|
-
color: "#10b981",
|
|
828
|
-
showInMenu: true,
|
|
829
|
-
showInFooter: true,
|
|
830
|
-
},
|
|
732
|
+
seo: { title: "SOI Cards | LetItRip", description: "Shop Shadow of Infinity set cards.", keywords: ["soi", "shadow of infinity", "elemental hero"] },
|
|
733
|
+
display: { icon: "🌑", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg", color: "#15803d", showInMenu: true, showInFooter: false },
|
|
831
734
|
isActive: true,
|
|
832
735
|
isSearchable: true,
|
|
833
|
-
|
|
736
|
+
showOnHomepage: false,
|
|
737
|
+
createdBy: "user-admin-letitrip",
|
|
834
738
|
createdAt: daysAgo(400),
|
|
835
|
-
updatedAt: daysAgo(
|
|
836
|
-
ancestors: [{ id: "category-model-kits", name: "Model Kits & Gunpla", tier: 0 }],
|
|
739
|
+
updatedAt: daysAgo(1),
|
|
837
740
|
},
|
|
838
|
-
// Model Kits > Non-Gundam Kits (tier 1)
|
|
839
741
|
{
|
|
840
|
-
id: "category-
|
|
841
|
-
slug: "category-
|
|
842
|
-
name: "
|
|
843
|
-
description: "
|
|
844
|
-
rootId: "category-
|
|
845
|
-
parentIds: ["category-
|
|
742
|
+
id: "category-elemental-energy",
|
|
743
|
+
slug: "category-elemental-energy",
|
|
744
|
+
name: "Elemental Energy (EEN)",
|
|
745
|
+
description: "Cards from Elemental Energy — Elemental HERO fusions, Flame Wingman, Thunder Giant.",
|
|
746
|
+
rootId: "category-gx-era",
|
|
747
|
+
parentIds: ["category-gx-era"],
|
|
846
748
|
childrenIds: [],
|
|
847
749
|
tier: 1,
|
|
848
|
-
path: "
|
|
750
|
+
path: "gx-era/elemental-energy",
|
|
849
751
|
order: 2,
|
|
850
752
|
isLeaf: true,
|
|
851
|
-
position:
|
|
852
|
-
subtreeSize:
|
|
753
|
+
position: 1,
|
|
754
|
+
subtreeSize: 0,
|
|
853
755
|
metrics: emptyMetrics,
|
|
854
756
|
isFeatured: false,
|
|
855
757
|
isBrand: false,
|
|
856
|
-
seo: {
|
|
857
|
-
|
|
858
|
-
description: "Shop Kotobukiya Frame Arms, Megami Device, Bandai Star Wars model kits, and Hasegawa aircraft.",
|
|
859
|
-
keywords: [
|
|
860
|
-
"frame arms",
|
|
861
|
-
"megami device",
|
|
862
|
-
"kotobukiya kit",
|
|
863
|
-
"star wars model kit",
|
|
864
|
-
"hasegawa",
|
|
865
|
-
"non-gundam",
|
|
866
|
-
],
|
|
867
|
-
},
|
|
868
|
-
display: {
|
|
869
|
-
icon: "🔩",
|
|
870
|
-
coverImage: "https://images.unsplash.com/photo-1599409636295-e3cf3538f212?w=800&h=800&fit=crop",
|
|
871
|
-
showInMenu: true,
|
|
872
|
-
showInFooter: false,
|
|
873
|
-
},
|
|
758
|
+
seo: { title: "EEN Cards | LetItRip", description: "Shop Elemental Energy set cards.", keywords: ["een", "elemental energy", "flame wingman"] },
|
|
759
|
+
display: { icon: "⚡", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/35809262.jpg", color: "#166534", showInMenu: true, showInFooter: false },
|
|
874
760
|
isActive: true,
|
|
875
761
|
isSearchable: true,
|
|
762
|
+
showOnHomepage: false,
|
|
876
763
|
createdBy: "user-admin-letitrip",
|
|
877
764
|
createdAt: daysAgo(400),
|
|
878
|
-
updatedAt: daysAgo(
|
|
879
|
-
ancestors: [{ id: "category-model-kits", name: "Model Kits & Gunpla", tier: 0 }],
|
|
765
|
+
updatedAt: daysAgo(1),
|
|
880
766
|
},
|
|
881
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
882
|
-
// ROOT 6: Vintage & Rare (tier 0)
|
|
883
|
-
// ──────────────────────────────────────────────────────────────────────────
|
|
884
767
|
{
|
|
885
|
-
id: "category-
|
|
886
|
-
slug: "category-
|
|
887
|
-
name: "
|
|
888
|
-
description: "
|
|
889
|
-
rootId: "category-
|
|
890
|
-
parentIds: [],
|
|
891
|
-
childrenIds: [
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
order: 6,
|
|
899
|
-
isLeaf: false,
|
|
900
|
-
position: 0,
|
|
901
|
-
subtreeSize: 4,
|
|
768
|
+
id: "category-power-of-the-duelist",
|
|
769
|
+
slug: "category-power-of-the-duelist",
|
|
770
|
+
name: "Power of the Duelist (POTD)",
|
|
771
|
+
description: "Cards from Power of the Duelist — E-HERO Neos, Cyber Dragon, Rainbow Dragon, Neo-Spacians.",
|
|
772
|
+
rootId: "category-gx-era",
|
|
773
|
+
parentIds: ["category-gx-era"],
|
|
774
|
+
childrenIds: [],
|
|
775
|
+
tier: 1,
|
|
776
|
+
path: "gx-era/power-of-the-duelist",
|
|
777
|
+
order: 3,
|
|
778
|
+
isLeaf: true,
|
|
779
|
+
position: 2,
|
|
780
|
+
subtreeSize: 0,
|
|
902
781
|
metrics: emptyMetrics,
|
|
903
782
|
isFeatured: false,
|
|
904
783
|
isBrand: false,
|
|
905
|
-
seo: {
|
|
906
|
-
|
|
907
|
-
description: "Shop rare vintage collectibles — 1st edition Pokémon cards, graded slabs, original anime cels, and limited exclusives.",
|
|
908
|
-
keywords: [
|
|
909
|
-
"vintage collectibles",
|
|
910
|
-
"rare collectibles",
|
|
911
|
-
"1st edition pokemon",
|
|
912
|
-
"graded slab",
|
|
913
|
-
"anime cel",
|
|
914
|
-
"limited edition",
|
|
915
|
-
],
|
|
916
|
-
ogImage: "https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=1200&h=630&fit=crop",
|
|
917
|
-
},
|
|
918
|
-
display: {
|
|
919
|
-
icon: "💎",
|
|
920
|
-
coverImage: "https://images.unsplash.com/photo-1578301978162-7aae4d755744?w=800&h=800&fit=crop",
|
|
921
|
-
color: "#d97706",
|
|
922
|
-
showInMenu: true,
|
|
923
|
-
showInFooter: true,
|
|
924
|
-
},
|
|
784
|
+
seo: { title: "POTD Cards | LetItRip", description: "Shop Power of the Duelist set cards.", keywords: ["potd", "power of the duelist", "elemental hero neos", "rainbow dragon"] },
|
|
785
|
+
display: { icon: "✊", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/89943723.jpg", color: "#14532d", showInMenu: true, showInFooter: false },
|
|
925
786
|
isActive: true,
|
|
926
787
|
isSearchable: true,
|
|
927
788
|
showOnHomepage: false,
|
|
928
789
|
createdBy: "user-admin-letitrip",
|
|
929
790
|
createdAt: daysAgo(400),
|
|
930
|
-
updatedAt: daysAgo(
|
|
931
|
-
ancestors: [],
|
|
791
|
+
updatedAt: daysAgo(1),
|
|
932
792
|
},
|
|
933
|
-
// Vintage & Rare > Vintage TCG (tier 1)
|
|
934
793
|
{
|
|
935
|
-
id: "category-
|
|
936
|
-
slug: "category-
|
|
937
|
-
name: "
|
|
938
|
-
description: "
|
|
939
|
-
rootId: "category-
|
|
940
|
-
parentIds: ["category-
|
|
794
|
+
id: "category-cyberdark-impact",
|
|
795
|
+
slug: "category-cyberdark-impact",
|
|
796
|
+
name: "Cyberdark Impact (CDIP)",
|
|
797
|
+
description: "Cards from Cyberdark Impact — Cyber Dragon evolution line and Destiny HERO cards.",
|
|
798
|
+
rootId: "category-gx-era",
|
|
799
|
+
parentIds: ["category-gx-era"],
|
|
941
800
|
childrenIds: [],
|
|
942
801
|
tier: 1,
|
|
943
|
-
path: "
|
|
944
|
-
order:
|
|
802
|
+
path: "gx-era/cyberdark-impact",
|
|
803
|
+
order: 4,
|
|
945
804
|
isLeaf: true,
|
|
946
|
-
position:
|
|
947
|
-
subtreeSize:
|
|
805
|
+
position: 3,
|
|
806
|
+
subtreeSize: 0,
|
|
948
807
|
metrics: emptyMetrics,
|
|
949
808
|
isFeatured: false,
|
|
950
809
|
isBrand: false,
|
|
951
|
-
seo: {
|
|
952
|
-
|
|
953
|
-
description: "Shop 1st edition and vintage trading cards. PSA/BGS graded Pokémon Base Set and Yu-Gi-Oh! LOB.",
|
|
954
|
-
keywords: [
|
|
955
|
-
"1st edition pokemon",
|
|
956
|
-
"base set charizard",
|
|
957
|
-
"psa graded",
|
|
958
|
-
"bgs graded",
|
|
959
|
-
"vintage tcg",
|
|
960
|
-
"lob yugioh",
|
|
961
|
-
],
|
|
962
|
-
},
|
|
963
|
-
display: {
|
|
964
|
-
icon: "🃏",
|
|
965
|
-
coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
966
|
-
color: "#d97706",
|
|
967
|
-
showInMenu: true,
|
|
968
|
-
showInFooter: false,
|
|
969
|
-
},
|
|
810
|
+
seo: { title: "CDIP Cards | LetItRip", description: "Shop Cyberdark Impact set cards.", keywords: ["cdip", "cyberdark impact", "cyber dragon", "destiny hero"] },
|
|
811
|
+
display: { icon: "🤖", coverImage: "https://images.ygoprodeck.com/images/cards/cropped/70095154.jpg", color: "#052e16", showInMenu: true, showInFooter: false },
|
|
970
812
|
isActive: true,
|
|
971
813
|
isSearchable: true,
|
|
814
|
+
showOnHomepage: false,
|
|
972
815
|
createdBy: "user-admin-letitrip",
|
|
973
816
|
createdAt: daysAgo(400),
|
|
974
|
-
updatedAt: daysAgo(
|
|
975
|
-
ancestors: [{ id: "category-vintage-rare", name: "Vintage & Rare", tier: 0 }],
|
|
817
|
+
updatedAt: daysAgo(1),
|
|
976
818
|
},
|
|
977
|
-
//
|
|
819
|
+
// ── ROOT 6: Trading Cards (broad — umbrella for YGO + Pokémon + others) ───
|
|
978
820
|
{
|
|
979
|
-
id: "category-
|
|
980
|
-
slug: "category-
|
|
981
|
-
name: "
|
|
982
|
-
description: "
|
|
983
|
-
rootId: "category-
|
|
984
|
-
parentIds: [
|
|
985
|
-
childrenIds: [],
|
|
986
|
-
tier:
|
|
987
|
-
path: "
|
|
988
|
-
order:
|
|
989
|
-
isLeaf:
|
|
821
|
+
id: "category-trading-cards",
|
|
822
|
+
slug: "category-trading-cards",
|
|
823
|
+
name: "Trading Cards",
|
|
824
|
+
description: "Collectible trading card games — Pokémon, Yu-Gi-Oh!, One Piece, Dragon Ball, Cardfight!! Vanguard, and more. Singles, sealed product, and graded slabs.",
|
|
825
|
+
rootId: "category-trading-cards",
|
|
826
|
+
parentIds: [],
|
|
827
|
+
childrenIds: ["category-pokemon-tcg", "category-one-piece-tcg", "category-dragon-ball-tcg", "category-cardfight-vanguard"],
|
|
828
|
+
tier: 0,
|
|
829
|
+
path: "trading-cards",
|
|
830
|
+
order: 6,
|
|
831
|
+
isLeaf: false,
|
|
990
832
|
position: 0,
|
|
991
|
-
subtreeSize:
|
|
833
|
+
subtreeSize: 4,
|
|
992
834
|
metrics: emptyMetrics,
|
|
993
|
-
isFeatured:
|
|
835
|
+
isFeatured: true,
|
|
836
|
+
featuredPriority: 6,
|
|
994
837
|
isBrand: false,
|
|
995
|
-
seo: {
|
|
996
|
-
|
|
997
|
-
description: "Shop rare vintage anime figures, discontinued Nendoroids, original Revoltech, and early-run Beyblade tops.",
|
|
998
|
-
keywords: [
|
|
999
|
-
"vintage figure",
|
|
1000
|
-
"discontinued nendoroid",
|
|
1001
|
-
"rare anime figure",
|
|
1002
|
-
"original beyblade",
|
|
1003
|
-
"garage kit",
|
|
1004
|
-
],
|
|
1005
|
-
},
|
|
1006
|
-
display: {
|
|
1007
|
-
icon: "🏺",
|
|
1008
|
-
coverImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1009
|
-
showInMenu: true,
|
|
1010
|
-
showInFooter: false,
|
|
1011
|
-
},
|
|
838
|
+
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"] },
|
|
839
|
+
display: { icon: "🃏", coverImage: "/media/category-image-trading-cards-20260101.jpg", color: "#7c3aed", showInMenu: true, showInFooter: true },
|
|
1012
840
|
isActive: true,
|
|
1013
841
|
isSearchable: true,
|
|
842
|
+
showOnHomepage: true,
|
|
1014
843
|
createdBy: "user-admin-letitrip",
|
|
1015
|
-
createdAt: daysAgo(
|
|
1016
|
-
updatedAt: daysAgo(
|
|
1017
|
-
ancestors: [{ id: "category-vintage-rare", name: "Vintage & Rare", tier: 0 }],
|
|
844
|
+
createdAt: daysAgo(300),
|
|
845
|
+
updatedAt: daysAgo(1),
|
|
1018
846
|
},
|
|
1019
|
-
// Vintage & Rare > Limited Exclusives (tier 1)
|
|
1020
847
|
{
|
|
1021
|
-
id: "category-
|
|
1022
|
-
slug: "category-
|
|
1023
|
-
name: "
|
|
1024
|
-
description: "
|
|
1025
|
-
rootId: "category-
|
|
1026
|
-
parentIds: ["category-
|
|
848
|
+
id: "category-pokemon-tcg",
|
|
849
|
+
slug: "category-pokemon-tcg",
|
|
850
|
+
name: "Pokémon TCG",
|
|
851
|
+
description: "Pokémon Trading Card Game — booster packs, elite trainer boxes, singles, and graded cards from Base Set to Scarlet & Violet.",
|
|
852
|
+
rootId: "category-trading-cards",
|
|
853
|
+
parentIds: ["category-trading-cards"],
|
|
1027
854
|
childrenIds: [],
|
|
1028
855
|
tier: 1,
|
|
1029
|
-
path: "
|
|
1030
|
-
order:
|
|
856
|
+
path: "trading-cards/pokemon-tcg",
|
|
857
|
+
order: 1,
|
|
1031
858
|
isLeaf: true,
|
|
1032
859
|
position: 0,
|
|
1033
|
-
subtreeSize:
|
|
860
|
+
subtreeSize: 0,
|
|
1034
861
|
metrics: emptyMetrics,
|
|
1035
|
-
isFeatured:
|
|
862
|
+
isFeatured: true,
|
|
1036
863
|
isBrand: false,
|
|
1037
|
-
seo: {
|
|
1038
|
-
|
|
1039
|
-
description: "Shop Wonder Festival, Pokémon Center, and event-exclusive limited collectibles. Convention-only figures and signed merchandise.",
|
|
1040
|
-
keywords: [
|
|
1041
|
-
"wonder festival exclusive",
|
|
1042
|
-
"pokemon center exclusive",
|
|
1043
|
-
"limited edition figure",
|
|
1044
|
-
"convention exclusive",
|
|
1045
|
-
"signed collectible",
|
|
1046
|
-
],
|
|
1047
|
-
},
|
|
1048
|
-
display: {
|
|
1049
|
-
icon: "✨",
|
|
1050
|
-
coverImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
|
|
1051
|
-
showInMenu: true,
|
|
1052
|
-
showInFooter: false,
|
|
1053
|
-
},
|
|
864
|
+
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"] },
|
|
865
|
+
display: { icon: "⚡", coverImage: "/media/category-image-pokemon-tcg-20260101.jpg", color: "#eab308", showInMenu: true, showInFooter: false },
|
|
1054
866
|
isActive: true,
|
|
1055
867
|
isSearchable: true,
|
|
868
|
+
showOnHomepage: false,
|
|
1056
869
|
createdBy: "user-admin-letitrip",
|
|
1057
|
-
createdAt: daysAgo(
|
|
1058
|
-
updatedAt: daysAgo(
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
id: "category-one-piece-cards",
|
|
1068
|
-
name: "One Piece Card Game",
|
|
1069
|
-
description: "Bandai's One Piece Card Game — booster boxes, starter decks, singles, and tournament-grade cards from the OP01–OP08 sets.",
|
|
1070
|
-
rootId: "category-trading-cards",
|
|
1071
|
-
keywords: ["one piece card", "op tcg", "bandai card game", "luffy card"],
|
|
1072
|
-
icon: "🏴☠️",
|
|
1073
|
-
cover: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
1074
|
-
order: 4,
|
|
1075
|
-
},
|
|
1076
|
-
{
|
|
1077
|
-
id: "category-magic-cards",
|
|
1078
|
-
name: "Magic: The Gathering",
|
|
1079
|
-
description: "Wizards of the Coast Magic: The Gathering — Standard, Modern, Commander, and reserved-list singles. Sealed product, fat packs, and bundles.",
|
|
1080
|
-
rootId: "category-trading-cards",
|
|
1081
|
-
keywords: ["magic the gathering", "mtg", "commander", "wizards of the coast"],
|
|
1082
|
-
icon: "🪄",
|
|
1083
|
-
cover: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=800&fit=crop",
|
|
1084
|
-
order: 5,
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
id: "category-flesh-blood-cards",
|
|
1088
|
-
name: "Flesh and Blood TCG",
|
|
1089
|
-
description: "Legend Story Studios Flesh and Blood — booster boxes, blitz decks, hero decks, and competitive singles.",
|
|
1090
|
-
rootId: "category-trading-cards",
|
|
1091
|
-
keywords: ["flesh and blood", "fab tcg", "lss", "blitz deck"],
|
|
1092
|
-
icon: "⚔️",
|
|
1093
|
-
cover: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
|
|
1094
|
-
order: 6,
|
|
1095
|
-
},
|
|
1096
|
-
{
|
|
1097
|
-
id: "category-matchbox-cars",
|
|
1098
|
-
name: "Matchbox 1:64",
|
|
1099
|
-
description: "Matchbox 1:64 scale diecast — basic releases, MBX series, premium recasts, and vintage Lesney Matchbox.",
|
|
1100
|
-
rootId: "category-diecast-vehicles",
|
|
1101
|
-
keywords: ["matchbox", "1:64 diecast", "lesney", "mbx"],
|
|
1102
|
-
icon: "🚙",
|
|
1103
|
-
cover: "https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=800&h=800&fit=crop",
|
|
1104
|
-
order: 4,
|
|
1105
|
-
},
|
|
1106
|
-
{
|
|
1107
|
-
id: "category-corgi-cars",
|
|
1108
|
-
name: "Corgi Toys",
|
|
1109
|
-
description: "Corgi Toys diecast — TV/movie tie-in vehicles (James Bond, Batman, Chitty Chitty Bang Bang) and classic British cars.",
|
|
1110
|
-
rootId: "category-diecast-vehicles",
|
|
1111
|
-
keywords: ["corgi toys", "diecast british", "james bond car", "batmobile"],
|
|
1112
|
-
icon: "🇬🇧",
|
|
1113
|
-
cover: "https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?w=800&h=800&fit=crop",
|
|
1114
|
-
order: 5,
|
|
1115
|
-
},
|
|
1116
|
-
{
|
|
1117
|
-
id: "category-anime-figures",
|
|
1118
|
-
name: "Anime Figures",
|
|
1119
|
-
description: "Dragon Ball, Naruto, One Piece, and other shonen anime character figures — S.H.Figuarts, Banpresto, and Megahouse releases.",
|
|
1120
|
-
rootId: "category-action-figures",
|
|
1121
|
-
keywords: ["dragon ball figure", "naruto figure", "one piece figure", "shf"],
|
|
1122
|
-
icon: "🎌",
|
|
1123
|
-
cover: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
|
|
1124
|
-
order: 4,
|
|
1125
|
-
},
|
|
1126
|
-
{
|
|
1127
|
-
id: "category-funko-pops",
|
|
1128
|
-
name: "Funko Pops",
|
|
1129
|
-
description: "Funko Pop vinyl figures — Marvel, DC, anime, gaming, and movie/TV licenses. Common, chase, and vaulted variants.",
|
|
1130
|
-
rootId: "category-action-figures",
|
|
1131
|
-
keywords: ["funko pop", "vinyl figure", "chase variant", "vaulted pop"],
|
|
1132
|
-
icon: "🥤",
|
|
1133
|
-
cover: "https://images.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
|
|
1134
|
-
order: 5,
|
|
1135
|
-
},
|
|
1136
|
-
{
|
|
1137
|
-
id: "category-superhero-figures",
|
|
1138
|
-
name: "Marvel & DC Figures",
|
|
1139
|
-
description: "Marvel Legends, DC Multiverse, Mafex, and Hot Toys 1:6 sixth-scale figures — Avengers, Spider-Man, Batman, Justice League.",
|
|
1140
|
-
rootId: "category-action-figures",
|
|
1141
|
-
keywords: ["marvel legends", "dc multiverse", "hot toys", "mafex", "spider-man figure"],
|
|
1142
|
-
icon: "🦸",
|
|
1143
|
-
cover: "https://images.unsplash.com/photo-1560762484-813fc97650a0?w=800&h=800&fit=crop",
|
|
1144
|
-
order: 6,
|
|
1145
|
-
},
|
|
1146
|
-
{
|
|
1147
|
-
id: "category-gundam-master-grade",
|
|
1148
|
-
name: "Gundam Master Grade (MG)",
|
|
1149
|
-
description: "Bandai Master Grade 1/100 Gundam model kits — intermediate-difficulty builds with full inner frame and panel detail.",
|
|
1150
|
-
rootId: "category-model-kits",
|
|
1151
|
-
keywords: ["master grade", "mg gundam", "1/100 gunpla", "bandai mg"],
|
|
1152
|
-
icon: "🛠️",
|
|
1153
|
-
cover: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
1154
|
-
order: 3,
|
|
1155
|
-
},
|
|
1156
|
-
{
|
|
1157
|
-
id: "category-gundam-perfect-grade",
|
|
1158
|
-
name: "Gundam Perfect Grade (PG)",
|
|
1159
|
-
description: "Bandai Perfect Grade 1/60 Gundam — flagship kits with internal frame, LED-ready, advanced builders only.",
|
|
1160
|
-
rootId: "category-model-kits",
|
|
1161
|
-
keywords: ["perfect grade", "pg gundam", "1/60 gunpla", "bandai flagship"],
|
|
1162
|
-
icon: "🏗️",
|
|
1163
|
-
cover: "https://images.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
|
|
1164
|
-
order: 4,
|
|
1165
|
-
},
|
|
1166
|
-
]),
|
|
1167
|
-
];
|
|
1168
|
-
/**
|
|
1169
|
-
* Compact constructor for tier-1 leaf categories — keeps P25 expansion entries
|
|
1170
|
-
* short while still emitting the full CategoryDocument shape consumed by the
|
|
1171
|
-
* seed runner. Defaults: isLeaf=true, isActive=true, admin-authored, today-30d.
|
|
1172
|
-
*/
|
|
1173
|
-
function mkLeaves(specs) {
|
|
1174
|
-
// Resolve the root name once per unique rootId via a tiny inline map. Keeps
|
|
1175
|
-
// ancestors[] correct without re-reading the full rawCategories array.
|
|
1176
|
-
const rootNames = {
|
|
1177
|
-
"category-action-figures": "Action Figures & Statues",
|
|
1178
|
-
"category-trading-cards": "Trading Cards",
|
|
1179
|
-
"category-diecast-vehicles": "Diecast & Vehicles",
|
|
1180
|
-
"category-model-kits": "Model Kits & Gunpla",
|
|
1181
|
-
};
|
|
1182
|
-
return specs.map((s) => ({
|
|
1183
|
-
id: s.id,
|
|
1184
|
-
slug: s.id,
|
|
1185
|
-
name: s.name,
|
|
1186
|
-
description: s.description,
|
|
1187
|
-
rootId: s.rootId,
|
|
1188
|
-
parentIds: [s.rootId],
|
|
870
|
+
createdAt: daysAgo(300),
|
|
871
|
+
updatedAt: daysAgo(1),
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
id: "category-one-piece-tcg",
|
|
875
|
+
slug: "category-one-piece-tcg",
|
|
876
|
+
name: "One Piece TCG",
|
|
877
|
+
description: "One Piece Card Game by Bandai — booster packs, starter decks, leaders, and special art cards.",
|
|
878
|
+
rootId: "category-trading-cards",
|
|
879
|
+
parentIds: ["category-trading-cards"],
|
|
1189
880
|
childrenIds: [],
|
|
1190
881
|
tier: 1,
|
|
1191
|
-
path:
|
|
1192
|
-
order:
|
|
882
|
+
path: "trading-cards/one-piece-tcg",
|
|
883
|
+
order: 2,
|
|
1193
884
|
isLeaf: true,
|
|
1194
|
-
position:
|
|
1195
|
-
subtreeSize:
|
|
885
|
+
position: 1,
|
|
886
|
+
subtreeSize: 0,
|
|
1196
887
|
metrics: emptyMetrics,
|
|
1197
888
|
isFeatured: false,
|
|
1198
889
|
isBrand: false,
|
|
1199
|
-
seo: {
|
|
1200
|
-
|
|
1201
|
-
description: s.description.slice(0, 155),
|
|
1202
|
-
keywords: s.keywords,
|
|
1203
|
-
},
|
|
1204
|
-
display: {
|
|
1205
|
-
icon: s.icon,
|
|
1206
|
-
coverImage: s.cover,
|
|
1207
|
-
showInMenu: true,
|
|
1208
|
-
showInFooter: false,
|
|
1209
|
-
},
|
|
890
|
+
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"] },
|
|
891
|
+
display: { icon: "🏴☠️", coverImage: "/media/category-image-one-piece-tcg-20260101.jpg", color: "#dc2626", showInMenu: true, showInFooter: false },
|
|
1210
892
|
isActive: true,
|
|
1211
893
|
isSearchable: true,
|
|
894
|
+
showOnHomepage: false,
|
|
1212
895
|
createdBy: "user-admin-letitrip",
|
|
1213
|
-
createdAt: daysAgo(
|
|
1214
|
-
updatedAt: daysAgo(7),
|
|
1215
|
-
ancestors: [
|
|
1216
|
-
{ id: s.rootId, name: rootNames[s.rootId] ?? s.rootId, tier: 0 },
|
|
1217
|
-
],
|
|
1218
|
-
}));
|
|
1219
|
-
}
|
|
1220
|
-
// SB-UNI-B — sublistings folded in as tier-N+1 leaves with categoryType:"sublisting".
|
|
1221
|
-
// Original collection `sublistingCategories` dropped; same 12 seeded rows live here.
|
|
1222
|
-
const ADMIN_ID = "user-admin-letitrip";
|
|
1223
|
-
const sublistingRows = [
|
|
1224
|
-
// ── Trading Cards ─────────────────────────────────────────────────────
|
|
1225
|
-
{
|
|
1226
|
-
id: "sublisting-pokemon-base-set",
|
|
1227
|
-
slug: "sublisting-pokemon-base-set",
|
|
1228
|
-
name: "Base Set (102/102)",
|
|
1229
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
|
|
1230
|
-
itemCode: "BS-102",
|
|
1231
|
-
description: "All 102 Base Set Pokémon TCG cards — Shadowless, 1st Edition, and Unlimited.",
|
|
1232
|
-
rootId: "category-trading-cards",
|
|
1233
|
-
parentIds: ["category-trading-cards"],
|
|
1234
|
-
tier: 1,
|
|
1235
|
-
path: "trading-cards/sublisting-pokemon-base-set",
|
|
1236
|
-
isLeaf: true,
|
|
1237
|
-
order: 0,
|
|
1238
|
-
display: {
|
|
1239
|
-
coverImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=600&fit=crop",
|
|
1240
|
-
showInMenu: false,
|
|
1241
|
-
showInFooter: false,
|
|
1242
|
-
},
|
|
1243
|
-
isActive: true,
|
|
1244
|
-
isSearchable: true,
|
|
1245
|
-
createdBy: ADMIN_ID,
|
|
1246
|
-
createdAt: daysAgo(60),
|
|
896
|
+
createdAt: daysAgo(300),
|
|
1247
897
|
updatedAt: daysAgo(1),
|
|
1248
898
|
},
|
|
1249
899
|
{
|
|
1250
|
-
id: "
|
|
1251
|
-
slug: "
|
|
1252
|
-
name: "
|
|
1253
|
-
|
|
1254
|
-
itemCode: "PSA",
|
|
1255
|
-
description: "Investment-grade Pokémon cards authenticated by PSA.",
|
|
900
|
+
id: "category-dragon-ball-tcg",
|
|
901
|
+
slug: "category-dragon-ball-tcg",
|
|
902
|
+
name: "Dragon Ball Super TCG",
|
|
903
|
+
description: "Dragon Ball Super Card Game — booster packs, starter decks, and tournament promos.",
|
|
1256
904
|
rootId: "category-trading-cards",
|
|
1257
905
|
parentIds: ["category-trading-cards"],
|
|
906
|
+
childrenIds: [],
|
|
1258
907
|
tier: 1,
|
|
1259
|
-
path: "trading-cards/
|
|
908
|
+
path: "trading-cards/dragon-ball-tcg",
|
|
909
|
+
order: 3,
|
|
1260
910
|
isLeaf: true,
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
},
|
|
911
|
+
position: 2,
|
|
912
|
+
subtreeSize: 0,
|
|
913
|
+
metrics: emptyMetrics,
|
|
914
|
+
isFeatured: false,
|
|
915
|
+
isBrand: false,
|
|
916
|
+
seo: { title: "Dragon Ball Super TCG | LetItRip", description: "Buy Dragon Ball Super trading cards.", keywords: ["dragon ball tcg", "dbs card game", "bandai dragon ball"] },
|
|
917
|
+
display: { icon: "🐉", coverImage: "/media/category-image-dragon-ball-tcg-20260101.jpg", color: "#f97316", showInMenu: true, showInFooter: false },
|
|
1267
918
|
isActive: true,
|
|
1268
919
|
isSearchable: true,
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
920
|
+
showOnHomepage: false,
|
|
921
|
+
createdBy: "user-admin-letitrip",
|
|
922
|
+
createdAt: daysAgo(300),
|
|
923
|
+
updatedAt: daysAgo(1),
|
|
1272
924
|
},
|
|
1273
925
|
{
|
|
1274
|
-
id: "
|
|
1275
|
-
slug: "
|
|
1276
|
-
name: "
|
|
1277
|
-
|
|
1278
|
-
description: "Factory-sealed Pokémon TCG booster boxes — current, vintage, Japanese.",
|
|
926
|
+
id: "category-cardfight-vanguard",
|
|
927
|
+
slug: "category-cardfight-vanguard",
|
|
928
|
+
name: "Cardfight!! Vanguard",
|
|
929
|
+
description: "Cardfight!! Vanguard by Bushiroad — booster packs, trial decks, and premium collection cards.",
|
|
1279
930
|
rootId: "category-trading-cards",
|
|
1280
931
|
parentIds: ["category-trading-cards"],
|
|
932
|
+
childrenIds: [],
|
|
1281
933
|
tier: 1,
|
|
1282
|
-
path: "trading-cards/
|
|
934
|
+
path: "trading-cards/cardfight-vanguard",
|
|
935
|
+
order: 4,
|
|
1283
936
|
isLeaf: true,
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
},
|
|
937
|
+
position: 3,
|
|
938
|
+
subtreeSize: 0,
|
|
939
|
+
metrics: emptyMetrics,
|
|
940
|
+
isFeatured: false,
|
|
941
|
+
isBrand: false,
|
|
942
|
+
seo: { title: "Cardfight!! Vanguard | LetItRip", description: "Buy Cardfight!! Vanguard cards by Bushiroad.", keywords: ["cardfight vanguard", "bushiroad tcg", "vanguard cards"] },
|
|
943
|
+
display: { icon: "⚔️", coverImage: "/media/category-image-cardfight-vanguard-20260101.jpg", color: "#2563eb", showInMenu: true, showInFooter: false },
|
|
1290
944
|
isActive: true,
|
|
1291
945
|
isSearchable: true,
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
946
|
+
showOnHomepage: false,
|
|
947
|
+
createdBy: "user-admin-letitrip",
|
|
948
|
+
createdAt: daysAgo(300),
|
|
949
|
+
updatedAt: daysAgo(1),
|
|
1295
950
|
},
|
|
951
|
+
// ── ROOT 7: Action Figures ─────────────────────────────────────────────────
|
|
1296
952
|
{
|
|
1297
|
-
id: "
|
|
1298
|
-
slug: "
|
|
1299
|
-
name: "
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
isLeaf:
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
953
|
+
id: "category-action-figures",
|
|
954
|
+
slug: "category-action-figures",
|
|
955
|
+
name: "Action Figures",
|
|
956
|
+
description: "Collectible action figures — Gundam, Funko Pop, S.H.Figuarts, Nendoroid, Marvel Legends, NECA, McFarlane, and more.",
|
|
957
|
+
rootId: "category-action-figures",
|
|
958
|
+
parentIds: [],
|
|
959
|
+
childrenIds: ["category-gundam-figures", "category-funko-pop", "category-shf-figuarts", "category-nendoroid", "category-marvel-legends"],
|
|
960
|
+
tier: 0,
|
|
961
|
+
path: "action-figures",
|
|
962
|
+
order: 7,
|
|
963
|
+
isLeaf: false,
|
|
964
|
+
position: 0,
|
|
965
|
+
subtreeSize: 5,
|
|
966
|
+
metrics: emptyMetrics,
|
|
967
|
+
isFeatured: true,
|
|
968
|
+
featuredPriority: 7,
|
|
969
|
+
isBrand: false,
|
|
970
|
+
seo: { title: "Action Figures | LetItRip", description: "Buy collectible action figures — anime, Marvel, DC, and more.", keywords: ["action figures", "collectible figures", "anime figures", "funko pop"] },
|
|
971
|
+
display: { icon: "🦸", coverImage: "/media/category-image-action-figures-20260101.jpg", color: "#dc2626", showInMenu: true, showInFooter: true },
|
|
1314
972
|
isActive: true,
|
|
1315
973
|
isSearchable: true,
|
|
1316
|
-
|
|
1317
|
-
|
|
974
|
+
showOnHomepage: true,
|
|
975
|
+
createdBy: "user-admin-letitrip",
|
|
976
|
+
createdAt: daysAgo(300),
|
|
1318
977
|
updatedAt: daysAgo(1),
|
|
1319
978
|
},
|
|
1320
979
|
{
|
|
1321
|
-
id: "
|
|
1322
|
-
slug: "
|
|
1323
|
-
name: "
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
parentIds: ["category-trading-cards"],
|
|
980
|
+
id: "category-gundam-figures",
|
|
981
|
+
slug: "category-gundam-figures",
|
|
982
|
+
name: "Gundam Figures",
|
|
983
|
+
description: "Pre-built Gundam action figures — Robot Spirits, Metal Build, GFFMC, and Universe series.",
|
|
984
|
+
rootId: "category-action-figures",
|
|
985
|
+
parentIds: ["category-action-figures"],
|
|
986
|
+
childrenIds: [],
|
|
1329
987
|
tier: 1,
|
|
1330
|
-
path: "
|
|
988
|
+
path: "action-figures/gundam-figures",
|
|
989
|
+
order: 1,
|
|
1331
990
|
isLeaf: true,
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
},
|
|
991
|
+
position: 0,
|
|
992
|
+
subtreeSize: 0,
|
|
993
|
+
metrics: emptyMetrics,
|
|
994
|
+
isFeatured: false,
|
|
995
|
+
isBrand: false,
|
|
996
|
+
seo: { title: "Gundam Figures | LetItRip", description: "Buy Gundam action figures — Robot Spirits, Metal Build.", keywords: ["gundam figures", "robot spirits", "metal build gundam"] },
|
|
997
|
+
display: { icon: "🤖", coverImage: "/media/category-image-gundam-figures-20260101.jpg", color: "#1d4ed8", showInMenu: true, showInFooter: false },
|
|
1338
998
|
isActive: true,
|
|
1339
999
|
isSearchable: true,
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1000
|
+
showOnHomepage: false,
|
|
1001
|
+
createdBy: "user-admin-letitrip",
|
|
1002
|
+
createdAt: daysAgo(300),
|
|
1003
|
+
updatedAt: daysAgo(1),
|
|
1343
1004
|
},
|
|
1344
|
-
// ── Diecast Vehicles ──────────────────────────────────────────────────
|
|
1345
1005
|
{
|
|
1346
|
-
id: "
|
|
1347
|
-
slug: "
|
|
1348
|
-
name: "
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1006
|
+
id: "category-funko-pop",
|
|
1007
|
+
slug: "category-funko-pop",
|
|
1008
|
+
name: "Funko Pop!",
|
|
1009
|
+
description: "Funko Pop! vinyl figures — anime, Marvel, DC, Star Wars, Disney, and exclusive chase variants.",
|
|
1010
|
+
rootId: "category-action-figures",
|
|
1011
|
+
parentIds: ["category-action-figures"],
|
|
1012
|
+
childrenIds: [],
|
|
1013
|
+
tier: 1,
|
|
1014
|
+
path: "action-figures/funko-pop",
|
|
1015
|
+
order: 2,
|
|
1016
|
+
isLeaf: true,
|
|
1017
|
+
position: 1,
|
|
1018
|
+
subtreeSize: 0,
|
|
1019
|
+
metrics: emptyMetrics,
|
|
1020
|
+
isFeatured: true,
|
|
1021
|
+
isBrand: false,
|
|
1022
|
+
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"] },
|
|
1023
|
+
display: { icon: "🎭", coverImage: "/media/category-image-funko-pop-20260101.jpg", color: "#7c3aed", showInMenu: true, showInFooter: false },
|
|
1024
|
+
isActive: true,
|
|
1025
|
+
isSearchable: true,
|
|
1026
|
+
showOnHomepage: false,
|
|
1027
|
+
createdBy: "user-admin-letitrip",
|
|
1028
|
+
createdAt: daysAgo(300),
|
|
1029
|
+
updatedAt: daysAgo(1),
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
id: "category-shf-figuarts",
|
|
1033
|
+
slug: "category-shf-figuarts",
|
|
1034
|
+
name: "S.H.Figuarts",
|
|
1035
|
+
description: "S.H.Figuarts by Bandai Tamashii Nations — Dragon Ball, Naruto, One Piece, Kamen Rider, and more.",
|
|
1036
|
+
rootId: "category-action-figures",
|
|
1037
|
+
parentIds: ["category-action-figures"],
|
|
1038
|
+
childrenIds: [],
|
|
1039
|
+
tier: 1,
|
|
1040
|
+
path: "action-figures/shf-figuarts",
|
|
1041
|
+
order: 3,
|
|
1042
|
+
isLeaf: true,
|
|
1043
|
+
position: 2,
|
|
1044
|
+
subtreeSize: 0,
|
|
1045
|
+
metrics: emptyMetrics,
|
|
1046
|
+
isFeatured: false,
|
|
1047
|
+
isBrand: false,
|
|
1048
|
+
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"] },
|
|
1049
|
+
display: { icon: "💪", coverImage: "/media/category-image-shf-figuarts-20260101.jpg", color: "#0891b2", showInMenu: true, showInFooter: false },
|
|
1050
|
+
isActive: true,
|
|
1051
|
+
isSearchable: true,
|
|
1052
|
+
showOnHomepage: false,
|
|
1053
|
+
createdBy: "user-admin-letitrip",
|
|
1054
|
+
createdAt: daysAgo(300),
|
|
1055
|
+
updatedAt: daysAgo(1),
|
|
1056
|
+
},
|
|
1057
|
+
{
|
|
1058
|
+
id: "category-nendoroid",
|
|
1059
|
+
slug: "category-nendoroid",
|
|
1060
|
+
name: "Nendoroid",
|
|
1061
|
+
description: "Nendoroid by Good Smile Company — chibi-style poseable figures with interchangeable face plates and accessories.",
|
|
1062
|
+
rootId: "category-action-figures",
|
|
1063
|
+
parentIds: ["category-action-figures"],
|
|
1064
|
+
childrenIds: [],
|
|
1065
|
+
tier: 1,
|
|
1066
|
+
path: "action-figures/nendoroid",
|
|
1067
|
+
order: 4,
|
|
1068
|
+
isLeaf: true,
|
|
1069
|
+
position: 3,
|
|
1070
|
+
subtreeSize: 0,
|
|
1071
|
+
metrics: emptyMetrics,
|
|
1072
|
+
isFeatured: false,
|
|
1073
|
+
isBrand: false,
|
|
1074
|
+
seo: { title: "Nendoroid | LetItRip", description: "Buy Nendoroid figures by Good Smile Company.", keywords: ["nendoroid", "good smile company", "chibi figure", "nendoroid anime"] },
|
|
1075
|
+
display: { icon: "😊", coverImage: "/media/category-image-nendoroid-20260101.jpg", color: "#ec4899", showInMenu: true, showInFooter: false },
|
|
1076
|
+
isActive: true,
|
|
1077
|
+
isSearchable: true,
|
|
1078
|
+
showOnHomepage: false,
|
|
1079
|
+
createdBy: "user-admin-letitrip",
|
|
1080
|
+
createdAt: daysAgo(300),
|
|
1081
|
+
updatedAt: daysAgo(1),
|
|
1082
|
+
},
|
|
1083
|
+
{
|
|
1084
|
+
id: "category-marvel-legends",
|
|
1085
|
+
slug: "category-marvel-legends",
|
|
1086
|
+
name: "Marvel Legends",
|
|
1087
|
+
description: "Marvel Legends by Hasbro — 6-inch scale Marvel action figures with Build-A-Figure parts.",
|
|
1088
|
+
rootId: "category-action-figures",
|
|
1089
|
+
parentIds: ["category-action-figures"],
|
|
1090
|
+
childrenIds: [],
|
|
1091
|
+
tier: 1,
|
|
1092
|
+
path: "action-figures/marvel-legends",
|
|
1093
|
+
order: 5,
|
|
1094
|
+
isLeaf: true,
|
|
1095
|
+
position: 4,
|
|
1096
|
+
subtreeSize: 0,
|
|
1097
|
+
metrics: emptyMetrics,
|
|
1098
|
+
isFeatured: false,
|
|
1099
|
+
isBrand: false,
|
|
1100
|
+
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"] },
|
|
1101
|
+
display: { icon: "🦸♂️", coverImage: "/media/category-image-marvel-legends-20260101.jpg", color: "#b91c1c", showInMenu: true, showInFooter: false },
|
|
1102
|
+
isActive: true,
|
|
1103
|
+
isSearchable: true,
|
|
1104
|
+
showOnHomepage: false,
|
|
1105
|
+
createdBy: "user-admin-letitrip",
|
|
1106
|
+
createdAt: daysAgo(300),
|
|
1107
|
+
updatedAt: daysAgo(1),
|
|
1108
|
+
},
|
|
1109
|
+
// ── ROOT 8: Diecast Vehicles ───────────────────────────────────────────────
|
|
1110
|
+
{
|
|
1111
|
+
id: "category-diecast-vehicles",
|
|
1112
|
+
slug: "category-diecast-vehicles",
|
|
1113
|
+
name: "Diecast Vehicles",
|
|
1114
|
+
description: "Collectible diecast cars and vehicles — Hot Wheels, Tomica, Matchbox, Maisto, and more.",
|
|
1115
|
+
rootId: "category-diecast-vehicles",
|
|
1116
|
+
parentIds: [],
|
|
1117
|
+
childrenIds: ["category-hot-wheels", "category-tomica", "category-matchbox", "category-maisto"],
|
|
1118
|
+
tier: 0,
|
|
1119
|
+
path: "diecast-vehicles",
|
|
1120
|
+
order: 8,
|
|
1121
|
+
isLeaf: false,
|
|
1122
|
+
position: 0,
|
|
1123
|
+
subtreeSize: 4,
|
|
1124
|
+
metrics: emptyMetrics,
|
|
1125
|
+
isFeatured: true,
|
|
1126
|
+
featuredPriority: 8,
|
|
1127
|
+
isBrand: false,
|
|
1128
|
+
seo: { title: "Diecast Vehicles | LetItRip", description: "Buy collectible diecast cars — Hot Wheels, Tomica, Matchbox, Maisto.", keywords: ["diecast vehicles", "hot wheels", "tomica", "diecast cars", "collectible cars"] },
|
|
1129
|
+
display: { icon: "🏎️", coverImage: "/media/category-image-diecast-vehicles-20260101.jpg", color: "#ea580c", showInMenu: true, showInFooter: true },
|
|
1130
|
+
isActive: true,
|
|
1131
|
+
isSearchable: true,
|
|
1132
|
+
showOnHomepage: true,
|
|
1133
|
+
createdBy: "user-admin-letitrip",
|
|
1134
|
+
createdAt: daysAgo(300),
|
|
1135
|
+
updatedAt: daysAgo(1),
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
id: "category-hot-wheels",
|
|
1139
|
+
slug: "category-hot-wheels",
|
|
1140
|
+
name: "Hot Wheels",
|
|
1141
|
+
description: "Hot Wheels by Mattel — mainline, premium, Treasure Hunts, Super Treasure Hunts, RLC exclusives, and vintage Redlines.",
|
|
1142
|
+
rootId: "category-diecast-vehicles",
|
|
1353
1143
|
parentIds: ["category-diecast-vehicles"],
|
|
1144
|
+
childrenIds: [],
|
|
1354
1145
|
tier: 1,
|
|
1355
|
-
path: "diecast-vehicles/
|
|
1146
|
+
path: "diecast-vehicles/hot-wheels",
|
|
1147
|
+
order: 1,
|
|
1356
1148
|
isLeaf: true,
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
},
|
|
1149
|
+
position: 0,
|
|
1150
|
+
subtreeSize: 0,
|
|
1151
|
+
metrics: emptyMetrics,
|
|
1152
|
+
isFeatured: true,
|
|
1153
|
+
isBrand: false,
|
|
1154
|
+
seo: { title: "Hot Wheels | LetItRip", description: "Buy Hot Wheels — mainline, premium, Treasure Hunts, vintage Redlines.", keywords: ["hot wheels", "treasure hunt", "super treasure hunt", "hot wheels redline"] },
|
|
1155
|
+
display: { icon: "🔥", coverImage: "/media/category-image-hot-wheels-20260101.jpg", color: "#dc2626", showInMenu: true, showInFooter: false },
|
|
1156
|
+
isActive: true,
|
|
1157
|
+
isSearchable: true,
|
|
1158
|
+
showOnHomepage: false,
|
|
1159
|
+
createdBy: "user-admin-letitrip",
|
|
1160
|
+
createdAt: daysAgo(300),
|
|
1161
|
+
updatedAt: daysAgo(1),
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
id: "category-tomica",
|
|
1165
|
+
slug: "category-tomica",
|
|
1166
|
+
name: "Tomica",
|
|
1167
|
+
description: "Tomica by Takara-Tomy — Japanese diecast cars, premium series, limited editions, and vintage models.",
|
|
1168
|
+
rootId: "category-diecast-vehicles",
|
|
1169
|
+
parentIds: ["category-diecast-vehicles"],
|
|
1170
|
+
childrenIds: [],
|
|
1171
|
+
tier: 1,
|
|
1172
|
+
path: "diecast-vehicles/tomica",
|
|
1173
|
+
order: 2,
|
|
1174
|
+
isLeaf: true,
|
|
1175
|
+
position: 1,
|
|
1176
|
+
subtreeSize: 0,
|
|
1177
|
+
metrics: emptyMetrics,
|
|
1178
|
+
isFeatured: false,
|
|
1179
|
+
isBrand: false,
|
|
1180
|
+
seo: { title: "Tomica | LetItRip", description: "Buy Tomica diecast cars by Takara-Tomy.", keywords: ["tomica", "takara tomy cars", "tomica premium", "japanese diecast"] },
|
|
1181
|
+
display: { icon: "🚗", coverImage: "/media/category-image-tomica-20260101.jpg", color: "#0284c7", showInMenu: true, showInFooter: false },
|
|
1182
|
+
isActive: true,
|
|
1183
|
+
isSearchable: true,
|
|
1184
|
+
showOnHomepage: false,
|
|
1185
|
+
createdBy: "user-admin-letitrip",
|
|
1186
|
+
createdAt: daysAgo(300),
|
|
1187
|
+
updatedAt: daysAgo(1),
|
|
1188
|
+
},
|
|
1189
|
+
{
|
|
1190
|
+
id: "category-matchbox",
|
|
1191
|
+
slug: "category-matchbox",
|
|
1192
|
+
name: "Matchbox",
|
|
1193
|
+
description: "Matchbox by Mattel — classic diecast cars, adventure sets, and vintage Lesney models.",
|
|
1194
|
+
rootId: "category-diecast-vehicles",
|
|
1195
|
+
parentIds: ["category-diecast-vehicles"],
|
|
1196
|
+
childrenIds: [],
|
|
1197
|
+
tier: 1,
|
|
1198
|
+
path: "diecast-vehicles/matchbox",
|
|
1199
|
+
order: 3,
|
|
1200
|
+
isLeaf: true,
|
|
1201
|
+
position: 2,
|
|
1202
|
+
subtreeSize: 0,
|
|
1203
|
+
metrics: emptyMetrics,
|
|
1204
|
+
isFeatured: false,
|
|
1205
|
+
isBrand: false,
|
|
1206
|
+
seo: { title: "Matchbox | LetItRip", description: "Buy Matchbox diecast cars and vintage Lesney models.", keywords: ["matchbox", "matchbox cars", "lesney", "vintage matchbox"] },
|
|
1207
|
+
display: { icon: "📦", coverImage: "/media/category-image-matchbox-20260101.jpg", color: "#16a34a", showInMenu: true, showInFooter: false },
|
|
1363
1208
|
isActive: true,
|
|
1364
1209
|
isSearchable: true,
|
|
1365
|
-
|
|
1366
|
-
|
|
1210
|
+
showOnHomepage: false,
|
|
1211
|
+
createdBy: "user-admin-letitrip",
|
|
1212
|
+
createdAt: daysAgo(300),
|
|
1367
1213
|
updatedAt: daysAgo(1),
|
|
1368
1214
|
},
|
|
1369
1215
|
{
|
|
1370
|
-
id: "
|
|
1371
|
-
slug: "
|
|
1372
|
-
name: "
|
|
1373
|
-
|
|
1374
|
-
itemCode: "STH",
|
|
1375
|
-
description: "Rare Hot Wheels regular-production releases with Real Riders tyres.",
|
|
1216
|
+
id: "category-maisto",
|
|
1217
|
+
slug: "category-maisto",
|
|
1218
|
+
name: "Maisto",
|
|
1219
|
+
description: "Maisto diecast models — 1:18 and 1:24 scale licensed replicas of sports cars, muscle cars, and motorcycles.",
|
|
1376
1220
|
rootId: "category-diecast-vehicles",
|
|
1377
1221
|
parentIds: ["category-diecast-vehicles"],
|
|
1222
|
+
childrenIds: [],
|
|
1378
1223
|
tier: 1,
|
|
1379
|
-
path: "diecast-vehicles/
|
|
1224
|
+
path: "diecast-vehicles/maisto",
|
|
1225
|
+
order: 4,
|
|
1380
1226
|
isLeaf: true,
|
|
1227
|
+
position: 3,
|
|
1228
|
+
subtreeSize: 0,
|
|
1229
|
+
metrics: emptyMetrics,
|
|
1230
|
+
isFeatured: false,
|
|
1231
|
+
isBrand: false,
|
|
1232
|
+
seo: { title: "Maisto | LetItRip", description: "Buy Maisto diecast models — 1:18 and 1:24 scale replicas.", keywords: ["maisto", "maisto 1 18", "diecast model cars"] },
|
|
1233
|
+
display: { icon: "🏁", coverImage: "/media/category-image-maisto-20260101.jpg", color: "#4338ca", showInMenu: true, showInFooter: false },
|
|
1234
|
+
isActive: true,
|
|
1235
|
+
isSearchable: true,
|
|
1236
|
+
showOnHomepage: false,
|
|
1237
|
+
createdBy: "user-admin-letitrip",
|
|
1238
|
+
createdAt: daysAgo(300),
|
|
1239
|
+
updatedAt: daysAgo(1),
|
|
1240
|
+
},
|
|
1241
|
+
// ── ROOT 9: Spinning Tops ─────────────────────────────────────────────────
|
|
1242
|
+
{
|
|
1243
|
+
id: "category-spinning-tops",
|
|
1244
|
+
slug: "category-spinning-tops",
|
|
1245
|
+
name: "Spinning Tops",
|
|
1246
|
+
description: "Collectible spinning tops and battle systems — Beyblade X, Beyblade Burst, classic Metal Fight, and accessories.",
|
|
1247
|
+
rootId: "category-spinning-tops",
|
|
1248
|
+
parentIds: [],
|
|
1249
|
+
childrenIds: ["category-beyblade-x", "category-beyblade-burst", "category-beyblade-metal"],
|
|
1250
|
+
tier: 0,
|
|
1251
|
+
path: "spinning-tops",
|
|
1252
|
+
order: 9,
|
|
1253
|
+
isLeaf: false,
|
|
1254
|
+
position: 0,
|
|
1255
|
+
subtreeSize: 3,
|
|
1256
|
+
metrics: emptyMetrics,
|
|
1257
|
+
isFeatured: true,
|
|
1258
|
+
featuredPriority: 9,
|
|
1259
|
+
isBrand: false,
|
|
1260
|
+
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"] },
|
|
1261
|
+
display: { icon: "🌀", coverImage: "/media/category-image-spinning-tops-20260101.jpg", color: "#0891b2", showInMenu: true, showInFooter: true },
|
|
1262
|
+
isActive: true,
|
|
1263
|
+
isSearchable: true,
|
|
1264
|
+
showOnHomepage: true,
|
|
1265
|
+
createdBy: "user-admin-letitrip",
|
|
1266
|
+
createdAt: daysAgo(300),
|
|
1267
|
+
updatedAt: daysAgo(1),
|
|
1268
|
+
},
|
|
1269
|
+
{
|
|
1270
|
+
id: "category-beyblade-x",
|
|
1271
|
+
slug: "category-beyblade-x",
|
|
1272
|
+
name: "Beyblade X",
|
|
1273
|
+
description: "Beyblade X by Takara-Tomy — the latest generation with Xtreme Gear system, X Dash, and tournament-grade stadiums.",
|
|
1274
|
+
rootId: "category-spinning-tops",
|
|
1275
|
+
parentIds: ["category-spinning-tops"],
|
|
1276
|
+
childrenIds: [],
|
|
1277
|
+
tier: 1,
|
|
1278
|
+
path: "spinning-tops/beyblade-x",
|
|
1381
1279
|
order: 1,
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1280
|
+
isLeaf: true,
|
|
1281
|
+
position: 0,
|
|
1282
|
+
subtreeSize: 0,
|
|
1283
|
+
metrics: emptyMetrics,
|
|
1284
|
+
isFeatured: true,
|
|
1285
|
+
isBrand: false,
|
|
1286
|
+
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"] },
|
|
1287
|
+
display: { icon: "💫", coverImage: "/media/category-image-beyblade-x-20260101.jpg", color: "#0d9488", showInMenu: true, showInFooter: false },
|
|
1387
1288
|
isActive: true,
|
|
1388
1289
|
isSearchable: true,
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1290
|
+
showOnHomepage: false,
|
|
1291
|
+
createdBy: "user-admin-letitrip",
|
|
1292
|
+
createdAt: daysAgo(300),
|
|
1293
|
+
updatedAt: daysAgo(1),
|
|
1392
1294
|
},
|
|
1393
|
-
// ── Spinning Tops ─────────────────────────────────────────────────────
|
|
1394
1295
|
{
|
|
1395
|
-
id: "
|
|
1396
|
-
slug: "
|
|
1397
|
-
name: "Beyblade
|
|
1398
|
-
|
|
1399
|
-
itemCode: "BX",
|
|
1400
|
-
description: "All Beyblade X generation products — xtreme dash ratchet system.",
|
|
1296
|
+
id: "category-beyblade-burst",
|
|
1297
|
+
slug: "category-beyblade-burst",
|
|
1298
|
+
name: "Beyblade Burst",
|
|
1299
|
+
description: "Beyblade Burst by Takara-Tomy/Hasbro — Burst system tops, launchers, and stadiums from all Burst sub-generations.",
|
|
1401
1300
|
rootId: "category-spinning-tops",
|
|
1402
1301
|
parentIds: ["category-spinning-tops"],
|
|
1302
|
+
childrenIds: [],
|
|
1403
1303
|
tier: 1,
|
|
1404
|
-
path: "spinning-tops/
|
|
1304
|
+
path: "spinning-tops/beyblade-burst",
|
|
1305
|
+
order: 2,
|
|
1405
1306
|
isLeaf: true,
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
},
|
|
1307
|
+
position: 1,
|
|
1308
|
+
subtreeSize: 0,
|
|
1309
|
+
metrics: emptyMetrics,
|
|
1310
|
+
isFeatured: false,
|
|
1311
|
+
isBrand: false,
|
|
1312
|
+
seo: { title: "Beyblade Burst | LetItRip", description: "Buy Beyblade Burst tops, launchers, and stadiums.", keywords: ["beyblade burst", "burst system", "beyblade burst pro"] },
|
|
1313
|
+
display: { icon: "💥", coverImage: "/media/category-image-beyblade-burst-20260101.jpg", color: "#059669", showInMenu: true, showInFooter: false },
|
|
1314
|
+
isActive: true,
|
|
1315
|
+
isSearchable: true,
|
|
1316
|
+
showOnHomepage: false,
|
|
1317
|
+
createdBy: "user-admin-letitrip",
|
|
1318
|
+
createdAt: daysAgo(300),
|
|
1319
|
+
updatedAt: daysAgo(1),
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
id: "category-beyblade-metal",
|
|
1323
|
+
slug: "category-beyblade-metal",
|
|
1324
|
+
name: "Beyblade Metal Fight",
|
|
1325
|
+
description: "Classic Beyblade Metal Fight series — Metal Fusion, Metal Masters, Metal Fury, and Zero-G. Highly collectible vintage tops.",
|
|
1326
|
+
rootId: "category-spinning-tops",
|
|
1327
|
+
parentIds: ["category-spinning-tops"],
|
|
1328
|
+
childrenIds: [],
|
|
1329
|
+
tier: 1,
|
|
1330
|
+
path: "spinning-tops/beyblade-metal",
|
|
1331
|
+
order: 3,
|
|
1332
|
+
isLeaf: true,
|
|
1333
|
+
position: 2,
|
|
1334
|
+
subtreeSize: 0,
|
|
1335
|
+
metrics: emptyMetrics,
|
|
1336
|
+
isFeatured: false,
|
|
1337
|
+
isBrand: false,
|
|
1338
|
+
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"] },
|
|
1339
|
+
display: { icon: "⚙️", coverImage: "/media/category-image-beyblade-metal-20260101.jpg", color: "#64748b", showInMenu: true, showInFooter: false },
|
|
1340
|
+
isActive: true,
|
|
1341
|
+
isSearchable: true,
|
|
1342
|
+
showOnHomepage: false,
|
|
1343
|
+
createdBy: "user-admin-letitrip",
|
|
1344
|
+
createdAt: daysAgo(300),
|
|
1345
|
+
updatedAt: daysAgo(1),
|
|
1346
|
+
},
|
|
1347
|
+
// ── ROOT 10: Model Kits ────────────────────────────────────────────────────
|
|
1348
|
+
{
|
|
1349
|
+
id: "category-model-kits",
|
|
1350
|
+
slug: "category-model-kits",
|
|
1351
|
+
name: "Model Kits",
|
|
1352
|
+
description: "Plastic model kits for hobbyists — Gunpla, Frame Arms, 30 Minutes Missions, mecha, and military models.",
|
|
1353
|
+
rootId: "category-model-kits",
|
|
1354
|
+
parentIds: [],
|
|
1355
|
+
childrenIds: ["category-gunpla", "category-frame-arms", "category-30mm"],
|
|
1356
|
+
tier: 0,
|
|
1357
|
+
path: "model-kits",
|
|
1358
|
+
order: 10,
|
|
1359
|
+
isLeaf: false,
|
|
1360
|
+
position: 0,
|
|
1361
|
+
subtreeSize: 3,
|
|
1362
|
+
metrics: emptyMetrics,
|
|
1363
|
+
isFeatured: true,
|
|
1364
|
+
featuredPriority: 10,
|
|
1365
|
+
isBrand: false,
|
|
1366
|
+
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"] },
|
|
1367
|
+
display: { icon: "🔧", coverImage: "/media/category-image-model-kits-20260101.jpg", color: "#1e40af", showInMenu: true, showInFooter: true },
|
|
1412
1368
|
isActive: true,
|
|
1413
1369
|
isSearchable: true,
|
|
1414
|
-
|
|
1415
|
-
|
|
1370
|
+
showOnHomepage: true,
|
|
1371
|
+
createdBy: "user-admin-letitrip",
|
|
1372
|
+
createdAt: daysAgo(300),
|
|
1416
1373
|
updatedAt: daysAgo(1),
|
|
1417
1374
|
},
|
|
1418
|
-
// ── Model Kits ────────────────────────────────────────────────────────
|
|
1419
1375
|
{
|
|
1420
|
-
id: "
|
|
1421
|
-
slug: "
|
|
1422
|
-
name: "Gundam
|
|
1423
|
-
|
|
1424
|
-
itemCode: "MG",
|
|
1425
|
-
description: "Bandai Gundam MG 1/100 kits with full inner frame.",
|
|
1376
|
+
id: "category-gunpla",
|
|
1377
|
+
slug: "category-gunpla",
|
|
1378
|
+
name: "Gunpla (Gundam Model Kits)",
|
|
1379
|
+
description: "Gundam plastic models by Bandai — HG, RG, MG, PG, and SD grades. Japan's #1 hobby export.",
|
|
1426
1380
|
rootId: "category-model-kits",
|
|
1427
1381
|
parentIds: ["category-model-kits"],
|
|
1382
|
+
childrenIds: [],
|
|
1428
1383
|
tier: 1,
|
|
1429
|
-
path: "model-kits/
|
|
1384
|
+
path: "model-kits/gunpla",
|
|
1385
|
+
order: 1,
|
|
1430
1386
|
isLeaf: true,
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
},
|
|
1387
|
+
position: 0,
|
|
1388
|
+
subtreeSize: 0,
|
|
1389
|
+
metrics: emptyMetrics,
|
|
1390
|
+
isFeatured: true,
|
|
1391
|
+
isBrand: false,
|
|
1392
|
+
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"] },
|
|
1393
|
+
display: { icon: "🤖", coverImage: "/media/category-image-gunpla-20260101.jpg", color: "#1d4ed8", showInMenu: true, showInFooter: false },
|
|
1437
1394
|
isActive: true,
|
|
1438
1395
|
isSearchable: true,
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1396
|
+
showOnHomepage: false,
|
|
1397
|
+
createdBy: "user-admin-letitrip",
|
|
1398
|
+
createdAt: daysAgo(300),
|
|
1399
|
+
updatedAt: daysAgo(1),
|
|
1442
1400
|
},
|
|
1443
1401
|
{
|
|
1444
|
-
id: "
|
|
1445
|
-
slug: "
|
|
1446
|
-
name: "
|
|
1447
|
-
|
|
1448
|
-
itemCode: "HG",
|
|
1449
|
-
description: "Entry-level Bandai Gundam HG 1/144 kits across all series.",
|
|
1402
|
+
id: "category-frame-arms",
|
|
1403
|
+
slug: "category-frame-arms",
|
|
1404
|
+
name: "Frame Arms / Frame Arms Girl",
|
|
1405
|
+
description: "Frame Arms by Kotobukiya — customizable mecha model kits and Frame Arms Girl humanoid kits.",
|
|
1450
1406
|
rootId: "category-model-kits",
|
|
1451
1407
|
parentIds: ["category-model-kits"],
|
|
1408
|
+
childrenIds: [],
|
|
1452
1409
|
tier: 1,
|
|
1453
|
-
path: "model-kits/
|
|
1410
|
+
path: "model-kits/frame-arms",
|
|
1411
|
+
order: 2,
|
|
1454
1412
|
isLeaf: true,
|
|
1413
|
+
position: 1,
|
|
1414
|
+
subtreeSize: 0,
|
|
1415
|
+
metrics: emptyMetrics,
|
|
1416
|
+
isFeatured: false,
|
|
1417
|
+
isBrand: false,
|
|
1418
|
+
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"] },
|
|
1419
|
+
display: { icon: "🛡️", coverImage: "/media/category-image-frame-arms-20260101.jpg", color: "#4338ca", showInMenu: true, showInFooter: false },
|
|
1420
|
+
isActive: true,
|
|
1421
|
+
isSearchable: true,
|
|
1422
|
+
showOnHomepage: false,
|
|
1423
|
+
createdBy: "user-admin-letitrip",
|
|
1424
|
+
createdAt: daysAgo(300),
|
|
1425
|
+
updatedAt: daysAgo(1),
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
id: "category-30mm",
|
|
1429
|
+
slug: "category-30mm",
|
|
1430
|
+
name: "30 Minutes Missions",
|
|
1431
|
+
description: "30 Minutes Missions (30MM) by Bandai — beginner-friendly mecha kits designed for 30-minute builds with extensive customization.",
|
|
1432
|
+
rootId: "category-model-kits",
|
|
1433
|
+
parentIds: ["category-model-kits"],
|
|
1434
|
+
childrenIds: [],
|
|
1435
|
+
tier: 1,
|
|
1436
|
+
path: "model-kits/30mm",
|
|
1437
|
+
order: 3,
|
|
1438
|
+
isLeaf: true,
|
|
1439
|
+
position: 2,
|
|
1440
|
+
subtreeSize: 0,
|
|
1441
|
+
metrics: emptyMetrics,
|
|
1442
|
+
isFeatured: false,
|
|
1443
|
+
isBrand: false,
|
|
1444
|
+
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"] },
|
|
1445
|
+
display: { icon: "⏱️", coverImage: "/media/category-image-30mm-20260101.jpg", color: "#0f766e", showInMenu: true, showInFooter: false },
|
|
1446
|
+
isActive: true,
|
|
1447
|
+
isSearchable: true,
|
|
1448
|
+
showOnHomepage: false,
|
|
1449
|
+
createdBy: "user-admin-letitrip",
|
|
1450
|
+
createdAt: daysAgo(300),
|
|
1451
|
+
updatedAt: daysAgo(1),
|
|
1452
|
+
},
|
|
1453
|
+
// ── ROOT 11: Vintage & Rare ────────────────────────────────────────────────
|
|
1454
|
+
{
|
|
1455
|
+
id: "category-vintage-rare",
|
|
1456
|
+
slug: "category-vintage-rare",
|
|
1457
|
+
name: "Vintage & Rare",
|
|
1458
|
+
description: "Vintage and rare collectibles — retro toys, discontinued figures, first-edition cards, and antique memorabilia.",
|
|
1459
|
+
rootId: "category-vintage-rare",
|
|
1460
|
+
parentIds: [],
|
|
1461
|
+
childrenIds: ["category-retro-toys", "category-vintage-cards", "category-antique-memorabilia"],
|
|
1462
|
+
tier: 0,
|
|
1463
|
+
path: "vintage-rare",
|
|
1464
|
+
order: 11,
|
|
1465
|
+
isLeaf: false,
|
|
1466
|
+
position: 0,
|
|
1467
|
+
subtreeSize: 3,
|
|
1468
|
+
metrics: emptyMetrics,
|
|
1469
|
+
isFeatured: true,
|
|
1470
|
+
featuredPriority: 11,
|
|
1471
|
+
isBrand: false,
|
|
1472
|
+
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"] },
|
|
1473
|
+
display: { icon: "🏺", coverImage: "/media/category-image-vintage-rare-20260101.jpg", color: "#92400e", showInMenu: true, showInFooter: true },
|
|
1474
|
+
isActive: true,
|
|
1475
|
+
isSearchable: true,
|
|
1476
|
+
showOnHomepage: true,
|
|
1477
|
+
createdBy: "user-admin-letitrip",
|
|
1478
|
+
createdAt: daysAgo(300),
|
|
1479
|
+
updatedAt: daysAgo(1),
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
id: "category-retro-toys",
|
|
1483
|
+
slug: "category-retro-toys",
|
|
1484
|
+
name: "Retro Toys",
|
|
1485
|
+
description: "Vintage and discontinued toys — 80s/90s action figures, original Transformers, G.I. Joe, He-Man, and more.",
|
|
1486
|
+
rootId: "category-vintage-rare",
|
|
1487
|
+
parentIds: ["category-vintage-rare"],
|
|
1488
|
+
childrenIds: [],
|
|
1489
|
+
tier: 1,
|
|
1490
|
+
path: "vintage-rare/retro-toys",
|
|
1455
1491
|
order: 1,
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1492
|
+
isLeaf: true,
|
|
1493
|
+
position: 0,
|
|
1494
|
+
subtreeSize: 0,
|
|
1495
|
+
metrics: emptyMetrics,
|
|
1496
|
+
isFeatured: false,
|
|
1497
|
+
isBrand: false,
|
|
1498
|
+
seo: { title: "Retro Toys | LetItRip", description: "Buy vintage 80s/90s action figures and toys.", keywords: ["retro toys", "vintage action figures", "80s toys", "90s toys"] },
|
|
1499
|
+
display: { icon: "🕹️", coverImage: "/media/category-image-retro-toys-20260101.jpg", color: "#78350f", showInMenu: true, showInFooter: false },
|
|
1461
1500
|
isActive: true,
|
|
1462
1501
|
isSearchable: true,
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1502
|
+
showOnHomepage: false,
|
|
1503
|
+
createdBy: "user-admin-letitrip",
|
|
1504
|
+
createdAt: daysAgo(300),
|
|
1505
|
+
updatedAt: daysAgo(1),
|
|
1466
1506
|
},
|
|
1467
|
-
// ── Action Figures ────────────────────────────────────────────────────
|
|
1468
1507
|
{
|
|
1469
|
-
id: "
|
|
1470
|
-
slug: "
|
|
1471
|
-
name: "
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
parentIds: ["category-action-figures"],
|
|
1508
|
+
id: "category-vintage-cards",
|
|
1509
|
+
slug: "category-vintage-cards",
|
|
1510
|
+
name: "Vintage Cards",
|
|
1511
|
+
description: "Vintage trading cards from pre-2010 — 1st Edition Pokémon Base Set, early YGO, Magic: The Gathering Alpha/Beta, and sports cards.",
|
|
1512
|
+
rootId: "category-vintage-rare",
|
|
1513
|
+
parentIds: ["category-vintage-rare"],
|
|
1514
|
+
childrenIds: [],
|
|
1477
1515
|
tier: 1,
|
|
1478
|
-
path: "
|
|
1516
|
+
path: "vintage-rare/vintage-cards",
|
|
1517
|
+
order: 2,
|
|
1479
1518
|
isLeaf: true,
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
},
|
|
1519
|
+
position: 1,
|
|
1520
|
+
subtreeSize: 0,
|
|
1521
|
+
metrics: emptyMetrics,
|
|
1522
|
+
isFeatured: false,
|
|
1523
|
+
isBrand: false,
|
|
1524
|
+
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"] },
|
|
1525
|
+
display: { icon: "📜", coverImage: "/media/category-image-vintage-cards-20260101.jpg", color: "#451a03", showInMenu: true, showInFooter: false },
|
|
1486
1526
|
isActive: true,
|
|
1487
1527
|
isSearchable: true,
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1528
|
+
showOnHomepage: false,
|
|
1529
|
+
createdBy: "user-admin-letitrip",
|
|
1530
|
+
createdAt: daysAgo(300),
|
|
1531
|
+
updatedAt: daysAgo(1),
|
|
1491
1532
|
},
|
|
1492
1533
|
{
|
|
1493
|
-
id: "
|
|
1494
|
-
slug: "
|
|
1495
|
-
name: "
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
parentIds: ["category-action-figures"],
|
|
1534
|
+
id: "category-antique-memorabilia",
|
|
1535
|
+
slug: "category-antique-memorabilia",
|
|
1536
|
+
name: "Antique Memorabilia",
|
|
1537
|
+
description: "Antique and rare memorabilia — signed merchandise, production proofs, prototype toys, and one-of-a-kind collectibles.",
|
|
1538
|
+
rootId: "category-vintage-rare",
|
|
1539
|
+
parentIds: ["category-vintage-rare"],
|
|
1540
|
+
childrenIds: [],
|
|
1501
1541
|
tier: 1,
|
|
1502
|
-
path: "
|
|
1542
|
+
path: "vintage-rare/antique-memorabilia",
|
|
1543
|
+
order: 3,
|
|
1544
|
+
isLeaf: true,
|
|
1545
|
+
position: 2,
|
|
1546
|
+
subtreeSize: 0,
|
|
1547
|
+
metrics: emptyMetrics,
|
|
1548
|
+
isFeatured: false,
|
|
1549
|
+
isBrand: false,
|
|
1550
|
+
seo: { title: "Antique Memorabilia | LetItRip", description: "Buy rare memorabilia — signed items, prototypes, production proofs.", keywords: ["antique memorabilia", "signed collectibles", "prototype toys", "rare memorabilia"] },
|
|
1551
|
+
display: { icon: "🖼️", coverImage: "/media/category-image-antique-memorabilia-20260101.jpg", color: "#292524", showInMenu: true, showInFooter: false },
|
|
1552
|
+
isActive: true,
|
|
1553
|
+
isSearchable: true,
|
|
1554
|
+
showOnHomepage: false,
|
|
1555
|
+
createdBy: "user-admin-letitrip",
|
|
1556
|
+
createdAt: daysAgo(300),
|
|
1557
|
+
updatedAt: daysAgo(1),
|
|
1558
|
+
},
|
|
1559
|
+
];
|
|
1560
|
+
// ──────────────────────────────────────────────────────────────────────────────
|
|
1561
|
+
// 25 Brands (SB-UNI-C: brands stored as categoryType:"brand")
|
|
1562
|
+
// ──────────────────────────────────────────────────────────────────────────────
|
|
1563
|
+
const brandRows = [
|
|
1564
|
+
{
|
|
1565
|
+
id: "brand-konami",
|
|
1566
|
+
slug: "brand-konami",
|
|
1567
|
+
name: "Konami",
|
|
1568
|
+
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1569
|
+
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.",
|
|
1570
|
+
brandWebsite: "https://www.konami.com/yugioh",
|
|
1571
|
+
brandCountry: "Japan",
|
|
1572
|
+
brandFounded: 1969,
|
|
1573
|
+
brandBannerImage: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg",
|
|
1574
|
+
rootId: "brand-konami",
|
|
1575
|
+
parentIds: [],
|
|
1576
|
+
tier: 0,
|
|
1577
|
+
path: "brand-konami",
|
|
1503
1578
|
isLeaf: true,
|
|
1504
1579
|
order: 1,
|
|
1505
|
-
display: {
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1580
|
+
display: { coverImage: "https://images.ygoprodeck.com/images/cards/small/46986414.jpg", showInMenu: false, showInFooter: true },
|
|
1581
|
+
isFeatured: true,
|
|
1582
|
+
isBrand: true,
|
|
1583
|
+
isActive: true,
|
|
1584
|
+
isSearchable: true,
|
|
1585
|
+
createdBy: "user-admin-letitrip",
|
|
1586
|
+
createdAt: daysAgo(400),
|
|
1587
|
+
updatedAt: daysAgo(30),
|
|
1588
|
+
seo: { title: "Konami | LetItRip", description: "Official YGO TCG publisher. All Konami Yu-Gi-Oh! cards on LetItRip.", keywords: ["konami", "yugioh publisher", "ygo tcg"] },
|
|
1589
|
+
},
|
|
1590
|
+
{
|
|
1591
|
+
id: "brand-upper-deck",
|
|
1592
|
+
slug: "brand-upper-deck",
|
|
1593
|
+
name: "Upper Deck Entertainment",
|
|
1594
|
+
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1595
|
+
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.",
|
|
1596
|
+
brandWebsite: "https://www.upperdeck.com",
|
|
1597
|
+
brandCountry: "USA",
|
|
1598
|
+
brandFounded: 1988,
|
|
1599
|
+
brandBannerImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg",
|
|
1600
|
+
rootId: "brand-upper-deck",
|
|
1601
|
+
parentIds: [],
|
|
1602
|
+
tier: 0,
|
|
1603
|
+
path: "brand-upper-deck",
|
|
1604
|
+
isLeaf: true,
|
|
1605
|
+
order: 2,
|
|
1606
|
+
display: { coverImage: "https://images.ygoprodeck.com/images/cards/small/89631139.jpg", showInMenu: false, showInFooter: true },
|
|
1607
|
+
isFeatured: false,
|
|
1608
|
+
isBrand: true,
|
|
1609
|
+
isActive: true,
|
|
1610
|
+
isSearchable: true,
|
|
1611
|
+
createdBy: "user-admin-letitrip",
|
|
1612
|
+
createdAt: daysAgo(400),
|
|
1613
|
+
updatedAt: daysAgo(30),
|
|
1614
|
+
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"] },
|
|
1615
|
+
},
|
|
1616
|
+
{
|
|
1617
|
+
id: "brand-bandai",
|
|
1618
|
+
slug: "brand-bandai",
|
|
1619
|
+
name: "Bandai",
|
|
1620
|
+
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1621
|
+
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.",
|
|
1622
|
+
brandWebsite: "https://www.bandai.co.jp",
|
|
1623
|
+
brandCountry: "Japan",
|
|
1624
|
+
brandFounded: 1950,
|
|
1625
|
+
brandBannerImage: "https://images.ygoprodeck.com/images/cards/cropped/40640057.jpg",
|
|
1626
|
+
rootId: "brand-bandai",
|
|
1627
|
+
parentIds: [],
|
|
1628
|
+
tier: 0,
|
|
1629
|
+
path: "brand-bandai",
|
|
1630
|
+
isLeaf: true,
|
|
1631
|
+
order: 3,
|
|
1632
|
+
display: { coverImage: "https://images.ygoprodeck.com/images/cards/small/40640057.jpg", showInMenu: false, showInFooter: false },
|
|
1633
|
+
isFeatured: false,
|
|
1634
|
+
isBrand: true,
|
|
1635
|
+
isActive: true,
|
|
1636
|
+
isSearchable: true,
|
|
1637
|
+
createdBy: "user-admin-letitrip",
|
|
1638
|
+
createdAt: daysAgo(400),
|
|
1639
|
+
updatedAt: daysAgo(30),
|
|
1640
|
+
seo: { title: "Bandai | LetItRip", description: "Rare Bandai Yu-Gi-Oh! cards and merchandise.", keywords: ["bandai", "bandai yugioh", "original yugioh cards"] },
|
|
1641
|
+
},
|
|
1642
|
+
{
|
|
1643
|
+
id: "brand-toei-animation",
|
|
1644
|
+
slug: "brand-toei-animation",
|
|
1645
|
+
name: "Toei Animation",
|
|
1646
|
+
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1647
|
+
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.",
|
|
1648
|
+
brandWebsite: "https://www.toei-animation.co.jp",
|
|
1649
|
+
brandCountry: "Japan",
|
|
1650
|
+
brandFounded: 1956,
|
|
1651
|
+
brandBannerImage: "https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg",
|
|
1652
|
+
rootId: "brand-toei-animation",
|
|
1653
|
+
parentIds: [],
|
|
1654
|
+
tier: 0,
|
|
1655
|
+
path: "brand-toei-animation",
|
|
1656
|
+
isLeaf: true,
|
|
1657
|
+
order: 4,
|
|
1658
|
+
display: { coverImage: "https://images.ygoprodeck.com/images/cards/small/46986414.jpg", showInMenu: false, showInFooter: false },
|
|
1659
|
+
isFeatured: false,
|
|
1660
|
+
isBrand: true,
|
|
1510
1661
|
isActive: true,
|
|
1511
1662
|
isSearchable: true,
|
|
1512
|
-
createdBy:
|
|
1513
|
-
createdAt: daysAgo(
|
|
1514
|
-
updatedAt: daysAgo(
|
|
1663
|
+
createdBy: "user-admin-letitrip",
|
|
1664
|
+
createdAt: daysAgo(400),
|
|
1665
|
+
updatedAt: daysAgo(30),
|
|
1666
|
+
seo: { title: "Toei Animation | LetItRip", description: "Toei Animation YGO merchandise and collectibles.", keywords: ["toei animation", "yugioh anime merchandise", "season 0"] },
|
|
1515
1667
|
},
|
|
1516
|
-
];
|
|
1517
|
-
// SB-UNI-C — brands folded in as tier-0 self-rooted categories with categoryType:"brand".
|
|
1518
|
-
const brandRows = [
|
|
1519
1668
|
{
|
|
1520
|
-
id: "brand-
|
|
1521
|
-
slug: "brand-
|
|
1522
|
-
name: "
|
|
1669
|
+
id: "brand-score-entertainment",
|
|
1670
|
+
slug: "brand-score-entertainment",
|
|
1671
|
+
name: "Score Entertainment",
|
|
1523
1672
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1524
|
-
description: "
|
|
1525
|
-
brandWebsite: "https://www.
|
|
1526
|
-
brandCountry: "
|
|
1527
|
-
brandFounded:
|
|
1528
|
-
brandBannerImage: "https://images.
|
|
1529
|
-
rootId: "brand-
|
|
1673
|
+
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.",
|
|
1674
|
+
brandWebsite: "https://www.score-entertainment.com",
|
|
1675
|
+
brandCountry: "USA",
|
|
1676
|
+
brandFounded: 1992,
|
|
1677
|
+
brandBannerImage: "https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg",
|
|
1678
|
+
rootId: "brand-score-entertainment",
|
|
1530
1679
|
parentIds: [],
|
|
1531
1680
|
tier: 0,
|
|
1532
|
-
path: "brand-
|
|
1681
|
+
path: "brand-score-entertainment",
|
|
1533
1682
|
isLeaf: true,
|
|
1534
|
-
order:
|
|
1535
|
-
display: { coverImage: "https://images.
|
|
1683
|
+
order: 5,
|
|
1684
|
+
display: { coverImage: "https://images.ygoprodeck.com/images/cards/small/89631139.jpg", showInMenu: false, showInFooter: false },
|
|
1536
1685
|
isFeatured: false,
|
|
1537
1686
|
isBrand: true,
|
|
1538
1687
|
isActive: true,
|
|
1539
1688
|
isSearchable: true,
|
|
1540
|
-
createdBy:
|
|
1689
|
+
createdBy: "user-admin-letitrip",
|
|
1541
1690
|
createdAt: daysAgo(400),
|
|
1542
1691
|
updatedAt: daysAgo(30),
|
|
1543
|
-
seo: { title: "
|
|
1692
|
+
seo: { title: "Score Entertainment | LetItRip", description: "Score Entertainment distributed YGO printings.", keywords: ["score entertainment", "score yugioh"] },
|
|
1544
1693
|
},
|
|
1694
|
+
// ── Broader collectibles brands ────────────────────────────────────────────
|
|
1545
1695
|
{
|
|
1546
1696
|
id: "brand-hasbro",
|
|
1547
1697
|
slug: "brand-hasbro",
|
|
1548
1698
|
name: "Hasbro",
|
|
1549
1699
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1550
|
-
description: "American
|
|
1700
|
+
description: "American toy and entertainment giant. Makes Marvel Legends, Transformers, Beyblade (international), Nerf, and more. One of the world's largest toy companies.",
|
|
1551
1701
|
brandWebsite: "https://www.hasbro.com",
|
|
1552
1702
|
brandCountry: "USA",
|
|
1553
1703
|
brandFounded: 1923,
|
|
1554
|
-
brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=hasbro",
|
|
1555
1704
|
rootId: "brand-hasbro",
|
|
1556
1705
|
parentIds: [],
|
|
1557
1706
|
tier: 0,
|
|
1558
1707
|
path: "brand-hasbro",
|
|
1559
1708
|
isLeaf: true,
|
|
1560
|
-
order:
|
|
1561
|
-
display: { coverImage: "
|
|
1562
|
-
isFeatured:
|
|
1709
|
+
order: 6,
|
|
1710
|
+
display: { coverImage: "/media/brand-logo-hasbro-20260101.jpg", showInMenu: false, showInFooter: true },
|
|
1711
|
+
isFeatured: true,
|
|
1563
1712
|
isBrand: true,
|
|
1564
1713
|
isActive: true,
|
|
1565
1714
|
isSearchable: true,
|
|
1566
|
-
createdBy:
|
|
1567
|
-
createdAt: daysAgo(
|
|
1715
|
+
createdBy: "user-admin-letitrip",
|
|
1716
|
+
createdAt: daysAgo(300),
|
|
1568
1717
|
updatedAt: daysAgo(30),
|
|
1569
|
-
seo: { title: "Hasbro", description: "
|
|
1718
|
+
seo: { title: "Hasbro | LetItRip", description: "Shop Hasbro collectibles — Marvel Legends, Transformers, Beyblade.", keywords: ["hasbro", "hasbro toys", "marvel legends hasbro"] },
|
|
1570
1719
|
},
|
|
1571
1720
|
{
|
|
1572
1721
|
id: "brand-takara-tomy",
|
|
1573
1722
|
slug: "brand-takara-tomy",
|
|
1574
|
-
name: "Takara
|
|
1723
|
+
name: "Takara-Tomy",
|
|
1575
1724
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1576
|
-
description: "
|
|
1725
|
+
description: "Japanese toy company behind Beyblade, Tomica, Transformers (Japan), and Duel Masters. Known for premium quality and Japan-exclusive releases.",
|
|
1577
1726
|
brandWebsite: "https://www.takaratomy.co.jp",
|
|
1578
1727
|
brandCountry: "Japan",
|
|
1579
1728
|
brandFounded: 2006,
|
|
1580
|
-
brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop",
|
|
1581
1729
|
rootId: "brand-takara-tomy",
|
|
1582
1730
|
parentIds: [],
|
|
1583
1731
|
tier: 0,
|
|
1584
1732
|
path: "brand-takara-tomy",
|
|
1585
1733
|
isLeaf: true,
|
|
1586
|
-
order:
|
|
1587
|
-
display: { coverImage: "
|
|
1588
|
-
isFeatured:
|
|
1734
|
+
order: 7,
|
|
1735
|
+
display: { coverImage: "/media/brand-logo-takara-tomy-20260101.jpg", showInMenu: false, showInFooter: true },
|
|
1736
|
+
isFeatured: true,
|
|
1589
1737
|
isBrand: true,
|
|
1590
1738
|
isActive: true,
|
|
1591
1739
|
isSearchable: true,
|
|
1592
|
-
createdBy:
|
|
1593
|
-
createdAt: daysAgo(
|
|
1740
|
+
createdBy: "user-admin-letitrip",
|
|
1741
|
+
createdAt: daysAgo(300),
|
|
1594
1742
|
updatedAt: daysAgo(30),
|
|
1595
|
-
seo: { title: "Takara
|
|
1743
|
+
seo: { title: "Takara-Tomy | LetItRip", description: "Shop Takara-Tomy collectibles — Beyblade, Tomica, Transformers.", keywords: ["takara tomy", "takara tomy beyblade", "tomica takara"] },
|
|
1596
1744
|
},
|
|
1597
1745
|
{
|
|
1598
1746
|
id: "brand-mattel",
|
|
1599
1747
|
slug: "brand-mattel",
|
|
1600
1748
|
name: "Mattel",
|
|
1601
1749
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1602
|
-
description: "American toy
|
|
1750
|
+
description: "American toy corporation — parent of Hot Wheels, Matchbox, Barbie, Masters of the Universe, and UNO.",
|
|
1603
1751
|
brandWebsite: "https://www.mattel.com",
|
|
1604
1752
|
brandCountry: "USA",
|
|
1605
1753
|
brandFounded: 1945,
|
|
1606
|
-
brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=mattel",
|
|
1607
1754
|
rootId: "brand-mattel",
|
|
1608
1755
|
parentIds: [],
|
|
1609
1756
|
tier: 0,
|
|
1610
1757
|
path: "brand-mattel",
|
|
1611
1758
|
isLeaf: true,
|
|
1612
|
-
order:
|
|
1613
|
-
display: { coverImage: "
|
|
1614
|
-
isFeatured:
|
|
1759
|
+
order: 8,
|
|
1760
|
+
display: { coverImage: "/media/brand-logo-mattel-20260101.jpg", showInMenu: false, showInFooter: true },
|
|
1761
|
+
isFeatured: true,
|
|
1615
1762
|
isBrand: true,
|
|
1616
1763
|
isActive: true,
|
|
1617
1764
|
isSearchable: true,
|
|
1618
|
-
createdBy:
|
|
1619
|
-
createdAt: daysAgo(
|
|
1765
|
+
createdBy: "user-admin-letitrip",
|
|
1766
|
+
createdAt: daysAgo(300),
|
|
1620
1767
|
updatedAt: daysAgo(30),
|
|
1621
|
-
seo: { title: "Mattel", description: "
|
|
1768
|
+
seo: { title: "Mattel | LetItRip", description: "Shop Mattel collectibles — Hot Wheels, Matchbox, Masters of the Universe.", keywords: ["mattel", "hot wheels mattel", "matchbox mattel"] },
|
|
1622
1769
|
},
|
|
1623
1770
|
{
|
|
1624
1771
|
id: "brand-pokemon-company",
|
|
1625
1772
|
slug: "brand-pokemon-company",
|
|
1626
1773
|
name: "The Pokémon Company",
|
|
1627
1774
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1628
|
-
description: "
|
|
1775
|
+
description: "Joint venture of Nintendo, Game Freak, and Creatures. Publishes the Pokémon TCG worldwide. Largest trading card game brand by revenue.",
|
|
1629
1776
|
brandWebsite: "https://www.pokemon.com",
|
|
1630
1777
|
brandCountry: "Japan",
|
|
1631
1778
|
brandFounded: 1998,
|
|
1632
|
-
brandBannerImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop",
|
|
1633
1779
|
rootId: "brand-pokemon-company",
|
|
1634
1780
|
parentIds: [],
|
|
1635
1781
|
tier: 0,
|
|
1636
1782
|
path: "brand-pokemon-company",
|
|
1637
1783
|
isLeaf: true,
|
|
1638
|
-
order:
|
|
1639
|
-
display: { coverImage: "
|
|
1640
|
-
isFeatured:
|
|
1641
|
-
isBrand: true,
|
|
1642
|
-
isActive: true,
|
|
1643
|
-
isSearchable: true,
|
|
1644
|
-
createdBy: ADMIN_ID,
|
|
1645
|
-
createdAt: daysAgo(400),
|
|
1646
|
-
updatedAt: daysAgo(30),
|
|
1647
|
-
seo: { title: "The Pokémon Company", description: "Japanese consortium managing the Pokémon intellectual property. Publishes the Pokémon Trading Card Game (TCG), video games, anime merchandise, and official licensed collectibles worldwide.", keywords: ["The Pokémon Company"] },
|
|
1648
|
-
},
|
|
1649
|
-
{
|
|
1650
|
-
id: "brand-konami",
|
|
1651
|
-
slug: "brand-konami",
|
|
1652
|
-
name: "Konami",
|
|
1653
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1654
|
-
description: "Japanese entertainment conglomerate best known for the Yu-Gi-Oh! Trading Card Game. Also produces Metal Gear, Silent Hill, and Castlevania merchandise and figures.",
|
|
1655
|
-
brandWebsite: "https://www.konami.com",
|
|
1656
|
-
brandCountry: "Japan",
|
|
1657
|
-
brandFounded: 1969,
|
|
1658
|
-
brandBannerImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=1200&h=400&fit=crop",
|
|
1659
|
-
rootId: "brand-konami",
|
|
1660
|
-
parentIds: [],
|
|
1661
|
-
tier: 0,
|
|
1662
|
-
path: "brand-konami",
|
|
1663
|
-
isLeaf: true,
|
|
1664
|
-
order: 6,
|
|
1665
|
-
display: { coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
|
|
1666
|
-
isFeatured: false,
|
|
1784
|
+
order: 9,
|
|
1785
|
+
display: { coverImage: "/media/brand-logo-pokemon-company-20260101.jpg", showInMenu: false, showInFooter: true },
|
|
1786
|
+
isFeatured: true,
|
|
1667
1787
|
isBrand: true,
|
|
1668
1788
|
isActive: true,
|
|
1669
1789
|
isSearchable: true,
|
|
1670
|
-
createdBy:
|
|
1671
|
-
createdAt: daysAgo(
|
|
1790
|
+
createdBy: "user-admin-letitrip",
|
|
1791
|
+
createdAt: daysAgo(300),
|
|
1672
1792
|
updatedAt: daysAgo(30),
|
|
1673
|
-
seo: { title: "
|
|
1793
|
+
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"] },
|
|
1674
1794
|
},
|
|
1675
1795
|
{
|
|
1676
1796
|
id: "brand-funko",
|
|
1677
1797
|
slug: "brand-funko",
|
|
1678
1798
|
name: "Funko",
|
|
1679
1799
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1680
|
-
description: "American
|
|
1681
|
-
brandWebsite: "https://funko.com",
|
|
1800
|
+
description: "American company known for Funko Pop! vinyl figures. Covers every major IP — anime, Marvel, DC, Disney, Star Wars, and more.",
|
|
1801
|
+
brandWebsite: "https://www.funko.com",
|
|
1682
1802
|
brandCountry: "USA",
|
|
1683
1803
|
brandFounded: 1998,
|
|
1684
|
-
brandBannerImage: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=1200&h=400&fit=crop",
|
|
1685
1804
|
rootId: "brand-funko",
|
|
1686
1805
|
parentIds: [],
|
|
1687
1806
|
tier: 0,
|
|
1688
1807
|
path: "brand-funko",
|
|
1689
1808
|
isLeaf: true,
|
|
1690
|
-
order:
|
|
1691
|
-
display: { coverImage: "
|
|
1692
|
-
isFeatured:
|
|
1809
|
+
order: 10,
|
|
1810
|
+
display: { coverImage: "/media/brand-logo-funko-20260101.jpg", showInMenu: false, showInFooter: true },
|
|
1811
|
+
isFeatured: true,
|
|
1693
1812
|
isBrand: true,
|
|
1694
1813
|
isActive: true,
|
|
1695
1814
|
isSearchable: true,
|
|
1696
|
-
createdBy:
|
|
1697
|
-
createdAt: daysAgo(
|
|
1815
|
+
createdBy: "user-admin-letitrip",
|
|
1816
|
+
createdAt: daysAgo(300),
|
|
1698
1817
|
updatedAt: daysAgo(30),
|
|
1699
|
-
seo: { title: "Funko", description: "
|
|
1818
|
+
seo: { title: "Funko | LetItRip", description: "Shop Funko Pop! vinyl figures — anime, Marvel, DC, Star Wars.", keywords: ["funko", "funko pop", "pop vinyl", "funko exclusive"] },
|
|
1700
1819
|
},
|
|
1701
1820
|
{
|
|
1702
1821
|
id: "brand-neca",
|
|
1703
1822
|
slug: "brand-neca",
|
|
1704
1823
|
name: "NECA",
|
|
1705
1824
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1706
|
-
description: "National Entertainment Collectibles Association
|
|
1825
|
+
description: "National Entertainment Collectibles Association. Premium 7-inch figures — horror, sci-fi, gaming, and TMNT lines.",
|
|
1707
1826
|
brandWebsite: "https://www.necaonline.com",
|
|
1708
1827
|
brandCountry: "USA",
|
|
1709
1828
|
brandFounded: 1996,
|
|
1710
|
-
brandBannerImage: "https://images.unsplash.com/photo-1531259683007-016a7b628fc3?w=1200&h=400&fit=crop",
|
|
1711
1829
|
rootId: "brand-neca",
|
|
1712
1830
|
parentIds: [],
|
|
1713
1831
|
tier: 0,
|
|
1714
1832
|
path: "brand-neca",
|
|
1715
1833
|
isLeaf: true,
|
|
1716
|
-
order:
|
|
1717
|
-
display: { coverImage: "
|
|
1834
|
+
order: 11,
|
|
1835
|
+
display: { coverImage: "/media/brand-logo-neca-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
1718
1836
|
isFeatured: false,
|
|
1719
1837
|
isBrand: true,
|
|
1720
1838
|
isActive: true,
|
|
1721
1839
|
isSearchable: true,
|
|
1722
|
-
createdBy:
|
|
1723
|
-
createdAt: daysAgo(
|
|
1840
|
+
createdBy: "user-admin-letitrip",
|
|
1841
|
+
createdAt: daysAgo(300),
|
|
1724
1842
|
updatedAt: daysAgo(30),
|
|
1725
|
-
seo: { title: "NECA", description: "
|
|
1843
|
+
seo: { title: "NECA | LetItRip", description: "Shop NECA figures — horror, sci-fi, TMNT, and gaming collectibles.", keywords: ["neca", "neca figures", "neca tmnt", "neca horror"] },
|
|
1726
1844
|
},
|
|
1727
1845
|
{
|
|
1728
1846
|
id: "brand-mcfarlane",
|
|
1729
1847
|
slug: "brand-mcfarlane",
|
|
1730
1848
|
name: "McFarlane Toys",
|
|
1731
1849
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1732
|
-
description: "
|
|
1733
|
-
brandWebsite: "https://
|
|
1850
|
+
description: "Founded by Todd McFarlane. Known for hyper-detailed DC Multiverse, Spawn, and sports figures.",
|
|
1851
|
+
brandWebsite: "https://mcfarlane.com",
|
|
1734
1852
|
brandCountry: "USA",
|
|
1735
1853
|
brandFounded: 1994,
|
|
1736
|
-
brandBannerImage: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=1200&h=400&fit=crop",
|
|
1737
1854
|
rootId: "brand-mcfarlane",
|
|
1738
1855
|
parentIds: [],
|
|
1739
1856
|
tier: 0,
|
|
1740
1857
|
path: "brand-mcfarlane",
|
|
1741
1858
|
isLeaf: true,
|
|
1742
|
-
order:
|
|
1743
|
-
display: { coverImage: "
|
|
1859
|
+
order: 12,
|
|
1860
|
+
display: { coverImage: "/media/brand-logo-mcfarlane-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
1744
1861
|
isFeatured: false,
|
|
1745
1862
|
isBrand: true,
|
|
1746
1863
|
isActive: true,
|
|
1747
1864
|
isSearchable: true,
|
|
1748
|
-
createdBy:
|
|
1749
|
-
createdAt: daysAgo(
|
|
1865
|
+
createdBy: "user-admin-letitrip",
|
|
1866
|
+
createdAt: daysAgo(300),
|
|
1750
1867
|
updatedAt: daysAgo(30),
|
|
1751
|
-
seo: { title: "McFarlane Toys", description: "
|
|
1868
|
+
seo: { title: "McFarlane Toys | LetItRip", description: "Shop McFarlane Toys — DC Multiverse, Spawn, and sports figures.", keywords: ["mcfarlane toys", "dc multiverse", "spawn figure", "mcfarlane dc"] },
|
|
1752
1869
|
},
|
|
1753
1870
|
{
|
|
1754
1871
|
id: "brand-good-smile",
|
|
1755
1872
|
slug: "brand-good-smile",
|
|
1756
1873
|
name: "Good Smile Company",
|
|
1757
1874
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1758
|
-
description: "
|
|
1875
|
+
description: "Japanese figure manufacturer. Makes Nendoroid, figma, and scale figures. The gold standard for anime collectible figures.",
|
|
1759
1876
|
brandWebsite: "https://www.goodsmile.info",
|
|
1760
1877
|
brandCountry: "Japan",
|
|
1761
1878
|
brandFounded: 2001,
|
|
1762
|
-
brandBannerImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=1200&h=400&fit=crop",
|
|
1763
1879
|
rootId: "brand-good-smile",
|
|
1764
1880
|
parentIds: [],
|
|
1765
1881
|
tier: 0,
|
|
1766
1882
|
path: "brand-good-smile",
|
|
1767
1883
|
isLeaf: true,
|
|
1768
|
-
order:
|
|
1769
|
-
display: { coverImage: "
|
|
1770
|
-
isFeatured:
|
|
1884
|
+
order: 13,
|
|
1885
|
+
display: { coverImage: "/media/brand-logo-good-smile-20260101.jpg", showInMenu: false, showInFooter: true },
|
|
1886
|
+
isFeatured: true,
|
|
1771
1887
|
isBrand: true,
|
|
1772
1888
|
isActive: true,
|
|
1773
1889
|
isSearchable: true,
|
|
1774
|
-
createdBy:
|
|
1775
|
-
createdAt: daysAgo(
|
|
1890
|
+
createdBy: "user-admin-letitrip",
|
|
1891
|
+
createdAt: daysAgo(300),
|
|
1776
1892
|
updatedAt: daysAgo(30),
|
|
1777
|
-
seo: { title: "Good Smile Company", description: "
|
|
1893
|
+
seo: { title: "Good Smile Company | LetItRip", description: "Shop Good Smile Company — Nendoroid, figma, and scale figures.", keywords: ["good smile company", "nendoroid", "figma", "anime figures"] },
|
|
1778
1894
|
},
|
|
1779
1895
|
{
|
|
1780
1896
|
id: "brand-hot-wheels",
|
|
1781
1897
|
slug: "brand-hot-wheels",
|
|
1782
1898
|
name: "Hot Wheels",
|
|
1783
1899
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1784
|
-
description: "Mattel's iconic
|
|
1785
|
-
brandWebsite: "https://hotwheels.mattel.com",
|
|
1900
|
+
description: "Mattel's iconic diecast car brand. Mainline, Premium, Treasure Hunts, Super Treasure Hunts, RLC exclusives, and vintage Redlines.",
|
|
1901
|
+
brandWebsite: "https://www.hotwheels.mattel.com",
|
|
1786
1902
|
brandCountry: "USA",
|
|
1787
1903
|
brandFounded: 1968,
|
|
1788
|
-
brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=hotwheels",
|
|
1789
1904
|
rootId: "brand-hot-wheels",
|
|
1790
1905
|
parentIds: [],
|
|
1791
1906
|
tier: 0,
|
|
1792
1907
|
path: "brand-hot-wheels",
|
|
1793
1908
|
isLeaf: true,
|
|
1794
|
-
order:
|
|
1795
|
-
display: { coverImage: "
|
|
1796
|
-
isFeatured:
|
|
1909
|
+
order: 14,
|
|
1910
|
+
display: { coverImage: "/media/brand-logo-hot-wheels-20260101.jpg", showInMenu: false, showInFooter: true },
|
|
1911
|
+
isFeatured: true,
|
|
1797
1912
|
isBrand: true,
|
|
1798
1913
|
isActive: true,
|
|
1799
1914
|
isSearchable: true,
|
|
1800
|
-
createdBy:
|
|
1801
|
-
createdAt: daysAgo(
|
|
1915
|
+
createdBy: "user-admin-letitrip",
|
|
1916
|
+
createdAt: daysAgo(300),
|
|
1802
1917
|
updatedAt: daysAgo(30),
|
|
1803
|
-
seo: { title: "Hot Wheels", description: "
|
|
1918
|
+
seo: { title: "Hot Wheels | LetItRip", description: "Shop Hot Wheels diecast — mainline, premium, Treasure Hunts, RLC exclusives.", keywords: ["hot wheels", "treasure hunt", "super treasure hunt", "hot wheels premium"] },
|
|
1804
1919
|
},
|
|
1805
1920
|
{
|
|
1806
1921
|
id: "brand-tomica",
|
|
1807
1922
|
slug: "brand-tomica",
|
|
1808
1923
|
name: "Tomica",
|
|
1809
1924
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1810
|
-
description: "Takara
|
|
1925
|
+
description: "Takara-Tomy's Japanese diecast car brand. Known for precision JDM models, Premium series, and Limited Vintage Neo line.",
|
|
1811
1926
|
brandWebsite: "https://www.takaratomy.co.jp/products/tomica",
|
|
1812
1927
|
brandCountry: "Japan",
|
|
1813
1928
|
brandFounded: 1970,
|
|
1814
|
-
brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=tomica",
|
|
1815
1929
|
rootId: "brand-tomica",
|
|
1816
1930
|
parentIds: [],
|
|
1817
1931
|
tier: 0,
|
|
1818
1932
|
path: "brand-tomica",
|
|
1819
1933
|
isLeaf: true,
|
|
1820
|
-
order:
|
|
1821
|
-
display: { coverImage: "
|
|
1934
|
+
order: 15,
|
|
1935
|
+
display: { coverImage: "/media/brand-logo-tomica-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
1822
1936
|
isFeatured: false,
|
|
1823
1937
|
isBrand: true,
|
|
1824
1938
|
isActive: true,
|
|
1825
1939
|
isSearchable: true,
|
|
1826
|
-
createdBy:
|
|
1827
|
-
createdAt: daysAgo(
|
|
1940
|
+
createdBy: "user-admin-letitrip",
|
|
1941
|
+
createdAt: daysAgo(300),
|
|
1828
1942
|
updatedAt: daysAgo(30),
|
|
1829
|
-
seo: { title: "Tomica", description: "
|
|
1943
|
+
seo: { title: "Tomica | LetItRip", description: "Shop Tomica diecast — premium Japanese cars and Limited Vintage Neo.", keywords: ["tomica", "tomica premium", "tomica limited vintage", "japanese diecast"] },
|
|
1830
1944
|
},
|
|
1831
1945
|
{
|
|
1832
1946
|
id: "brand-beyblade",
|
|
1833
1947
|
slug: "brand-beyblade",
|
|
1834
1948
|
name: "Beyblade",
|
|
1835
1949
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1836
|
-
description: "Takara
|
|
1950
|
+
description: "Spinning top battle franchise by Takara-Tomy (Japan) and Hasbro (international). Covers Metal Fight, Burst, and the latest Beyblade X generation.",
|
|
1837
1951
|
brandWebsite: "https://beyblade.takaratomy.co.jp",
|
|
1838
1952
|
brandCountry: "Japan",
|
|
1839
1953
|
brandFounded: 1999,
|
|
1840
|
-
brandBannerImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=1200&h=400&fit=crop",
|
|
1841
1954
|
rootId: "brand-beyblade",
|
|
1842
1955
|
parentIds: [],
|
|
1843
1956
|
tier: 0,
|
|
1844
1957
|
path: "brand-beyblade",
|
|
1845
1958
|
isLeaf: true,
|
|
1846
|
-
order: 13,
|
|
1847
|
-
display: { coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
|
|
1848
|
-
isFeatured: false,
|
|
1849
|
-
isBrand: true,
|
|
1850
|
-
isActive: true,
|
|
1851
|
-
isSearchable: true,
|
|
1852
|
-
createdBy: ADMIN_ID,
|
|
1853
|
-
createdAt: daysAgo(400),
|
|
1854
|
-
updatedAt: daysAgo(30),
|
|
1855
|
-
seo: { title: "Beyblade", description: "Takara Tomy's competitive spinning top battle franchise. Covers classic Metal Fight, Beyblade Burst, Beyblade X, and Hasbro-localized versions. Official tournaments held worldwide including India.", keywords: ["Beyblade"] },
|
|
1856
|
-
},
|
|
1857
|
-
{
|
|
1858
|
-
id: "brand-kotobukiya",
|
|
1859
|
-
slug: "brand-kotobukiya",
|
|
1860
|
-
name: "Kotobukiya",
|
|
1861
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1862
|
-
description: "Premium Japanese model kit and figure manufacturer. Famous for Frame Arms Girl, Megami Device, ARTFX statues, and licensed kits from Star Wars, Marvel, and DC. Known for detailed snap-fit kits requiring no glue.",
|
|
1863
|
-
brandWebsite: "https://www.kotobukiya.co.jp",
|
|
1864
|
-
brandCountry: "Japan",
|
|
1865
|
-
brandFounded: 1947,
|
|
1866
|
-
brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=kotobukiya",
|
|
1867
|
-
rootId: "brand-kotobukiya",
|
|
1868
|
-
parentIds: [],
|
|
1869
|
-
tier: 0,
|
|
1870
|
-
path: "brand-kotobukiya",
|
|
1871
|
-
isLeaf: true,
|
|
1872
|
-
order: 14,
|
|
1873
|
-
display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=kotobukiya", showInMenu: false, showInFooter: false },
|
|
1874
|
-
isFeatured: false,
|
|
1875
|
-
isBrand: true,
|
|
1876
|
-
isActive: true,
|
|
1877
|
-
isSearchable: true,
|
|
1878
|
-
createdBy: ADMIN_ID,
|
|
1879
|
-
createdAt: daysAgo(300),
|
|
1880
|
-
updatedAt: daysAgo(30),
|
|
1881
|
-
seo: { title: "Kotobukiya", description: "Premium Japanese model kit and figure manufacturer. Famous for Frame Arms Girl, Megami Device, ARTFX statues, and licensed kits from Star Wars, Marvel, and DC. Known for detailed snap-fit kits requiring no glue.", keywords: ["Kotobukiya"] },
|
|
1882
|
-
},
|
|
1883
|
-
{
|
|
1884
|
-
id: "brand-alter",
|
|
1885
|
-
slug: "brand-alter",
|
|
1886
|
-
name: "Alter",
|
|
1887
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1888
|
-
description: "High-end Japanese scale figure manufacturer under A+ Corporation. Renowned for exceptional paint quality and sculpt accuracy. Specialises in 1/7 and 1/8 scale anime figures from Re:Zero, Fate, and other popular IPs.",
|
|
1889
|
-
brandWebsite: "https://alter-web.jp",
|
|
1890
|
-
brandCountry: "Japan",
|
|
1891
|
-
brandFounded: 2000,
|
|
1892
|
-
brandBannerImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop",
|
|
1893
|
-
rootId: "brand-alter",
|
|
1894
|
-
parentIds: [],
|
|
1895
|
-
tier: 0,
|
|
1896
|
-
path: "brand-alter",
|
|
1897
|
-
isLeaf: true,
|
|
1898
|
-
order: 15,
|
|
1899
|
-
display: { coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
|
|
1900
|
-
isFeatured: false,
|
|
1901
|
-
isBrand: true,
|
|
1902
|
-
isActive: true,
|
|
1903
|
-
isSearchable: true,
|
|
1904
|
-
createdBy: ADMIN_ID,
|
|
1905
|
-
createdAt: daysAgo(300),
|
|
1906
|
-
updatedAt: daysAgo(30),
|
|
1907
|
-
seo: { title: "Alter", description: "High-end Japanese scale figure manufacturer under A+ Corporation. Renowned for exceptional paint quality and sculpt accuracy. Specialises in 1/7 and 1/8 scale anime figures from Re:Zero, Fate, and other popular IPs.", keywords: ["Alter"] },
|
|
1908
|
-
},
|
|
1909
|
-
{
|
|
1910
|
-
id: "brand-max-factory",
|
|
1911
|
-
slug: "brand-max-factory",
|
|
1912
|
-
name: "Max Factory",
|
|
1913
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1914
|
-
description: "Japanese figure manufacturer known for the figma articulated figure line and figFIX static figures. Partners with Good Smile Company. figma figures are prized for their wide articulation range and interchangeable parts.",
|
|
1915
|
-
brandWebsite: "https://www.maxfactory.jp",
|
|
1916
|
-
brandCountry: "Japan",
|
|
1917
|
-
brandFounded: 1987,
|
|
1918
|
-
brandBannerImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop&seed=maxfactory",
|
|
1919
|
-
rootId: "brand-max-factory",
|
|
1920
|
-
parentIds: [],
|
|
1921
|
-
tier: 0,
|
|
1922
|
-
path: "brand-max-factory",
|
|
1923
|
-
isLeaf: true,
|
|
1924
1959
|
order: 16,
|
|
1925
|
-
display: { coverImage: "
|
|
1926
|
-
isFeatured:
|
|
1960
|
+
display: { coverImage: "/media/brand-logo-beyblade-20260101.jpg", showInMenu: false, showInFooter: true },
|
|
1961
|
+
isFeatured: true,
|
|
1927
1962
|
isBrand: true,
|
|
1928
1963
|
isActive: true,
|
|
1929
1964
|
isSearchable: true,
|
|
1930
|
-
createdBy:
|
|
1965
|
+
createdBy: "user-admin-letitrip",
|
|
1931
1966
|
createdAt: daysAgo(300),
|
|
1932
1967
|
updatedAt: daysAgo(30),
|
|
1933
|
-
seo: { title: "
|
|
1968
|
+
seo: { title: "Beyblade | LetItRip", description: "Shop Beyblade — X, Burst, Metal Fight tops and stadiums.", keywords: ["beyblade", "beyblade x", "beyblade burst", "spinning top battle"] },
|
|
1934
1969
|
},
|
|
1935
1970
|
{
|
|
1936
|
-
id: "brand-
|
|
1937
|
-
slug: "brand-
|
|
1938
|
-
name: "
|
|
1971
|
+
id: "brand-bushiroad",
|
|
1972
|
+
slug: "brand-bushiroad",
|
|
1973
|
+
name: "Bushiroad",
|
|
1939
1974
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1940
|
-
description: "Japanese
|
|
1941
|
-
brandWebsite: "https://
|
|
1975
|
+
description: "Japanese entertainment company. Publishes Cardfight!! Vanguard, Weiss Schwarz, and Future Card Buddyfight TCGs.",
|
|
1976
|
+
brandWebsite: "https://en.bushiroad.com",
|
|
1942
1977
|
brandCountry: "Japan",
|
|
1943
|
-
brandFounded:
|
|
1944
|
-
|
|
1945
|
-
rootId: "brand-medicom-toy",
|
|
1978
|
+
brandFounded: 2007,
|
|
1979
|
+
rootId: "brand-bushiroad",
|
|
1946
1980
|
parentIds: [],
|
|
1947
1981
|
tier: 0,
|
|
1948
|
-
path: "brand-
|
|
1982
|
+
path: "brand-bushiroad",
|
|
1949
1983
|
isLeaf: true,
|
|
1950
1984
|
order: 17,
|
|
1951
|
-
display: { coverImage: "
|
|
1985
|
+
display: { coverImage: "/media/brand-logo-bushiroad-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
1952
1986
|
isFeatured: false,
|
|
1953
1987
|
isBrand: true,
|
|
1954
1988
|
isActive: true,
|
|
1955
1989
|
isSearchable: true,
|
|
1956
|
-
createdBy:
|
|
1990
|
+
createdBy: "user-admin-letitrip",
|
|
1957
1991
|
createdAt: daysAgo(300),
|
|
1958
1992
|
updatedAt: daysAgo(30),
|
|
1959
|
-
seo: { title: "
|
|
1993
|
+
seo: { title: "Bushiroad | LetItRip", description: "Shop Bushiroad TCGs — Cardfight!! Vanguard, Weiss Schwarz.", keywords: ["bushiroad", "cardfight vanguard", "weiss schwarz"] },
|
|
1960
1994
|
},
|
|
1961
1995
|
{
|
|
1962
|
-
id: "brand-
|
|
1963
|
-
slug: "brand-
|
|
1964
|
-
name: "
|
|
1996
|
+
id: "brand-bandai-spirits",
|
|
1997
|
+
slug: "brand-bandai-spirits",
|
|
1998
|
+
name: "Bandai Spirits",
|
|
1965
1999
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1966
|
-
description: "
|
|
1967
|
-
brandWebsite: "https://www.
|
|
2000
|
+
description: "Bandai Namco subsidiary focused on collector-grade products. Makes Gunpla, S.H.Figuarts, Robot Spirits, and Chogokin.",
|
|
2001
|
+
brandWebsite: "https://www.bandaispirits.co.jp",
|
|
1968
2002
|
brandCountry: "Japan",
|
|
1969
|
-
brandFounded:
|
|
1970
|
-
|
|
1971
|
-
rootId: "brand-bushiroad",
|
|
2003
|
+
brandFounded: 2018,
|
|
2004
|
+
rootId: "brand-bandai-spirits",
|
|
1972
2005
|
parentIds: [],
|
|
1973
2006
|
tier: 0,
|
|
1974
|
-
path: "brand-
|
|
2007
|
+
path: "brand-bandai-spirits",
|
|
1975
2008
|
isLeaf: true,
|
|
1976
2009
|
order: 18,
|
|
1977
|
-
display: { coverImage: "
|
|
2010
|
+
display: { coverImage: "/media/brand-logo-bandai-spirits-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
1978
2011
|
isFeatured: false,
|
|
1979
2012
|
isBrand: true,
|
|
1980
2013
|
isActive: true,
|
|
1981
2014
|
isSearchable: true,
|
|
1982
|
-
createdBy:
|
|
2015
|
+
createdBy: "user-admin-letitrip",
|
|
1983
2016
|
createdAt: daysAgo(300),
|
|
1984
2017
|
updatedAt: daysAgo(30),
|
|
1985
|
-
seo: { title: "
|
|
2018
|
+
seo: { title: "Bandai Spirits | LetItRip", description: "Shop Bandai Spirits — Gunpla, S.H.Figuarts, Robot Spirits.", keywords: ["bandai spirits", "gunpla bandai", "sh figuarts", "robot spirits"] },
|
|
1986
2019
|
},
|
|
1987
2020
|
{
|
|
1988
|
-
id: "brand-
|
|
1989
|
-
slug: "brand-
|
|
1990
|
-
name: "
|
|
2021
|
+
id: "brand-kotobukiya",
|
|
2022
|
+
slug: "brand-kotobukiya",
|
|
2023
|
+
name: "Kotobukiya",
|
|
1991
2024
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
1992
|
-
description: "
|
|
1993
|
-
brandWebsite: "https://www.
|
|
1994
|
-
brandCountry: "
|
|
1995
|
-
brandFounded:
|
|
1996
|
-
|
|
1997
|
-
rootId: "brand-panini",
|
|
2025
|
+
description: "Japanese manufacturer of model kits and figures. Known for Frame Arms, Bishoujo series, and ARTFX+ statues.",
|
|
2026
|
+
brandWebsite: "https://www.kotobukiya.co.jp",
|
|
2027
|
+
brandCountry: "Japan",
|
|
2028
|
+
brandFounded: 1953,
|
|
2029
|
+
rootId: "brand-kotobukiya",
|
|
1998
2030
|
parentIds: [],
|
|
1999
2031
|
tier: 0,
|
|
2000
|
-
path: "brand-
|
|
2032
|
+
path: "brand-kotobukiya",
|
|
2001
2033
|
isLeaf: true,
|
|
2002
2034
|
order: 19,
|
|
2003
|
-
display: { coverImage: "
|
|
2035
|
+
display: { coverImage: "/media/brand-logo-kotobukiya-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
2004
2036
|
isFeatured: false,
|
|
2005
2037
|
isBrand: true,
|
|
2006
2038
|
isActive: true,
|
|
2007
2039
|
isSearchable: true,
|
|
2008
|
-
createdBy:
|
|
2040
|
+
createdBy: "user-admin-letitrip",
|
|
2009
2041
|
createdAt: daysAgo(300),
|
|
2010
2042
|
updatedAt: daysAgo(30),
|
|
2011
|
-
seo: { title: "
|
|
2043
|
+
seo: { title: "Kotobukiya | LetItRip", description: "Shop Kotobukiya — Frame Arms, Bishoujo, ARTFX+ statues.", keywords: ["kotobukiya", "frame arms kotobukiya", "artfx", "bishoujo"] },
|
|
2012
2044
|
},
|
|
2013
2045
|
{
|
|
2014
|
-
id: "brand-
|
|
2015
|
-
slug: "brand-
|
|
2016
|
-
name: "
|
|
2046
|
+
id: "brand-megahouse",
|
|
2047
|
+
slug: "brand-megahouse",
|
|
2048
|
+
name: "MegaHouse",
|
|
2017
2049
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
2018
|
-
description: "
|
|
2019
|
-
brandWebsite: "https://www.
|
|
2020
|
-
brandCountry: "
|
|
2021
|
-
brandFounded:
|
|
2022
|
-
|
|
2023
|
-
rootId: "brand-spin-master",
|
|
2050
|
+
description: "Bandai Namco subsidiary. Makes Portrait of Pirates (One Piece), Variable Action Heroes, and Lookup chibi figures.",
|
|
2051
|
+
brandWebsite: "https://www.megahobby.jp",
|
|
2052
|
+
brandCountry: "Japan",
|
|
2053
|
+
brandFounded: 1962,
|
|
2054
|
+
rootId: "brand-megahouse",
|
|
2024
2055
|
parentIds: [],
|
|
2025
2056
|
tier: 0,
|
|
2026
|
-
path: "brand-
|
|
2057
|
+
path: "brand-megahouse",
|
|
2027
2058
|
isLeaf: true,
|
|
2028
2059
|
order: 20,
|
|
2029
|
-
display: { coverImage: "
|
|
2060
|
+
display: { coverImage: "/media/brand-logo-megahouse-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
2030
2061
|
isFeatured: false,
|
|
2031
2062
|
isBrand: true,
|
|
2032
2063
|
isActive: true,
|
|
2033
2064
|
isSearchable: true,
|
|
2034
|
-
createdBy:
|
|
2065
|
+
createdBy: "user-admin-letitrip",
|
|
2035
2066
|
createdAt: daysAgo(300),
|
|
2036
2067
|
updatedAt: daysAgo(30),
|
|
2037
|
-
seo: { title: "
|
|
2068
|
+
seo: { title: "MegaHouse | LetItRip", description: "Shop MegaHouse — Portrait of Pirates, Variable Action Heroes.", keywords: ["megahouse", "portrait of pirates", "variable action heroes"] },
|
|
2038
2069
|
},
|
|
2039
2070
|
{
|
|
2040
|
-
id: "brand-
|
|
2041
|
-
slug: "brand-
|
|
2042
|
-
name: "
|
|
2071
|
+
id: "brand-tamashii-nations",
|
|
2072
|
+
slug: "brand-tamashii-nations",
|
|
2073
|
+
name: "Tamashii Nations",
|
|
2043
2074
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
2044
|
-
description: "
|
|
2045
|
-
brandWebsite: "https://
|
|
2046
|
-
brandCountry: "
|
|
2047
|
-
brandFounded:
|
|
2048
|
-
|
|
2049
|
-
rootId: "brand-jakks-pacific",
|
|
2075
|
+
description: "Bandai Spirits' premium collector brand. Produces S.H.Figuarts, Robot Spirits, Chogokin, and FiguartsZERO lines.",
|
|
2076
|
+
brandWebsite: "https://tamashiinations.com",
|
|
2077
|
+
brandCountry: "Japan",
|
|
2078
|
+
brandFounded: 2008,
|
|
2079
|
+
rootId: "brand-tamashii-nations",
|
|
2050
2080
|
parentIds: [],
|
|
2051
2081
|
tier: 0,
|
|
2052
|
-
path: "brand-
|
|
2082
|
+
path: "brand-tamashii-nations",
|
|
2053
2083
|
isLeaf: true,
|
|
2054
2084
|
order: 21,
|
|
2055
|
-
display: { coverImage: "
|
|
2085
|
+
display: { coverImage: "/media/brand-logo-tamashii-nations-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
2056
2086
|
isFeatured: false,
|
|
2057
2087
|
isBrand: true,
|
|
2058
2088
|
isActive: true,
|
|
2059
2089
|
isSearchable: true,
|
|
2060
|
-
createdBy:
|
|
2090
|
+
createdBy: "user-admin-letitrip",
|
|
2061
2091
|
createdAt: daysAgo(300),
|
|
2062
2092
|
updatedAt: daysAgo(30),
|
|
2063
|
-
seo: { title: "
|
|
2093
|
+
seo: { title: "Tamashii Nations | LetItRip", description: "Shop Tamashii Nations — S.H.Figuarts, Chogokin, Robot Spirits.", keywords: ["tamashii nations", "figuarts", "chogokin", "robot spirits bandai"] },
|
|
2064
2094
|
},
|
|
2065
2095
|
{
|
|
2066
|
-
id: "brand-
|
|
2067
|
-
slug: "brand-
|
|
2068
|
-
name: "
|
|
2096
|
+
id: "brand-kaiyodo",
|
|
2097
|
+
slug: "brand-kaiyodo",
|
|
2098
|
+
name: "Kaiyodo",
|
|
2069
2099
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
2070
|
-
description: "
|
|
2071
|
-
brandWebsite: "https://
|
|
2072
|
-
brandCountry: "
|
|
2073
|
-
brandFounded:
|
|
2074
|
-
|
|
2075
|
-
rootId: "brand-corgi",
|
|
2100
|
+
description: "Japanese figure company known for Revoltech action figures and museum-quality dinosaur/animal models.",
|
|
2101
|
+
brandWebsite: "https://kaiyodo.co.jp",
|
|
2102
|
+
brandCountry: "Japan",
|
|
2103
|
+
brandFounded: 1964,
|
|
2104
|
+
rootId: "brand-kaiyodo",
|
|
2076
2105
|
parentIds: [],
|
|
2077
2106
|
tier: 0,
|
|
2078
|
-
path: "brand-
|
|
2107
|
+
path: "brand-kaiyodo",
|
|
2079
2108
|
isLeaf: true,
|
|
2080
2109
|
order: 22,
|
|
2081
|
-
display: { coverImage: "
|
|
2110
|
+
display: { coverImage: "/media/brand-logo-kaiyodo-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
2082
2111
|
isFeatured: false,
|
|
2083
2112
|
isBrand: true,
|
|
2084
2113
|
isActive: true,
|
|
2085
2114
|
isSearchable: true,
|
|
2086
|
-
createdBy:
|
|
2115
|
+
createdBy: "user-admin-letitrip",
|
|
2087
2116
|
createdAt: daysAgo(300),
|
|
2088
2117
|
updatedAt: daysAgo(30),
|
|
2089
|
-
seo: { title: "
|
|
2118
|
+
seo: { title: "Kaiyodo | LetItRip", description: "Shop Kaiyodo — Revoltech figures and museum models.", keywords: ["kaiyodo", "revoltech", "kaiyodo figures"] },
|
|
2090
2119
|
},
|
|
2091
2120
|
{
|
|
2092
|
-
id: "brand-
|
|
2093
|
-
slug: "brand-
|
|
2094
|
-
name: "
|
|
2121
|
+
id: "brand-medicom",
|
|
2122
|
+
slug: "brand-medicom",
|
|
2123
|
+
name: "Medicom Toy",
|
|
2095
2124
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
2096
|
-
description: "
|
|
2097
|
-
brandWebsite: "https://www.
|
|
2098
|
-
brandCountry: "
|
|
2099
|
-
brandFounded:
|
|
2100
|
-
|
|
2101
|
-
rootId: "brand-matchbox",
|
|
2125
|
+
description: "Japanese company known for BE@RBRICK, MAFEX action figures, and RAH (Real Action Heroes). Designer toy icons.",
|
|
2126
|
+
brandWebsite: "https://www.medicomtoy.co.jp",
|
|
2127
|
+
brandCountry: "Japan",
|
|
2128
|
+
brandFounded: 1996,
|
|
2129
|
+
rootId: "brand-medicom",
|
|
2102
2130
|
parentIds: [],
|
|
2103
2131
|
tier: 0,
|
|
2104
|
-
path: "brand-
|
|
2132
|
+
path: "brand-medicom",
|
|
2105
2133
|
isLeaf: true,
|
|
2106
2134
|
order: 23,
|
|
2107
|
-
display: { coverImage: "
|
|
2135
|
+
display: { coverImage: "/media/brand-logo-medicom-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
2108
2136
|
isFeatured: false,
|
|
2109
2137
|
isBrand: true,
|
|
2110
2138
|
isActive: true,
|
|
2111
2139
|
isSearchable: true,
|
|
2112
|
-
createdBy:
|
|
2140
|
+
createdBy: "user-admin-letitrip",
|
|
2113
2141
|
createdAt: daysAgo(300),
|
|
2114
2142
|
updatedAt: daysAgo(30),
|
|
2115
|
-
seo: { title: "
|
|
2143
|
+
seo: { title: "Medicom Toy | LetItRip", description: "Shop Medicom Toy — BE@RBRICK, MAFEX, and RAH figures.", keywords: ["medicom toy", "bearbrick", "mafex", "real action heroes"] },
|
|
2116
2144
|
},
|
|
2117
2145
|
{
|
|
2118
|
-
id: "brand-
|
|
2119
|
-
slug: "brand-
|
|
2120
|
-
name: "
|
|
2146
|
+
id: "brand-spin-master",
|
|
2147
|
+
slug: "brand-spin-master",
|
|
2148
|
+
name: "Spin Master",
|
|
2121
2149
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
2122
|
-
description: "
|
|
2123
|
-
brandWebsite: "https://www.
|
|
2124
|
-
brandCountry: "
|
|
2125
|
-
brandFounded:
|
|
2126
|
-
|
|
2127
|
-
rootId: "brand-mega-construx",
|
|
2150
|
+
description: "Canadian toy company. Makes Bakugan, PAW Patrol, Monster Jam, and DC Comics figures. Growing collectibles presence in India.",
|
|
2151
|
+
brandWebsite: "https://www.spinmaster.com",
|
|
2152
|
+
brandCountry: "Canada",
|
|
2153
|
+
brandFounded: 1994,
|
|
2154
|
+
rootId: "brand-spin-master",
|
|
2128
2155
|
parentIds: [],
|
|
2129
2156
|
tier: 0,
|
|
2130
|
-
path: "brand-
|
|
2157
|
+
path: "brand-spin-master",
|
|
2131
2158
|
isLeaf: true,
|
|
2132
2159
|
order: 24,
|
|
2133
|
-
display: { coverImage: "
|
|
2160
|
+
display: { coverImage: "/media/brand-logo-spin-master-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
2134
2161
|
isFeatured: false,
|
|
2135
2162
|
isBrand: true,
|
|
2136
2163
|
isActive: true,
|
|
2137
2164
|
isSearchable: true,
|
|
2138
|
-
createdBy:
|
|
2165
|
+
createdBy: "user-admin-letitrip",
|
|
2139
2166
|
createdAt: daysAgo(300),
|
|
2140
2167
|
updatedAt: daysAgo(30),
|
|
2141
|
-
seo: { title: "
|
|
2168
|
+
seo: { title: "Spin Master | LetItRip", description: "Shop Spin Master — Bakugan, Monster Jam, DC Comics figures.", keywords: ["spin master", "bakugan", "monster jam", "spin master toys"] },
|
|
2142
2169
|
},
|
|
2143
2170
|
{
|
|
2144
|
-
id: "brand-
|
|
2145
|
-
slug: "brand-
|
|
2146
|
-
name: "
|
|
2171
|
+
id: "brand-maisto",
|
|
2172
|
+
slug: "brand-maisto",
|
|
2173
|
+
name: "Maisto",
|
|
2147
2174
|
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
|
|
2148
|
-
description: "
|
|
2149
|
-
brandWebsite: "https://www.
|
|
2175
|
+
description: "Diecast model manufacturer known for affordable 1:18 and 1:24 scale licensed replicas of sports cars, muscle cars, and motorcycles.",
|
|
2176
|
+
brandWebsite: "https://www.maisto.com",
|
|
2150
2177
|
brandCountry: "USA",
|
|
2151
|
-
brandFounded:
|
|
2152
|
-
|
|
2153
|
-
rootId: "brand-sideshow-collectibles",
|
|
2178
|
+
brandFounded: 1990,
|
|
2179
|
+
rootId: "brand-maisto",
|
|
2154
2180
|
parentIds: [],
|
|
2155
2181
|
tier: 0,
|
|
2156
|
-
path: "brand-
|
|
2182
|
+
path: "brand-maisto",
|
|
2157
2183
|
isLeaf: true,
|
|
2158
2184
|
order: 25,
|
|
2159
|
-
display: { coverImage: "
|
|
2185
|
+
display: { coverImage: "/media/brand-logo-maisto-20260101.jpg", showInMenu: false, showInFooter: false },
|
|
2160
2186
|
isFeatured: false,
|
|
2161
2187
|
isBrand: true,
|
|
2162
2188
|
isActive: true,
|
|
2163
2189
|
isSearchable: true,
|
|
2164
|
-
createdBy:
|
|
2190
|
+
createdBy: "user-admin-letitrip",
|
|
2165
2191
|
createdAt: daysAgo(300),
|
|
2166
2192
|
updatedAt: daysAgo(30),
|
|
2167
|
-
seo: { title: "
|
|
2168
|
-
},
|
|
2169
|
-
];
|
|
2170
|
-
// SB-UNI-D + V — bundles folded into categories with categoryType:"bundle".
|
|
2171
|
-
const bundleRows = [
|
|
2172
|
-
{
|
|
2173
|
-
id: "bundle-pokemon-tcg-starter-pack-2026",
|
|
2174
|
-
slug: "bundle-pokemon-tcg-starter-pack-2026",
|
|
2175
|
-
name: "Pokémon TCG Starter Pack 2026",
|
|
2176
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BUNDLE,
|
|
2177
|
-
description: "A curated 3-item bundle for new Pokémon TCG collectors — a Paldean Fates ETB, a tin of Stellar Crown boosters, and a deck box. Save ₹650 vs buying separately.",
|
|
2178
|
-
rootId: "bundle-pokemon-tcg-starter-pack-2026",
|
|
2179
|
-
parentIds: [],
|
|
2180
|
-
tier: 0,
|
|
2181
|
-
path: "bundle-pokemon-tcg-starter-pack-2026",
|
|
2182
|
-
isLeaf: true,
|
|
2183
|
-
order: 0,
|
|
2184
|
-
bundlePriceInPaise: 649900,
|
|
2185
|
-
bundleQueryRule: {
|
|
2186
|
-
type: "static",
|
|
2187
|
-
productIds: [
|
|
2188
|
-
"product-pokemon-sv-etb",
|
|
2189
|
-
"product-pokemon-stellar-crown-tin",
|
|
2190
|
-
"product-pokemon-deck-box-pikachu",
|
|
2191
|
-
],
|
|
2192
|
-
},
|
|
2193
|
-
bundleProductIds: [
|
|
2194
|
-
"product-pokemon-sv-etb",
|
|
2195
|
-
"product-pokemon-stellar-crown-tin",
|
|
2196
|
-
"product-pokemon-deck-box-pikachu",
|
|
2197
|
-
],
|
|
2198
|
-
bundleStockStatus: "in_stock",
|
|
2199
|
-
display: {
|
|
2200
|
-
coverImage: "/media/bundle-image-pokemon-tcg-starter-pack-2026-1-20260101.jpg",
|
|
2201
|
-
showInMenu: false,
|
|
2202
|
-
showInFooter: false,
|
|
2203
|
-
},
|
|
2204
|
-
isFeatured: true,
|
|
2205
|
-
isActive: true,
|
|
2206
|
-
isSearchable: true,
|
|
2207
|
-
createdBy: "user-aryan-kapoor",
|
|
2208
|
-
createdByStoreId: "store-pokemon-palace",
|
|
2209
|
-
createdByStoreName: "Pokémon Palace",
|
|
2210
|
-
seo: {
|
|
2211
|
-
title: "Pokémon TCG Starter Pack 2026",
|
|
2212
|
-
description: "3-item Pokémon TCG starter bundle — ETB + booster tin + deck box.",
|
|
2213
|
-
keywords: ["pokemon", "tcg", "bundle", "starter"],
|
|
2214
|
-
},
|
|
2215
|
-
createdAt: daysAgo(15),
|
|
2216
|
-
updatedAt: daysAgo(2),
|
|
2217
|
-
},
|
|
2218
|
-
{
|
|
2219
|
-
id: "bundle-gunpla-pg-arrivals-2026",
|
|
2220
|
-
slug: "bundle-gunpla-pg-arrivals-2026",
|
|
2221
|
-
name: "Gundam PG Arrivals 2026",
|
|
2222
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BUNDLE,
|
|
2223
|
-
description: "Pre-order bundle — three premium PG/RG kits + S.H.Figuarts Broly Super Hero. Save ₹1200.",
|
|
2224
|
-
rootId: "bundle-gunpla-pg-arrivals-2026",
|
|
2225
|
-
parentIds: [],
|
|
2226
|
-
tier: 0,
|
|
2227
|
-
path: "bundle-gunpla-pg-arrivals-2026",
|
|
2228
|
-
isLeaf: true,
|
|
2229
|
-
order: 0,
|
|
2230
|
-
bundlePriceInPaise: 1679700,
|
|
2231
|
-
bundleQueryRule: {
|
|
2232
|
-
type: "static",
|
|
2233
|
-
productIds: [
|
|
2234
|
-
"preorder-gundam-pg-unicorn-ver15",
|
|
2235
|
-
"preorder-gundam-rg-hi-nu-verka",
|
|
2236
|
-
"preorder-shf-broly-super-hero",
|
|
2237
|
-
],
|
|
2238
|
-
},
|
|
2239
|
-
bundleProductIds: [
|
|
2240
|
-
"preorder-gundam-pg-unicorn-ver15",
|
|
2241
|
-
"preorder-gundam-rg-hi-nu-verka",
|
|
2242
|
-
"preorder-shf-broly-super-hero",
|
|
2243
|
-
],
|
|
2244
|
-
bundleStockStatus: "in_stock",
|
|
2245
|
-
display: {
|
|
2246
|
-
coverImage: "/media/bundle-image-gunpla-pg-arrivals-2026-1-20260101.jpg",
|
|
2247
|
-
showInMenu: false,
|
|
2248
|
-
showInFooter: false,
|
|
2249
|
-
},
|
|
2250
|
-
isFeatured: false,
|
|
2251
|
-
isActive: true,
|
|
2252
|
-
isSearchable: true,
|
|
2253
|
-
createdBy: "user-amit-sharma",
|
|
2254
|
-
createdByStoreId: "store-gundam-galaxy",
|
|
2255
|
-
createdByStoreName: "Gundam Galaxy",
|
|
2256
|
-
seo: {
|
|
2257
|
-
title: "Gundam PG Arrivals 2026 Bundle",
|
|
2258
|
-
description: "Pre-order bundle of 3 premium Bandai PG/RG kits.",
|
|
2259
|
-
keywords: ["gunpla", "pg", "pre-order", "bundle"],
|
|
2260
|
-
},
|
|
2261
|
-
createdAt: daysAgo(20),
|
|
2262
|
-
updatedAt: daysAgo(4),
|
|
2263
|
-
},
|
|
2264
|
-
{
|
|
2265
|
-
id: "bundle-beyblade-x-launch-pack-2025",
|
|
2266
|
-
slug: "bundle-beyblade-x-launch-pack-2025",
|
|
2267
|
-
name: "Beyblade X Launch Pack 2025 (SOLD OUT)",
|
|
2268
|
-
categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BUNDLE,
|
|
2269
|
-
description: "Four-item Beyblade X launch pack — original 2025 release. One of the four items has sold; bundle marked OOS until restock.",
|
|
2270
|
-
rootId: "bundle-beyblade-x-launch-pack-2025",
|
|
2271
|
-
parentIds: [],
|
|
2272
|
-
tier: 0,
|
|
2273
|
-
path: "bundle-beyblade-x-launch-pack-2025",
|
|
2274
|
-
isLeaf: true,
|
|
2275
|
-
order: 0,
|
|
2276
|
-
bundlePriceInPaise: 499900,
|
|
2277
|
-
bundleQueryRule: {
|
|
2278
|
-
type: "static",
|
|
2279
|
-
productIds: [
|
|
2280
|
-
"product-beyblade-x-bx18-leon-crest",
|
|
2281
|
-
"product-beyblade-x-bx10-dran-dagger",
|
|
2282
|
-
"product-beyblade-x-launcher-grip",
|
|
2283
|
-
],
|
|
2284
|
-
},
|
|
2285
|
-
bundleProductIds: [
|
|
2286
|
-
"product-beyblade-x-bx18-leon-crest",
|
|
2287
|
-
"product-beyblade-x-bx10-dran-dagger",
|
|
2288
|
-
"product-beyblade-x-launcher-grip",
|
|
2289
|
-
],
|
|
2290
|
-
bundleStockStatus: "out_of_stock",
|
|
2291
|
-
display: {
|
|
2292
|
-
coverImage: "/media/bundle-image-beyblade-x-launch-pack-2025-1-20260101.jpg",
|
|
2293
|
-
showInMenu: false,
|
|
2294
|
-
showInFooter: false,
|
|
2295
|
-
},
|
|
2296
|
-
isFeatured: false,
|
|
2297
|
-
isActive: false,
|
|
2298
|
-
isSearchable: false,
|
|
2299
|
-
createdBy: "user-rohit-joshi",
|
|
2300
|
-
createdByStoreId: "store-beyblade-arena",
|
|
2301
|
-
createdByStoreName: "Beyblade Arena",
|
|
2302
|
-
seo: {
|
|
2303
|
-
title: "Beyblade X Launch Pack 2025",
|
|
2304
|
-
description: "4-item Beyblade X launch bundle — currently sold out.",
|
|
2305
|
-
keywords: ["beyblade-x", "bundle", "launch"],
|
|
2306
|
-
},
|
|
2307
|
-
createdAt: daysAgo(45),
|
|
2308
|
-
updatedAt: daysAgo(10),
|
|
2193
|
+
seo: { title: "Maisto | LetItRip", description: "Shop Maisto diecast models — 1:18 and 1:24 scale replicas.", keywords: ["maisto", "maisto diecast", "maisto 1 18", "diecast model cars"] },
|
|
2309
2194
|
},
|
|
2310
2195
|
];
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
"user-vikram-mehta": { createdByType: "store", createdByStoreId: "store-diecast-depot", createdByStoreName: "Diecast Depot" },
|
|
2315
|
-
"user-rohit-joshi": { createdByType: "store", createdByStoreId: "store-beyblade-arena", createdByStoreName: "Beyblade Arena" },
|
|
2316
|
-
"user-amit-sharma": { createdByType: "store", createdByStoreId: "store-gundam-galaxy", createdByStoreName: "Gundam Galaxy" },
|
|
2317
|
-
"user-priya-singh": { createdByType: "store", createdByStoreId: "store-tokyo-toys-india", createdByStoreName: "Tokyo Toys India" },
|
|
2318
|
-
};
|
|
2196
|
+
// No sublisting or bundle category rows for this seed.
|
|
2197
|
+
const sublistingRows = [];
|
|
2198
|
+
const bundleRows = [];
|
|
2319
2199
|
export const categoriesSeedData = [
|
|
2320
|
-
...rawCategories.map((c) => ({
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
: { createdByType: "admin" }),
|
|
2325
|
-
})),
|
|
2326
|
-
...sublistingRows.map((s) => ({ ...s, createdByType: "admin" })),
|
|
2327
|
-
...brandRows.map((b) => ({ ...b, createdByType: "admin" })),
|
|
2328
|
-
...bundleRows.map((bundle) => ({
|
|
2329
|
-
...bundle,
|
|
2330
|
-
createdByType: bundle.createdByStoreId ? "store" : "admin",
|
|
2331
|
-
})),
|
|
2200
|
+
...rawCategories.map((c) => ({ ancestors: [], ...c, createdByType: "admin" })),
|
|
2201
|
+
...sublistingRows.map((s) => ({ ancestors: [], ...s, createdByType: "admin" })),
|
|
2202
|
+
...brandRows.map((b) => ({ ancestors: [], ...b, createdByType: "admin" })),
|
|
2203
|
+
...bundleRows.map((bundle) => ({ ancestors: [], ...bundle, createdByType: "admin" })),
|
|
2332
2204
|
];
|