@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.
Files changed (123) hide show
  1. package/dist/_internal/client/features/layout/DashboardLayoutClient.js +1 -1
  2. package/dist/_internal/server/jobs/core/auctionSettlement.js +6 -3
  3. package/dist/_internal/server/jobs/core/bundleStockSync.js +9 -7
  4. package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +12 -3
  5. package/dist/_internal/server/jobs/core/onProductStockChange.js +12 -13
  6. package/dist/_internal/server/jobs/core/onProductWrite.js +1 -3
  7. package/dist/_internal/server/jobs/handlers/onProductStockChange.js +11 -2
  8. package/dist/client.d.ts +2 -0
  9. package/dist/client.js +1 -0
  10. package/dist/constants/field-names.d.ts +4 -3
  11. package/dist/constants/field-names.js +8 -8
  12. package/dist/errors/error-codes.d.ts +3 -0
  13. package/dist/errors/error-codes.js +3 -0
  14. package/dist/errors/messages.d.ts +3 -0
  15. package/dist/errors/messages.js +3 -0
  16. package/dist/features/admin/types/product.types.d.ts +1 -1
  17. package/dist/features/admin/types/product.types.js +2 -3
  18. package/dist/features/auctions/actions/bid-actions.d.ts +9 -0
  19. package/dist/features/auctions/actions/bid-actions.js +61 -0
  20. package/dist/features/auctions/components/AuctionDetailPageView.d.ts +2 -1
  21. package/dist/features/auctions/components/AuctionDetailPageView.js +5 -4
  22. package/dist/features/auctions/components/PlaceBidFormClient.d.ts +3 -1
  23. package/dist/features/auctions/components/PlaceBidFormClient.js +32 -2
  24. package/dist/features/auctions/types/index.d.ts +1 -1
  25. package/dist/features/layout/AppLayoutShell.js +1 -1
  26. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +2 -11
  27. package/dist/features/products/api/[id]/route.js +4 -8
  28. package/dist/features/products/api/route.js +1 -3
  29. package/dist/features/products/components/AuctionsIndexListing.js +3 -11
  30. package/dist/features/products/components/PrizeDrawsIndexListing.js +2 -10
  31. package/dist/features/products/components/ProductFilters.d.ts +33 -9
  32. package/dist/features/products/components/ProductFilters.js +6 -29
  33. package/dist/features/products/components/ProductForm.js +2 -3
  34. package/dist/features/products/constants/sieve.d.ts +162 -0
  35. package/dist/features/products/constants/sieve.js +95 -0
  36. package/dist/features/products/repository/products.repository.d.ts +5 -0
  37. package/dist/features/products/repository/products.repository.js +23 -3
  38. package/dist/features/products/schemas/firestore.d.ts +4 -4
  39. package/dist/features/products/schemas/firestore.js +2 -3
  40. package/dist/features/products/schemas/index.d.ts +6 -6
  41. package/dist/features/products/schemas/index.js +2 -6
  42. package/dist/features/products/types/index.d.ts +1 -1
  43. package/dist/features/seller/actions/offer-actions.js +2 -2
  44. package/dist/features/wishlist/types/index.d.ts +1 -1
  45. package/dist/index.d.ts +6 -3
  46. package/dist/index.js +6 -4
  47. package/dist/seed/addresses-seed-data.d.ts +2 -18
  48. package/dist/seed/addresses-seed-data.js +137 -203
  49. package/dist/seed/bids-seed-data.d.ts +2 -8
  50. package/dist/seed/bids-seed-data.js +172 -648
  51. package/dist/seed/blog-posts-seed-data.d.ts +0 -5
  52. package/dist/seed/blog-posts-seed-data.js +341 -596
  53. package/dist/seed/carousel-slides-seed-data.d.ts +0 -5
  54. package/dist/seed/carousel-slides-seed-data.js +61 -192
  55. package/dist/seed/carousels-seed-data.js +18 -1
  56. package/dist/seed/cart-seed-data.d.ts +1 -18
  57. package/dist/seed/cart-seed-data.js +116 -293
  58. package/dist/seed/categories-seed-data.d.ts +0 -6
  59. package/dist/seed/categories-seed-data.js +1409 -1537
  60. package/dist/seed/claimed-coupons-seed-data.d.ts +0 -11
  61. package/dist/seed/claimed-coupons-seed-data.js +32 -29
  62. package/dist/seed/conversations-seed-data.d.ts +0 -6
  63. package/dist/seed/conversations-seed-data.js +132 -280
  64. package/dist/seed/coupon-usage-seed-data.d.ts +0 -16
  65. package/dist/seed/coupon-usage-seed-data.js +30 -44
  66. package/dist/seed/coupons-seed-data.d.ts +0 -6
  67. package/dist/seed/coupons-seed-data.js +141 -489
  68. package/dist/seed/events-seed-data.d.ts +0 -6
  69. package/dist/seed/events-seed-data.js +201 -379
  70. package/dist/seed/faq-seed-data.d.ts +0 -14
  71. package/dist/seed/faq-seed-data.js +609 -1184
  72. package/dist/seed/grouped-listings-seed-data.d.ts +119 -8
  73. package/dist/seed/grouped-listings-seed-data.js +148 -233
  74. package/dist/seed/history-seed-data.d.ts +0 -7
  75. package/dist/seed/history-seed-data.js +50 -54
  76. package/dist/seed/homepage-sections-seed-data.d.ts +0 -5
  77. package/dist/seed/homepage-sections-seed-data.js +83 -175
  78. package/dist/seed/index.d.ts +1 -1
  79. package/dist/seed/index.js +1 -1
  80. package/dist/seed/manifest.js +2 -2
  81. package/dist/seed/notifications-seed-data.d.ts +0 -6
  82. package/dist/seed/notifications-seed-data.js +309 -196
  83. package/dist/seed/offers-seed-data.d.ts +0 -8
  84. package/dist/seed/offers-seed-data.js +118 -197
  85. package/dist/seed/orders-seed-data.d.ts +2 -8
  86. package/dist/seed/orders-seed-data.js +248 -1510
  87. package/dist/seed/payouts-seed-data.d.ts +0 -6
  88. package/dist/seed/payouts-seed-data.js +102 -441
  89. package/dist/seed/products-auctions-seed-data.d.ts +1 -14
  90. package/dist/seed/products-auctions-seed-data.js +612 -1084
  91. package/dist/seed/products-preorders-seed-data.d.ts +119 -14
  92. package/dist/seed/products-preorders-seed-data.js +154 -455
  93. package/dist/seed/products-standard-seed-data.d.ts +1 -15
  94. package/dist/seed/products-standard-seed-data.js +1355 -4128
  95. package/dist/seed/reviews-seed-data.d.ts +2 -8
  96. package/dist/seed/reviews-seed-data.js +99 -1182
  97. package/dist/seed/scammers-seed-data.d.ts +0 -15
  98. package/dist/seed/scammers-seed-data.js +36 -37
  99. package/dist/seed/sessions-seed-data.d.ts +0 -13
  100. package/dist/seed/sessions-seed-data.js +58 -335
  101. package/dist/seed/site-settings-seed-data.d.ts +0 -4
  102. package/dist/seed/site-settings-seed-data.js +61 -52
  103. package/dist/seed/store-addresses-seed-data.js +27 -151
  104. package/dist/seed/store-extensions-seed-data.d.ts +0 -7
  105. package/dist/seed/store-extensions-seed-data.js +147 -261
  106. package/dist/seed/stores-seed-data.d.ts +0 -5
  107. package/dist/seed/stores-seed-data.js +222 -184
  108. package/dist/seed/sub-listings-seed-data.d.ts +119 -0
  109. package/dist/seed/sub-listings-seed-data.js +447 -0
  110. package/dist/seed/support-tickets-seed-data.d.ts +0 -7
  111. package/dist/seed/support-tickets-seed-data.js +82 -75
  112. package/dist/seed/users-seed-data.d.ts +0 -5
  113. package/dist/seed/users-seed-data.js +279 -634
  114. package/dist/seed/wishlists-seed-data.d.ts +0 -9
  115. package/dist/seed/wishlists-seed-data.js +36 -52
  116. package/dist/seo/json-ld.js +6 -4
  117. package/dist/styles.css +8052 -3
  118. package/dist/utils/index.d.ts +1 -0
  119. package/dist/utils/index.js +1 -0
  120. package/dist/utils/search-tokens.d.ts +2 -0
  121. package/dist/utils/search-tokens.js +21 -0
  122. package/package.json +2 -2
  123. package/scripts/seed-cli.mjs +2 -2
