@mohasinac/appkit 2.6.3 → 2.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (615) hide show
  1. package/dist/_internal/server/features/account/data.js +2 -2
  2. package/dist/_internal/server/features/bundles/data.d.ts +26 -6
  3. package/dist/_internal/server/features/bundles/data.js +41 -6
  4. package/dist/_internal/server/features/bundles/index.d.ts +3 -2
  5. package/dist/_internal/server/features/bundles/index.js +4 -2
  6. package/dist/_internal/server/features/bundles/metadata.d.ts +20 -0
  7. package/dist/_internal/server/features/bundles/metadata.js +46 -0
  8. package/dist/_internal/server/features/bundles/og.d.ts +38 -0
  9. package/dist/_internal/server/features/bundles/og.js +122 -0
  10. package/dist/_internal/server/features/checkout/actions.js +192 -133
  11. package/dist/_internal/server/features/checkout/bundle-expansion.d.ts +57 -0
  12. package/dist/_internal/server/features/checkout/bundle-expansion.js +70 -0
  13. package/dist/_internal/server/features/checkout/prize-bundle-gates.d.ts +5 -15
  14. package/dist/_internal/server/features/checkout/prize-bundle-gates.js +5 -21
  15. package/dist/_internal/server/features/media/contextGuards.js +15 -1
  16. package/dist/_internal/server/features/payouts/actions.d.ts +19 -0
  17. package/dist/_internal/server/features/payouts/actions.js +38 -0
  18. package/dist/_internal/server/features/products/data.js +1 -2
  19. package/dist/_internal/server/features/raffle/actions.d.ts +11 -0
  20. package/dist/_internal/server/features/raffle/actions.js +31 -0
  21. package/dist/_internal/server/features/refunds/actions.d.ts +31 -0
  22. package/dist/_internal/server/features/refunds/actions.js +77 -0
  23. package/dist/_internal/server/jobs/core/adminAnalytics.d.ts +28 -0
  24. package/dist/_internal/server/jobs/core/adminAnalytics.js +98 -0
  25. package/dist/_internal/server/jobs/core/assignSpinPrize.d.ts +19 -0
  26. package/dist/_internal/server/jobs/core/assignSpinPrize.js +81 -0
  27. package/dist/_internal/server/jobs/core/auctionSettlement.d.ts +2 -0
  28. package/dist/_internal/server/jobs/core/auctionSettlement.js +70 -0
  29. package/dist/_internal/server/jobs/core/autoPayoutEligibility.d.ts +2 -0
  30. package/dist/_internal/server/jobs/core/autoPayoutEligibility.js +109 -0
  31. package/dist/_internal/server/jobs/core/bundleStockSync.d.ts +10 -0
  32. package/dist/_internal/server/jobs/core/bundleStockSync.js +71 -0
  33. package/dist/_internal/server/jobs/core/cartPrune.d.ts +2 -0
  34. package/dist/_internal/server/jobs/core/cartPrune.js +13 -0
  35. package/dist/_internal/server/jobs/core/cleanupRtdbEvents.d.ts +2 -0
  36. package/dist/_internal/server/jobs/core/cleanupRtdbEvents.js +45 -0
  37. package/dist/_internal/server/jobs/core/countersReconcile.d.ts +2 -0
  38. package/dist/_internal/server/jobs/core/countersReconcile.js +107 -0
  39. package/dist/_internal/server/jobs/core/couponExpiry.d.ts +2 -0
  40. package/dist/_internal/server/jobs/core/couponExpiry.js +13 -0
  41. package/dist/_internal/server/jobs/core/dailyDataCleanup.d.ts +2 -0
  42. package/dist/_internal/server/jobs/core/dailyDataCleanup.js +20 -0
  43. package/dist/_internal/server/jobs/core/index.d.ts +44 -0
  44. package/dist/_internal/server/jobs/core/index.js +47 -0
  45. package/dist/_internal/server/jobs/core/listingProcessor.d.ts +30 -0
  46. package/dist/_internal/server/jobs/core/listingProcessor.js +138 -0
  47. package/dist/_internal/server/jobs/core/mediaTmpCleanup.d.ts +14 -0
  48. package/dist/_internal/server/jobs/core/mediaTmpCleanup.js +68 -0
  49. package/dist/_internal/server/jobs/core/notificationPrune.d.ts +2 -0
  50. package/dist/_internal/server/jobs/core/notificationPrune.js +13 -0
  51. package/dist/_internal/server/jobs/core/offerExpiry.d.ts +2 -0
  52. package/dist/_internal/server/jobs/core/offerExpiry.js +50 -0
  53. package/dist/_internal/server/jobs/core/onBidPlaced.d.ts +15 -0
  54. package/dist/_internal/server/jobs/core/onBidPlaced.js +59 -0
  55. package/dist/_internal/server/jobs/core/onCategoryWrite.d.ts +14 -0
  56. package/dist/_internal/server/jobs/core/onCategoryWrite.js +134 -0
  57. package/dist/_internal/server/jobs/core/onOrderCreate.d.ts +18 -0
  58. package/dist/_internal/server/jobs/core/onOrderCreate.js +78 -0
  59. package/dist/_internal/server/jobs/core/onOrderStatusChange.d.ts +19 -0
  60. package/dist/_internal/server/jobs/core/onOrderStatusChange.js +139 -0
  61. package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +23 -0
  62. package/dist/_internal/server/jobs/core/onProductStockChange.js +130 -0
  63. package/dist/_internal/server/jobs/core/onProductWrite.d.ts +12 -0
  64. package/dist/_internal/server/jobs/core/onProductWrite.js +94 -0
  65. package/dist/_internal/server/jobs/core/onReviewWrite.d.ts +7 -0
  66. package/dist/_internal/server/jobs/core/onReviewWrite.js +49 -0
  67. package/dist/_internal/server/jobs/core/onStoreWrite.d.ts +12 -0
  68. package/dist/_internal/server/jobs/core/onStoreWrite.js +7 -0
  69. package/dist/_internal/server/jobs/core/payoutBatch.d.ts +8 -0
  70. package/dist/_internal/server/jobs/core/payoutBatch.js +102 -0
  71. package/dist/_internal/server/jobs/core/pendingOrderTimeout.d.ts +2 -0
  72. package/dist/_internal/server/jobs/core/pendingOrderTimeout.js +27 -0
  73. package/dist/_internal/server/jobs/core/positionsReconcile.d.ts +7 -0
  74. package/dist/_internal/server/jobs/core/positionsReconcile.js +87 -0
  75. package/dist/_internal/server/jobs/core/prizeRevealClose.d.ts +2 -0
  76. package/dist/_internal/server/jobs/core/prizeRevealClose.js +22 -0
  77. package/dist/_internal/server/jobs/core/prizeRevealExpiry.d.ts +2 -0
  78. package/dist/_internal/server/jobs/core/prizeRevealExpiry.js +50 -0
  79. package/dist/_internal/server/jobs/core/prizeRevealOpen.d.ts +2 -0
  80. package/dist/_internal/server/jobs/core/prizeRevealOpen.js +56 -0
  81. package/dist/_internal/server/jobs/core/prizeRevealReminder.d.ts +2 -0
  82. package/dist/_internal/server/jobs/core/prizeRevealReminder.js +38 -0
  83. package/dist/_internal/server/jobs/core/productStatsSync.d.ts +8 -0
  84. package/dist/_internal/server/jobs/core/productStatsSync.js +36 -0
  85. package/dist/_internal/server/jobs/core/promotions.d.ts +12 -0
  86. package/dist/_internal/server/jobs/core/promotions.js +43 -0
  87. package/dist/_internal/server/jobs/core/storeAnalytics.d.ts +30 -0
  88. package/dist/_internal/server/jobs/core/storeAnalytics.js +109 -0
  89. package/dist/_internal/server/jobs/core/triggerEventRaffle.d.ts +19 -0
  90. package/dist/_internal/server/jobs/core/triggerEventRaffle.js +86 -0
  91. package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.d.ts +6 -0
  92. package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.js +85 -0
  93. package/dist/_internal/server/jobs/handlers/adminAnalytics.d.ts +2 -26
  94. package/dist/_internal/server/jobs/handlers/adminAnalytics.js +2 -98
  95. package/dist/_internal/server/jobs/handlers/assignSpinPrize.d.ts +1 -22
  96. package/dist/_internal/server/jobs/handlers/assignSpinPrize.js +2 -86
  97. package/dist/_internal/server/jobs/handlers/auctionSettlement.js +2 -70
  98. package/dist/_internal/server/jobs/handlers/autoPayoutEligibility.js +2 -110
  99. package/dist/_internal/server/jobs/handlers/bundleStockSync.d.ts +0 -16
  100. package/dist/_internal/server/jobs/handlers/bundleStockSync.js +2 -80
  101. package/dist/_internal/server/jobs/handlers/cartPrune.js +2 -13
  102. package/dist/_internal/server/jobs/handlers/cleanupRtdbEvents.js +2 -45
  103. package/dist/_internal/server/jobs/handlers/countersReconcile.js +2 -109
  104. package/dist/_internal/server/jobs/handlers/couponExpiry.js +2 -13
  105. package/dist/_internal/server/jobs/handlers/dailyDataCleanup.js +2 -20
  106. package/dist/_internal/server/jobs/handlers/listingProcessor.d.ts +3 -28
  107. package/dist/_internal/server/jobs/handlers/listingProcessor.js +3 -138
  108. package/dist/_internal/server/jobs/handlers/mediaTmpCleanup.d.ts +0 -12
  109. package/dist/_internal/server/jobs/handlers/mediaTmpCleanup.js +2 -69
  110. package/dist/_internal/server/jobs/handlers/notificationPrune.js +2 -13
  111. package/dist/_internal/server/jobs/handlers/offerExpiry.js +2 -50
  112. package/dist/_internal/server/jobs/handlers/onBidPlaced.d.ts +1 -10
  113. package/dist/_internal/server/jobs/handlers/onBidPlaced.js +2 -56
  114. package/dist/_internal/server/jobs/handlers/onCategoryWrite.d.ts +1 -8
  115. package/dist/_internal/server/jobs/handlers/onCategoryWrite.js +6 -134
  116. package/dist/_internal/server/jobs/handlers/onOrderCreate.d.ts +1 -12
  117. package/dist/_internal/server/jobs/handlers/onOrderCreate.js +2 -76
  118. package/dist/_internal/server/jobs/handlers/onOrderStatusChange.d.ts +1 -12
  119. package/dist/_internal/server/jobs/handlers/onOrderStatusChange.js +2 -139
  120. package/dist/_internal/server/jobs/handlers/onProductStockChange.d.ts +0 -13
  121. package/dist/_internal/server/jobs/handlers/onProductStockChange.js +7 -134
  122. package/dist/_internal/server/jobs/handlers/onProductWrite.d.ts +1 -6
  123. package/dist/_internal/server/jobs/handlers/onProductWrite.js +6 -106
  124. package/dist/_internal/server/jobs/handlers/onReviewWrite.js +2 -49
  125. package/dist/_internal/server/jobs/handlers/onStoreWrite.d.ts +1 -8
  126. package/dist/_internal/server/jobs/handlers/onStoreWrite.js +7 -8
  127. package/dist/_internal/server/jobs/handlers/payoutBatch.d.ts +0 -9
  128. package/dist/_internal/server/jobs/handlers/payoutBatch.js +2 -104
  129. package/dist/_internal/server/jobs/handlers/pendingOrderTimeout.d.ts +0 -6
  130. package/dist/_internal/server/jobs/handlers/pendingOrderTimeout.js +2 -33
  131. package/dist/_internal/server/jobs/handlers/positionsReconcile.d.ts +0 -5
  132. package/dist/_internal/server/jobs/handlers/positionsReconcile.js +2 -87
  133. package/dist/_internal/server/jobs/handlers/prizeRevealClose.d.ts +0 -7
  134. package/dist/_internal/server/jobs/handlers/prizeRevealClose.js +2 -29
  135. package/dist/_internal/server/jobs/handlers/prizeRevealExpiry.d.ts +0 -8
  136. package/dist/_internal/server/jobs/handlers/prizeRevealExpiry.js +2 -58
  137. package/dist/_internal/server/jobs/handlers/prizeRevealOpen.d.ts +0 -8
  138. package/dist/_internal/server/jobs/handlers/prizeRevealOpen.js +2 -65
  139. package/dist/_internal/server/jobs/handlers/prizeRevealReminder.d.ts +0 -7
  140. package/dist/_internal/server/jobs/handlers/prizeRevealReminder.js +2 -45
  141. package/dist/_internal/server/jobs/handlers/productStatsSync.d.ts +0 -6
  142. package/dist/_internal/server/jobs/handlers/productStatsSync.js +2 -36
  143. package/dist/_internal/server/jobs/handlers/promotions.d.ts +2 -10
  144. package/dist/_internal/server/jobs/handlers/promotions.js +2 -43
  145. package/dist/_internal/server/jobs/handlers/storeAnalytics.d.ts +2 -28
  146. package/dist/_internal/server/jobs/handlers/storeAnalytics.js +2 -109
  147. package/dist/_internal/server/jobs/handlers/triggerEventRaffle.d.ts +1 -28
  148. package/dist/_internal/server/jobs/handlers/triggerEventRaffle.js +2 -94
  149. package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.d.ts +0 -6
  150. package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.js +2 -87
  151. package/dist/_internal/server/jobs/index.d.ts +1 -0
  152. package/dist/_internal/server/jobs/index.js +1 -0
  153. package/dist/_internal/server/jobs/runtime/adapters/firebase.js +21 -0
  154. package/dist/_internal/shared/actions/action-registry.d.ts +84 -0
  155. package/dist/_internal/shared/actions/action-registry.js +160 -0
  156. package/dist/_internal/shared/checkout/rules/_defaults.d.ts +3 -0
  157. package/dist/_internal/shared/checkout/rules/_defaults.js +22 -0
  158. package/dist/_internal/shared/checkout/rules/_limits.d.ts +19 -0
  159. package/dist/_internal/shared/checkout/rules/_limits.js +19 -0
  160. package/dist/_internal/shared/checkout/rules/_registry.d.ts +44 -0
  161. package/dist/_internal/shared/checkout/rules/_registry.js +87 -0
  162. package/dist/_internal/shared/checkout/rules/auction.rule.d.ts +2 -0
  163. package/dist/_internal/shared/checkout/rules/auction.rule.js +10 -0
  164. package/dist/_internal/shared/checkout/rules/bundle.rule.d.ts +11 -0
  165. package/dist/_internal/shared/checkout/rules/bundle.rule.js +6 -0
  166. package/dist/_internal/shared/checkout/rules/classified.rule.d.ts +9 -0
  167. package/dist/_internal/shared/checkout/rules/classified.rule.js +9 -0
  168. package/dist/_internal/shared/checkout/rules/digital-code.rule.d.ts +8 -0
  169. package/dist/_internal/shared/checkout/rules/digital-code.rule.js +6 -0
  170. package/dist/_internal/shared/checkout/rules/index.d.ts +12 -0
  171. package/dist/_internal/shared/checkout/rules/index.js +12 -0
  172. package/dist/_internal/shared/checkout/rules/live.rule.d.ts +10 -0
  173. package/dist/_internal/shared/checkout/rules/live.rule.js +6 -0
  174. package/dist/_internal/shared/checkout/rules/offer.rule.d.ts +2 -0
  175. package/dist/_internal/shared/checkout/rules/offer.rule.js +9 -0
  176. package/dist/_internal/shared/checkout/rules/preorder.rule.d.ts +2 -0
  177. package/dist/_internal/shared/checkout/rules/preorder.rule.js +28 -0
  178. package/dist/_internal/shared/checkout/rules/prize-draw.rule.d.ts +2 -0
  179. package/dist/_internal/shared/checkout/rules/prize-draw.rule.js +65 -0
  180. package/dist/_internal/shared/checkout/rules/standard.rule.d.ts +2 -0
  181. package/dist/_internal/shared/checkout/rules/standard.rule.js +5 -0
  182. package/dist/_internal/shared/checkout/rules/types.d.ts +125 -0
  183. package/dist/_internal/shared/checkout/rules/types.js +13 -0
  184. package/dist/_internal/shared/features/cart/schema.d.ts +6 -6
  185. package/dist/_internal/shared/features/categories/bundle-copy.d.ts +123 -0
  186. package/dist/_internal/shared/features/categories/bundle-copy.js +134 -0
  187. package/dist/_internal/shared/features/categories/bundle-schemas.d.ts +318 -0
  188. package/dist/_internal/shared/features/categories/bundle-schemas.js +55 -0
  189. package/dist/_internal/shared/features/events/schema.d.ts +4 -4
  190. package/dist/_internal/shared/features/orders/refund-copy.d.ts +36 -0
  191. package/dist/_internal/shared/features/orders/refund-copy.js +40 -0
  192. package/dist/_internal/shared/features/orders/schema.d.ts +4 -4
  193. package/dist/_internal/shared/features/products/schema.d.ts +8 -8
  194. package/dist/_internal/shared/listing-types/_registry.d.ts +27 -0
  195. package/dist/_internal/shared/listing-types/_registry.js +8 -0
  196. package/dist/_internal/shared/listing-types/action-tracker.d.ts +41 -0
  197. package/dist/_internal/shared/listing-types/action-tracker.js +70 -0
  198. package/dist/_internal/shared/listing-types/capabilities.js +25 -0
  199. package/dist/_internal/shared/listing-types/cart-shipping.d.ts +37 -0
  200. package/dist/_internal/shared/listing-types/cart-shipping.js +46 -0
  201. package/dist/_internal/shared/listing-types/classified/config.d.ts +7 -0
  202. package/dist/_internal/shared/listing-types/classified/config.js +8 -0
  203. package/dist/_internal/shared/listing-types/classified/ctas.d.ts +1 -0
  204. package/dist/_internal/shared/listing-types/classified/ctas.js +3 -0
  205. package/dist/_internal/shared/listing-types/classified/og.d.ts +1 -0
  206. package/dist/_internal/shared/listing-types/classified/og.js +1 -0
  207. package/dist/_internal/shared/listing-types/classified/schema.d.ts +1 -0
  208. package/dist/_internal/shared/listing-types/classified/schema.js +1 -0
  209. package/dist/_internal/shared/listing-types/classified/seed-factory.d.ts +1 -0
  210. package/dist/_internal/shared/listing-types/classified/seed-factory.js +1 -0
  211. package/dist/_internal/shared/listing-types/digital-code/config.d.ts +7 -0
  212. package/dist/_internal/shared/listing-types/digital-code/config.js +8 -0
  213. package/dist/_internal/shared/listing-types/digital-code/ctas.d.ts +1 -0
  214. package/dist/_internal/shared/listing-types/digital-code/ctas.js +3 -0
  215. package/dist/_internal/shared/listing-types/digital-code/og.d.ts +1 -0
  216. package/dist/_internal/shared/listing-types/digital-code/og.js +1 -0
  217. package/dist/_internal/shared/listing-types/digital-code/schema.d.ts +1 -0
  218. package/dist/_internal/shared/listing-types/digital-code/schema.js +1 -0
  219. package/dist/_internal/shared/listing-types/digital-code/seed-factory.d.ts +1 -0
  220. package/dist/_internal/shared/listing-types/digital-code/seed-factory.js +1 -0
  221. package/dist/_internal/shared/listing-types/feature-flags.d.ts +34 -0
  222. package/dist/_internal/shared/listing-types/feature-flags.js +45 -0
  223. package/dist/_internal/shared/listing-types/live/config.d.ts +7 -0
  224. package/dist/_internal/shared/listing-types/live/config.js +8 -0
  225. package/dist/_internal/shared/listing-types/live/ctas.d.ts +1 -0
  226. package/dist/_internal/shared/listing-types/live/ctas.js +3 -0
  227. package/dist/_internal/shared/listing-types/live/og.d.ts +1 -0
  228. package/dist/_internal/shared/listing-types/live/og.js +1 -0
  229. package/dist/_internal/shared/listing-types/live/schema.d.ts +1 -0
  230. package/dist/_internal/shared/listing-types/live/schema.js +1 -0
  231. package/dist/_internal/shared/listing-types/live/seed-factory.d.ts +1 -0
  232. package/dist/_internal/shared/listing-types/live/seed-factory.js +1 -0
  233. package/dist/_internal/shared/media/limits.js +8 -0
  234. package/dist/client.d.ts +10 -5
  235. package/dist/client.js +16 -3
  236. package/dist/configs/next.js +7 -0
  237. package/dist/constants/api-endpoints.d.ts +6 -0
  238. package/dist/constants/api-endpoints.js +4 -0
  239. package/dist/core/hooks/useSyncManager.js +13 -1
  240. package/dist/core/unit-of-work.d.ts +1 -1
  241. package/dist/core/unit-of-work.js +2 -2
  242. package/dist/features/account/actions/address-actions.d.ts +1 -1
  243. package/dist/features/account/actions/address-actions.js +15 -7
  244. package/dist/features/account/schemas/firestore.d.ts +8 -43
  245. package/dist/features/account/schemas/firestore.js +8 -54
  246. package/dist/features/account/schemas/index.d.ts +6 -6
  247. package/dist/features/account/server.d.ts +1 -1
  248. package/dist/features/account/server.js +3 -1
  249. package/dist/features/addresses/index.d.ts +2 -0
  250. package/dist/features/addresses/index.js +2 -0
  251. package/dist/features/addresses/repository/addresses.repository.d.ts +29 -0
  252. package/dist/features/addresses/repository/addresses.repository.js +157 -0
  253. package/dist/features/addresses/schemas/firestore.d.ts +53 -0
  254. package/dist/features/addresses/schemas/firestore.js +68 -0
  255. package/dist/features/{bundles → addresses}/schemas/index.d.ts +0 -1
  256. package/dist/features/{bundles → addresses}/schemas/index.js +0 -1
  257. package/dist/features/addresses/server.d.ts +2 -0
  258. package/dist/features/addresses/server.js +2 -0
  259. package/dist/features/admin/components/AdminAllEventEntriesView.js +4 -3
  260. package/dist/features/admin/components/AdminBidsView.js +4 -3
  261. package/dist/features/admin/components/AdminBlogView.js +8 -3
  262. package/dist/features/admin/components/AdminBundleEditorView.d.ts +9 -0
  263. package/dist/features/admin/components/AdminBundleEditorView.js +209 -0
  264. package/dist/features/admin/components/AdminBundlesView.d.ts +9 -0
  265. package/dist/features/admin/components/AdminBundlesView.js +59 -0
  266. package/dist/features/admin/components/AdminCartsView.js +13 -3
  267. package/dist/features/admin/components/AdminContactView.js +4 -3
  268. package/dist/features/admin/components/AdminCouponsView.js +32 -13
  269. package/dist/features/admin/components/AdminNewsletterView.js +4 -3
  270. package/dist/features/admin/components/AdminOrdersView.js +15 -7
  271. package/dist/features/admin/components/AdminPayoutsView.js +4 -3
  272. package/dist/features/admin/components/AdminPrizeDrawsView.d.ts +4 -0
  273. package/dist/features/admin/components/AdminPrizeDrawsView.js +135 -0
  274. package/dist/features/admin/components/AdminProductsView.js +6 -5
  275. package/dist/features/admin/components/AdminReviewsView.js +5 -4
  276. package/dist/features/admin/components/AdminStoresView.js +4 -3
  277. package/dist/features/admin/components/AdminUsersView.js +15 -5
  278. package/dist/features/admin/components/AdminWishlistsView.js +10 -1
  279. package/dist/features/admin/components/DataTable.d.ts +5 -1
  280. package/dist/features/admin/components/DataTable.js +24 -20
  281. package/dist/features/admin/components/index.d.ts +6 -0
  282. package/dist/features/admin/components/index.js +5 -0
  283. package/dist/features/admin/constants/filter-tabs.d.ts +435 -0
  284. package/dist/features/admin/constants/filter-tabs.js +216 -0
  285. package/dist/features/admin/hooks/useAdminListingData.d.ts +1 -0
  286. package/dist/features/admin/hooks/useAdminListingData.js +1 -0
  287. package/dist/features/admin/schemas/firestore.d.ts +15 -0
  288. package/dist/features/admin/schemas/firestore.js +18 -0
  289. package/dist/features/admin/types/product.types.d.ts +2 -2
  290. package/dist/features/auctions/components/AuctionCard.d.ts +4 -1
  291. package/dist/features/auctions/components/AuctionCard.js +5 -3
  292. package/dist/features/auctions/components/AuctionDetailPageView.js +1 -1
  293. package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +2 -2
  294. package/dist/features/auctions/components/PlaceBidFormClient.js +12 -2
  295. package/dist/features/auctions/schemas/index.d.ts +2 -2
  296. package/dist/features/auth/index.d.ts +1 -0
  297. package/dist/features/auth/index.js +1 -0
  298. package/dist/features/auth/role-predicates.d.ts +16 -0
  299. package/dist/features/auth/role-predicates.js +15 -0
  300. package/dist/features/blog/components/BlogFeaturedCard.d.ts +4 -1
  301. package/dist/features/blog/components/BlogFeaturedCard.js +5 -3
  302. package/dist/features/cart/actions/cart-actions.d.ts +1 -0
  303. package/dist/features/cart/actions/cart-actions.js +16 -0
  304. package/dist/features/cart/components/CartView.d.ts +19 -1
  305. package/dist/features/cart/components/CartView.js +2 -2
  306. package/dist/features/cart/components/ShippingPicker.d.ts +13 -0
  307. package/dist/features/cart/components/ShippingPicker.js +48 -0
  308. package/dist/features/cart/components/index.d.ts +3 -1
  309. package/dist/features/cart/components/index.js +1 -0
  310. package/dist/features/cart/hooks/useCartCount.js +7 -1
  311. package/dist/features/cart/repository/cart.repository.d.ts +1 -0
  312. package/dist/features/cart/repository/cart.repository.js +35 -0
  313. package/dist/features/cart/schemas/firestore.d.ts +27 -2
  314. package/dist/features/categories/components/BundleAddToCartCta.d.ts +16 -0
  315. package/dist/features/categories/components/BundleAddToCartCta.js +54 -0
  316. package/dist/features/categories/components/BundleBuyNowCta.d.ts +8 -0
  317. package/dist/features/categories/components/BundleBuyNowCta.js +37 -0
  318. package/dist/features/categories/components/BundleDetailView.d.ts +22 -0
  319. package/dist/features/categories/components/BundleDetailView.js +31 -0
  320. package/dist/features/categories/components/BundleDynamicRuleEditor.d.ts +18 -0
  321. package/dist/features/categories/components/BundleDynamicRuleEditor.js +60 -0
  322. package/dist/features/categories/components/BundleItemsPicker.d.ts +26 -0
  323. package/dist/features/categories/components/BundleItemsPicker.js +135 -0
  324. package/dist/features/categories/components/BundlesListView.d.ts +13 -0
  325. package/dist/features/categories/components/BundlesListView.js +27 -0
  326. package/dist/features/categories/components/index.d.ts +12 -0
  327. package/dist/features/categories/components/index.js +9 -0
  328. package/dist/features/checkout/actions/checkout-actions.js +10 -3
  329. package/dist/features/events/components/AdminEventEditorView.js +108 -2
  330. package/dist/features/events/components/AdminEventsView.js +16 -4
  331. package/dist/features/events/components/EventCard.d.ts +4 -1
  332. package/dist/features/events/components/EventCard.js +7 -3
  333. package/dist/features/events/components/EventRaffleWinnerView.d.ts +21 -0
  334. package/dist/features/events/components/EventRaffleWinnerView.js +18 -0
  335. package/dist/features/events/components/SpinWheelView.d.ts +27 -0
  336. package/dist/features/events/components/SpinWheelView.js +64 -0
  337. package/dist/features/events/components/index.d.ts +4 -0
  338. package/dist/features/events/components/index.js +2 -0
  339. package/dist/features/events/schemas/firestore.d.ts +27 -1
  340. package/dist/features/events/schemas/firestore.js +7 -0
  341. package/dist/features/events/types/index.d.ts +27 -1
  342. package/dist/features/homepage/components/FeaturedBundlesSection.d.ts +16 -0
  343. package/dist/features/homepage/components/FeaturedBundlesSection.js +24 -0
  344. package/dist/features/homepage/components/MarketplaceHomepageView.js +4 -1
  345. package/dist/features/homepage/components/WhatsAppCommunitySection.js +2 -2
  346. package/dist/features/homepage/lib/section-renderer.d.ts +2 -0
  347. package/dist/features/homepage/lib/section-renderer.js +5 -5
  348. package/dist/features/layout/NavbarLayout.d.ts +3 -1
  349. package/dist/features/layout/NavbarLayout.js +32 -3
  350. package/dist/features/layout/TitleBarLayout.d.ts +6 -3
  351. package/dist/features/layout/TitleBarLayout.js +22 -7
  352. package/dist/features/media/upload/MediaUploadField.d.ts +15 -1
  353. package/dist/features/media/upload/MediaUploadField.js +22 -1
  354. package/dist/features/orders/components/MarketplaceOrderCard.js +4 -2
  355. package/dist/features/orders/components/OrderSiblingPayments.d.ts +8 -0
  356. package/dist/features/orders/components/OrderSiblingPayments.js +16 -0
  357. package/dist/features/orders/components/RefundHistoryTable.d.ts +6 -0
  358. package/dist/features/orders/components/RefundHistoryTable.js +23 -0
  359. package/dist/features/orders/components/RefundRequestView.d.ts +8 -0
  360. package/dist/features/orders/components/RefundRequestView.js +42 -0
  361. package/dist/features/orders/components/index.d.ts +6 -0
  362. package/dist/features/orders/components/index.js +3 -0
  363. package/dist/features/orders/index.d.ts +1 -0
  364. package/dist/features/orders/index.js +2 -0
  365. package/dist/features/orders/repository/orders.repository.d.ts +20 -1
  366. package/dist/features/orders/repository/orders.repository.js +30 -1
  367. package/dist/features/orders/schemas/firestore.d.ts +63 -13
  368. package/dist/features/orders/schemas/firestore.js +5 -5
  369. package/dist/features/orders/schemas/index.d.ts +4 -4
  370. package/dist/features/orders/types/index.d.ts +12 -2
  371. package/dist/features/orders/utils/bundle-grouping.d.ts +48 -0
  372. package/dist/features/orders/utils/bundle-grouping.js +54 -0
  373. package/dist/features/orders/utils/order-splitter.d.ts +9 -10
  374. package/dist/features/orders/utils/order-splitter.js +24 -30
  375. package/dist/features/payments/repository/payout.repository.d.ts +17 -1
  376. package/dist/features/payments/repository/payout.repository.js +47 -0
  377. package/dist/features/payments/schemas/firestore.d.ts +26 -0
  378. package/dist/features/pre-orders/components/PreorderCard.d.ts +4 -1
  379. package/dist/features/pre-orders/components/PreorderCard.js +8 -6
  380. package/dist/features/products/actions/product-actions.d.ts +1 -1
  381. package/dist/features/products/actions/product-actions.js +1 -1
  382. package/dist/features/products/components/CompareOverlay.d.ts +2 -2
  383. package/dist/features/products/components/CompareOverlay.js +4 -4
  384. package/dist/features/products/components/InteractiveProductCard.js +7 -12
  385. package/dist/features/products/components/NonRefundableConsentModal.d.ts +1 -1
  386. package/dist/features/products/components/NonRefundableConsentModal.js +0 -10
  387. package/dist/features/products/components/ProductGrid.js +28 -12
  388. package/dist/features/products/components/ShowGroupSection.js +3 -3
  389. package/dist/features/products/components/SublistingCarouselSection.js +2 -2
  390. package/dist/features/products/components/index.d.ts +0 -4
  391. package/dist/features/products/components/index.js +5 -2
  392. package/dist/features/products/index.d.ts +1 -1
  393. package/dist/features/products/index.js +3 -1
  394. package/dist/features/products/repository/products.repository.js +4 -0
  395. package/dist/features/products/schemas/catalog-product.d.ts +70 -0
  396. package/dist/features/products/schemas/catalog-product.js +50 -0
  397. package/dist/features/products/schemas/firestore.d.ts +110 -2
  398. package/dist/features/products/schemas/firestore.js +30 -0
  399. package/dist/features/products/schemas/index.d.ts +8 -8
  400. package/dist/features/products/types/index.d.ts +1 -1
  401. package/dist/features/products/utils/listing-type.d.ts +9 -0
  402. package/dist/features/products/utils/listing-type.js +4 -0
  403. package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
  404. package/dist/features/promotions/actions/coupon-actions.js +1 -1
  405. package/dist/features/promotions/components/CouponCard.d.ts +28 -10
  406. package/dist/features/promotions/components/CouponCard.js +116 -14
  407. package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
  408. package/dist/features/promotions/repository/coupons.repository.d.ts +1 -1
  409. package/dist/features/reviews/schemas/index.d.ts +2 -2
  410. package/dist/features/search/schemas/index.d.ts +2 -2
  411. package/dist/features/search/types/index.d.ts +2 -2
  412. package/dist/features/seller/components/SellerAuctionsView.js +4 -5
  413. package/dist/features/seller/components/SellerBidsView.js +5 -13
  414. package/dist/features/seller/components/SellerCouponsView.js +31 -67
  415. package/dist/features/seller/components/SellerOffersView.js +4 -5
  416. package/dist/features/seller/components/SellerOrdersView.js +4 -5
  417. package/dist/features/seller/components/SellerPayoutsView.js +4 -5
  418. package/dist/features/seller/components/SellerPreOrdersView.d.ts +4 -0
  419. package/dist/features/seller/components/SellerPreOrdersView.js +141 -0
  420. package/dist/features/seller/components/SellerPrizeDrawsView.d.ts +4 -0
  421. package/dist/features/seller/components/SellerPrizeDrawsView.js +138 -0
  422. package/dist/features/seller/components/SellerProductsView.js +4 -8
  423. package/dist/features/seller/components/index.d.ts +4 -0
  424. package/dist/features/seller/components/index.js +2 -0
  425. package/dist/features/seller/schemas/index.d.ts +2 -2
  426. package/dist/features/stores/actions/store-address-actions.d.ts +10 -6
  427. package/dist/features/stores/actions/store-address-actions.js +8 -7
  428. package/dist/features/stores/components/InteractiveStoreCard.js +3 -10
  429. package/dist/features/stores/components/StoreDetailLayoutView.js +20 -5
  430. package/dist/features/stores/schemas/firestore.d.ts +45 -38
  431. package/dist/features/stores/schemas/firestore.js +2 -49
  432. package/dist/features/stores/server.d.ts +0 -1
  433. package/dist/features/stores/server.js +2 -1
  434. package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -9
  435. package/dist/features/wishlist/hooks/useWishlistCount.js +67 -86
  436. package/dist/features/wishlist/types/index.d.ts +1 -1
  437. package/dist/index.d.ts +56 -9
  438. package/dist/index.js +66 -11
  439. package/dist/next/routing/route-map.d.ts +6 -0
  440. package/dist/next/routing/route-map.js +4 -0
  441. package/dist/providers/db-firebase/admin.d.ts +6 -2
  442. package/dist/providers/db-firebase/admin.js +23 -0
  443. package/dist/repositories/index.d.ts +1 -2
  444. package/dist/repositories/index.js +5 -2
  445. package/dist/security/authorization.d.ts +2 -1
  446. package/dist/security/authorization.js +3 -2
  447. package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
  448. package/dist/seed/bids-seed-data.d.ts +2 -2
  449. package/dist/seed/bids-seed-data.js +77 -2
  450. package/dist/seed/cart-seed-data.d.ts +10 -10
  451. package/dist/seed/cart-seed-data.js +15 -15
  452. package/dist/seed/events-seed-data.js +77 -0
  453. package/dist/seed/manifest.js +16 -8
  454. package/dist/seed/orders-seed-data.js +41 -2
  455. package/dist/seed/payouts-seed-data.js +18 -2
  456. package/dist/seed/stores-seed-data.js +55 -0
  457. package/dist/server-entry.d.ts +1 -0
  458. package/dist/server-entry.js +2 -0
  459. package/dist/server.d.ts +4 -0
  460. package/dist/server.js +8 -0
  461. package/dist/tailwind-utilities.css +1 -1
  462. package/dist/ui/components/FilterChipGroup.d.ts +39 -0
  463. package/dist/ui/components/FilterChipGroup.js +15 -0
  464. package/dist/ui/components/HorizontalScroller.js +32 -7
  465. package/dist/ui/components/HorizontalScroller.style.css +6 -0
  466. package/dist/ui/components/SiteLogo.js +1 -1
  467. package/dist/ui/index.d.ts +2 -0
  468. package/dist/ui/index.js +2 -0
  469. package/dist/utils/id-generators.d.ts +11 -0
  470. package/dist/utils/id-generators.js +16 -0
  471. package/package.json +1 -1
  472. package/dist/_internal/shared/features/bundles/config.d.ts +0 -6
  473. package/dist/_internal/shared/features/bundles/config.js +0 -6
  474. package/dist/_internal/shared/schema-versions.d.ts +0 -76
  475. package/dist/_internal/shared/schema-versions.js +0 -82
  476. package/dist/features/account/migrations.d.ts +0 -2
  477. package/dist/features/account/migrations.js +0 -10
  478. package/dist/features/admin/migrations.d.ts +0 -2
  479. package/dist/features/admin/migrations.js +0 -10
  480. package/dist/features/auctions/migrations.d.ts +0 -2
  481. package/dist/features/auctions/migrations.js +0 -10
  482. package/dist/features/auth/migrations.d.ts +0 -2
  483. package/dist/features/auth/migrations.js +0 -10
  484. package/dist/features/blog/migrations.d.ts +0 -2
  485. package/dist/features/blog/migrations.js +0 -10
  486. package/dist/features/brands/actions/brand-actions.d.ts +0 -2
  487. package/dist/features/brands/actions/brand-actions.js +0 -5
  488. package/dist/features/brands/index.d.ts +0 -3
  489. package/dist/features/brands/index.js +0 -3
  490. package/dist/features/brands/migrations.d.ts +0 -2
  491. package/dist/features/brands/migrations.js +0 -10
  492. package/dist/features/brands/repository/brands.repository.d.ts +0 -13
  493. package/dist/features/brands/repository/brands.repository.js +0 -60
  494. package/dist/features/brands/schemas/index.d.ts +0 -33
  495. package/dist/features/brands/schemas/index.js +0 -15
  496. package/dist/features/brands/server.d.ts +0 -7
  497. package/dist/features/brands/server.js +0 -7
  498. package/dist/features/bundles/components/AdminBundleEditorView.d.ts +0 -8
  499. package/dist/features/bundles/components/AdminBundleEditorView.js +0 -7
  500. package/dist/features/bundles/components/BundleDetailPageView.d.ts +0 -9
  501. package/dist/features/bundles/components/BundleDetailPageView.js +0 -45
  502. package/dist/features/bundles/components/BundleForm.d.ts +0 -12
  503. package/dist/features/bundles/components/BundleForm.js +0 -126
  504. package/dist/features/bundles/components/BundleItemsPicker.d.ts +0 -9
  505. package/dist/features/bundles/components/BundleItemsPicker.js +0 -77
  506. package/dist/features/bundles/components/BundlesByCategoryListing.d.ts +0 -6
  507. package/dist/features/bundles/components/BundlesByCategoryListing.js +0 -50
  508. package/dist/features/bundles/components/BundlesListingView.d.ts +0 -17
  509. package/dist/features/bundles/components/BundlesListingView.js +0 -50
  510. package/dist/features/bundles/components/FeaturedBundlesSection.d.ts +0 -5
  511. package/dist/features/bundles/components/FeaturedBundlesSection.js +0 -55
  512. package/dist/features/bundles/components/SellerBundleCreateView.d.ts +0 -8
  513. package/dist/features/bundles/components/SellerBundleCreateView.js +0 -7
  514. package/dist/features/bundles/components/SellerBundleEditView.d.ts +0 -9
  515. package/dist/features/bundles/components/SellerBundleEditView.js +0 -7
  516. package/dist/features/bundles/components/index.d.ts +0 -18
  517. package/dist/features/bundles/components/index.js +0 -9
  518. package/dist/features/bundles/constants/index.d.ts +0 -32
  519. package/dist/features/bundles/constants/index.js +0 -35
  520. package/dist/features/bundles/index.d.ts +0 -2
  521. package/dist/features/bundles/index.js +0 -2
  522. package/dist/features/bundles/migrations.d.ts +0 -2
  523. package/dist/features/bundles/migrations.js +0 -10
  524. package/dist/features/bundles/repository/bundles.repository.d.ts +0 -36
  525. package/dist/features/bundles/repository/bundles.repository.js +0 -148
  526. package/dist/features/bundles/repository/index.d.ts +0 -1
  527. package/dist/features/bundles/repository/index.js +0 -1
  528. package/dist/features/bundles/schemas/firestore.d.ts +0 -88
  529. package/dist/features/bundles/schemas/firestore.js +0 -29
  530. package/dist/features/bundles/schemas/zod.d.ts +0 -377
  531. package/dist/features/bundles/schemas/zod.js +0 -71
  532. package/dist/features/cart/migrations.d.ts +0 -2
  533. package/dist/features/cart/migrations.js +0 -10
  534. package/dist/features/categories/migrations.d.ts +0 -2
  535. package/dist/features/categories/migrations.js +0 -10
  536. package/dist/features/events/migrations.d.ts +0 -2
  537. package/dist/features/events/migrations.js +0 -10
  538. package/dist/features/faq/migrations.d.ts +0 -2
  539. package/dist/features/faq/migrations.js +0 -10
  540. package/dist/features/grouped/migrations.d.ts +0 -2
  541. package/dist/features/grouped/migrations.js +0 -10
  542. package/dist/features/history/migrations.d.ts +0 -2
  543. package/dist/features/history/migrations.js +0 -10
  544. package/dist/features/messages/migrations.d.ts +0 -2
  545. package/dist/features/messages/migrations.js +0 -10
  546. package/dist/features/orders/migrations.d.ts +0 -2
  547. package/dist/features/orders/migrations.js +0 -10
  548. package/dist/features/payments/migrations.d.ts +0 -2
  549. package/dist/features/payments/migrations.js +0 -10
  550. package/dist/features/products/migrations.d.ts +0 -2
  551. package/dist/features/products/migrations.js +0 -10
  552. package/dist/features/products/repository/sublisting-categories.repository.d.ts +0 -16
  553. package/dist/features/products/repository/sublisting-categories.repository.js +0 -126
  554. package/dist/features/products/schemas/sublisting-categories.d.ts +0 -45
  555. package/dist/features/products/schemas/sublisting-categories.js +0 -16
  556. package/dist/features/promotions/migrations.d.ts +0 -2
  557. package/dist/features/promotions/migrations.js +0 -10
  558. package/dist/features/reviews/migrations.d.ts +0 -2
  559. package/dist/features/reviews/migrations.js +0 -10
  560. package/dist/features/scams/migrations.d.ts +0 -2
  561. package/dist/features/scams/migrations.js +0 -10
  562. package/dist/features/seller/migrations.d.ts +0 -2
  563. package/dist/features/seller/migrations.js +0 -10
  564. package/dist/features/stores/migrations.d.ts +0 -2
  565. package/dist/features/stores/migrations.js +0 -10
  566. package/dist/features/sublisting/migrations.d.ts +0 -2
  567. package/dist/features/sublisting/migrations.js +0 -10
  568. package/dist/features/sublisting/schemas/firestore.d.ts +0 -32
  569. package/dist/features/sublisting/schemas/firestore.js +0 -19
  570. package/dist/features/support/migrations.d.ts +0 -2
  571. package/dist/features/support/migrations.js +0 -10
  572. package/dist/features/wishlist/migrations.d.ts +0 -2
  573. package/dist/features/wishlist/migrations.js +0 -10
  574. package/dist/seed/_bundle-constants.d.ts +0 -14
  575. package/dist/seed/_bundle-constants.js +0 -14
  576. package/dist/seed/anime-figures-seed-data.d.ts +0 -8
  577. package/dist/seed/anime-figures-seed-data.js +0 -1033
  578. package/dist/seed/beyblade-seed-data.d.ts +0 -7
  579. package/dist/seed/beyblade-seed-data.js +0 -1129
  580. package/dist/seed/brands-seed-data.d.ts +0 -7
  581. package/dist/seed/brands-seed-data.js +0 -410
  582. package/dist/seed/bundles-seed-data.d.ts +0 -13
  583. package/dist/seed/bundles-seed-data.js +0 -229
  584. package/dist/seed/cosplay-accessories-seed-data.d.ts +0 -8
  585. package/dist/seed/cosplay-accessories-seed-data.js +0 -647
  586. package/dist/seed/hot-wheels-seed-data.d.ts +0 -7
  587. package/dist/seed/hot-wheels-seed-data.js +0 -1612
  588. package/dist/seed/letitrip-official-seed-data.d.ts +0 -8
  589. package/dist/seed/letitrip-official-seed-data.js +0 -399
  590. package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +0 -8
  591. package/dist/seed/pokemon-carousel-slides-seed-data.js +0 -322
  592. package/dist/seed/pokemon-categories-seed-data.d.ts +0 -24
  593. package/dist/seed/pokemon-categories-seed-data.js +0 -547
  594. package/dist/seed/pokemon-coupons-seed-data.d.ts +0 -6
  595. package/dist/seed/pokemon-coupons-seed-data.js +0 -465
  596. package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +0 -7
  597. package/dist/seed/pokemon-homepage-sections-seed-data.js +0 -241
  598. package/dist/seed/pokemon-products-seed-data.d.ts +0 -9
  599. package/dist/seed/pokemon-products-seed-data.js +0 -1791
  600. package/dist/seed/pokemon-seed-bundle.d.ts +0 -47
  601. package/dist/seed/pokemon-seed-bundle.js +0 -71
  602. package/dist/seed/pokemon-stores-seed-data.d.ts +0 -6
  603. package/dist/seed/pokemon-stores-seed-data.js +0 -179
  604. package/dist/seed/pokemon-users-seed-data.d.ts +0 -6
  605. package/dist/seed/pokemon-users-seed-data.js +0 -521
  606. package/dist/seed/products-seed-data.d.ts +0 -6
  607. package/dist/seed/products-seed-data.js +0 -2530
  608. package/dist/seed/retro-gaming-seed-data.d.ts +0 -8
  609. package/dist/seed/retro-gaming-seed-data.js +0 -801
  610. package/dist/seed/server.d.ts +0 -2
  611. package/dist/seed/server.js +0 -7
  612. package/dist/seed/sublisting-categories-seed-data.d.ts +0 -7
  613. package/dist/seed/sublisting-categories-seed-data.js +0 -159
  614. package/dist/seed/transformers-seed-data.d.ts +0 -7
  615. package/dist/seed/transformers-seed-data.js +0 -530
