@mohasinac/appkit 2.6.1 → 2.6.2

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 (301) hide show
  1. package/dist/_internal/client/features/layout/DashboardLayoutClient.d.ts +38 -0
  2. package/dist/_internal/client/features/layout/DashboardLayoutClient.js +75 -0
  3. package/dist/_internal/client/features/layout/RoleGuard.d.ts +15 -0
  4. package/dist/_internal/client/features/layout/RoleGuard.js +25 -0
  5. package/dist/_internal/client/features/layout/index.d.ts +5 -0
  6. package/dist/_internal/client/features/layout/index.js +4 -0
  7. package/dist/_internal/server/features/brands/actions.d.ts +3 -3
  8. package/dist/_internal/server/features/brands/actions.js +72 -5
  9. package/dist/_internal/server/features/brands/data.d.ts +8 -8
  10. package/dist/_internal/server/features/brands/data.js +10 -11
  11. package/dist/_internal/server/features/brands/service.d.ts +2 -2
  12. package/dist/_internal/server/features/brands/service.js +5 -5
  13. package/dist/_internal/server/features/categories/og.d.ts +33 -0
  14. package/dist/_internal/server/features/categories/og.js +75 -0
  15. package/dist/_internal/server/features/checkout/actions.d.ts +24 -0
  16. package/dist/_internal/server/features/checkout/actions.js +442 -13
  17. package/dist/_internal/server/features/checkout/index.d.ts +1 -1
  18. package/dist/_internal/server/features/checkout/index.js +1 -1
  19. package/dist/_internal/server/features/checkout/prize-bundle-gates.d.ts +59 -0
  20. package/dist/_internal/server/features/checkout/prize-bundle-gates.js +99 -0
  21. package/dist/_internal/server/features/grouped/data.js +12 -5
  22. package/dist/_internal/server/features/homepage/data.d.ts +1 -1
  23. package/dist/_internal/server/features/homepage/data.js +2 -2
  24. package/dist/_internal/server/features/media/contextGuards.d.ts +52 -0
  25. package/dist/_internal/server/features/media/contextGuards.js +198 -0
  26. package/dist/_internal/server/features/orders/adapters.js +12 -0
  27. package/dist/_internal/server/features/products/data.d.ts +1 -1
  28. package/dist/_internal/server/features/sublisting-categories/data.d.ts +1 -1
  29. package/dist/_internal/server/features/sublisting-categories/data.js +2 -2
  30. package/dist/_internal/server/jobs/handlers/assignSpinPrize.d.ts +24 -0
  31. package/dist/_internal/server/jobs/handlers/assignSpinPrize.js +86 -0
  32. package/dist/_internal/server/jobs/handlers/bundleStockSync.d.ts +18 -0
  33. package/dist/_internal/server/jobs/handlers/bundleStockSync.js +80 -0
  34. package/dist/_internal/server/jobs/handlers/index.d.ts +8 -0
  35. package/dist/_internal/server/jobs/handlers/index.js +13 -0
  36. package/dist/_internal/server/jobs/handlers/listingProcessor.js +13 -3
  37. package/dist/_internal/server/jobs/handlers/onProductStockChange.d.ts +17 -0
  38. package/dist/_internal/server/jobs/handlers/onProductStockChange.js +136 -0
  39. package/dist/_internal/server/jobs/handlers/onProductWrite.js +17 -1
  40. package/dist/_internal/server/jobs/handlers/prizeRevealClose.d.ts +9 -0
  41. package/dist/_internal/server/jobs/handlers/prizeRevealClose.js +29 -0
  42. package/dist/_internal/server/jobs/handlers/prizeRevealExpiry.d.ts +10 -0
  43. package/dist/_internal/server/jobs/handlers/prizeRevealExpiry.js +58 -0
  44. package/dist/_internal/server/jobs/handlers/prizeRevealOpen.d.ts +10 -0
  45. package/dist/_internal/server/jobs/handlers/prizeRevealOpen.js +65 -0
  46. package/dist/_internal/server/jobs/handlers/prizeRevealReminder.d.ts +9 -0
  47. package/dist/_internal/server/jobs/handlers/prizeRevealReminder.js +45 -0
  48. package/dist/_internal/server/jobs/handlers/triggerEventRaffle.d.ts +30 -0
  49. package/dist/_internal/server/jobs/handlers/triggerEventRaffle.js +94 -0
  50. package/dist/_internal/shared/features/brands/schema.d.ts +3 -3
  51. package/dist/_internal/shared/features/cart/schema.d.ts +8 -8
  52. package/dist/_internal/shared/features/cart/schema.js +1 -1
  53. package/dist/_internal/shared/features/categories/bundle-config.d.ts +17 -0
  54. package/dist/_internal/shared/features/categories/bundle-config.js +17 -0
  55. package/dist/_internal/shared/features/layout/config.d.ts +35 -0
  56. package/dist/_internal/shared/features/layout/config.js +58 -0
  57. package/dist/_internal/shared/features/layout/index.d.ts +3 -0
  58. package/dist/_internal/shared/features/layout/index.js +2 -0
  59. package/dist/_internal/shared/features/layout/types.d.ts +137 -0
  60. package/dist/_internal/shared/features/layout/types.js +13 -0
  61. package/dist/_internal/shared/features/products/types.d.ts +1 -1
  62. package/dist/_internal/shared/listing-types/_registry.d.ts +57 -0
  63. package/dist/_internal/shared/listing-types/_registry.js +28 -0
  64. package/dist/_internal/shared/listing-types/auction/config.d.ts +7 -0
  65. package/dist/_internal/shared/listing-types/auction/config.js +8 -0
  66. package/dist/_internal/shared/listing-types/auction/ctas.d.ts +1 -0
  67. package/dist/_internal/shared/listing-types/auction/ctas.js +2 -0
  68. package/dist/_internal/shared/listing-types/auction/og.d.ts +1 -0
  69. package/dist/_internal/shared/listing-types/auction/og.js +1 -0
  70. package/dist/_internal/shared/listing-types/auction/schema.d.ts +1 -0
  71. package/dist/_internal/shared/listing-types/auction/schema.js +1 -0
  72. package/dist/_internal/shared/listing-types/auction/seed-factory.d.ts +1 -0
  73. package/dist/_internal/shared/listing-types/auction/seed-factory.js +1 -0
  74. package/dist/_internal/shared/listing-types/capabilities.d.ts +41 -0
  75. package/dist/_internal/shared/listing-types/capabilities.js +75 -0
  76. package/dist/_internal/shared/listing-types/pre-order/config.d.ts +7 -0
  77. package/dist/_internal/shared/listing-types/pre-order/config.js +8 -0
  78. package/dist/_internal/shared/listing-types/pre-order/ctas.d.ts +1 -0
  79. package/dist/_internal/shared/listing-types/pre-order/ctas.js +2 -0
  80. package/dist/_internal/shared/listing-types/pre-order/og.d.ts +1 -0
  81. package/dist/_internal/shared/listing-types/pre-order/og.js +1 -0
  82. package/dist/_internal/shared/listing-types/pre-order/schema.d.ts +1 -0
  83. package/dist/_internal/shared/listing-types/pre-order/schema.js +1 -0
  84. package/dist/_internal/shared/listing-types/pre-order/seed-factory.d.ts +1 -0
  85. package/dist/_internal/shared/listing-types/pre-order/seed-factory.js +1 -0
  86. package/dist/_internal/shared/listing-types/prize-draw/config.d.ts +7 -0
  87. package/dist/_internal/shared/listing-types/prize-draw/config.js +8 -0
  88. package/dist/_internal/shared/listing-types/prize-draw/ctas.d.ts +1 -0
  89. package/dist/_internal/shared/listing-types/prize-draw/ctas.js +2 -0
  90. package/dist/_internal/shared/listing-types/prize-draw/og.d.ts +1 -0
  91. package/dist/_internal/shared/listing-types/prize-draw/og.js +1 -0
  92. package/dist/_internal/shared/listing-types/prize-draw/schema.d.ts +1 -0
  93. package/dist/_internal/shared/listing-types/prize-draw/schema.js +1 -0
  94. package/dist/_internal/shared/listing-types/prize-draw/seed-factory.d.ts +1 -0
  95. package/dist/_internal/shared/listing-types/prize-draw/seed-factory.js +1 -0
  96. package/dist/_internal/shared/listing-types/standard/config.d.ts +7 -0
  97. package/dist/_internal/shared/listing-types/standard/config.js +8 -0
  98. package/dist/_internal/shared/listing-types/standard/ctas.d.ts +1 -0
  99. package/dist/_internal/shared/listing-types/standard/ctas.js +3 -0
  100. package/dist/_internal/shared/listing-types/standard/og.d.ts +1 -0
  101. package/dist/_internal/shared/listing-types/standard/og.js +1 -0
  102. package/dist/_internal/shared/listing-types/standard/schema.d.ts +1 -0
  103. package/dist/_internal/shared/listing-types/standard/schema.js +1 -0
  104. package/dist/_internal/shared/listing-types/standard/seed-factory.d.ts +1 -0
  105. package/dist/_internal/shared/listing-types/standard/seed-factory.js +1 -0
  106. package/dist/_internal/shared/media/limits.d.ts +33 -0
  107. package/dist/_internal/shared/media/limits.js +97 -0
  108. package/dist/_internal/shared/schema-versions.d.ts +76 -0
  109. package/dist/_internal/shared/schema-versions.js +82 -0
  110. package/dist/client.d.ts +9 -0
  111. package/dist/client.js +7 -0
  112. package/dist/constants/api-endpoints.d.ts +6 -3
  113. package/dist/constants/api-endpoints.js +2 -1
  114. package/dist/errors/messages.d.ts +1 -1
  115. package/dist/errors/messages.js +1 -1
  116. package/dist/features/account/migrations.d.ts +2 -0
  117. package/dist/features/account/migrations.js +10 -0
  118. package/dist/features/admin/components/AdminMediaView.js +1 -1
  119. package/dist/features/admin/components/AdminProductsView.js +7 -3
  120. package/dist/features/admin/migrations.d.ts +2 -0
  121. package/dist/features/admin/migrations.js +10 -0
  122. package/dist/features/admin/types/product.types.d.ts +1 -1
  123. package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +1 -1
  124. package/dist/features/auctions/migrations.d.ts +2 -0
  125. package/dist/features/auctions/migrations.js +10 -0
  126. package/dist/features/auctions/schemas/index.d.ts +3 -3
  127. package/dist/features/auctions/schemas/index.js +1 -1
  128. package/dist/features/auth/migrations.d.ts +2 -0
  129. package/dist/features/auth/migrations.js +10 -0
  130. package/dist/features/blog/migrations.d.ts +2 -0
  131. package/dist/features/blog/migrations.js +10 -0
  132. package/dist/features/brands/migrations.d.ts +2 -0
  133. package/dist/features/brands/migrations.js +10 -0
  134. package/dist/features/bundles/components/BundlesByCategoryListing.d.ts +6 -0
  135. package/dist/features/bundles/components/BundlesByCategoryListing.js +50 -0
  136. package/dist/features/bundles/components/index.d.ts +2 -0
  137. package/dist/features/bundles/components/index.js +1 -0
  138. package/dist/features/bundles/migrations.d.ts +2 -0
  139. package/dist/features/bundles/migrations.js +10 -0
  140. package/dist/features/bundles/schemas/index.d.ts +1 -0
  141. package/dist/features/bundles/schemas/index.js +1 -0
  142. package/dist/features/bundles/schemas/zod.d.ts +377 -0
  143. package/dist/features/bundles/schemas/zod.js +71 -0
  144. package/dist/features/cart/migrations.d.ts +2 -0
  145. package/dist/features/cart/migrations.js +10 -0
  146. package/dist/features/cart/schemas/firestore.d.ts +2 -2
  147. package/dist/features/categories/components/BrandDetailPageView.js +35 -4
  148. package/dist/features/categories/components/BrandDetailTabs.d.ts +5 -1
  149. package/dist/features/categories/components/BrandDetailTabs.js +22 -8
  150. package/dist/features/categories/components/CategoryBundlesListing.d.ts +6 -0
  151. package/dist/features/categories/components/CategoryBundlesListing.js +74 -0
  152. package/dist/features/categories/components/CategoryDetailPageView.js +29 -4
  153. package/dist/features/categories/components/CategoryDetailTabs.d.ts +5 -1
  154. package/dist/features/categories/components/CategoryDetailTabs.js +22 -8
  155. package/dist/features/categories/migrations.d.ts +2 -0
  156. package/dist/features/categories/migrations.js +10 -0
  157. package/dist/features/categories/repository/categories.repository.d.ts +29 -0
  158. package/dist/features/categories/repository/categories.repository.js +83 -0
  159. package/dist/features/categories/schemas/firestore.d.ts +59 -2
  160. package/dist/features/categories/schemas/firestore.js +6 -0
  161. package/dist/features/categories/types/index.d.ts +11 -3
  162. package/dist/features/events/migrations.d.ts +2 -0
  163. package/dist/features/events/migrations.js +10 -0
  164. package/dist/features/faq/migrations.d.ts +2 -0
  165. package/dist/features/faq/migrations.js +10 -0
  166. package/dist/features/grouped/migrations.d.ts +2 -0
  167. package/dist/features/grouped/migrations.js +10 -0
  168. package/dist/features/grouped/schemas/firestore.d.ts +29 -10
  169. package/dist/features/grouped/schemas/firestore.js +10 -5
  170. package/dist/features/history/migrations.d.ts +2 -0
  171. package/dist/features/history/migrations.js +10 -0
  172. package/dist/features/homepage/hooks/useFeaturedAuctions.js +2 -2
  173. package/dist/features/homepage/hooks/useFeaturedPreOrders.js +2 -2
  174. package/dist/features/homepage/lib/section-renderer.js +5 -3
  175. package/dist/features/media/AvatarUpload.js +6 -28
  176. package/dist/features/media/hooks/useMedia.d.ts +31 -15
  177. package/dist/features/media/hooks/useMedia.js +48 -13
  178. package/dist/features/media/upload/ImageUpload.js +1 -1
  179. package/dist/features/media/upload/MediaUploadField.js +1 -1
  180. package/dist/features/messages/migrations.d.ts +2 -0
  181. package/dist/features/messages/migrations.js +10 -0
  182. package/dist/features/orders/components/OrdersList.js +10 -1
  183. package/dist/features/orders/migrations.d.ts +2 -0
  184. package/dist/features/orders/migrations.js +10 -0
  185. package/dist/features/orders/repository/orders.repository.d.ts +16 -0
  186. package/dist/features/orders/repository/orders.repository.js +49 -0
  187. package/dist/features/orders/schemas/firestore.d.ts +8 -0
  188. package/dist/features/orders/types/index.d.ts +12 -0
  189. package/dist/features/orders/utils/order-splitter.d.ts +2 -2
  190. package/dist/features/orders/utils/order-splitter.js +5 -0
  191. package/dist/features/payments/migrations.d.ts +2 -0
  192. package/dist/features/payments/migrations.js +10 -0
  193. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +4 -1
  194. package/dist/features/products/actions/product-actions.d.ts +1 -1
  195. package/dist/features/products/api/[id]/route.js +34 -0
  196. package/dist/features/products/api/route.js +1 -19
  197. package/dist/features/products/components/CompareOverlay.d.ts +1 -1
  198. package/dist/features/products/components/MarketplacePrizeDrawCard.d.ts +24 -0
  199. package/dist/features/products/components/MarketplacePrizeDrawCard.js +102 -0
  200. package/dist/features/products/components/PrizeDrawCollage.d.ts +32 -0
  201. package/dist/features/products/components/PrizeDrawCollage.js +22 -0
  202. package/dist/features/products/components/PrizeDrawDetailPageView.d.ts +27 -0
  203. package/dist/features/products/components/PrizeDrawDetailPageView.js +118 -0
  204. package/dist/features/products/components/PrizeDrawEntryActions.d.ts +19 -0
  205. package/dist/features/products/components/PrizeDrawEntryActions.js +48 -0
  206. package/dist/features/products/components/PrizeDrawItemsEditor.d.ts +13 -0
  207. package/dist/features/products/components/PrizeDrawItemsEditor.js +97 -0
  208. package/dist/features/products/components/PrizeDrawsIndexListing.d.ts +8 -0
  209. package/dist/features/products/components/PrizeDrawsIndexListing.js +128 -0
  210. package/dist/features/products/components/PrizeDrawsListingView.d.ts +15 -0
  211. package/dist/features/products/components/PrizeDrawsListingView.js +49 -0
  212. package/dist/features/products/components/PrizeRevealModal.d.ts +34 -0
  213. package/dist/features/products/components/PrizeRevealModal.js +124 -0
  214. package/dist/features/products/components/ProductDetailPageView.js +13 -1
  215. package/dist/features/products/components/ProductForm.js +35 -2
  216. package/dist/features/products/components/ProductGrid.js +3 -1
  217. package/dist/features/products/components/index.d.ts +16 -0
  218. package/dist/features/products/components/index.js +8 -0
  219. package/dist/features/products/constants/listing-tabs.d.ts +113 -0
  220. package/dist/features/products/constants/listing-tabs.js +43 -0
  221. package/dist/features/products/index.d.ts +1 -0
  222. package/dist/features/products/index.js +1 -0
  223. package/dist/features/products/migrations.d.ts +2 -0
  224. package/dist/features/products/migrations.js +10 -0
  225. package/dist/features/products/repository/products.repository.d.ts +11 -7
  226. package/dist/features/products/repository/products.repository.js +49 -24
  227. package/dist/features/products/schemas/firestore.d.ts +3 -3
  228. package/dist/features/products/schemas/firestore.js +2 -2
  229. package/dist/features/products/schemas/index.d.ts +5 -5
  230. package/dist/features/products/schemas/index.js +3 -1
  231. package/dist/features/products/schemas/product-features.validators.d.ts +6 -6
  232. package/dist/features/products/types/index.d.ts +17 -1
  233. package/dist/features/products/utils/listing-type.d.ts +7 -4
  234. package/dist/features/products/utils/listing-type.js +8 -4
  235. package/dist/features/promotions/actions/coupon-actions.d.ts +1 -1
  236. package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
  237. package/dist/features/promotions/migrations.d.ts +2 -0
  238. package/dist/features/promotions/migrations.js +10 -0
  239. package/dist/features/promotions/repository/coupons.repository.d.ts +1 -1
  240. package/dist/features/promotions/schemas/index.d.ts +2 -2
  241. package/dist/features/reviews/migrations.d.ts +2 -0
  242. package/dist/features/reviews/migrations.js +10 -0
  243. package/dist/features/scams/migrations.d.ts +2 -0
  244. package/dist/features/scams/migrations.js +10 -0
  245. package/dist/features/search/api/route.d.ts +1 -1
  246. package/dist/features/search/api/route.js +3 -3
  247. package/dist/features/search/components/Search.d.ts +1 -1
  248. package/dist/features/search/schemas/index.d.ts +3 -3
  249. package/dist/features/search/schemas/index.js +3 -1
  250. package/dist/features/search/types/index.d.ts +2 -2
  251. package/dist/features/seller/components/SellerProductShell.d.ts +1 -1
  252. package/dist/features/seller/components/SellerProductsView.js +20 -6
  253. package/dist/features/seller/migrations.d.ts +2 -0
  254. package/dist/features/seller/migrations.js +10 -0
  255. package/dist/features/seller/schemas/index.d.ts +2 -2
  256. package/dist/features/stores/components/StoreBundlesPageView.d.ts +12 -0
  257. package/dist/features/stores/components/StoreBundlesPageView.js +24 -0
  258. package/dist/features/stores/components/StoreDetailLayoutView.js +15 -3
  259. package/dist/features/stores/components/StorePrizeDrawsPageView.d.ts +11 -0
  260. package/dist/features/stores/components/StorePrizeDrawsPageView.js +27 -0
  261. package/dist/features/stores/components/index.d.ts +2 -0
  262. package/dist/features/stores/migrations.d.ts +2 -0
  263. package/dist/features/stores/migrations.js +10 -0
  264. package/dist/features/stores/schemas/index.d.ts +2 -2
  265. package/dist/features/stores/types/index.d.ts +1 -1
  266. package/dist/features/sublisting/migrations.d.ts +2 -0
  267. package/dist/features/sublisting/migrations.js +10 -0
  268. package/dist/features/sublisting/schemas/firestore.d.ts +2 -0
  269. package/dist/features/support/migrations.d.ts +2 -0
  270. package/dist/features/support/migrations.js +10 -0
  271. package/dist/features/wishlist/migrations.d.ts +2 -0
  272. package/dist/features/wishlist/migrations.js +10 -0
  273. package/dist/features/wishlist/types/index.d.ts +1 -1
  274. package/dist/index.d.ts +26 -18
  275. package/dist/index.js +41 -24
  276. package/dist/jobs.d.ts +1 -1
  277. package/dist/jobs.js +4 -0
  278. package/dist/next/routing/route-map.d.ts +4 -0
  279. package/dist/next/routing/route-map.js +2 -0
  280. package/dist/providers/db-firebase/filter-aliases.d.ts +2 -2
  281. package/dist/repositories/index.d.ts +0 -5
  282. package/dist/repositories/index.js +5 -4
  283. package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
  284. package/dist/seed/categories-seed-data.js +1105 -6
  285. package/dist/seed/faq-seed-data.js +160 -0
  286. package/dist/seed/grouped-listings-seed-data.js +32 -32
  287. package/dist/seed/homepage-sections-seed-data.js +52 -6
  288. package/dist/seed/index.d.ts +1 -3
  289. package/dist/seed/index.js +4 -3
  290. package/dist/seed/manifest.js +8 -13
  291. package/dist/seed/products-prize-draws-seed-data.d.ts +17 -0
  292. package/dist/seed/products-prize-draws-seed-data.js +313 -0
  293. package/dist/seo/json-ld.d.ts +1 -1
  294. package/dist/server-entry.d.ts +2 -2
  295. package/dist/server-entry.js +5 -3
  296. package/dist/server.d.ts +9 -2
  297. package/dist/server.js +11 -5
  298. package/dist/tailwind-utilities.css +1 -1
  299. package/dist/validation/schemas.d.ts +8 -8
  300. package/package.json +1 -1
  301. package/scripts/seed-cli.mjs +2 -4