@@ -1,8 +1,19 @@
1
- /**
2
- * Categories Seed Data Collectibles Edition
3
- * 22 categories in 3-tier hierarchy covering 5 collectibles verticals.
4
- * Verticals: action figures, trading cards, diecast, spinning tops, model kits + vintage/rare.
5
- * id === slug convention enforced throughout.
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-action-figures",
26
- slug: "category-action-figures",
27
- name: "Action Figures & Statues",
28
- description: "Premium anime figures, scale statues, Nendoroids, figma, and poseable action figures from top Japanese manufacturers.",
29
- rootId: "category-action-figures",
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-nendoroids-chibis",
33
- "category-scale-figures",
34
- "category-poseable-figures",
35
- "category-anime-figures",
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: "action-figures",
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: "Action Figures & Anime Statues | LetItRip",
51
- description: "Shop premium anime figures, scale statues, Nendoroids, figma, and poseable action figures from Bandai, Good Smile Company, and more.",
52
- keywords: [
53
- "anime figures",
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.unsplash.com/photo-1578632767115-351597cf2477?w=800&h=800&fit=crop",
65
- color: "#3b82f6",
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(30),
75
- ancestors: [],
77
+ updatedAt: daysAgo(1),
76
78
  },
77
- // Action Figures > Nendoroids & Chibis (tier 1)
78
79
  {
79
- id: "category-nendoroids-chibis",
80
- slug: "category-nendoroids-chibis",
81
- name: "Nendoroids & Chibis",
82
- description: "Good Smile Company Nendoroids, Nendoroid Dolls, chibi-style figures, and gashapon mini collectibles.",
83
- rootId: "category-action-figures",
84
- parentIds: ["category-action-figures"],
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: "action-figures/nendoroids-chibis",
88
+ path: "singles/monster-cards",
88
89
  order: 1,
89
90
  isLeaf: true,
90
91
  position: 0,
91
- subtreeSize: 1,
92
+ subtreeSize: 0,
92
93
  metrics: emptyMetrics,
93
94
  isFeatured: false,
94
95
  isBrand: false,
95
96
  seo: {
96
- title: "Nendoroids & Chibi Figures | LetItRip",
97
- description: "Browse GSC Nendoroids, Nendoroid Dolls, chibi figurines, and gashapon mini collectibles.",
98
- keywords: ["nendoroid", "chibi figure", "good smile", "gsc", "gashapon"],
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.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=800&fit=crop",
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
- createdBy: "user-priya-singh",
111
+ showOnHomepage: false,
112
+ createdBy: "user-admin-letitrip",
109
113
  createdAt: daysAgo(400),
110
- updatedAt: daysAgo(30),
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-scale-figures",
116
- slug: "category-scale-figures",
117
- name: "Scale Figures",
118
- description: "High-end 1/4, 1/6, 1/7, and 1/8 scale PVC anime statues from Alter, Kotobukiya, Max Factory, and Aniplex.",
119
- rootId: "category-action-figures",
120
- parentIds: ["category-action-figures"],
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: "action-figures/scale-figures",
125
+ path: "singles/spell-cards",
124
126
  order: 2,
125
127
  isLeaf: true,
126
- position: 0,
127
- subtreeSize: 1,
128
+ position: 1,
129
+ subtreeSize: 0,
128
130
  metrics: emptyMetrics,
129
- isFeatured: true,
130
- featuredPriority: 2,
131
+ isFeatured: false,
131
132
  isBrand: false,
132
133
  seo: {
133
- title: "Scale Figures 1/6, 1/7, 1/8 Anime PVC | LetItRip",
134
- description: "Shop 1/4–1/8 scale anime PVC figures by Alter, Kotobukiya, Max Factory, and more.",
135
- keywords: ["scale figure", "1/7 scale", "pvc figure", "alter", "kotobukiya", "anime statue"],
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.unsplash.com/photo-1608889825271-9696283b84bd?w=800&h=800&fit=crop",
140
+ icon: "",
141
+ coverImage: "https://images.ygoprodeck.com/images/cards/cropped/55144522.jpg",
142
+ color: "#059669",
140
143
  showInMenu: true,
141
- showInFooter: true,
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(30),
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-poseable-figures",
153
- slug: "category-poseable-figures",
154
- name: "Poseable Action Figures",
155
- description: "Fully articulated poseable action figures figma, S.H.Figuarts, MAFEX, and Marvel Legends. Multiple points of articulation and interchangeable parts.",
156
- rootId: "category-action-figures",
157
- parentIds: ["category-action-figures"],
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: "action-figures/poseable-figures",
162
+ path: "singles/trap-cards",
161
163
  order: 3,
162
164
  isLeaf: true,
163
- position: 0,
164
- subtreeSize: 1,
165
+ position: 2,
166
+ subtreeSize: 0,
165
167
  metrics: emptyMetrics,
166
168
  isFeatured: false,
167
169
  isBrand: false,
168
170
  seo: {
169
- title: "Poseable Action Figures figma, S.H.Figuarts | LetItRip",
170
- description: "Shop fully articulated figma, S.H.Figuarts, MAFEX, and Revoltech poseable anime figures.",
171
- keywords: ["figma", "sh figuarts", "mafex", "revoltech", "poseable figure", "articulated"],
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.unsplash.com/photo-1560762484-813fc97650a0?w=800&h=800&fit=crop",
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(30),
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-trading-cards",
191
- slug: "category-trading-cards",
192
- name: "Trading Cards",
193
- description: "Pokémon TCG, Yu-Gi-Oh!, and other trading card games. Singles, booster packs, sealed boxes, ETBs, and graded slabs.",
194
- rootId: "category-trading-cards",
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-pokemon-tcg",
198
- "category-yugioh-tcg",
199
- "category-sealed-product",
200
- "category-one-piece-cards",
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: "trading-cards",
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: 3,
249
+ featuredPriority: 2,
213
250
  isBrand: false,
214
251
  seo: {
215
- title: "Trading Cards Pokémon TCG, Yu-Gi-Oh! | LetItRip",
216
- description: "Shop Pokémon TCG singles, booster packs, sealed boxes, and Yu-Gi-Oh! cards. Graded slabs, ETBs, and more.",
217
- keywords: [
218
- "pokemon tcg",
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.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
230
- color: "#f59e0b",
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(30),
240
- ancestors: [],
269
+ updatedAt: daysAgo(1),
241
270
  },
242
- // Trading Cards > Pokémon TCG (tier 1)
243
271
  {
244
- id: "category-pokemon-tcg",
245
- slug: "category-pokemon-tcg",
246
- name: "Pokémon TCG",
247
- description: "Official Pokémon Trading Card Game product. Booster packs, Elite Trainer Boxes (ETBs), sealed booster boxes, singles, and graded PSA/BGS slabs.",
248
- rootId: "category-trading-cards",
249
- parentIds: ["category-trading-cards"],
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: "trading-cards/pokemon-tcg",
280
+ path: "sealed-products/booster-packs",
253
281
  order: 1,
254
282
  isLeaf: true,
255
283
  position: 0,
256
- subtreeSize: 1,
284
+ subtreeSize: 0,
257
285
  metrics: emptyMetrics,
258
- isFeatured: true,
259
- featuredPriority: 4,
286
+ isFeatured: false,
260
287
  isBrand: false,
261
- seo: {
262
- title: "Pokémon TCG Cards, Booster Packs & ETBs | LetItRip",
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
- createdBy: "user-aryan-kapoor",
292
+ showOnHomepage: false,
293
+ createdBy: "user-admin-letitrip",
284
294
  createdAt: daysAgo(400),
285
- updatedAt: daysAgo(30),
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-yugioh-tcg",
291
- slug: "category-yugioh-tcg",
292
- name: "Yu-Gi-Oh! TCG",
293
- description: "Konami's Yu-Gi-Oh! Trading Card Game. Booster packs, structure decks, collector tins, secret rare singles, and tournament staples.",
294
- rootId: "category-trading-cards",
295
- parentIds: ["category-trading-cards"],
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: "trading-cards/yugioh-tcg",
306
+ path: "sealed-products/booster-boxes",
299
307
  order: 2,
300
308
  isLeaf: true,
301
- position: 0,
302
- subtreeSize: 1,
309
+ position: 1,
310
+ subtreeSize: 0,
303
311
  metrics: emptyMetrics,
304
312
  isFeatured: false,
305
313
  isBrand: false,
306
- seo: {
307
- title: "Yu-Gi-Oh! TCG Cards, Booster Packs & Decks | LetItRip",
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
- createdBy: "user-nisha-reddy",
318
+ showOnHomepage: false,
319
+ createdBy: "user-admin-letitrip",
327
320
  createdAt: daysAgo(400),
328
- updatedAt: daysAgo(30),
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-sealed-product",
334
- slug: "category-sealed-product",
335
- name: "Sealed Product",
336
- description: "Sealed booster boxes, collector's tins, Premium Collections, and first-edition sealed sets from all TCG brands. Investment-grade sealed collectibles.",
337
- rootId: "category-trading-cards",
338
- parentIds: ["category-trading-cards"],
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: "trading-cards/sealed-product",
332
+ path: "sealed-products/collector-tins",
342
333
  order: 3,
343
334
  isLeaf: true,
344
- position: 0,
345
- subtreeSize: 1,
335
+ position: 2,
336
+ subtreeSize: 0,
346
337
  metrics: emptyMetrics,
347
338
  isFeatured: false,
348
339
  isBrand: false,
349
- seo: {
350
- title: "Sealed TCG Product Boxes, Tins & Collections | LetItRip",
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(30),
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-diecast-vehicles",
379
- slug: "category-diecast-vehicles",
380
- name: "Diecast & Vehicles",
381
- description: "Die-cast collectible vehicles Hot Wheels 1:64 scale cars, Tomica Japanese vehicles, Treasure Hunts, Car Culture sets, and premium diecast.",
382
- rootId: "category-diecast-vehicles",
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-hot-wheels",
386
- "category-tomica",
387
- "category-premium-diecast",
388
- "category-matchbox-cars",
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: "diecast-vehicles",
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: 5,
397
+ featuredPriority: 3,
400
398
  isBrand: false,
401
399
  seo: {
402
- title: "Diecast Vehicles Hot Wheels, Tomica | LetItRip",
403
- description: "Shop Hot Wheels Treasure Hunts, Car Culture sets, Tomica diecast, and premium 1:18 scale cars.",
404
- keywords: [
405
- "hot wheels india",
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.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=800&fit=crop",
417
- color: "#ef4444",
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(30),
427
- ancestors: [],
417
+ updatedAt: daysAgo(1),
428
418
  },
429
- // Diecast > Hot Wheels (tier 1)
430
419
  {
431
- id: "category-hot-wheels",
432
- slug: "category-hot-wheels",
433
- name: "Hot Wheels",
434
- description: "Mattel Hot Wheels 1:64 scale diecast cars. Mainline, Treasure Hunt (TH), Super Treasure Hunt (STH), Car Culture, Team Transport, and RLC exclusives.",
435
- rootId: "category-diecast-vehicles",
436
- parentIds: ["category-diecast-vehicles"],
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: "diecast-vehicles/hot-wheels",
428
+ path: "graded-cards/psa-graded",
440
429
  order: 1,
441
430
  isLeaf: true,
442
431
  position: 0,
443
- subtreeSize: 1,
432
+ subtreeSize: 0,
444
433
  metrics: emptyMetrics,
445
- isFeatured: true,
446
- featuredPriority: 6,
434
+ isFeatured: false,
447
435
  isBrand: false,
448
- seo: {
449
- title: "Hot Wheels Treasure Hunt, Car Culture, RLC | LetItRip",
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
- createdBy: "user-vikram-mehta",
440
+ showOnHomepage: false,
441
+ createdBy: "user-admin-letitrip",
470
442
  createdAt: daysAgo(400),
471
- updatedAt: daysAgo(30),
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-tomica",
477
- slug: "category-tomica",
478
- name: "Tomica",
479
- description: "Takara Tomy's Tomica 1:64 Japanese diecast cars. Standard Tomica, Tomica Premium, Tomica Limited Vintage, and Disney collaboration sets.",
480
- rootId: "category-diecast-vehicles",
481
- parentIds: ["category-diecast-vehicles"],
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: "diecast-vehicles/tomica",
454
+ path: "graded-cards/bgs-graded",
485
455
  order: 2,
486
456
  isLeaf: true,
487
- position: 0,
488
- subtreeSize: 1,
457
+ position: 1,
458
+ subtreeSize: 0,
489
459
  metrics: emptyMetrics,
490
460
  isFeatured: false,
491
461
  isBrand: false,
492
- seo: {
493
- title: "Tomica Diecast Tomica Premium & Limited Vintage | LetItRip",
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(30),
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-premium-diecast",
519
- slug: "category-premium-diecast",
520
- name: "Premium Diecast",
521
- description: "Premium 1:18 and 1:43 scale diecast from Maisto, Bburago, Kyosho, and AutoArt. Museum-quality replica cars including F1 and supercars.",
522
- rootId: "category-diecast-vehicles",
523
- parentIds: ["category-diecast-vehicles"],
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: "diecast-vehicles/premium-diecast",
480
+ path: "graded-cards/cgc-graded",
527
481
  order: 3,
528
482
  isLeaf: true,
529
- position: 0,
530
- subtreeSize: 1,
483
+ position: 2,
484
+ subtreeSize: 0,
531
485
  metrics: emptyMetrics,
532
486
  isFeatured: false,
533
487
  isBrand: false,
534
- seo: {
535
- title: "Premium 1:18 Diecast Cars | LetItRip",
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(30),
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-spinning-tops",
557
- slug: "category-spinning-tops",
558
- name: "Spinning Tops",
559
- description: "Competitive Beyblade spinning tops Beyblade Burst, Beyblade X, Metal Fight Classic. Official Takara Tomy and Hasbro product including launchers and stadiums.",
560
- rootId: "category-spinning-tops",
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-beyblade-burst",
564
- "category-beyblade-x",
565
- "category-beyblade-classic",
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: "spinning-tops",
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: 7,
545
+ featuredPriority: 4,
576
546
  isBrand: false,
577
547
  seo: {
578
- title: "Beyblade Burst, X & Metal Fight | LetItRip",
579
- description: "Shop Beyblade Burst, Beyblade X, and Metal Fight Classic tops, launchers, and stadiums. Official Takara Tomy and Hasbro.",
580
- keywords: [
581
- "beyblade india",
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.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=800&fit=crop",
593
- color: "#8b5cf6",
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(30),
603
- ancestors: [],
565
+ updatedAt: daysAgo(1),
604
566
  },
605
- // Spinning Tops > Beyblade Burst (tier 1)
606
567
  {
607
- id: "category-beyblade-burst",
608
- slug: "category-beyblade-burst",
609
- name: "Beyblade Burst",
610
- description: "Beyblade Burst series Burst, Burst GT, Burst Rise, Burst Sparking, Burst QuadStrike. Layers, discs, drivers, launchers, and combo sets.",
611
- rootId: "category-spinning-tops",
612
- parentIds: ["category-spinning-tops"],
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: "spinning-tops/beyblade-burst",
576
+ path: "duel-monsters-era/legend-of-blue-eyes",
616
577
  order: 1,
617
578
  isLeaf: true,
618
579
  position: 0,
619
- subtreeSize: 1,
580
+ subtreeSize: 0,
620
581
  metrics: emptyMetrics,
621
- isFeatured: true,
622
- featuredPriority: 8,
582
+ isFeatured: false,
623
583
  isBrand: false,
624
- seo: {
625
- title: "Beyblade Burst All Series | LetItRip",
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(30),
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-beyblade-x",
653
- slug: "category-beyblade-x",
654
- name: "Beyblade X",
655
- description: "The latest generation of Beyblade — Beyblade X. Features the X-Line rail and Extreme Dash mechanic. Official Takara Tomy starter sets, booster packs, and XStadium.",
656
- rootId: "category-spinning-tops",
657
- parentIds: ["category-spinning-tops"],
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: "spinning-tops/beyblade-x",
602
+ path: "duel-monsters-era/metal-raiders",
661
603
  order: 2,
662
604
  isLeaf: true,
663
- position: 0,
664
- subtreeSize: 1,
605
+ position: 1,
606
+ subtreeSize: 0,
665
607
  metrics: emptyMetrics,
666
- isFeatured: true,
667
- featuredPriority: 9,
608
+ isFeatured: false,
668
609
  isBrand: false,
669
- seo: {
670
- title: "Beyblade X Latest Gen Tops & Launchers | LetItRip",
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
- createdBy: "user-rohit-joshi",
614
+ showOnHomepage: false,
615
+ createdBy: "user-admin-letitrip",
691
616
  createdAt: daysAgo(400),
692
- updatedAt: daysAgo(30),
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-beyblade-classic",
698
- slug: "category-beyblade-classic",
699
- name: "Metal Fight Classic",
700
- description: "Original Beyblade and Metal Fight Beyblade series. Collector and tournament condition tops Pegasis, Leone, Libra. Rare Japanese editions and vintage MFB.",
701
- rootId: "category-spinning-tops",
702
- parentIds: ["category-spinning-tops"],
620
+ id: "category-pharaoh-servant",
621
+ slug: "category-pharaoh-servant",
622
+ name: "Pharaoh's Servant (PSV)",
623
+ description: "Cards from the Pharaoh's Servant setJinzo, 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: "spinning-tops/beyblade-classic",
628
+ path: "duel-monsters-era/pharaoh-servant",
706
629
  order: 3,
707
630
  isLeaf: true,
708
- position: 0,
709
- subtreeSize: 1,
631
+ position: 2,
632
+ subtreeSize: 0,
710
633
  metrics: emptyMetrics,
711
634
  isFeatured: false,
712
635
  isBrand: false,
713
- seo: {
714
- title: "Metal Fight Beyblade & Classic Series | LetItRip",
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(30),
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-model-kits",
743
- slug: "category-model-kits",
744
- name: "Model Kits & Gunpla",
745
- description: "Gundam plastic model kits (Gunpla) High Grade (HG), Master Grade (MG), Real Grade (RG), and Perfect Grade (PG). Non-Gundam kits from Kotobukiya, Bandai, and Hasegawa.",
746
- rootId: "category-model-kits",
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-gunpla",
750
- "category-non-gundam-kits",
751
- "category-gundam-master-grade",
752
- "category-gundam-perfect-grade",
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: "model-kits",
686
+ path: "gx-era",
756
687
  order: 5,
757
688
  isLeaf: false,
758
689
  position: 0,
759
- subtreeSize: 3,
690
+ subtreeSize: 4,
760
691
  metrics: emptyMetrics,
761
692
  isFeatured: true,
762
- featuredPriority: 10,
693
+ featuredPriority: 5,
763
694
  isBrand: false,
764
695
  seo: {
765
- title: "Model Kits & Gunpla | LetItRip",
766
- description: "Shop Gunpla HG, MG, RG, and PG model kits. Non-Gundam kits from Kotobukiya and Hasegawa. Build-and-display collectibles.",
767
- keywords: [
768
- "gunpla",
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.unsplash.com/photo-1657664072470-99b02c2143f2?w=800&h=800&fit=crop",
780
- color: "#10b981",
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(30),
790
- ancestors: [],
713
+ updatedAt: daysAgo(1),
791
714
  },
792
- // Model Kits > Gunpla (tier 1)
793
715
  {
794
- id: "category-gunpla",
795
- slug: "category-gunpla",
796
- name: "Gunpla",
797
- description: "Official Bandai Gundam Plastic Model Kits. HG (High Grade), RG (Real Grade), MG (Master Grade), PG (Perfect Grade), and SD Gundam kits. Entry-grade and panel-lined pre-built options available.",
798
- rootId: "category-model-kits",
799
- parentIds: ["category-model-kits"],
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: "model-kits/gunpla",
724
+ path: "gx-era/shadow-of-infinity",
803
725
  order: 1,
804
726
  isLeaf: true,
805
727
  position: 0,
806
- subtreeSize: 1,
728
+ subtreeSize: 0,
807
729
  metrics: emptyMetrics,
808
- isFeatured: true,
809
- featuredPriority: 11,
730
+ isFeatured: false,
810
731
  isBrand: false,
811
- seo: {
812
- title: "Gunpla HG, MG, RG, PG Gundam Model Kits | LetItRip",
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
- createdBy: "user-amit-sharma",
736
+ showOnHomepage: false,
737
+ createdBy: "user-admin-letitrip",
834
738
  createdAt: daysAgo(400),
835
- updatedAt: daysAgo(30),
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-non-gundam-kits",
841
- slug: "category-non-gundam-kits",
842
- name: "Non-Gundam Kits",
843
- description: "Non-Gundam plastic model kitsKotobukiya Frame Arms and Megami Device, Bandai Star Wars and Ultraman kits, Hasegawa sci-fi and aircraft models.",
844
- rootId: "category-model-kits",
845
- parentIds: ["category-model-kits"],
742
+ id: "category-elemental-energy",
743
+ slug: "category-elemental-energy",
744
+ name: "Elemental Energy (EEN)",
745
+ description: "Cards from Elemental EnergyElemental 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: "model-kits/non-gundam-kits",
750
+ path: "gx-era/elemental-energy",
849
751
  order: 2,
850
752
  isLeaf: true,
851
- position: 0,
852
- subtreeSize: 1,
753
+ position: 1,
754
+ subtreeSize: 0,
853
755
  metrics: emptyMetrics,
854
756
  isFeatured: false,
855
757
  isBrand: false,
856
- seo: {
857
- title: "Non-Gundam Model Kits Frame Arms, Star Wars | LetItRip",
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(30),
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-vintage-rare",
886
- slug: "category-vintage-rare",
887
- name: "Vintage & Rare",
888
- description: "Rare, vintage, and limited-edition collectibles. 1st-edition Pokémon cards, original-run Beyblade tops, production cels, signed merchandise, and graded slabs.",
889
- rootId: "category-vintage-rare",
890
- parentIds: [],
891
- childrenIds: [
892
- "category-vintage-tcg",
893
- "category-vintage-figures",
894
- "category-limited-exclusives",
895
- ],
896
- tier: 0,
897
- path: "vintage-rare",
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
- title: "Vintage & Rare Collectibles | LetItRip",
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(30),
931
- ancestors: [],
791
+ updatedAt: daysAgo(1),
932
792
  },
933
- // Vintage & Rare > Vintage TCG (tier 1)
934
793
  {
935
- id: "category-vintage-tcg",
936
- slug: "category-vintage-tcg",
937
- name: "Vintage TCG",
938
- description: "Vintage and 1st-edition trading cards. PSA/BGS graded Pokémon Base Set, Jungle, Fossil, and Team Rocket. First-edition Yu-Gi-Oh! Blue-Eyes and LOB.",
939
- rootId: "category-vintage-rare",
940
- parentIds: ["category-vintage-rare"],
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: "vintage-rare/vintage-tcg",
944
- order: 1,
802
+ path: "gx-era/cyberdark-impact",
803
+ order: 4,
945
804
  isLeaf: true,
946
- position: 0,
947
- subtreeSize: 1,
805
+ position: 3,
806
+ subtreeSize: 0,
948
807
  metrics: emptyMetrics,
949
808
  isFeatured: false,
950
809
  isBrand: false,
951
- seo: {
952
- title: "Vintage TCG 1st Edition Pokémon & Yu-Gi-Oh! | LetItRip",
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(30),
975
- ancestors: [{ id: "category-vintage-rare", name: "Vintage & Rare", tier: 0 }],
817
+ updatedAt: daysAgo(1),
976
818
  },
977
- // Vintage & Rare > Vintage Figures (tier 1)
819
+ // ── ROOT 6: Trading Cards (broad — umbrella for YGO + Pokémon + others) ───
978
820
  {
979
- id: "category-vintage-figures",
980
- slug: "category-vintage-figures",
981
- name: "Vintage Figures",
982
- description: "Vintage and rare anime figures early-run garage kits, discontinued GSC, vintage SH Figuarts, original Revoltech, and original Beyblade tops from 1999–2009.",
983
- rootId: "category-vintage-rare",
984
- parentIds: ["category-vintage-rare"],
985
- childrenIds: [],
986
- tier: 1,
987
- path: "vintage-rare/vintage-figures",
988
- order: 2,
989
- isLeaf: true,
821
+ id: "category-trading-cards",
822
+ slug: "category-trading-cards",
823
+ name: "Trading Cards",
824
+ description: "Collectible trading card gamesPoké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: 1,
833
+ subtreeSize: 4,
992
834
  metrics: emptyMetrics,
993
- isFeatured: false,
835
+ isFeatured: true,
836
+ featuredPriority: 6,
994
837
  isBrand: false,
995
- seo: {
996
- title: "Vintage Anime Figures & Rare Collectibles | LetItRip",
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(400),
1016
- updatedAt: daysAgo(30),
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-limited-exclusives",
1022
- slug: "category-limited-exclusives",
1023
- name: "Limited & Exclusives",
1024
- description: "Event-exclusive, convention-only, and limited-run collectibles. Wonder Festival exclusive figures, Pokémon Center exclusives, Takara Tomy convention tops, and signed merchandise.",
1025
- rootId: "category-vintage-rare",
1026
- parentIds: ["category-vintage-rare"],
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: "vintage-rare/limited-exclusives",
1030
- order: 3,
856
+ path: "trading-cards/pokemon-tcg",
857
+ order: 1,
1031
858
  isLeaf: true,
1032
859
  position: 0,
1033
- subtreeSize: 1,
860
+ subtreeSize: 0,
1034
861
  metrics: emptyMetrics,
1035
- isFeatured: false,
862
+ isFeatured: true,
1036
863
  isBrand: false,
1037
- seo: {
1038
- title: "Limited Edition & Convention Exclusives | LetItRip",
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(400),
1058
- updatedAt: daysAgo(30),
1059
- ancestors: [{ id: "category-vintage-rare", name: "Vintage & Rare", tier: 0 }],
1060
- },
1061
- // ──────────────────────────────────────────────────────────────────────────
1062
- // P25 expansion — additional leaf categories (Session S15 2026-05-12)
1063
- // ──────────────────────────────────────────────────────────────────────────
1064
- // Trading Cards > One Piece Card Game (tier 1)
1065
- ...mkLeaves([
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: `${s.rootId.replace("category-", "")}/${s.id.replace("category-", "")}`,
1192
- order: s.order,
882
+ path: "trading-cards/one-piece-tcg",
883
+ order: 2,
1193
884
  isLeaf: true,
1194
- position: 0,
1195
- subtreeSize: 1,
885
+ position: 1,
886
+ subtreeSize: 0,
1196
887
  metrics: emptyMetrics,
1197
888
  isFeatured: false,
1198
889
  isBrand: false,
1199
- seo: {
1200
- title: `${s.name} | LetItRip`,
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(45),
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: "sublisting-pokemon-psa-graded",
1251
- slug: "sublisting-pokemon-psa-graded",
1252
- name: "PSA Graded Pokémon Cards",
1253
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
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/sublisting-pokemon-psa-graded",
908
+ path: "trading-cards/dragon-ball-tcg",
909
+ order: 3,
1260
910
  isLeaf: true,
1261
- order: 1,
1262
- display: {
1263
- coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=600&fit=crop",
1264
- showInMenu: false,
1265
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1270
- createdAt: daysAgo(55),
1271
- updatedAt: daysAgo(2),
920
+ showOnHomepage: false,
921
+ createdBy: "user-admin-letitrip",
922
+ createdAt: daysAgo(300),
923
+ updatedAt: daysAgo(1),
1272
924
  },
1273
925
  {
1274
- id: "sublisting-pokemon-sealed-boxes",
1275
- slug: "sublisting-pokemon-sealed-boxes",
1276
- name: "Sealed Pokémon Booster Boxes",
1277
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
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/sublisting-pokemon-sealed-boxes",
934
+ path: "trading-cards/cardfight-vanguard",
935
+ order: 4,
1283
936
  isLeaf: true,
1284
- order: 2,
1285
- display: {
1286
- coverImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=600&fit=crop",
1287
- showInMenu: false,
1288
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1293
- createdAt: daysAgo(50),
1294
- updatedAt: daysAgo(3),
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: "sublisting-vintage-wotc-era",
1298
- slug: "sublisting-vintage-wotc-era",
1299
- name: "WOTC Era Pokémon (1999–2003)",
1300
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
1301
- itemCode: "WOTC",
1302
- description: "All Wizards of the Coast era Pokémon TCG sets: Base Set through Legendary Collection.",
1303
- rootId: "category-vintage-rare",
1304
- parentIds: ["category-vintage-rare"],
1305
- tier: 1,
1306
- path: "vintage-rare/sublisting-vintage-wotc-era",
1307
- isLeaf: true,
1308
- order: 0,
1309
- display: {
1310
- coverImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=600&fit=crop",
1311
- showInMenu: false,
1312
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1317
- createdAt: daysAgo(8),
974
+ showOnHomepage: true,
975
+ createdBy: "user-admin-letitrip",
976
+ createdAt: daysAgo(300),
1318
977
  updatedAt: daysAgo(1),
1319
978
  },
1320
979
  {
1321
- id: "sublisting-yugioh-lob-1st-edition",
1322
- slug: "sublisting-yugioh-lob-1st-edition",
1323
- name: "Yu-Gi-Oh! LOB 1st Edition",
1324
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
1325
- itemCode: "LOB-1E",
1326
- description: "Legend of Blue-Eyes White Dragon 1st Edition singles — iconic 2002 WOTC-era Yu-Gi-Oh!.",
1327
- rootId: "category-trading-cards",
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: "trading-cards/sublisting-yugioh-lob-1st-edition",
988
+ path: "action-figures/gundam-figures",
989
+ order: 1,
1331
990
  isLeaf: true,
1332
- order: 3,
1333
- display: {
1334
- coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=600&fit=crop",
1335
- showInMenu: false,
1336
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1341
- createdAt: daysAgo(45),
1342
- updatedAt: daysAgo(5),
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: "sublisting-hotwheels-redlines",
1347
- slug: "sublisting-hotwheels-redlines",
1348
- name: "Hot Wheels Vintage Redlines (1968–1977)",
1349
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
1350
- itemCode: "Redline",
1351
- description: "Original Hot Wheels Redline-era cars (1968–1977).",
1352
- rootId: "category-diecast-vehicles",
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/sublisting-hotwheels-redlines",
1146
+ path: "diecast-vehicles/hot-wheels",
1147
+ order: 1,
1356
1148
  isLeaf: true,
1357
- order: 0,
1358
- display: {
1359
- coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
1360
- showInMenu: false,
1361
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1366
- createdAt: daysAgo(38),
1210
+ showOnHomepage: false,
1211
+ createdBy: "user-admin-letitrip",
1212
+ createdAt: daysAgo(300),
1367
1213
  updatedAt: daysAgo(1),
1368
1214
  },
1369
1215
  {
1370
- id: "sublisting-hotwheels-super-treasure-hunts",
1371
- slug: "sublisting-hotwheels-super-treasure-hunts",
1372
- name: "Hot Wheels Super Treasure Hunts",
1373
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
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/sublisting-hotwheels-super-treasure-hunts",
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
- display: {
1383
- coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
1384
- showInMenu: false,
1385
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1390
- createdAt: daysAgo(35),
1391
- updatedAt: daysAgo(2),
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: "sublisting-beyblade-x-series",
1396
- slug: "sublisting-beyblade-x-series",
1397
- name: "Beyblade X Series (2023+)",
1398
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
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/sublisting-beyblade-x-series",
1304
+ path: "spinning-tops/beyblade-burst",
1305
+ order: 2,
1405
1306
  isLeaf: true,
1406
- order: 0,
1407
- display: {
1408
- coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=600&fit=crop",
1409
- showInMenu: false,
1410
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1415
- createdAt: daysAgo(20),
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: "sublisting-gundam-master-grade",
1421
- slug: "sublisting-gundam-master-grade",
1422
- name: "Gundam Master Grade (MG) 1/100",
1423
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
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/sublisting-gundam-master-grade",
1384
+ path: "model-kits/gunpla",
1385
+ order: 1,
1430
1386
  isLeaf: true,
1431
- order: 0,
1432
- display: {
1433
- coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
1434
- showInMenu: false,
1435
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1440
- createdAt: daysAgo(15),
1441
- updatedAt: daysAgo(2),
1396
+ showOnHomepage: false,
1397
+ createdBy: "user-admin-letitrip",
1398
+ createdAt: daysAgo(300),
1399
+ updatedAt: daysAgo(1),
1442
1400
  },
1443
1401
  {
1444
- id: "sublisting-gundam-high-grade",
1445
- slug: "sublisting-gundam-high-grade",
1446
- name: "Gundam High Grade (HG) 1/144",
1447
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
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/sublisting-gundam-high-grade",
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
- display: {
1457
- coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
1458
- showInMenu: false,
1459
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1464
- createdAt: daysAgo(10),
1465
- updatedAt: daysAgo(4),
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: "sublisting-nendoroid-early-series",
1470
- slug: "sublisting-nendoroid-early-series",
1471
- name: "Nendoroid Early Series (#001–#100)",
1472
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
1473
- itemCode: "GSC-001-100",
1474
- description: "Discontinued Good Smile Company Nendoroid figures #001–#100.",
1475
- rootId: "category-action-figures",
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: "action-figures/sublisting-nendoroid-early-series",
1516
+ path: "vintage-rare/vintage-cards",
1517
+ order: 2,
1479
1518
  isLeaf: true,
1480
- order: 0,
1481
- display: {
1482
- coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
1483
- showInMenu: false,
1484
- showInFooter: false,
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
- createdBy: ADMIN_ID,
1489
- createdAt: daysAgo(28),
1490
- updatedAt: daysAgo(2),
1528
+ showOnHomepage: false,
1529
+ createdBy: "user-admin-letitrip",
1530
+ createdAt: daysAgo(300),
1531
+ updatedAt: daysAgo(1),
1491
1532
  },
1492
1533
  {
1493
- id: "sublisting-shf-dragonball",
1494
- slug: "sublisting-shf-dragonball",
1495
- name: "S.H.Figuarts Dragon Ball Series",
1496
- categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.SUBLISTING,
1497
- itemCode: "SHF-DBZ",
1498
- description: "Bandai S.H.Figuarts Dragon Ball Z and Super articulated figures.",
1499
- rootId: "category-action-figures",
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: "action-figures/sublisting-shf-dragonball",
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
- coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
1507
- showInMenu: false,
1508
- showInFooter: false,
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: ADMIN_ID,
1513
- createdAt: daysAgo(25),
1514
- updatedAt: daysAgo(1),
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-bandai",
1521
- slug: "brand-bandai",
1522
- name: "Bandai",
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: "Japan's leading toy and hobby manufacturer. Home to Gundam plastic model kits (Gunpla), SH Figuarts, Dragon Ball figures, Digimon, Power Rangers, and premium collectibles.",
1525
- brandWebsite: "https://www.bandai.co.jp",
1526
- brandCountry: "Japan",
1527
- brandFounded: 1950,
1528
- brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop",
1529
- rootId: "brand-bandai",
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-bandai",
1681
+ path: "brand-score-entertainment",
1533
1682
  isLeaf: true,
1534
- order: 1,
1535
- display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
1689
+ createdBy: "user-admin-letitrip",
1541
1690
  createdAt: daysAgo(400),
1542
1691
  updatedAt: daysAgo(30),
1543
- seo: { title: "Bandai", description: "Japan's leading toy and hobby manufacturer. Home to Gundam plastic model kits (Gunpla), SH Figuarts, Dragon Ball figures, Digimon, Power Rangers, and premium collectibles.", keywords: ["Bandai"] },
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 multinational toy and entertainment company. Makes Transformers, Marvel Legends, Star Wars Black Series, My Little Pony, Nerf, and G.I. Joe collectibles.",
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: 2,
1561
- display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=hasbro", showInMenu: false, showInFooter: false },
1562
- isFeatured: false,
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: ADMIN_ID,
1567
- createdAt: daysAgo(400),
1715
+ createdBy: "user-admin-letitrip",
1716
+ createdAt: daysAgo(300),
1568
1717
  updatedAt: daysAgo(30),
1569
- seo: { title: "Hasbro", description: "American multinational toy and entertainment company. Makes Transformers, Marvel Legends, Star Wars Black Series, My Little Pony, Nerf, and G.I. Joe collectibles.", keywords: ["Hasbro"] },
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 Tomy",
1723
+ name: "Takara-Tomy",
1575
1724
  categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
1576
- description: "Iconic Japanese toy manufacturer formed by the merger of Takara and Tomy in 2006. Creates Beyblade Burst, Tomica diecast cars, Transformers (Japan), and Zoids.",
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: 3,
1587
- display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1588
- isFeatured: false,
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: ADMIN_ID,
1593
- createdAt: daysAgo(400),
1740
+ createdBy: "user-admin-letitrip",
1741
+ createdAt: daysAgo(300),
1594
1742
  updatedAt: daysAgo(30),
1595
- seo: { title: "Takara Tomy", description: "Iconic Japanese toy manufacturer formed by the merger of Takara and Tomy in 2006. Creates Beyblade Burst, Tomica diecast cars, Transformers (Japan), and Zoids.", keywords: ["Takara Tomy"] },
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 giant behind Hot Wheels, Barbie, Masters of the Universe, UNO, and Fisher-Price. Hot Wheels alone has over 900 vehicle models released annually.",
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: 4,
1613
- display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=mattel", showInMenu: false, showInFooter: false },
1614
- isFeatured: false,
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: ADMIN_ID,
1619
- createdAt: daysAgo(400),
1765
+ createdBy: "user-admin-letitrip",
1766
+ createdAt: daysAgo(300),
1620
1767
  updatedAt: daysAgo(30),
1621
- seo: { title: "Mattel", description: "American toy giant behind Hot Wheels, Barbie, Masters of the Universe, UNO, and Fisher-Price. Hot Wheels alone has over 900 vehicle models released annually.", keywords: ["Mattel"] },
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: "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.",
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: 5,
1639
- display: { coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1640
- isFeatured: false,
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: ADMIN_ID,
1671
- createdAt: daysAgo(400),
1790
+ createdBy: "user-admin-letitrip",
1791
+ createdAt: daysAgo(300),
1672
1792
  updatedAt: daysAgo(30),
1673
- seo: { title: "Konami", 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.", keywords: ["Konami"] },
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 pop-culture collectibles company. Iconic for Funko Pop! vinyl figures spanning thousands of licenses including Marvel, DC, anime, Disney, gaming, sports, and music.",
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: 7,
1691
- display: { coverImage: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1692
- isFeatured: false,
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: ADMIN_ID,
1697
- createdAt: daysAgo(400),
1815
+ createdBy: "user-admin-letitrip",
1816
+ createdAt: daysAgo(300),
1698
1817
  updatedAt: daysAgo(30),
1699
- seo: { title: "Funko", description: "American pop-culture collectibles company. Iconic for Funko Pop! vinyl figures spanning thousands of licenses including Marvel, DC, anime, Disney, gaming, sports, and music.", keywords: ["Funko"] },
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 American designer and manufacturer of highly detailed action figures. Known for horror icons, Teenage Mutant Ninja Turtles, and video game characters.",
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: 8,
1717
- display: { coverImage: "https://images.unsplash.com/photo-1531259683007-016a7b628fc3?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
1723
- createdAt: daysAgo(400),
1840
+ createdBy: "user-admin-letitrip",
1841
+ createdAt: daysAgo(300),
1724
1842
  updatedAt: daysAgo(30),
1725
- seo: { title: "NECA", description: "National Entertainment Collectibles Association American designer and manufacturer of highly detailed action figures. Known for horror icons, Teenage Mutant Ninja Turtles, and video game characters.", keywords: ["NECA"] },
1843
+ seo: { title: "NECA | LetItRip", description: "Shop NECA figureshorror, 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: "American action figure company founded by comic artist Todd McFarlane. Official DC Multiverse figures, Warhammer, Spawn, and premium collector statuettes with extraordinary detail.",
1733
- brandWebsite: "https://www.mcfarlane.com",
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: 9,
1743
- display: { coverImage: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
1749
- createdAt: daysAgo(400),
1865
+ createdBy: "user-admin-letitrip",
1866
+ createdAt: daysAgo(300),
1750
1867
  updatedAt: daysAgo(30),
1751
- seo: { title: "McFarlane Toys", description: "American action figure company founded by comic artist Todd McFarlane. Official DC Multiverse figures, Warhammer, Spawn, and premium collector statuettes with extraordinary detail.", keywords: ["McFarlane Toys"] },
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: "Japan's premier figure manufacturer. Producer of Nendoroids, figma, and high-end scale PVC figures. Official partner for Fate, Hatsune Miku, Sword Art Online, Re:Zero, and hundreds of anime series.",
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: 10,
1769
- display: { coverImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1770
- isFeatured: false,
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: ADMIN_ID,
1775
- createdAt: daysAgo(400),
1890
+ createdBy: "user-admin-letitrip",
1891
+ createdAt: daysAgo(300),
1776
1892
  updatedAt: daysAgo(30),
1777
- seo: { title: "Good Smile Company", description: "Japan's premier figure manufacturer. Producer of Nendoroids, figma, and high-end scale PVC figures. Official partner for Fate, Hatsune Miku, Sword Art Online, Re:Zero, and hundreds of anime series.", keywords: ["Good Smile Company"] },
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 1:64 scale die-cast vehicle brand since 1968. Treasure Hunt, Super Treasure Hunt, Car Culture, RLC exclusives, and track sets. Over 6 billion cars sold worldwide.",
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: 11,
1795
- display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=hotwheels", showInMenu: false, showInFooter: false },
1796
- isFeatured: false,
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: ADMIN_ID,
1801
- createdAt: daysAgo(400),
1915
+ createdBy: "user-admin-letitrip",
1916
+ createdAt: daysAgo(300),
1802
1917
  updatedAt: daysAgo(30),
1803
- seo: { title: "Hot Wheels", description: "Mattel's iconic 1:64 scale die-cast vehicle brand since 1968. Treasure Hunt, Super Treasure Hunt, Car Culture, RLC exclusives, and track sets. Over 6 billion cars sold worldwide.", keywords: ["Hot Wheels"] },
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 Tomy's 1:64 scale Japanese diecast car series since 1970. Features authentic Japanese vehicles (Toyota, Honda, Nissan), emergency vehicles, and licensed premium Tomica Premium line.",
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: 12,
1821
- display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=tomica", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
1827
- createdAt: daysAgo(400),
1940
+ createdBy: "user-admin-letitrip",
1941
+ createdAt: daysAgo(300),
1828
1942
  updatedAt: daysAgo(30),
1829
- seo: { title: "Tomica", description: "Takara Tomy's 1:64 scale Japanese diecast car series since 1970. Features authentic Japanese vehicles (Toyota, Honda, Nissan), emergency vehicles, and licensed premium Tomica Premium line.", keywords: ["Tomica"] },
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 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.",
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: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop&seed=maxfactory", showInMenu: false, showInFooter: false },
1926
- isFeatured: false,
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: ADMIN_ID,
1965
+ createdBy: "user-admin-letitrip",
1931
1966
  createdAt: daysAgo(300),
1932
1967
  updatedAt: daysAgo(30),
1933
- seo: { title: "Max Factory", 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.", keywords: ["Max Factory"] },
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-medicom-toy",
1937
- slug: "brand-medicom-toy",
1938
- name: "Medicom Toy",
1971
+ id: "brand-bushiroad",
1972
+ slug: "brand-bushiroad",
1973
+ name: "Bushiroad",
1939
1974
  categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
1940
- description: "Japanese designer toy and collectible figure company. Creator of MAFEX (Miracle Action Figure EX) — highly articulated figures with film-accurate sculpts covering Batman, Spider-Man, and Star Wars. Also produces BE@RBRICK designer toys.",
1941
- brandWebsite: "https://www.medicomtoy.co.jp",
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: 1996,
1944
- brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=medicom",
1945
- rootId: "brand-medicom-toy",
1978
+ brandFounded: 2007,
1979
+ rootId: "brand-bushiroad",
1946
1980
  parentIds: [],
1947
1981
  tier: 0,
1948
- path: "brand-medicom-toy",
1982
+ path: "brand-bushiroad",
1949
1983
  isLeaf: true,
1950
1984
  order: 17,
1951
- display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=medicom", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
1990
+ createdBy: "user-admin-letitrip",
1957
1991
  createdAt: daysAgo(300),
1958
1992
  updatedAt: daysAgo(30),
1959
- seo: { title: "Medicom Toy", description: "Japanese designer toy and collectible figure company. Creator of MAFEX (Miracle Action Figure EX) highly articulated figures with film-accurate sculpts covering Batman, Spider-Man, and Star Wars. Also produces BE@RBRICK designer toys.", keywords: ["Medicom Toy"] },
1993
+ seo: { title: "Bushiroad | LetItRip", description: "Shop Bushiroad TCGsCardfight!! Vanguard, Weiss Schwarz.", keywords: ["bushiroad", "cardfight vanguard", "weiss schwarz"] },
1960
1994
  },
1961
1995
  {
1962
- id: "brand-bushiroad",
1963
- slug: "brand-bushiroad",
1964
- name: "Bushiroad",
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: "Japanese trading card game publisher. Home to One Piece Card Game, Cardfight!! Vanguard, Weiß Schwarz, and Sword Art Online TCG. Growing fast in India's TCG community alongside Pokémon and Yu-Gi-Oh.",
1967
- brandWebsite: "https://www.bushiroad.com",
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: 2007,
1970
- brandBannerImage: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=1200&h=400&fit=crop",
1971
- rootId: "brand-bushiroad",
2003
+ brandFounded: 2018,
2004
+ rootId: "brand-bandai-spirits",
1972
2005
  parentIds: [],
1973
2006
  tier: 0,
1974
- path: "brand-bushiroad",
2007
+ path: "brand-bandai-spirits",
1975
2008
  isLeaf: true,
1976
2009
  order: 18,
1977
- display: { coverImage: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
2015
+ createdBy: "user-admin-letitrip",
1983
2016
  createdAt: daysAgo(300),
1984
2017
  updatedAt: daysAgo(30),
1985
- seo: { title: "Bushiroad", description: "Japanese trading card game publisher. Home to One Piece Card Game, Cardfight!! Vanguard, Weiß Schwarz, and Sword Art Online TCG. Growing fast in India's TCG community alongside Pokémon and Yu-Gi-Oh.", keywords: ["Bushiroad"] },
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-panini",
1989
- slug: "brand-panini",
1990
- name: "Panini",
2021
+ id: "brand-kotobukiya",
2022
+ slug: "brand-kotobukiya",
2023
+ name: "Kotobukiya",
1991
2024
  categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
1992
- description: "Italian sticker and trading card company with global reach. Official partner for FIFA, NBA, NFL, ICC Cricket, and IPL trading cards. Popular in India for cricket and football card collections.",
1993
- brandWebsite: "https://www.paniniamerica.net",
1994
- brandCountry: "Italy",
1995
- brandFounded: 1961,
1996
- brandBannerImage: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=1200&h=400&fit=crop&seed=panini",
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-panini",
2032
+ path: "brand-kotobukiya",
2001
2033
  isLeaf: true,
2002
2034
  order: 19,
2003
- display: { coverImage: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=200&h=200&fit=crop&seed=panini", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
2040
+ createdBy: "user-admin-letitrip",
2009
2041
  createdAt: daysAgo(300),
2010
2042
  updatedAt: daysAgo(30),
2011
- seo: { title: "Panini", description: "Italian sticker and trading card company with global reach. Official partner for FIFA, NBA, NFL, ICC Cricket, and IPL trading cards. Popular in India for cricket and football card collections.", keywords: ["Panini"] },
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-spin-master",
2015
- slug: "brand-spin-master",
2016
- name: "Spin Master",
2046
+ id: "brand-megahouse",
2047
+ slug: "brand-megahouse",
2048
+ name: "MegaHouse",
2017
2049
  categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
2018
- description: "Canadian toy company known for Bakugan battle planet, Air Hogs, Paw Patrol, and Tech Deck. Bakugan has a dedicated competitive community in India with official tournaments.",
2019
- brandWebsite: "https://www.spinmaster.com",
2020
- brandCountry: "Canada",
2021
- brandFounded: 1994,
2022
- brandBannerImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=1200&h=400&fit=crop&seed=spinmaster",
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-spin-master",
2057
+ path: "brand-megahouse",
2027
2058
  isLeaf: true,
2028
2059
  order: 20,
2029
- display: { coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=200&h=200&fit=crop&seed=spinmaster", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
2065
+ createdBy: "user-admin-letitrip",
2035
2066
  createdAt: daysAgo(300),
2036
2067
  updatedAt: daysAgo(30),
2037
- seo: { title: "Spin Master", description: "Canadian toy company known for Bakugan battle planet, Air Hogs, Paw Patrol, and Tech Deck. Bakugan has a dedicated competitive community in India with official tournaments.", keywords: ["Spin Master"] },
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-jakks-pacific",
2041
- slug: "brand-jakks-pacific",
2042
- name: "JAKKS Pacific",
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: "American toy manufacturer producing licensed action figures for Nintendo (World of Nintendo), Disney, and WWE. Affordable 4-inch figure lines popular among budget collectors.",
2045
- brandWebsite: "https://www.jakkspacific.com",
2046
- brandCountry: "USA",
2047
- brandFounded: 1995,
2048
- brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=jakks",
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-jakks-pacific",
2082
+ path: "brand-tamashii-nations",
2053
2083
  isLeaf: true,
2054
2084
  order: 21,
2055
- display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=jakks", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
2090
+ createdBy: "user-admin-letitrip",
2061
2091
  createdAt: daysAgo(300),
2062
2092
  updatedAt: daysAgo(30),
2063
- seo: { title: "JAKKS Pacific", description: "American toy manufacturer producing licensed action figures for Nintendo (World of Nintendo), Disney, and WWE. Affordable 4-inch figure lines popular among budget collectors.", keywords: ["JAKKS Pacific"] },
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-corgi",
2067
- slug: "brand-corgi",
2068
- name: "Corgi",
2096
+ id: "brand-kaiyodo",
2097
+ slug: "brand-kaiyodo",
2098
+ name: "Kaiyodo",
2069
2099
  categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
2070
- description: "British diecast vehicle manufacturer with a 70-year heritage. Iconic for James Bond DB5 in gold, aviation models, and classic British cars. Collector grade quality with opening parts and realistic detail.",
2071
- brandWebsite: "https://www.corgi.co.uk",
2072
- brandCountry: "UK",
2073
- brandFounded: 1956,
2074
- brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=corgi",
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-corgi",
2107
+ path: "brand-kaiyodo",
2079
2108
  isLeaf: true,
2080
2109
  order: 22,
2081
- display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=corgi", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
2115
+ createdBy: "user-admin-letitrip",
2087
2116
  createdAt: daysAgo(300),
2088
2117
  updatedAt: daysAgo(30),
2089
- seo: { title: "Corgi", description: "British diecast vehicle manufacturer with a 70-year heritage. Iconic for James Bond DB5 in gold, aviation models, and classic British cars. Collector grade quality with opening parts and realistic detail.", keywords: ["Corgi"] },
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-matchbox",
2093
- slug: "brand-matchbox",
2094
- name: "Matchbox",
2121
+ id: "brand-medicom",
2122
+ slug: "brand-medicom",
2123
+ name: "Medicom Toy",
2095
2124
  categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
2096
- description: "Iconic British diecast toy car brand since 1953, now owned by Mattel. Known for 1:64 scale realistic vehicles. The Moving Parts line features opening hoods and doors. Beloved by Indian collectors for nostalgia value.",
2097
- brandWebsite: "https://www.matchbox.com",
2098
- brandCountry: "UK",
2099
- brandFounded: 1953,
2100
- brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=matchbox",
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-matchbox",
2132
+ path: "brand-medicom",
2105
2133
  isLeaf: true,
2106
2134
  order: 23,
2107
- display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=matchbox", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
2140
+ createdBy: "user-admin-letitrip",
2113
2141
  createdAt: daysAgo(300),
2114
2142
  updatedAt: daysAgo(30),
2115
- seo: { title: "Matchbox", description: "Iconic British diecast toy car brand since 1953, now owned by Mattel. Known for 1:64 scale realistic vehicles. The Moving Parts line features opening hoods and doors. Beloved by Indian collectors for nostalgia value.", keywords: ["Matchbox"] },
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-mega-construx",
2119
- slug: "brand-mega-construx",
2120
- name: "Mega Construx",
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: "Mattel's construction toy brand (now marketed as MEGA). Produces detailed building sets for Pokémon, Halo, Call of Duty, and Masters of the Universe. Pokémon MEGA sets are popular gift items for young collectors.",
2123
- brandWebsite: "https://www.mega.us",
2124
- brandCountry: "USA",
2125
- brandFounded: 2000,
2126
- brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=mega",
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-mega-construx",
2157
+ path: "brand-spin-master",
2131
2158
  isLeaf: true,
2132
2159
  order: 24,
2133
- display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=mega", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
2165
+ createdBy: "user-admin-letitrip",
2139
2166
  createdAt: daysAgo(300),
2140
2167
  updatedAt: daysAgo(30),
2141
- seo: { title: "Mega Construx", description: "Mattel's construction toy brand (now marketed as MEGA). Produces detailed building sets for Pokémon, Halo, Call of Duty, and Masters of the Universe. Pokémon MEGA sets are popular gift items for young collectors.", keywords: ["Mega Construx"] },
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-sideshow-collectibles",
2145
- slug: "brand-sideshow-collectibles",
2146
- name: "Sideshow Collectibles",
2171
+ id: "brand-maisto",
2172
+ slug: "brand-maisto",
2173
+ name: "Maisto",
2147
2174
  categoryType: CATEGORY_FIELDS.CATEGORY_TYPE_VALUES.BRAND,
2148
- description: "Premium American collectible statue and figure manufacturer. Known for 1/4 scale and 1/6 scale premium statues for Marvel, DC, Star Wars, and horror franchises. Limited edition runs make these highly sought-after.",
2149
- brandWebsite: "https://www.sideshowtoy.com",
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: 1994,
2152
- brandBannerImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop&seed=sideshow",
2153
- rootId: "brand-sideshow-collectibles",
2178
+ brandFounded: 1990,
2179
+ rootId: "brand-maisto",
2154
2180
  parentIds: [],
2155
2181
  tier: 0,
2156
- path: "brand-sideshow-collectibles",
2182
+ path: "brand-maisto",
2157
2183
  isLeaf: true,
2158
2184
  order: 25,
2159
- display: { coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop&seed=sideshow", showInMenu: false, showInFooter: false },
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: ADMIN_ID,
2190
+ createdBy: "user-admin-letitrip",
2165
2191
  createdAt: daysAgo(300),
2166
2192
  updatedAt: daysAgo(30),
2167
- seo: { title: "Sideshow Collectibles", description: "Premium American collectible statue and figure manufacturer. Known for 1/4 scale and 1/6 scale premium statues for Marvel, DC, Star Wars, and horror franchises. Limited edition runs make these highly sought-after.", keywords: ["Sideshow Collectibles"] },
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
- const STORE_CREATOR = {
2312
- "user-aryan-kapoor": { createdByType: "store", createdByStoreId: "store-pokemon-palace", createdByStoreName: "Pokémon Palace" },
2313
- "user-nisha-reddy": { createdByType: "store", createdByStoreId: "store-cardgame-hub", createdByStoreName: "CardGame Hub" },
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
- ...c,
2322
- ...(c.createdBy && STORE_CREATOR[c.createdBy]
2323
- ? STORE_CREATOR[c.createdBy]
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
  ];