@@ -1,647 +0,0 @@
1
- /**
2
- * Cosplay & Prop Accessories — Products Seed Data
3
- * Replica Props · Wearables · Cosplay Gear
4
- * 14 general · 1 auction · 1 pre-order = 16 total
5
- * Seller: CosPlay India Hub (store-cosplay-india-hub)
6
- */
7
- import { getDefaultCurrency } from "./seed-market-config";
8
- const _CURRENCY = getDefaultCurrency();
9
- const NOW = new Date();
10
- const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
11
- const daysAhead = (n) => new Date(NOW.getTime() + n * 86400000);
12
- const CP = {
13
- storeId: "store-cosplay-india-hub",
14
- storeName: "CosPlay India Hub",
15
- };
16
- const CP_IMGS = [
17
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Cosplay.jpg?width=640",
18
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Anime_cosplay.jpg?width=640",
19
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Cosplay_convention.jpg?width=640",
20
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Anime_Expo_cosplay.jpg?width=640",
21
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Cosplay_costume.jpg?width=640",
22
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Convention_cosplay.jpg?width=640",
23
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Anime_costume.jpg?width=640",
24
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Cosplay_accessories.jpg?width=640",
25
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Prop_replica.jpg?width=640",
26
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Costume_prop.jpg?width=640",
27
- ];
28
- const img = (seed) => {
29
- let h = 0;
30
- for (const c of seed)
31
- h = (h * 31 + c.charCodeAt(0)) & 0x7fff;
32
- return CP_IMGS[h % CP_IMGS.length];
33
- };
34
- export const cosplayAccessoriesSeedData = [
35
- // ── REPLICA PROPS (5) ────────────────────────────────────────────────────
36
- {
37
- id: "product-cp-naruto-headband-konoha-cp-1",
38
- title: "Naruto Konoha Headband — Metal Plate Cosplay Replica",
39
- description: "<p>High-quality Naruto Leaf Village (Konoha) headband with zinc alloy metal plate and adjustable black cloth band. Accurate Konoha spiral leaf engraving. Fits all head sizes. Used by cosplayers across conventions. Comes with authentication card and display stand.</p>",
40
- slug: "product-naruto-konoha-headband-metal-cosplay-replica",
41
- category: "category-cosplay-props",
42
- subcategory: "Headbands",
43
- brand: "Naruto",
44
- price: 599,
45
- currency: _CURRENCY,
46
- stockQuantity: 50,
47
- availableQuantity: 48,
48
- mainImage: img("naruto-headband-konoha"),
49
- images: [img("naruto-headband-konoha"), img("naruto-headband-back")],
50
- status: "published",
51
- ...CP,
52
- featured: true,
53
- tags: ["naruto", "konoha", "headband", "cosplay", "replica", "metal plate", "leaf village"],
54
- specifications: [
55
- { name: "Material", value: "Zinc alloy plate + cloth band" },
56
- { name: "Band Length", value: "Adjustable 40–60 cm" },
57
- { name: "Plate Size", value: "11 cm × 5 cm" },
58
- ],
59
- features: ["Zinc alloy metal plate", "Accurate Konoha engraving", "Adjustable band", "Display stand included"],
60
- shippingInfo: "Padded envelope. Nationwide.",
61
- returnPolicy: "10-day returns.",
62
- condition: "new",
63
- insurance: false,
64
- shippingPaidBy: "seller",
65
- isAuction: false,
66
- isPreOrder: false,
67
- isPromoted: true,
68
- promotionEndDate: daysAhead(30),
69
- avgRating: 4.8,
70
- reviewCount: 82,
71
- createdAt: daysAgo(60),
72
- updatedAt: daysAgo(2),
73
- },
74
- {
75
- id: "product-cp-dbz-scouter-green-cp-2",
76
- title: "Dragon Ball Z Scouter — Green Lens Replica (Wearable)",
77
- description: "<p>Wearable Dragon Ball Z Scouter in green — the power level reading device worn by Vegeta and Frieza's forces. Hard plastic frame with tinted green acrylic lens. Right-ear mount with elastic head strap. LED backlight effect optional model. It's over 9000!</p>",
78
- slug: "product-dbz-scouter-green-lens-wearable-replica",
79
- category: "category-cosplay-props",
80
- subcategory: "Wearable Props",
81
- brand: "Dragon Ball Z",
82
- price: 999,
83
- currency: _CURRENCY,
84
- stockQuantity: 35,
85
- availableQuantity: 32,
86
- mainImage: img("dbz-scouter-green"),
87
- images: [img("dbz-scouter-green"), img("dbz-scouter-worn")],
88
- status: "published",
89
- ...CP,
90
- featured: true,
91
- tags: ["dragon ball z", "scouter", "green", "cosplay", "wearable", "vegeta", "replica"],
92
- specifications: [
93
- { name: "Lens Colour", value: "Green tinted acrylic" },
94
- { name: "Mount", value: "Right ear with head strap" },
95
- { name: "LED", value: "Optional LED backlight version" },
96
- ],
97
- features: ["Wearable right-ear mount", "Tinted green acrylic lens", "Optional LED light", "Adjustable head strap"],
98
- shippingInfo: "Padded box. Nationwide.",
99
- returnPolicy: "10-day returns.",
100
- condition: "new",
101
- insurance: false,
102
- shippingPaidBy: "seller",
103
- isAuction: false,
104
- isPreOrder: false,
105
- avgRating: 4.6,
106
- reviewCount: 47,
107
- createdAt: daysAgo(50),
108
- updatedAt: daysAgo(3),
109
- },
110
- {
111
- id: "product-cp-onepiece-straw-hat-replica-cp-3",
112
- title: "One Piece Luffy Straw Hat — Official Wearable Replica",
113
- description: "<p>Official Bandai-licensed wearable Luffy Straw Hat replica from One Piece. Woven natural straw with red band detail. One size fits most adults. The iconic accessory that defines the series — perfect for conventions, photoshoots, and display. Comes in official branded bag.</p>",
114
- slug: "product-one-piece-luffy-straw-hat-official-wearable",
115
- category: "category-cosplay-props",
116
- subcategory: "Hats & Accessories",
117
- brand: "One Piece",
118
- price: 1299,
119
- currency: _CURRENCY,
120
- stockQuantity: 40,
121
- availableQuantity: 37,
122
- mainImage: img("onepiece-straw-hat"),
123
- images: [img("onepiece-straw-hat"), img("onepiece-straw-hat-back")],
124
- status: "published",
125
- ...CP,
126
- featured: false,
127
- tags: ["one piece", "luffy", "straw hat", "cosplay", "wearable", "official", "bandai"],
128
- specifications: [
129
- { name: "Material", value: "Natural woven straw" },
130
- { name: "Size", value: "One size fits most" },
131
- { name: "Detail", value: "Red band" },
132
- { name: "License", value: "Bandai official" },
133
- ],
134
- features: ["Official Bandai license", "Natural woven straw", "Red band detail", "Convention ready"],
135
- shippingInfo: "Original branded bag. Nationwide.",
136
- returnPolicy: "10-day returns.",
137
- condition: "new",
138
- insurance: false,
139
- shippingPaidBy: "seller",
140
- isAuction: false,
141
- isPreOrder: false,
142
- avgRating: 4.7,
143
- reviewCount: 61,
144
- createdAt: daysAgo(45),
145
- updatedAt: daysAgo(4),
146
- },
147
- {
148
- id: "product-cp-mha-deku-gloves-replica-cp-4",
149
- title: "My Hero Academia — Deku Hero Costume Gloves (Knuckle Guards)",
150
- description: "<p>Deku's iconic hero costume gloves with knuckle reinforcement guards. Heavyweight polyester outer with neoprene padding on knuckles. Beta and Gamma costume variants available. Adjustable wrist strap. Great for cosplay photography or convention wear.</p>",
151
- slug: "product-mha-deku-hero-gloves-knuckle-guards-cosplay",
152
- category: "category-cosplay-props",
153
- subcategory: "Wearable Props",
154
- brand: "My Hero Academia",
155
- price: 1499,
156
- currency: _CURRENCY,
157
- stockQuantity: 28,
158
- availableQuantity: 25,
159
- mainImage: img("mha-deku-gloves"),
160
- images: [img("mha-deku-gloves"), img("mha-deku-gloves-detail")],
161
- status: "published",
162
- ...CP,
163
- featured: false,
164
- tags: ["my hero academia", "deku", "midoriya", "gloves", "cosplay", "hero costume"],
165
- specifications: [
166
- { name: "Material", value: "Polyester + neoprene knuckle pad" },
167
- { name: "Variants", value: "Beta and Gamma costume" },
168
- { name: "Sizing", value: "S/M/L/XL" },
169
- ],
170
- features: ["Neoprene knuckle guards", "Beta/Gamma variants", "Adjustable wrist strap", "Photography quality"],
171
- shippingInfo: "Padded envelope. Nationwide.",
172
- returnPolicy: "10-day returns.",
173
- condition: "new",
174
- insurance: false,
175
- shippingPaidBy: "seller",
176
- isAuction: false,
177
- isPreOrder: false,
178
- avgRating: 4.5,
179
- reviewCount: 29,
180
- createdAt: daysAgo(40),
181
- updatedAt: daysAgo(5),
182
- },
183
- {
184
- id: "product-cp-demon-slayer-nichirin-blade-cp-5",
185
- title: "Demon Slayer — Tanjiro Nichirin Blade Cosplay Prop",
186
- description: "<p>Tanjiro's iconic Nichirin Blade cosplay prop — black turning red gradient blade in EVA foam safe material. 90 cm total length including handle. Detailed tsuba guard, handle wrapping, and flame gradient tip. Safe for convention carry. Includes blade bag for transport.</p>",
187
- slug: "product-demon-slayer-tanjiro-nichirin-blade-eva-foam",
188
- category: "category-cosplay-props",
189
- subcategory: "Prop Weapons",
190
- brand: "Demon Slayer",
191
- price: 2499,
192
- currency: _CURRENCY,
193
- stockQuantity: 22,
194
- availableQuantity: 19,
195
- mainImage: img("demonslayer-nichirin-blade"),
196
- images: [img("demonslayer-nichirin-blade"), img("demonslayer-nichirin-handle")],
197
- status: "published",
198
- ...CP,
199
- featured: true,
200
- tags: ["demon slayer", "tanjiro", "nichirin blade", "cosplay", "prop", "eva foam", "sword"],
201
- specifications: [
202
- { name: "Material", value: "EVA foam (convention safe)" },
203
- { name: "Total Length", value: "90 cm" },
204
- { name: "Blade Gradient", value: "Black to red flame tip" },
205
- ],
206
- features: ["EVA foam convention-safe", "90 cm full length", "Flame gradient blade", "Blade transport bag"],
207
- shippingInfo: "Long prop bag. Nationwide.",
208
- returnPolicy: "10-day returns.",
209
- condition: "new",
210
- insurance: false,
211
- shippingPaidBy: "seller",
212
- isAuction: false,
213
- isPreOrder: false,
214
- isPromoted: true,
215
- promotionEndDate: daysAhead(20),
216
- avgRating: 4.7,
217
- reviewCount: 38,
218
- createdAt: daysAgo(35),
219
- updatedAt: daysAgo(3),
220
- },
221
- // ── TCG & CARD ACCESSORIES (5) ───────────────────────────────────────────
222
- {
223
- id: "product-cp-ultra-pro-card-sleeves-clear-cp-6",
224
- title: "Ultra PRO Platinum Card Sleeves — Perfect Clear (100 pack)",
225
- description: "<p>Ultra PRO Platinum series card sleeves — 100 pack of perfect clear standard size. Acid-free, archival quality. Ideal for grading candidates and tournament play. 66mm × 91mm standard TCG size. UV protection coating. No-stick interior, smooth shuffle.</p>",
226
- slug: "product-ultra-pro-platinum-card-sleeves-clear-100pack",
227
- category: "category-tcg-accessories",
228
- subcategory: "Card Sleeves",
229
- brand: "Ultra PRO",
230
- price: 499,
231
- currency: _CURRENCY,
232
- stockQuantity: 100,
233
- availableQuantity: 97,
234
- mainImage: img("ultrapro-platinum-sleeves"),
235
- images: [img("ultrapro-platinum-sleeves")],
236
- status: "published",
237
- ...CP,
238
- featured: false,
239
- tags: ["ultra pro", "card sleeves", "platinum", "clear", "100 pack", "tcg", "pokemon"],
240
- specifications: [
241
- { name: "Size", value: "66 × 91 mm (Standard)" },
242
- { name: "Quantity", value: "100 sleeves" },
243
- { name: "Material", value: "Acid-free archival" },
244
- ],
245
- features: ["Acid-free archival", "UV protection", "Smooth no-stick interior", "Tournament legal"],
246
- shippingInfo: "Padded envelope. Nationwide.",
247
- returnPolicy: "10-day returns.",
248
- condition: "new",
249
- insurance: false,
250
- shippingPaidBy: "seller",
251
- isAuction: false,
252
- isPreOrder: false,
253
- avgRating: 4.8,
254
- reviewCount: 124,
255
- createdAt: daysAgo(80),
256
- updatedAt: daysAgo(1),
257
- },
258
- {
259
- id: "product-cp-bcw-toploader-card-holder-cp-7",
260
- title: "BCW Toploaders — 3 × 4 Rigid Card Holders (25 pack)",
261
- description: "<p>BCW 3×4 inch rigid toploaders — industry-standard hard card protectors for grading candidates and display. 35pt thickness for standard cards. Each toploader has a sliding lip for safe card insert. Ideal for PSA/BGS grading submissions or display.</p>",
262
- slug: "product-bcw-3x4-toploader-card-holders-25pack",
263
- category: "category-tcg-accessories",
264
- subcategory: "Toploaders",
265
- brand: "BCW",
266
- price: 349,
267
- currency: _CURRENCY,
268
- stockQuantity: 80,
269
- availableQuantity: 77,
270
- mainImage: img("bcw-toploader-25pack"),
271
- images: [img("bcw-toploader-25pack")],
272
- status: "published",
273
- ...CP,
274
- featured: false,
275
- tags: ["bcw", "toploader", "card holder", "3x4", "25 pack", "grading", "psa"],
276
- specifications: [
277
- { name: "Size", value: "3 × 4 inches" },
278
- { name: "Thickness", value: "35pt" },
279
- { name: "Quantity", value: "25 per pack" },
280
- ],
281
- features: ["Industry standard 35pt", "Sliding lip design", "PSA/BGS submission ready", "Rigid hard case"],
282
- shippingInfo: "Padded envelope. Nationwide.",
283
- returnPolicy: "10-day returns.",
284
- condition: "new",
285
- insurance: false,
286
- shippingPaidBy: "seller",
287
- isAuction: false,
288
- isPreOrder: false,
289
- avgRating: 4.7,
290
- reviewCount: 89,
291
- createdAt: daysAgo(75),
292
- updatedAt: daysAgo(2),
293
- },
294
- {
295
- id: "product-cp-pokemon-binder-9pocket-cp-8",
296
- title: "Pokemon TCG — 9-Pocket Premium Binder (Pikachu Edition, 360 cards)",
297
- description: "<p>Premium 360-card Pikachu-themed 9-pocket binder for Pokemon TCG collection storage. Clear PVC pockets with side-loading to prevent card fall. Hardcover with Pikachu artwork on front and back. Spine label window. Includes 40 double-sided pages = 360 card capacity.</p>",
298
- slug: "product-pokemon-tcg-9pocket-binder-pikachu-360cards",
299
- category: "category-tcg-accessories",
300
- subcategory: "Binders",
301
- brand: "Pokemon",
302
- price: 1299,
303
- currency: _CURRENCY,
304
- stockQuantity: 45,
305
- availableQuantity: 42,
306
- mainImage: img("pokemon-binder-pikachu"),
307
- images: [img("pokemon-binder-pikachu"), img("pokemon-binder-inside")],
308
- status: "published",
309
- ...CP,
310
- featured: true,
311
- tags: ["pokemon", "binder", "9 pocket", "pikachu", "360 cards", "tcg", "collection"],
312
- specifications: [
313
- { name: "Capacity", value: "360 cards (40 double-sided pages)" },
314
- { name: "Pocket Config", value: "9-pocket side-loading" },
315
- { name: "Artwork", value: "Pikachu front and back" },
316
- ],
317
- features: ["360 card capacity", "Side-loading pockets", "Hardcover protection", "Pikachu themed artwork"],
318
- shippingInfo: "Padded packaging. Nationwide.",
319
- returnPolicy: "10-day returns.",
320
- condition: "new",
321
- insurance: false,
322
- shippingPaidBy: "seller",
323
- isAuction: false,
324
- isPreOrder: false,
325
- isPromoted: true,
326
- promotionEndDate: daysAhead(25),
327
- avgRating: 4.8,
328
- reviewCount: 67,
329
- createdAt: daysAgo(55),
330
- updatedAt: daysAgo(3),
331
- },
332
- {
333
- id: "product-cp-display-case-acrylic-single-cp-9",
334
- title: "Acrylic Display Case — Single Card UV-Block (Graded/Raw)",
335
- description: "<p>Premium UV-blocking acrylic single card display case — for raw or graded cards (PSA slab compatible). Magnetic sealed lid with foam insert. UV-protection acrylic blocks 98% of UV rays. Perfect for displaying your most prized card on a desk or shelf.</p>",
336
- slug: "product-acrylic-display-case-single-card-uv-block",
337
- category: "category-tcg-accessories",
338
- subcategory: "Display Cases",
339
- brand: "Generic",
340
- price: 799,
341
- currency: _CURRENCY,
342
- stockQuantity: 60,
343
- availableQuantity: 55,
344
- mainImage: img("acrylic-card-display"),
345
- images: [img("acrylic-card-display"), img("acrylic-card-display-open")],
346
- status: "published",
347
- ...CP,
348
- featured: false,
349
- tags: ["acrylic", "display case", "card", "uv block", "psa", "graded", "raw"],
350
- specifications: [
351
- { name: "UV Protection", value: "98% UV blocking" },
352
- { name: "Closure", value: "Magnetic sealed lid" },
353
- { name: "Compatibility", value: "Raw cards + PSA slabs" },
354
- ],
355
- features: ["98% UV blocking", "Magnetic sealed closure", "PSA slab compatible", "Foam insert"],
356
- shippingInfo: "Bubble wrapped. Nationwide.",
357
- returnPolicy: "10-day returns.",
358
- condition: "new",
359
- insurance: false,
360
- shippingPaidBy: "seller",
361
- isAuction: false,
362
- isPreOrder: false,
363
- avgRating: 4.6,
364
- reviewCount: 43,
365
- createdAt: daysAgo(65),
366
- updatedAt: daysAgo(4),
367
- },
368
- {
369
- id: "product-cp-card-grading-kit-bundle-cp-10",
370
- title: "Card Grading Submission Kit — Complete Bundle (PSA/BGS Ready)",
371
- description: "<p>Complete card grading submission kit for PSA, BGS, or CGC. Includes 20 toploaders, 50 card sleeves, 10 foam inserts, 20 packing bubbles, and step-by-step guide PDF. Everything you need to safely ship your most valuable cards for professional grading. Secure your investment correctly.</p>",
372
- slug: "product-card-grading-submission-kit-psa-bgs-ready",
373
- category: "category-tcg-accessories",
374
- subcategory: "Grading Supplies",
375
- brand: "Generic",
376
- price: 999,
377
- currency: _CURRENCY,
378
- stockQuantity: 40,
379
- availableQuantity: 38,
380
- mainImage: img("grading-kit-bundle"),
381
- images: [img("grading-kit-bundle"), img("grading-kit-contents")],
382
- status: "published",
383
- ...CP,
384
- featured: false,
385
- tags: ["grading", "psa", "bgs", "cgc", "submission kit", "toploaders", "card protection"],
386
- specifications: [
387
- { name: "Contents", value: "20 toploaders + 50 sleeves + 10 foam inserts + 20 bubbles + guide" },
388
- ],
389
- features: ["PSA/BGS/CGC compatible", "Complete kit", "Submission guide PDF", "Professional packing materials"],
390
- shippingInfo: "Padded envelope. Nationwide.",
391
- returnPolicy: "10-day returns.",
392
- condition: "new",
393
- insurance: false,
394
- shippingPaidBy: "seller",
395
- isAuction: false,
396
- isPreOrder: false,
397
- avgRating: 4.7,
398
- reviewCount: 55,
399
- createdAt: daysAgo(50),
400
- updatedAt: daysAgo(5),
401
- },
402
- // ── COLLECTOR DISPLAY (4) ────────────────────────────────────────────────
403
- {
404
- id: "product-cp-acrylic-figure-display-cp-11",
405
- title: "Acrylic Figure Display Case — 3-Tier Rotating (Dustproof)",
406
- description: "<p>Premium 3-tier rotating acrylic figure display case — holds up to 9 medium figures or 18 small nendoroids. Motorised 360° rotation (USB powered). Dust-proof clear acrylic panels. LED strip lighting inside each tier. Perfect for S.H.Figuarts, Nendoroids, and Funko Pops.</p>",
407
- slug: "product-acrylic-figure-display-3tier-rotating-led",
408
- category: "category-cosplay-props",
409
- subcategory: "Display Cases",
410
- brand: "Generic",
411
- price: 3999,
412
- currency: _CURRENCY,
413
- stockQuantity: 20,
414
- availableQuantity: 17,
415
- mainImage: img("figure-display-3tier"),
416
- images: [img("figure-display-3tier"), img("figure-display-led-on")],
417
- status: "published",
418
- ...CP,
419
- featured: true,
420
- tags: ["display case", "acrylic", "rotating", "led", "figure", "nendoroid", "figuarts"],
421
- specifications: [
422
- { name: "Tiers", value: "3" },
423
- { name: "Rotation", value: "360° motorised" },
424
- { name: "Power", value: "USB-powered" },
425
- { name: "Lighting", value: "LED strip per tier" },
426
- ],
427
- features: ["Motorised 360° rotation", "LED lighting per tier", "Dustproof acrylic", "Holds 9+ medium figures"],
428
- shippingInfo: "Padded rigid box. Nationwide.",
429
- returnPolicy: "10-day returns.",
430
- condition: "new",
431
- insurance: false,
432
- shippingPaidBy: "seller",
433
- isAuction: false,
434
- isPreOrder: false,
435
- isPromoted: true,
436
- promotionEndDate: daysAhead(20),
437
- avgRating: 4.7,
438
- reviewCount: 31,
439
- createdAt: daysAgo(45),
440
- updatedAt: daysAgo(4),
441
- },
442
- {
443
- id: "product-cp-funko-pop-protector-cp-12",
444
- title: "Funko Pop Protector — Hard Stack Premium (Standard Size, 10-pack)",
445
- description: "<p>Premium hard stack Funko Pop protectors — standard box size 10-pack. 0.5mm PET clear plastic, UV blocking. Tab-lock system that doesn't need tape. Fits all standard 6-inch Funko Pop boxes. Stack-compatible design. Protect your collection without opening boxes.</p>",
446
- slug: "product-funko-pop-hard-stack-protector-10pack-standard",
447
- category: "category-cosplay-props",
448
- subcategory: "Display Accessories",
449
- brand: "Generic",
450
- price: 899,
451
- currency: _CURRENCY,
452
- stockQuantity: 50,
453
- availableQuantity: 47,
454
- mainImage: img("funko-pop-protectors"),
455
- images: [img("funko-pop-protectors")],
456
- status: "published",
457
- ...CP,
458
- featured: false,
459
- tags: ["funko pop", "protector", "hard stack", "standard size", "10 pack", "uv blocking"],
460
- specifications: [
461
- { name: "Material", value: "0.5mm PET clear" },
462
- { name: "Quantity", value: "10 per pack" },
463
- { name: "Closure", value: "Tab-lock (no tape)" },
464
- { name: "Fits", value: "Standard 6-inch Funko boxes" },
465
- ],
466
- features: ["0.5mm thick PET", "UV blocking", "Tab-lock no tape", "Stack compatible"],
467
- shippingInfo: "Flat-pack envelope. Nationwide.",
468
- returnPolicy: "10-day returns.",
469
- condition: "new",
470
- insurance: false,
471
- shippingPaidBy: "seller",
472
- isAuction: false,
473
- isPreOrder: false,
474
- avgRating: 4.6,
475
- reviewCount: 78,
476
- createdAt: daysAgo(70),
477
- updatedAt: daysAgo(2),
478
- },
479
- {
480
- id: "product-cp-floating-shelves-collectibles-cp-13",
481
- title: "Floating Wall Shelf Set — Collector's Edition (3-shelf, Black)",
482
- description: "<p>Collectibles floating wall shelf set — 3 shelves in matte black finish. Each shelf holds up to 5kg. Adjustable LED strip channels on back. Perfect for anime figures, Funko Pops, LEGO sets, and car models. Heavy-duty wall anchors included. Easy 20-minute installation.</p>",
483
- slug: "product-floating-wall-shelves-collectors-3shelf-black",
484
- category: "category-cosplay-props",
485
- subcategory: "Display Furniture",
486
- brand: "Generic",
487
- price: 2499,
488
- currency: _CURRENCY,
489
- stockQuantity: 15,
490
- availableQuantity: 12,
491
- mainImage: img("floating-shelves-black"),
492
- images: [img("floating-shelves-black"), img("floating-shelves-installed")],
493
- status: "published",
494
- ...CP,
495
- featured: false,
496
- tags: ["floating shelves", "wall shelf", "collectibles", "display", "black", "3 shelf"],
497
- specifications: [
498
- { name: "Quantity", value: "3 shelves" },
499
- { name: "Finish", value: "Matte black" },
500
- { name: "Load", value: "5 kg per shelf" },
501
- { name: "LED", value: "Back channel for LED strip" },
502
- ],
503
- features: ["5kg load per shelf", "LED channel back", "Heavy-duty anchors", "20-minute install"],
504
- shippingInfo: "Boxed flat-pack. Nationwide.",
505
- returnPolicy: "10-day returns.",
506
- condition: "new",
507
- insurance: false,
508
- shippingPaidBy: "buyer",
509
- isAuction: false,
510
- isPreOrder: false,
511
- avgRating: 4.5,
512
- reviewCount: 22,
513
- createdAt: daysAgo(55),
514
- updatedAt: daysAgo(6),
515
- },
516
- {
517
- id: "product-cp-enamel-pin-set-anime-cp-14",
518
- title: "Anime Enamel Pin Set — 10-pack (Mixed Characters, Hard Enamel)",
519
- description: "<p>Collector's anime enamel pin set — 10 hard enamel pins featuring characters from Dragon Ball Z, Naruto, One Piece, and My Hero Academia. 2.5 cm average size, butterfly clutch backs. Perfect for jackets, bags, and display boards. Gold metal border on all pins. Gift-boxed.</p>",
520
- slug: "product-anime-enamel-pin-set-10pack-mixed-dbz-naruto",
521
- category: "category-cosplay-props",
522
- subcategory: "Enamel Pins",
523
- brand: "Generic",
524
- price: 999,
525
- currency: _CURRENCY,
526
- stockQuantity: 60,
527
- availableQuantity: 56,
528
- mainImage: img("anime-enamel-pins"),
529
- images: [img("anime-enamel-pins"), img("anime-enamel-pins-close")],
530
- status: "published",
531
- ...CP,
532
- featured: false,
533
- tags: ["enamel pins", "anime", "dbz", "naruto", "one piece", "mha", "10 pack", "hard enamel"],
534
- specifications: [
535
- { name: "Quantity", value: "10 pins" },
536
- { name: "Size", value: "~2.5 cm average" },
537
- { name: "Type", value: "Hard enamel, gold border" },
538
- { name: "Closure", value: "Butterfly clutch" },
539
- ],
540
- features: ["10 mixed character pins", "Hard enamel gold border", "Butterfly clutch backs", "Gift boxed"],
541
- shippingInfo: "Gift box, padded envelope. Nationwide.",
542
- returnPolicy: "10-day returns.",
543
- condition: "new",
544
- insurance: false,
545
- shippingPaidBy: "seller",
546
- isAuction: false,
547
- isPreOrder: false,
548
- avgRating: 4.7,
549
- reviewCount: 93,
550
- createdAt: daysAgo(40),
551
- updatedAt: daysAgo(3),
552
- },
553
- // ── AUCTION (1) ───────────────────────────────────────────────────────────
554
- {
555
- id: "auction-cp-signed-dbz-cell-game-art-cp-1",
556
- title: "AUCTION — Dragon Ball Z Cell Game Original Cel Art (Signed, 1992)",
557
- description: "<p>Original Dragon Ball Z animation cel from the Cell Game saga — frame #247 from episode 177. Hand-painted on acetate, mounted on original background watercolour. Authentication letter from Toei Animation licensed archives. Signed by the lead animator in Japanese. Framed in archival UV glass frame.</p>",
558
- slug: "auction-dbz-cell-game-original-cel-art-1992",
559
- category: "category-cosplay-props",
560
- subcategory: "Original Art",
561
- brand: "Dragon Ball Z",
562
- price: 0,
563
- currency: _CURRENCY,
564
- stockQuantity: 1,
565
- availableQuantity: 1,
566
- mainImage: img("dbz-cel-art-auction"),
567
- images: [img("dbz-cel-art-auction"), img("dbz-cel-art-frame"), img("dbz-cel-art-signature")],
568
- status: "published",
569
- ...CP,
570
- featured: true,
571
- tags: ["dragon ball z", "cel art", "original", "animation", "1992", "auction", "signed", "toei"],
572
- specifications: [
573
- { name: "Type", value: "Original animation cel on acetate" },
574
- { name: "Episode", value: "177 — Cell Game Saga, Frame #247" },
575
- { name: "Year", value: "1992" },
576
- { name: "Authentication", value: "Toei Animation licensed archives" },
577
- { name: "Signature", value: "Lead animator (Japanese)" },
578
- ],
579
- features: ["Original 1992 Toei cel", "Toei authentication letter", "Signed by lead animator", "UV archival glass frame"],
580
- shippingInfo: "White-glove framed art shipping. Insured nationwide.",
581
- returnPolicy: "No returns on auction wins.",
582
- condition: "used",
583
- insurance: true,
584
- insuranceCost: 1499,
585
- shippingPaidBy: "buyer",
586
- isAuction: true,
587
- auctionEndDate: daysAhead(14),
588
- startingBid: 14999,
589
- currentBid: 26000,
590
- bidCount: 8,
591
- reservePrice: 30000,
592
- buyNowPrice: 74999,
593
- minBidIncrement: 2000,
594
- autoExtendable: true,
595
- auctionExtensionMinutes: 10,
596
- auctionOriginalEndDate: daysAhead(14),
597
- auctionShippingPaidBy: "winner",
598
- isPreOrder: false,
599
- isPromoted: true,
600
- promotionEndDate: daysAhead(14),
601
- avgRating: 0,
602
- reviewCount: 0,
603
- createdAt: daysAgo(2),
604
- updatedAt: daysAgo(0),
605
- },
606
- // ── PRE-ORDER (1) ─────────────────────────────────────────────────────────
607
- {
608
- id: "preorder-cp-anime-india-expo-bundle-2026-cp-1",
609
- title: "PRE-ORDER — Anime India Expo 2026 Collector Bundle (Limited)",
610
- description: "<p>Pre-order the exclusive Anime India Expo 2026 Collector Bundle — includes 3 signed art prints, 5 exclusive convention enamel pins, 1 limited-run figure (character TBA at expo), and VIP expo pass. India's biggest anime convention returns in Feb 2026. Only 200 bundles available India-wide.</p>",
611
- slug: "preorder-anime-india-expo-2026-collector-bundle",
612
- category: "category-cosplay-props",
613
- subcategory: "Convention Bundles",
614
- brand: "Generic",
615
- price: 5999,
616
- currency: _CURRENCY,
617
- stockQuantity: 200,
618
- availableQuantity: 176,
619
- mainImage: img("anime-expo-2026-bundle"),
620
- images: [img("anime-expo-2026-bundle")],
621
- status: "published",
622
- ...CP,
623
- featured: true,
624
- tags: ["anime", "expo", "india", "2026", "convention", "pre-order", "bundle", "vip"],
625
- specifications: [
626
- { name: "Contents", value: "3 signed prints + 5 pins + 1 figure + VIP pass" },
627
- { name: "Total Available", value: "200 bundles" },
628
- { name: "Date", value: "Feb 2026" },
629
- ],
630
- features: ["VIP expo pass", "3 signed art prints", "5 exclusive pins", "Limited figure (TBA)"],
631
- shippingInfo: "Pickup at expo or shipped post-event.",
632
- returnPolicy: "Non-refundable after booking. Transferable.",
633
- condition: "new",
634
- insurance: false,
635
- shippingPaidBy: "seller",
636
- isAuction: false,
637
- isPreOrder: true,
638
- preOrderDeliveryDate: daysAhead(270),
639
- preOrderProductionStatus: "upcoming",
640
- isPromoted: true,
641
- promotionEndDate: daysAhead(120),
642
- avgRating: 0,
643
- reviewCount: 0,
644
- createdAt: daysAgo(8),
645
- updatedAt: daysAgo(1),
646
- },
647
- ];
@@ -1,7 +0,0 @@
1
- /**
2
- * Hot Wheels — Products Seed Data
3
- * 30 general · 3 auctions · 2 pre-orders = 35 total
4
- * Seller: Speed King Diecast (store-speed-king-diecast)
5
- */
6
- import type { ProductDocument } from "../features/products/schemas";
7
- export declare const hotWheelsProductsSeedData: Partial<ProductDocument>[];