@@ -1216,6 +1216,1097 @@ function mkLeaves(specs) {
1216
1216
  ],
1217
1217
  }));
1218
1218
  }
1219
+ // SB-UNI-B — sublistings folded in as tier-N+1 leaves with categoryType:"sublisting".
1220
+ // Original collection `sublistingCategories` dropped; same 12 seeded rows live here.
1221
+ const ADMIN_ID = "user-admin-letitrip";
1222
+ const sublistingRows = [
1223
+ // ── Trading Cards ─────────────────────────────────────────────────────
1224
+ {
1225
+ id: "sublisting-pokemon-base-set",
1226
+ slug: "sublisting-pokemon-base-set",
1227
+ name: "Base Set (102/102)",
1228
+ categoryType: "sublisting",
1229
+ itemCode: "BS-102",
1230
+ description: "All 102 Base Set Pokémon TCG cards — Shadowless, 1st Edition, and Unlimited.",
1231
+ rootId: "category-trading-cards",
1232
+ parentIds: ["category-trading-cards"],
1233
+ tier: 1,
1234
+ path: "trading-cards/sublisting-pokemon-base-set",
1235
+ isLeaf: true,
1236
+ order: 0,
1237
+ display: {
1238
+ coverImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=600&fit=crop",
1239
+ showInMenu: false,
1240
+ showInFooter: false,
1241
+ },
1242
+ isActive: true,
1243
+ isSearchable: true,
1244
+ createdBy: ADMIN_ID,
1245
+ createdAt: daysAgo(60),
1246
+ updatedAt: daysAgo(1),
1247
+ },
1248
+ {
1249
+ id: "sublisting-pokemon-psa-graded",
1250
+ slug: "sublisting-pokemon-psa-graded",
1251
+ name: "PSA Graded Pokémon Cards",
1252
+ categoryType: "sublisting",
1253
+ itemCode: "PSA",
1254
+ description: "Investment-grade Pokémon cards authenticated by PSA.",
1255
+ rootId: "category-trading-cards",
1256
+ parentIds: ["category-trading-cards"],
1257
+ tier: 1,
1258
+ path: "trading-cards/sublisting-pokemon-psa-graded",
1259
+ isLeaf: true,
1260
+ order: 1,
1261
+ display: {
1262
+ coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=600&fit=crop",
1263
+ showInMenu: false,
1264
+ showInFooter: false,
1265
+ },
1266
+ isActive: true,
1267
+ isSearchable: true,
1268
+ createdBy: ADMIN_ID,
1269
+ createdAt: daysAgo(55),
1270
+ updatedAt: daysAgo(2),
1271
+ },
1272
+ {
1273
+ id: "sublisting-pokemon-sealed-boxes",
1274
+ slug: "sublisting-pokemon-sealed-boxes",
1275
+ name: "Sealed Pokémon Booster Boxes",
1276
+ categoryType: "sublisting",
1277
+ description: "Factory-sealed Pokémon TCG booster boxes — current, vintage, Japanese.",
1278
+ rootId: "category-trading-cards",
1279
+ parentIds: ["category-trading-cards"],
1280
+ tier: 1,
1281
+ path: "trading-cards/sublisting-pokemon-sealed-boxes",
1282
+ isLeaf: true,
1283
+ order: 2,
1284
+ display: {
1285
+ coverImage: "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=800&h=600&fit=crop",
1286
+ showInMenu: false,
1287
+ showInFooter: false,
1288
+ },
1289
+ isActive: true,
1290
+ isSearchable: true,
1291
+ createdBy: ADMIN_ID,
1292
+ createdAt: daysAgo(50),
1293
+ updatedAt: daysAgo(3),
1294
+ },
1295
+ {
1296
+ id: "sublisting-vintage-wotc-era",
1297
+ slug: "sublisting-vintage-wotc-era",
1298
+ name: "WOTC Era Pokémon (1999–2003)",
1299
+ categoryType: "sublisting",
1300
+ itemCode: "WOTC",
1301
+ description: "All Wizards of the Coast era Pokémon TCG sets: Base Set through Legendary Collection.",
1302
+ rootId: "category-vintage-rare",
1303
+ parentIds: ["category-vintage-rare"],
1304
+ tier: 1,
1305
+ path: "vintage-rare/sublisting-vintage-wotc-era",
1306
+ isLeaf: true,
1307
+ order: 0,
1308
+ display: {
1309
+ coverImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=600&fit=crop",
1310
+ showInMenu: false,
1311
+ showInFooter: false,
1312
+ },
1313
+ isActive: true,
1314
+ isSearchable: true,
1315
+ createdBy: ADMIN_ID,
1316
+ createdAt: daysAgo(8),
1317
+ updatedAt: daysAgo(1),
1318
+ },
1319
+ {
1320
+ id: "sublisting-yugioh-lob-1st-edition",
1321
+ slug: "sublisting-yugioh-lob-1st-edition",
1322
+ name: "Yu-Gi-Oh! LOB 1st Edition",
1323
+ categoryType: "sublisting",
1324
+ itemCode: "LOB-1E",
1325
+ description: "Legend of Blue-Eyes White Dragon 1st Edition singles — iconic 2002 WOTC-era Yu-Gi-Oh!.",
1326
+ rootId: "category-trading-cards",
1327
+ parentIds: ["category-trading-cards"],
1328
+ tier: 1,
1329
+ path: "trading-cards/sublisting-yugioh-lob-1st-edition",
1330
+ isLeaf: true,
1331
+ order: 3,
1332
+ display: {
1333
+ coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=800&h=600&fit=crop",
1334
+ showInMenu: false,
1335
+ showInFooter: false,
1336
+ },
1337
+ isActive: true,
1338
+ isSearchable: true,
1339
+ createdBy: ADMIN_ID,
1340
+ createdAt: daysAgo(45),
1341
+ updatedAt: daysAgo(5),
1342
+ },
1343
+ // ── Diecast Vehicles ──────────────────────────────────────────────────
1344
+ {
1345
+ id: "sublisting-hotwheels-redlines",
1346
+ slug: "sublisting-hotwheels-redlines",
1347
+ name: "Hot Wheels Vintage Redlines (1968–1977)",
1348
+ categoryType: "sublisting",
1349
+ itemCode: "Redline",
1350
+ description: "Original Hot Wheels Redline-era cars (1968–1977).",
1351
+ rootId: "category-diecast-vehicles",
1352
+ parentIds: ["category-diecast-vehicles"],
1353
+ tier: 1,
1354
+ path: "diecast-vehicles/sublisting-hotwheels-redlines",
1355
+ isLeaf: true,
1356
+ order: 0,
1357
+ display: {
1358
+ coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
1359
+ showInMenu: false,
1360
+ showInFooter: false,
1361
+ },
1362
+ isActive: true,
1363
+ isSearchable: true,
1364
+ createdBy: ADMIN_ID,
1365
+ createdAt: daysAgo(38),
1366
+ updatedAt: daysAgo(1),
1367
+ },
1368
+ {
1369
+ id: "sublisting-hotwheels-super-treasure-hunts",
1370
+ slug: "sublisting-hotwheels-super-treasure-hunts",
1371
+ name: "Hot Wheels Super Treasure Hunts",
1372
+ categoryType: "sublisting",
1373
+ itemCode: "STH",
1374
+ description: "Rare Hot Wheels regular-production releases with Real Riders tyres.",
1375
+ rootId: "category-diecast-vehicles",
1376
+ parentIds: ["category-diecast-vehicles"],
1377
+ tier: 1,
1378
+ path: "diecast-vehicles/sublisting-hotwheels-super-treasure-hunts",
1379
+ isLeaf: true,
1380
+ order: 1,
1381
+ display: {
1382
+ coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=800&h=600&fit=crop",
1383
+ showInMenu: false,
1384
+ showInFooter: false,
1385
+ },
1386
+ isActive: true,
1387
+ isSearchable: true,
1388
+ createdBy: ADMIN_ID,
1389
+ createdAt: daysAgo(35),
1390
+ updatedAt: daysAgo(2),
1391
+ },
1392
+ // ── Spinning Tops ─────────────────────────────────────────────────────
1393
+ {
1394
+ id: "sublisting-beyblade-x-series",
1395
+ slug: "sublisting-beyblade-x-series",
1396
+ name: "Beyblade X Series (2023+)",
1397
+ categoryType: "sublisting",
1398
+ itemCode: "BX",
1399
+ description: "All Beyblade X generation products — xtreme dash ratchet system.",
1400
+ rootId: "category-spinning-tops",
1401
+ parentIds: ["category-spinning-tops"],
1402
+ tier: 1,
1403
+ path: "spinning-tops/sublisting-beyblade-x-series",
1404
+ isLeaf: true,
1405
+ order: 0,
1406
+ display: {
1407
+ coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=800&h=600&fit=crop",
1408
+ showInMenu: false,
1409
+ showInFooter: false,
1410
+ },
1411
+ isActive: true,
1412
+ isSearchable: true,
1413
+ createdBy: ADMIN_ID,
1414
+ createdAt: daysAgo(20),
1415
+ updatedAt: daysAgo(1),
1416
+ },
1417
+ // ── Model Kits ────────────────────────────────────────────────────────
1418
+ {
1419
+ id: "sublisting-gundam-master-grade",
1420
+ slug: "sublisting-gundam-master-grade",
1421
+ name: "Gundam Master Grade (MG) 1/100",
1422
+ categoryType: "sublisting",
1423
+ itemCode: "MG",
1424
+ description: "Bandai Gundam MG 1/100 kits with full inner frame.",
1425
+ rootId: "category-model-kits",
1426
+ parentIds: ["category-model-kits"],
1427
+ tier: 1,
1428
+ path: "model-kits/sublisting-gundam-master-grade",
1429
+ isLeaf: true,
1430
+ order: 0,
1431
+ display: {
1432
+ coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
1433
+ showInMenu: false,
1434
+ showInFooter: false,
1435
+ },
1436
+ isActive: true,
1437
+ isSearchable: true,
1438
+ createdBy: ADMIN_ID,
1439
+ createdAt: daysAgo(15),
1440
+ updatedAt: daysAgo(2),
1441
+ },
1442
+ {
1443
+ id: "sublisting-gundam-high-grade",
1444
+ slug: "sublisting-gundam-high-grade",
1445
+ name: "Gundam High Grade (HG) 1/144",
1446
+ categoryType: "sublisting",
1447
+ itemCode: "HG",
1448
+ description: "Entry-level Bandai Gundam HG 1/144 kits across all series.",
1449
+ rootId: "category-model-kits",
1450
+ parentIds: ["category-model-kits"],
1451
+ tier: 1,
1452
+ path: "model-kits/sublisting-gundam-high-grade",
1453
+ isLeaf: true,
1454
+ order: 1,
1455
+ display: {
1456
+ coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
1457
+ showInMenu: false,
1458
+ showInFooter: false,
1459
+ },
1460
+ isActive: true,
1461
+ isSearchable: true,
1462
+ createdBy: ADMIN_ID,
1463
+ createdAt: daysAgo(10),
1464
+ updatedAt: daysAgo(4),
1465
+ },
1466
+ // ── Action Figures ────────────────────────────────────────────────────
1467
+ {
1468
+ id: "sublisting-nendoroid-early-series",
1469
+ slug: "sublisting-nendoroid-early-series",
1470
+ name: "Nendoroid Early Series (#001–#100)",
1471
+ categoryType: "sublisting",
1472
+ itemCode: "GSC-001-100",
1473
+ description: "Discontinued Good Smile Company Nendoroid figures #001–#100.",
1474
+ rootId: "category-action-figures",
1475
+ parentIds: ["category-action-figures"],
1476
+ tier: 1,
1477
+ path: "action-figures/sublisting-nendoroid-early-series",
1478
+ isLeaf: true,
1479
+ order: 0,
1480
+ display: {
1481
+ coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
1482
+ showInMenu: false,
1483
+ showInFooter: false,
1484
+ },
1485
+ isActive: true,
1486
+ isSearchable: true,
1487
+ createdBy: ADMIN_ID,
1488
+ createdAt: daysAgo(28),
1489
+ updatedAt: daysAgo(2),
1490
+ },
1491
+ {
1492
+ id: "sublisting-shf-dragonball",
1493
+ slug: "sublisting-shf-dragonball",
1494
+ name: "S.H.Figuarts Dragon Ball Series",
1495
+ categoryType: "sublisting",
1496
+ itemCode: "SHF-DBZ",
1497
+ description: "Bandai S.H.Figuarts Dragon Ball Z and Super articulated figures.",
1498
+ rootId: "category-action-figures",
1499
+ parentIds: ["category-action-figures"],
1500
+ tier: 1,
1501
+ path: "action-figures/sublisting-shf-dragonball",
1502
+ isLeaf: true,
1503
+ order: 1,
1504
+ display: {
1505
+ coverImage: "https://images.unsplash.com/photo-1536896407451-6e3dd976edd6?w=800&h=600&fit=crop",
1506
+ showInMenu: false,
1507
+ showInFooter: false,
1508
+ },
1509
+ isActive: true,
1510
+ isSearchable: true,
1511
+ createdBy: ADMIN_ID,
1512
+ createdAt: daysAgo(25),
1513
+ updatedAt: daysAgo(1),
1514
+ },
1515
+ ];
1516
+ // SB-UNI-C — brands folded in as tier-0 self-rooted categories with categoryType:"brand".
1517
+ const brandRows = [
1518
+ {
1519
+ id: "brand-bandai",
1520
+ slug: "brand-bandai",
1521
+ name: "Bandai",
1522
+ categoryType: "brand",
1523
+ 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.",
1524
+ brandWebsite: "https://www.bandai.co.jp",
1525
+ brandCountry: "Japan",
1526
+ brandFounded: 1950,
1527
+ brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop",
1528
+ rootId: "brand-bandai",
1529
+ parentIds: [],
1530
+ tier: 0,
1531
+ path: "brand-bandai",
1532
+ isLeaf: true,
1533
+ order: 1,
1534
+ display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1535
+ isFeatured: false,
1536
+ isBrand: true,
1537
+ isActive: true,
1538
+ isSearchable: true,
1539
+ createdBy: ADMIN_ID,
1540
+ createdAt: daysAgo(400),
1541
+ updatedAt: daysAgo(30),
1542
+ 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"] },
1543
+ },
1544
+ {
1545
+ id: "brand-hasbro",
1546
+ slug: "brand-hasbro",
1547
+ name: "Hasbro",
1548
+ categoryType: "brand",
1549
+ description: "American multinational toy and entertainment company. Makes Transformers, Marvel Legends, Star Wars Black Series, My Little Pony, Nerf, and G.I. Joe collectibles.",
1550
+ brandWebsite: "https://www.hasbro.com",
1551
+ brandCountry: "USA",
1552
+ brandFounded: 1923,
1553
+ brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=hasbro",
1554
+ rootId: "brand-hasbro",
1555
+ parentIds: [],
1556
+ tier: 0,
1557
+ path: "brand-hasbro",
1558
+ isLeaf: true,
1559
+ order: 2,
1560
+ display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=hasbro", showInMenu: false, showInFooter: false },
1561
+ isFeatured: false,
1562
+ isBrand: true,
1563
+ isActive: true,
1564
+ isSearchable: true,
1565
+ createdBy: ADMIN_ID,
1566
+ createdAt: daysAgo(400),
1567
+ updatedAt: daysAgo(30),
1568
+ 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"] },
1569
+ },
1570
+ {
1571
+ id: "brand-takara-tomy",
1572
+ slug: "brand-takara-tomy",
1573
+ name: "Takara Tomy",
1574
+ categoryType: "brand",
1575
+ 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.",
1576
+ brandWebsite: "https://www.takaratomy.co.jp",
1577
+ brandCountry: "Japan",
1578
+ brandFounded: 2006,
1579
+ brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop",
1580
+ rootId: "brand-takara-tomy",
1581
+ parentIds: [],
1582
+ tier: 0,
1583
+ path: "brand-takara-tomy",
1584
+ isLeaf: true,
1585
+ order: 3,
1586
+ display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1587
+ isFeatured: false,
1588
+ isBrand: true,
1589
+ isActive: true,
1590
+ isSearchable: true,
1591
+ createdBy: ADMIN_ID,
1592
+ createdAt: daysAgo(400),
1593
+ updatedAt: daysAgo(30),
1594
+ 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"] },
1595
+ },
1596
+ {
1597
+ id: "brand-mattel",
1598
+ slug: "brand-mattel",
1599
+ name: "Mattel",
1600
+ categoryType: "brand",
1601
+ 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.",
1602
+ brandWebsite: "https://www.mattel.com",
1603
+ brandCountry: "USA",
1604
+ brandFounded: 1945,
1605
+ brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=mattel",
1606
+ rootId: "brand-mattel",
1607
+ parentIds: [],
1608
+ tier: 0,
1609
+ path: "brand-mattel",
1610
+ isLeaf: true,
1611
+ order: 4,
1612
+ display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=mattel", showInMenu: false, showInFooter: false },
1613
+ isFeatured: false,
1614
+ isBrand: true,
1615
+ isActive: true,
1616
+ isSearchable: true,
1617
+ createdBy: ADMIN_ID,
1618
+ createdAt: daysAgo(400),
1619
+ updatedAt: daysAgo(30),
1620
+ 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"] },
1621
+ },
1622
+ {
1623
+ id: "brand-pokemon-company",
1624
+ slug: "brand-pokemon-company",
1625
+ name: "The Pokémon Company",
1626
+ categoryType: "brand",
1627
+ 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.",
1628
+ brandWebsite: "https://www.pokemon.com",
1629
+ brandCountry: "Japan",
1630
+ brandFounded: 1998,
1631
+ brandBannerImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop",
1632
+ rootId: "brand-pokemon-company",
1633
+ parentIds: [],
1634
+ tier: 0,
1635
+ path: "brand-pokemon-company",
1636
+ isLeaf: true,
1637
+ order: 5,
1638
+ display: { coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1639
+ isFeatured: false,
1640
+ isBrand: true,
1641
+ isActive: true,
1642
+ isSearchable: true,
1643
+ createdBy: ADMIN_ID,
1644
+ createdAt: daysAgo(400),
1645
+ updatedAt: daysAgo(30),
1646
+ 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"] },
1647
+ },
1648
+ {
1649
+ id: "brand-konami",
1650
+ slug: "brand-konami",
1651
+ name: "Konami",
1652
+ categoryType: "brand",
1653
+ 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.",
1654
+ brandWebsite: "https://www.konami.com",
1655
+ brandCountry: "Japan",
1656
+ brandFounded: 1969,
1657
+ brandBannerImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=1200&h=400&fit=crop",
1658
+ rootId: "brand-konami",
1659
+ parentIds: [],
1660
+ tier: 0,
1661
+ path: "brand-konami",
1662
+ isLeaf: true,
1663
+ order: 6,
1664
+ display: { coverImage: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1665
+ isFeatured: false,
1666
+ isBrand: true,
1667
+ isActive: true,
1668
+ isSearchable: true,
1669
+ createdBy: ADMIN_ID,
1670
+ createdAt: daysAgo(400),
1671
+ updatedAt: daysAgo(30),
1672
+ 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"] },
1673
+ },
1674
+ {
1675
+ id: "brand-funko",
1676
+ slug: "brand-funko",
1677
+ name: "Funko",
1678
+ categoryType: "brand",
1679
+ 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.",
1680
+ brandWebsite: "https://funko.com",
1681
+ brandCountry: "USA",
1682
+ brandFounded: 1998,
1683
+ brandBannerImage: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=1200&h=400&fit=crop",
1684
+ rootId: "brand-funko",
1685
+ parentIds: [],
1686
+ tier: 0,
1687
+ path: "brand-funko",
1688
+ isLeaf: true,
1689
+ order: 7,
1690
+ display: { coverImage: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1691
+ isFeatured: false,
1692
+ isBrand: true,
1693
+ isActive: true,
1694
+ isSearchable: true,
1695
+ createdBy: ADMIN_ID,
1696
+ createdAt: daysAgo(400),
1697
+ updatedAt: daysAgo(30),
1698
+ 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"] },
1699
+ },
1700
+ {
1701
+ id: "brand-neca",
1702
+ slug: "brand-neca",
1703
+ name: "NECA",
1704
+ categoryType: "brand",
1705
+ 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.",
1706
+ brandWebsite: "https://www.necaonline.com",
1707
+ brandCountry: "USA",
1708
+ brandFounded: 1996,
1709
+ brandBannerImage: "https://images.unsplash.com/photo-1531259683007-016a7b628fc3?w=1200&h=400&fit=crop",
1710
+ rootId: "brand-neca",
1711
+ parentIds: [],
1712
+ tier: 0,
1713
+ path: "brand-neca",
1714
+ isLeaf: true,
1715
+ order: 8,
1716
+ display: { coverImage: "https://images.unsplash.com/photo-1531259683007-016a7b628fc3?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1717
+ isFeatured: false,
1718
+ isBrand: true,
1719
+ isActive: true,
1720
+ isSearchable: true,
1721
+ createdBy: ADMIN_ID,
1722
+ createdAt: daysAgo(400),
1723
+ updatedAt: daysAgo(30),
1724
+ 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"] },
1725
+ },
1726
+ {
1727
+ id: "brand-mcfarlane",
1728
+ slug: "brand-mcfarlane",
1729
+ name: "McFarlane Toys",
1730
+ categoryType: "brand",
1731
+ description: "American action figure company founded by comic artist Todd McFarlane. Official DC Multiverse figures, Warhammer, Spawn, and premium collector statuettes with extraordinary detail.",
1732
+ brandWebsite: "https://www.mcfarlane.com",
1733
+ brandCountry: "USA",
1734
+ brandFounded: 1994,
1735
+ brandBannerImage: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=1200&h=400&fit=crop",
1736
+ rootId: "brand-mcfarlane",
1737
+ parentIds: [],
1738
+ tier: 0,
1739
+ path: "brand-mcfarlane",
1740
+ isLeaf: true,
1741
+ order: 9,
1742
+ display: { coverImage: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1743
+ isFeatured: false,
1744
+ isBrand: true,
1745
+ isActive: true,
1746
+ isSearchable: true,
1747
+ createdBy: ADMIN_ID,
1748
+ createdAt: daysAgo(400),
1749
+ updatedAt: daysAgo(30),
1750
+ 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"] },
1751
+ },
1752
+ {
1753
+ id: "brand-good-smile",
1754
+ slug: "brand-good-smile",
1755
+ name: "Good Smile Company",
1756
+ categoryType: "brand",
1757
+ 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.",
1758
+ brandWebsite: "https://www.goodsmile.info",
1759
+ brandCountry: "Japan",
1760
+ brandFounded: 2001,
1761
+ brandBannerImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=1200&h=400&fit=crop",
1762
+ rootId: "brand-good-smile",
1763
+ parentIds: [],
1764
+ tier: 0,
1765
+ path: "brand-good-smile",
1766
+ isLeaf: true,
1767
+ order: 10,
1768
+ display: { coverImage: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1769
+ isFeatured: false,
1770
+ isBrand: true,
1771
+ isActive: true,
1772
+ isSearchable: true,
1773
+ createdBy: ADMIN_ID,
1774
+ createdAt: daysAgo(400),
1775
+ updatedAt: daysAgo(30),
1776
+ 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"] },
1777
+ },
1778
+ {
1779
+ id: "brand-hot-wheels",
1780
+ slug: "brand-hot-wheels",
1781
+ name: "Hot Wheels",
1782
+ categoryType: "brand",
1783
+ 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.",
1784
+ brandWebsite: "https://hotwheels.mattel.com",
1785
+ brandCountry: "USA",
1786
+ brandFounded: 1968,
1787
+ brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=hotwheels",
1788
+ rootId: "brand-hot-wheels",
1789
+ parentIds: [],
1790
+ tier: 0,
1791
+ path: "brand-hot-wheels",
1792
+ isLeaf: true,
1793
+ order: 11,
1794
+ display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=hotwheels", showInMenu: false, showInFooter: false },
1795
+ isFeatured: false,
1796
+ isBrand: true,
1797
+ isActive: true,
1798
+ isSearchable: true,
1799
+ createdBy: ADMIN_ID,
1800
+ createdAt: daysAgo(400),
1801
+ updatedAt: daysAgo(30),
1802
+ 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"] },
1803
+ },
1804
+ {
1805
+ id: "brand-tomica",
1806
+ slug: "brand-tomica",
1807
+ name: "Tomica",
1808
+ categoryType: "brand",
1809
+ 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.",
1810
+ brandWebsite: "https://www.takaratomy.co.jp/products/tomica",
1811
+ brandCountry: "Japan",
1812
+ brandFounded: 1970,
1813
+ brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=tomica",
1814
+ rootId: "brand-tomica",
1815
+ parentIds: [],
1816
+ tier: 0,
1817
+ path: "brand-tomica",
1818
+ isLeaf: true,
1819
+ order: 12,
1820
+ display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=tomica", showInMenu: false, showInFooter: false },
1821
+ isFeatured: false,
1822
+ isBrand: true,
1823
+ isActive: true,
1824
+ isSearchable: true,
1825
+ createdBy: ADMIN_ID,
1826
+ createdAt: daysAgo(400),
1827
+ updatedAt: daysAgo(30),
1828
+ 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"] },
1829
+ },
1830
+ {
1831
+ id: "brand-beyblade",
1832
+ slug: "brand-beyblade",
1833
+ name: "Beyblade",
1834
+ categoryType: "brand",
1835
+ 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.",
1836
+ brandWebsite: "https://beyblade.takaratomy.co.jp",
1837
+ brandCountry: "Japan",
1838
+ brandFounded: 1999,
1839
+ brandBannerImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=1200&h=400&fit=crop",
1840
+ rootId: "brand-beyblade",
1841
+ parentIds: [],
1842
+ tier: 0,
1843
+ path: "brand-beyblade",
1844
+ isLeaf: true,
1845
+ order: 13,
1846
+ display: { coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1847
+ isFeatured: false,
1848
+ isBrand: true,
1849
+ isActive: true,
1850
+ isSearchable: true,
1851
+ createdBy: ADMIN_ID,
1852
+ createdAt: daysAgo(400),
1853
+ updatedAt: daysAgo(30),
1854
+ 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"] },
1855
+ },
1856
+ {
1857
+ id: "brand-kotobukiya",
1858
+ slug: "brand-kotobukiya",
1859
+ name: "Kotobukiya",
1860
+ categoryType: "brand",
1861
+ 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.",
1862
+ brandWebsite: "https://www.kotobukiya.co.jp",
1863
+ brandCountry: "Japan",
1864
+ brandFounded: 1947,
1865
+ brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=kotobukiya",
1866
+ rootId: "brand-kotobukiya",
1867
+ parentIds: [],
1868
+ tier: 0,
1869
+ path: "brand-kotobukiya",
1870
+ isLeaf: true,
1871
+ order: 14,
1872
+ display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=kotobukiya", showInMenu: false, showInFooter: false },
1873
+ isFeatured: false,
1874
+ isBrand: true,
1875
+ isActive: true,
1876
+ isSearchable: true,
1877
+ createdBy: ADMIN_ID,
1878
+ createdAt: daysAgo(300),
1879
+ updatedAt: daysAgo(30),
1880
+ 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"] },
1881
+ },
1882
+ {
1883
+ id: "brand-alter",
1884
+ slug: "brand-alter",
1885
+ name: "Alter",
1886
+ categoryType: "brand",
1887
+ 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.",
1888
+ brandWebsite: "https://alter-web.jp",
1889
+ brandCountry: "Japan",
1890
+ brandFounded: 2000,
1891
+ brandBannerImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop",
1892
+ rootId: "brand-alter",
1893
+ parentIds: [],
1894
+ tier: 0,
1895
+ path: "brand-alter",
1896
+ isLeaf: true,
1897
+ order: 15,
1898
+ display: { coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1899
+ isFeatured: false,
1900
+ isBrand: true,
1901
+ isActive: true,
1902
+ isSearchable: true,
1903
+ createdBy: ADMIN_ID,
1904
+ createdAt: daysAgo(300),
1905
+ updatedAt: daysAgo(30),
1906
+ 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"] },
1907
+ },
1908
+ {
1909
+ id: "brand-max-factory",
1910
+ slug: "brand-max-factory",
1911
+ name: "Max Factory",
1912
+ categoryType: "brand",
1913
+ 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.",
1914
+ brandWebsite: "https://www.maxfactory.jp",
1915
+ brandCountry: "Japan",
1916
+ brandFounded: 1987,
1917
+ brandBannerImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop&seed=maxfactory",
1918
+ rootId: "brand-max-factory",
1919
+ parentIds: [],
1920
+ tier: 0,
1921
+ path: "brand-max-factory",
1922
+ isLeaf: true,
1923
+ order: 16,
1924
+ display: { coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop&seed=maxfactory", showInMenu: false, showInFooter: false },
1925
+ isFeatured: false,
1926
+ isBrand: true,
1927
+ isActive: true,
1928
+ isSearchable: true,
1929
+ createdBy: ADMIN_ID,
1930
+ createdAt: daysAgo(300),
1931
+ updatedAt: daysAgo(30),
1932
+ 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"] },
1933
+ },
1934
+ {
1935
+ id: "brand-medicom-toy",
1936
+ slug: "brand-medicom-toy",
1937
+ name: "Medicom Toy",
1938
+ categoryType: "brand",
1939
+ 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.",
1940
+ brandWebsite: "https://www.medicomtoy.co.jp",
1941
+ brandCountry: "Japan",
1942
+ brandFounded: 1996,
1943
+ brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=medicom",
1944
+ rootId: "brand-medicom-toy",
1945
+ parentIds: [],
1946
+ tier: 0,
1947
+ path: "brand-medicom-toy",
1948
+ isLeaf: true,
1949
+ order: 17,
1950
+ display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=medicom", showInMenu: false, showInFooter: false },
1951
+ isFeatured: false,
1952
+ isBrand: true,
1953
+ isActive: true,
1954
+ isSearchable: true,
1955
+ createdBy: ADMIN_ID,
1956
+ createdAt: daysAgo(300),
1957
+ updatedAt: daysAgo(30),
1958
+ 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"] },
1959
+ },
1960
+ {
1961
+ id: "brand-bushiroad",
1962
+ slug: "brand-bushiroad",
1963
+ name: "Bushiroad",
1964
+ categoryType: "brand",
1965
+ 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.",
1966
+ brandWebsite: "https://www.bushiroad.com",
1967
+ brandCountry: "Japan",
1968
+ brandFounded: 2007,
1969
+ brandBannerImage: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=1200&h=400&fit=crop",
1970
+ rootId: "brand-bushiroad",
1971
+ parentIds: [],
1972
+ tier: 0,
1973
+ path: "brand-bushiroad",
1974
+ isLeaf: true,
1975
+ order: 18,
1976
+ display: { coverImage: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=200&h=200&fit=crop", showInMenu: false, showInFooter: false },
1977
+ isFeatured: false,
1978
+ isBrand: true,
1979
+ isActive: true,
1980
+ isSearchable: true,
1981
+ createdBy: ADMIN_ID,
1982
+ createdAt: daysAgo(300),
1983
+ updatedAt: daysAgo(30),
1984
+ 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"] },
1985
+ },
1986
+ {
1987
+ id: "brand-panini",
1988
+ slug: "brand-panini",
1989
+ name: "Panini",
1990
+ categoryType: "brand",
1991
+ 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.",
1992
+ brandWebsite: "https://www.paniniamerica.net",
1993
+ brandCountry: "Italy",
1994
+ brandFounded: 1961,
1995
+ brandBannerImage: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=1200&h=400&fit=crop&seed=panini",
1996
+ rootId: "brand-panini",
1997
+ parentIds: [],
1998
+ tier: 0,
1999
+ path: "brand-panini",
2000
+ isLeaf: true,
2001
+ order: 19,
2002
+ display: { coverImage: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=200&h=200&fit=crop&seed=panini", showInMenu: false, showInFooter: false },
2003
+ isFeatured: false,
2004
+ isBrand: true,
2005
+ isActive: true,
2006
+ isSearchable: true,
2007
+ createdBy: ADMIN_ID,
2008
+ createdAt: daysAgo(300),
2009
+ updatedAt: daysAgo(30),
2010
+ 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"] },
2011
+ },
2012
+ {
2013
+ id: "brand-spin-master",
2014
+ slug: "brand-spin-master",
2015
+ name: "Spin Master",
2016
+ categoryType: "brand",
2017
+ 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.",
2018
+ brandWebsite: "https://www.spinmaster.com",
2019
+ brandCountry: "Canada",
2020
+ brandFounded: 1994,
2021
+ brandBannerImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=1200&h=400&fit=crop&seed=spinmaster",
2022
+ rootId: "brand-spin-master",
2023
+ parentIds: [],
2024
+ tier: 0,
2025
+ path: "brand-spin-master",
2026
+ isLeaf: true,
2027
+ order: 20,
2028
+ display: { coverImage: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=200&h=200&fit=crop&seed=spinmaster", showInMenu: false, showInFooter: false },
2029
+ isFeatured: false,
2030
+ isBrand: true,
2031
+ isActive: true,
2032
+ isSearchable: true,
2033
+ createdBy: ADMIN_ID,
2034
+ createdAt: daysAgo(300),
2035
+ updatedAt: daysAgo(30),
2036
+ 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"] },
2037
+ },
2038
+ {
2039
+ id: "brand-jakks-pacific",
2040
+ slug: "brand-jakks-pacific",
2041
+ name: "JAKKS Pacific",
2042
+ categoryType: "brand",
2043
+ 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.",
2044
+ brandWebsite: "https://www.jakkspacific.com",
2045
+ brandCountry: "USA",
2046
+ brandFounded: 1995,
2047
+ brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=jakks",
2048
+ rootId: "brand-jakks-pacific",
2049
+ parentIds: [],
2050
+ tier: 0,
2051
+ path: "brand-jakks-pacific",
2052
+ isLeaf: true,
2053
+ order: 21,
2054
+ display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=jakks", showInMenu: false, showInFooter: false },
2055
+ isFeatured: false,
2056
+ isBrand: true,
2057
+ isActive: true,
2058
+ isSearchable: true,
2059
+ createdBy: ADMIN_ID,
2060
+ createdAt: daysAgo(300),
2061
+ updatedAt: daysAgo(30),
2062
+ 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"] },
2063
+ },
2064
+ {
2065
+ id: "brand-corgi",
2066
+ slug: "brand-corgi",
2067
+ name: "Corgi",
2068
+ categoryType: "brand",
2069
+ 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.",
2070
+ brandWebsite: "https://www.corgi.co.uk",
2071
+ brandCountry: "UK",
2072
+ brandFounded: 1956,
2073
+ brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=corgi",
2074
+ rootId: "brand-corgi",
2075
+ parentIds: [],
2076
+ tier: 0,
2077
+ path: "brand-corgi",
2078
+ isLeaf: true,
2079
+ order: 22,
2080
+ display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=corgi", showInMenu: false, showInFooter: false },
2081
+ isFeatured: false,
2082
+ isBrand: true,
2083
+ isActive: true,
2084
+ isSearchable: true,
2085
+ createdBy: ADMIN_ID,
2086
+ createdAt: daysAgo(300),
2087
+ updatedAt: daysAgo(30),
2088
+ 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"] },
2089
+ },
2090
+ {
2091
+ id: "brand-matchbox",
2092
+ slug: "brand-matchbox",
2093
+ name: "Matchbox",
2094
+ categoryType: "brand",
2095
+ 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.",
2096
+ brandWebsite: "https://www.matchbox.com",
2097
+ brandCountry: "UK",
2098
+ brandFounded: 1953,
2099
+ brandBannerImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=matchbox",
2100
+ rootId: "brand-matchbox",
2101
+ parentIds: [],
2102
+ tier: 0,
2103
+ path: "brand-matchbox",
2104
+ isLeaf: true,
2105
+ order: 23,
2106
+ display: { coverImage: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=matchbox", showInMenu: false, showInFooter: false },
2107
+ isFeatured: false,
2108
+ isBrand: true,
2109
+ isActive: true,
2110
+ isSearchable: true,
2111
+ createdBy: ADMIN_ID,
2112
+ createdAt: daysAgo(300),
2113
+ updatedAt: daysAgo(30),
2114
+ 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"] },
2115
+ },
2116
+ {
2117
+ id: "brand-mega-construx",
2118
+ slug: "brand-mega-construx",
2119
+ name: "Mega Construx",
2120
+ categoryType: "brand",
2121
+ 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.",
2122
+ brandWebsite: "https://www.mega.us",
2123
+ brandCountry: "USA",
2124
+ brandFounded: 2000,
2125
+ brandBannerImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=mega",
2126
+ rootId: "brand-mega-construx",
2127
+ parentIds: [],
2128
+ tier: 0,
2129
+ path: "brand-mega-construx",
2130
+ isLeaf: true,
2131
+ order: 24,
2132
+ display: { coverImage: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=mega", showInMenu: false, showInFooter: false },
2133
+ isFeatured: false,
2134
+ isBrand: true,
2135
+ isActive: true,
2136
+ isSearchable: true,
2137
+ createdBy: ADMIN_ID,
2138
+ createdAt: daysAgo(300),
2139
+ updatedAt: daysAgo(30),
2140
+ 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"] },
2141
+ },
2142
+ {
2143
+ id: "brand-sideshow-collectibles",
2144
+ slug: "brand-sideshow-collectibles",
2145
+ name: "Sideshow Collectibles",
2146
+ categoryType: "brand",
2147
+ 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.",
2148
+ brandWebsite: "https://www.sideshowtoy.com",
2149
+ brandCountry: "USA",
2150
+ brandFounded: 1994,
2151
+ brandBannerImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop&seed=sideshow",
2152
+ rootId: "brand-sideshow-collectibles",
2153
+ parentIds: [],
2154
+ tier: 0,
2155
+ path: "brand-sideshow-collectibles",
2156
+ isLeaf: true,
2157
+ order: 25,
2158
+ display: { coverImage: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop&seed=sideshow", showInMenu: false, showInFooter: false },
2159
+ isFeatured: false,
2160
+ isBrand: true,
2161
+ isActive: true,
2162
+ isSearchable: true,
2163
+ createdBy: ADMIN_ID,
2164
+ createdAt: daysAgo(300),
2165
+ updatedAt: daysAgo(30),
2166
+ 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"] },
2167
+ },
2168
+ ];
2169
+ // SB-UNI-D + V — bundles folded into categories with categoryType:"bundle".
2170
+ const bundleRows = [
2171
+ {
2172
+ id: "bundle-pokemon-tcg-starter-pack-2026",
2173
+ slug: "bundle-pokemon-tcg-starter-pack-2026",
2174
+ name: "Pokémon TCG Starter Pack 2026",
2175
+ categoryType: "bundle",
2176
+ 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.",
2177
+ rootId: "bundle-pokemon-tcg-starter-pack-2026",
2178
+ parentIds: [],
2179
+ tier: 0,
2180
+ path: "bundle-pokemon-tcg-starter-pack-2026",
2181
+ isLeaf: true,
2182
+ order: 0,
2183
+ bundlePriceInPaise: 649900,
2184
+ bundleQueryRule: {
2185
+ type: "static",
2186
+ productIds: [
2187
+ "product-pokemon-sv-etb",
2188
+ "product-pokemon-stellar-crown-tin",
2189
+ "product-pokemon-deck-box-pikachu",
2190
+ ],
2191
+ },
2192
+ bundleProductIds: [
2193
+ "product-pokemon-sv-etb",
2194
+ "product-pokemon-stellar-crown-tin",
2195
+ "product-pokemon-deck-box-pikachu",
2196
+ ],
2197
+ bundleStockStatus: "in_stock",
2198
+ display: {
2199
+ coverImage: "/media/bundle-image-pokemon-tcg-starter-pack-2026-1-20260101.jpg",
2200
+ showInMenu: false,
2201
+ showInFooter: false,
2202
+ },
2203
+ isFeatured: true,
2204
+ isActive: true,
2205
+ isSearchable: true,
2206
+ createdBy: "user-aryan-kapoor",
2207
+ createdByStoreId: "store-pokemon-palace",
2208
+ createdByStoreName: "Pokémon Palace",
2209
+ seo: {
2210
+ title: "Pokémon TCG Starter Pack 2026",
2211
+ description: "3-item Pokémon TCG starter bundle — ETB + booster tin + deck box.",
2212
+ keywords: ["pokemon", "tcg", "bundle", "starter"],
2213
+ },
2214
+ createdAt: daysAgo(15),
2215
+ updatedAt: daysAgo(2),
2216
+ },
2217
+ {
2218
+ id: "bundle-gunpla-pg-arrivals-2026",
2219
+ slug: "bundle-gunpla-pg-arrivals-2026",
2220
+ name: "Gundam PG Arrivals 2026",
2221
+ categoryType: "bundle",
2222
+ description: "Pre-order bundle — three premium PG/RG kits + S.H.Figuarts Broly Super Hero. Save ₹1200.",
2223
+ rootId: "bundle-gunpla-pg-arrivals-2026",
2224
+ parentIds: [],
2225
+ tier: 0,
2226
+ path: "bundle-gunpla-pg-arrivals-2026",
2227
+ isLeaf: true,
2228
+ order: 0,
2229
+ bundlePriceInPaise: 1679700,
2230
+ bundleQueryRule: {
2231
+ type: "static",
2232
+ productIds: [
2233
+ "preorder-gundam-pg-unicorn-ver15",
2234
+ "preorder-gundam-rg-hi-nu-verka",
2235
+ "preorder-shf-broly-super-hero",
2236
+ ],
2237
+ },
2238
+ bundleProductIds: [
2239
+ "preorder-gundam-pg-unicorn-ver15",
2240
+ "preorder-gundam-rg-hi-nu-verka",
2241
+ "preorder-shf-broly-super-hero",
2242
+ ],
2243
+ bundleStockStatus: "in_stock",
2244
+ display: {
2245
+ coverImage: "/media/bundle-image-gunpla-pg-arrivals-2026-1-20260101.jpg",
2246
+ showInMenu: false,
2247
+ showInFooter: false,
2248
+ },
2249
+ isFeatured: false,
2250
+ isActive: true,
2251
+ isSearchable: true,
2252
+ createdBy: "user-amit-sharma",
2253
+ createdByStoreId: "store-gundam-galaxy",
2254
+ createdByStoreName: "Gundam Galaxy",
2255
+ seo: {
2256
+ title: "Gundam PG Arrivals 2026 Bundle",
2257
+ description: "Pre-order bundle of 3 premium Bandai PG/RG kits.",
2258
+ keywords: ["gunpla", "pg", "pre-order", "bundle"],
2259
+ },
2260
+ createdAt: daysAgo(20),
2261
+ updatedAt: daysAgo(4),
2262
+ },
2263
+ {
2264
+ id: "bundle-beyblade-x-launch-pack-2025",
2265
+ slug: "bundle-beyblade-x-launch-pack-2025",
2266
+ name: "Beyblade X Launch Pack 2025 (SOLD OUT)",
2267
+ categoryType: "bundle",
2268
+ description: "Four-item Beyblade X launch pack — original 2025 release. One of the four items has sold; bundle marked OOS until restock.",
2269
+ rootId: "bundle-beyblade-x-launch-pack-2025",
2270
+ parentIds: [],
2271
+ tier: 0,
2272
+ path: "bundle-beyblade-x-launch-pack-2025",
2273
+ isLeaf: true,
2274
+ order: 0,
2275
+ bundlePriceInPaise: 499900,
2276
+ bundleQueryRule: {
2277
+ type: "static",
2278
+ productIds: [
2279
+ "product-beyblade-x-bx18-leon-crest",
2280
+ "product-beyblade-x-bx10-dran-dagger",
2281
+ "product-beyblade-x-launcher-grip",
2282
+ ],
2283
+ },
2284
+ bundleProductIds: [
2285
+ "product-beyblade-x-bx18-leon-crest",
2286
+ "product-beyblade-x-bx10-dran-dagger",
2287
+ "product-beyblade-x-launcher-grip",
2288
+ ],
2289
+ bundleStockStatus: "out_of_stock",
2290
+ display: {
2291
+ coverImage: "/media/bundle-image-beyblade-x-launch-pack-2025-1-20260101.jpg",
2292
+ showInMenu: false,
2293
+ showInFooter: false,
2294
+ },
2295
+ isFeatured: false,
2296
+ isActive: false,
2297
+ isSearchable: false,
2298
+ createdBy: "user-rohit-joshi",
2299
+ createdByStoreId: "store-beyblade-arena",
2300
+ createdByStoreName: "Beyblade Arena",
2301
+ seo: {
2302
+ title: "Beyblade X Launch Pack 2025",
2303
+ description: "4-item Beyblade X launch bundle — currently sold out.",
2304
+ keywords: ["beyblade-x", "bundle", "launch"],
2305
+ },
2306
+ createdAt: daysAgo(45),
2307
+ updatedAt: daysAgo(10),
2308
+ },
2309
+ ];
1219
2310
  const STORE_CREATOR = {
1220
2311
  "user-aryan-kapoor": { createdByType: "store", createdByStoreId: "store-pokemon-palace", createdByStoreName: "Pokémon Palace" },
1221
2312
  "user-nisha-reddy": { createdByType: "store", createdByStoreId: "store-cardgame-hub", createdByStoreName: "CardGame Hub" },
@@ -1224,9 +2315,17 @@ const STORE_CREATOR = {
1224
2315
  "user-amit-sharma": { createdByType: "store", createdByStoreId: "store-gundam-galaxy", createdByStoreName: "Gundam Galaxy" },
1225
2316
  "user-priya-singh": { createdByType: "store", createdByStoreId: "store-tokyo-toys-india", createdByStoreName: "Tokyo Toys India" },
1226
2317
  };
1227
- export const categoriesSeedData = rawCategories.map((c) => ({
1228
- ...c,
1229
- ...(c.createdBy && STORE_CREATOR[c.createdBy]
1230
- ? STORE_CREATOR[c.createdBy]
1231
- : { createdByType: "admin" }),
1232
- }));
2318
+ export const categoriesSeedData = [
2319
+ ...rawCategories.map((c) => ({
2320
+ ...c,
2321
+ ...(c.createdBy && STORE_CREATOR[c.createdBy]
2322
+ ? STORE_CREATOR[c.createdBy]
2323
+ : { createdByType: "admin" }),
2324
+ })),
2325
+ ...sublistingRows.map((s) => ({ ...s, createdByType: "admin" })),
2326
+ ...brandRows.map((b) => ({ ...b, createdByType: "admin" })),
2327
+ ...bundleRows.map((bundle) => ({
2328
+ ...bundle,
2329
+ createdByType: bundle.createdByStoreId ? "store" : "admin",
2330
+ })),
2331
+ ];