@mohasinac/appkit 2.6.3 → 2.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (606) 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/orders/refund-copy.d.ts +36 -0
  190. package/dist/_internal/shared/features/orders/refund-copy.js +40 -0
  191. package/dist/_internal/shared/features/orders/schema.d.ts +4 -4
  192. package/dist/_internal/shared/features/products/schema.d.ts +8 -8
  193. package/dist/_internal/shared/listing-types/_registry.d.ts +27 -0
  194. package/dist/_internal/shared/listing-types/_registry.js +8 -0
  195. package/dist/_internal/shared/listing-types/action-tracker.d.ts +41 -0
  196. package/dist/_internal/shared/listing-types/action-tracker.js +70 -0
  197. package/dist/_internal/shared/listing-types/capabilities.js +25 -0
  198. package/dist/_internal/shared/listing-types/cart-shipping.d.ts +37 -0
  199. package/dist/_internal/shared/listing-types/cart-shipping.js +46 -0
  200. package/dist/_internal/shared/listing-types/classified/config.d.ts +7 -0
  201. package/dist/_internal/shared/listing-types/classified/config.js +8 -0
  202. package/dist/_internal/shared/listing-types/classified/ctas.d.ts +1 -0
  203. package/dist/_internal/shared/listing-types/classified/ctas.js +3 -0
  204. package/dist/_internal/shared/listing-types/classified/og.d.ts +1 -0
  205. package/dist/_internal/shared/listing-types/classified/og.js +1 -0
  206. package/dist/_internal/shared/listing-types/classified/schema.d.ts +1 -0
  207. package/dist/_internal/shared/listing-types/classified/schema.js +1 -0
  208. package/dist/_internal/shared/listing-types/classified/seed-factory.d.ts +1 -0
  209. package/dist/_internal/shared/listing-types/classified/seed-factory.js +1 -0
  210. package/dist/_internal/shared/listing-types/digital-code/config.d.ts +7 -0
  211. package/dist/_internal/shared/listing-types/digital-code/config.js +8 -0
  212. package/dist/_internal/shared/listing-types/digital-code/ctas.d.ts +1 -0
  213. package/dist/_internal/shared/listing-types/digital-code/ctas.js +3 -0
  214. package/dist/_internal/shared/listing-types/digital-code/og.d.ts +1 -0
  215. package/dist/_internal/shared/listing-types/digital-code/og.js +1 -0
  216. package/dist/_internal/shared/listing-types/digital-code/schema.d.ts +1 -0
  217. package/dist/_internal/shared/listing-types/digital-code/schema.js +1 -0
  218. package/dist/_internal/shared/listing-types/digital-code/seed-factory.d.ts +1 -0
  219. package/dist/_internal/shared/listing-types/digital-code/seed-factory.js +1 -0
  220. package/dist/_internal/shared/listing-types/feature-flags.d.ts +34 -0
  221. package/dist/_internal/shared/listing-types/feature-flags.js +45 -0
  222. package/dist/_internal/shared/listing-types/live/config.d.ts +7 -0
  223. package/dist/_internal/shared/listing-types/live/config.js +8 -0
  224. package/dist/_internal/shared/listing-types/live/ctas.d.ts +1 -0
  225. package/dist/_internal/shared/listing-types/live/ctas.js +3 -0
  226. package/dist/_internal/shared/listing-types/live/og.d.ts +1 -0
  227. package/dist/_internal/shared/listing-types/live/og.js +1 -0
  228. package/dist/_internal/shared/listing-types/live/schema.d.ts +1 -0
  229. package/dist/_internal/shared/listing-types/live/schema.js +1 -0
  230. package/dist/_internal/shared/listing-types/live/seed-factory.d.ts +1 -0
  231. package/dist/_internal/shared/listing-types/live/seed-factory.js +1 -0
  232. package/dist/_internal/shared/media/limits.js +8 -0
  233. package/dist/client.d.ts +6 -1
  234. package/dist/client.js +14 -1
  235. package/dist/configs/next.js +7 -0
  236. package/dist/constants/api-endpoints.d.ts +6 -0
  237. package/dist/constants/api-endpoints.js +4 -0
  238. package/dist/core/hooks/useSyncManager.js +13 -1
  239. package/dist/core/unit-of-work.d.ts +1 -1
  240. package/dist/core/unit-of-work.js +2 -2
  241. package/dist/features/account/actions/address-actions.d.ts +1 -1
  242. package/dist/features/account/actions/address-actions.js +15 -7
  243. package/dist/features/account/schemas/firestore.d.ts +8 -43
  244. package/dist/features/account/schemas/firestore.js +8 -54
  245. package/dist/features/account/schemas/index.d.ts +6 -6
  246. package/dist/features/account/server.d.ts +1 -1
  247. package/dist/features/account/server.js +3 -1
  248. package/dist/features/addresses/index.d.ts +2 -0
  249. package/dist/features/addresses/index.js +2 -0
  250. package/dist/features/addresses/repository/addresses.repository.d.ts +29 -0
  251. package/dist/features/addresses/repository/addresses.repository.js +157 -0
  252. package/dist/features/addresses/schemas/firestore.d.ts +53 -0
  253. package/dist/features/addresses/schemas/firestore.js +68 -0
  254. package/dist/features/{bundles → addresses}/schemas/index.d.ts +0 -1
  255. package/dist/features/{bundles → addresses}/schemas/index.js +0 -1
  256. package/dist/features/addresses/server.d.ts +2 -0
  257. package/dist/features/addresses/server.js +2 -0
  258. package/dist/features/admin/components/AdminAllEventEntriesView.js +4 -3
  259. package/dist/features/admin/components/AdminBidsView.js +4 -3
  260. package/dist/features/admin/components/AdminBlogView.js +8 -3
  261. package/dist/features/admin/components/AdminBundleEditorView.d.ts +9 -0
  262. package/dist/features/admin/components/AdminBundleEditorView.js +209 -0
  263. package/dist/features/admin/components/AdminBundlesView.d.ts +9 -0
  264. package/dist/features/admin/components/AdminBundlesView.js +59 -0
  265. package/dist/features/admin/components/AdminCartsView.js +13 -3
  266. package/dist/features/admin/components/AdminContactView.js +4 -3
  267. package/dist/features/admin/components/AdminCouponsView.js +32 -13
  268. package/dist/features/admin/components/AdminNewsletterView.js +4 -3
  269. package/dist/features/admin/components/AdminOrdersView.js +15 -7
  270. package/dist/features/admin/components/AdminPayoutsView.js +4 -3
  271. package/dist/features/admin/components/AdminProductsView.js +6 -5
  272. package/dist/features/admin/components/AdminReviewsView.js +5 -4
  273. package/dist/features/admin/components/AdminStoresView.js +4 -3
  274. package/dist/features/admin/components/AdminUsersView.js +15 -5
  275. package/dist/features/admin/components/AdminWishlistsView.js +10 -1
  276. package/dist/features/admin/components/DataTable.d.ts +5 -1
  277. package/dist/features/admin/components/DataTable.js +24 -20
  278. package/dist/features/admin/components/index.d.ts +4 -0
  279. package/dist/features/admin/components/index.js +3 -0
  280. package/dist/features/admin/constants/filter-tabs.d.ts +401 -0
  281. package/dist/features/admin/constants/filter-tabs.js +200 -0
  282. package/dist/features/admin/hooks/useAdminListingData.d.ts +1 -0
  283. package/dist/features/admin/hooks/useAdminListingData.js +1 -0
  284. package/dist/features/admin/schemas/firestore.d.ts +15 -0
  285. package/dist/features/admin/schemas/firestore.js +18 -0
  286. package/dist/features/admin/types/product.types.d.ts +2 -2
  287. package/dist/features/auctions/components/AuctionCard.d.ts +4 -1
  288. package/dist/features/auctions/components/AuctionCard.js +5 -3
  289. package/dist/features/auctions/components/AuctionDetailPageView.js +1 -1
  290. package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +2 -2
  291. package/dist/features/auctions/components/PlaceBidFormClient.js +12 -2
  292. package/dist/features/auctions/schemas/index.d.ts +2 -2
  293. package/dist/features/auth/index.d.ts +1 -0
  294. package/dist/features/auth/index.js +1 -0
  295. package/dist/features/auth/role-predicates.d.ts +16 -0
  296. package/dist/features/auth/role-predicates.js +15 -0
  297. package/dist/features/blog/components/BlogFeaturedCard.d.ts +4 -1
  298. package/dist/features/blog/components/BlogFeaturedCard.js +5 -3
  299. package/dist/features/cart/actions/cart-actions.d.ts +1 -0
  300. package/dist/features/cart/actions/cart-actions.js +16 -0
  301. package/dist/features/cart/components/CartView.d.ts +19 -1
  302. package/dist/features/cart/components/CartView.js +2 -2
  303. package/dist/features/cart/components/ShippingPicker.d.ts +13 -0
  304. package/dist/features/cart/components/ShippingPicker.js +48 -0
  305. package/dist/features/cart/components/index.d.ts +3 -1
  306. package/dist/features/cart/components/index.js +1 -0
  307. package/dist/features/cart/hooks/useCartCount.js +7 -1
  308. package/dist/features/cart/repository/cart.repository.d.ts +1 -0
  309. package/dist/features/cart/repository/cart.repository.js +35 -0
  310. package/dist/features/cart/schemas/firestore.d.ts +27 -2
  311. package/dist/features/categories/components/BundleAddToCartCta.d.ts +16 -0
  312. package/dist/features/categories/components/BundleAddToCartCta.js +54 -0
  313. package/dist/features/categories/components/BundleBuyNowCta.d.ts +8 -0
  314. package/dist/features/categories/components/BundleBuyNowCta.js +37 -0
  315. package/dist/features/categories/components/BundleDetailView.d.ts +22 -0
  316. package/dist/features/categories/components/BundleDetailView.js +31 -0
  317. package/dist/features/categories/components/BundleDynamicRuleEditor.d.ts +18 -0
  318. package/dist/features/categories/components/BundleDynamicRuleEditor.js +60 -0
  319. package/dist/features/categories/components/BundleItemsPicker.d.ts +26 -0
  320. package/dist/features/categories/components/BundleItemsPicker.js +135 -0
  321. package/dist/features/categories/components/BundlesListView.d.ts +13 -0
  322. package/dist/features/categories/components/BundlesListView.js +27 -0
  323. package/dist/features/categories/components/index.d.ts +12 -0
  324. package/dist/features/categories/components/index.js +9 -0
  325. package/dist/features/checkout/actions/checkout-actions.js +10 -3
  326. package/dist/features/events/components/AdminEventEditorView.js +108 -2
  327. package/dist/features/events/components/AdminEventsView.js +16 -4
  328. package/dist/features/events/components/EventCard.d.ts +4 -1
  329. package/dist/features/events/components/EventCard.js +7 -3
  330. package/dist/features/events/components/EventRaffleWinnerView.d.ts +21 -0
  331. package/dist/features/events/components/EventRaffleWinnerView.js +18 -0
  332. package/dist/features/events/components/SpinWheelView.d.ts +27 -0
  333. package/dist/features/events/components/SpinWheelView.js +64 -0
  334. package/dist/features/events/components/index.d.ts +4 -0
  335. package/dist/features/events/components/index.js +2 -0
  336. package/dist/features/events/schemas/firestore.d.ts +27 -1
  337. package/dist/features/events/schemas/firestore.js +7 -0
  338. package/dist/features/events/types/index.d.ts +27 -1
  339. package/dist/features/homepage/components/FeaturedBundlesSection.d.ts +16 -0
  340. package/dist/features/homepage/components/FeaturedBundlesSection.js +24 -0
  341. package/dist/features/homepage/components/MarketplaceHomepageView.js +4 -1
  342. package/dist/features/homepage/components/WhatsAppCommunitySection.js +2 -2
  343. package/dist/features/homepage/lib/section-renderer.d.ts +2 -0
  344. package/dist/features/homepage/lib/section-renderer.js +5 -5
  345. package/dist/features/layout/NavbarLayout.d.ts +3 -1
  346. package/dist/features/layout/NavbarLayout.js +32 -3
  347. package/dist/features/layout/TitleBarLayout.d.ts +6 -3
  348. package/dist/features/layout/TitleBarLayout.js +22 -7
  349. package/dist/features/media/upload/MediaUploadField.d.ts +15 -1
  350. package/dist/features/media/upload/MediaUploadField.js +22 -1
  351. package/dist/features/orders/components/MarketplaceOrderCard.js +4 -2
  352. package/dist/features/orders/components/OrderSiblingPayments.d.ts +8 -0
  353. package/dist/features/orders/components/OrderSiblingPayments.js +16 -0
  354. package/dist/features/orders/components/RefundHistoryTable.d.ts +6 -0
  355. package/dist/features/orders/components/RefundHistoryTable.js +23 -0
  356. package/dist/features/orders/components/RefundRequestView.d.ts +8 -0
  357. package/dist/features/orders/components/RefundRequestView.js +42 -0
  358. package/dist/features/orders/components/index.d.ts +6 -0
  359. package/dist/features/orders/components/index.js +3 -0
  360. package/dist/features/orders/index.d.ts +1 -0
  361. package/dist/features/orders/index.js +2 -0
  362. package/dist/features/orders/repository/orders.repository.d.ts +20 -1
  363. package/dist/features/orders/repository/orders.repository.js +30 -1
  364. package/dist/features/orders/schemas/firestore.d.ts +63 -13
  365. package/dist/features/orders/schemas/firestore.js +5 -5
  366. package/dist/features/orders/schemas/index.d.ts +4 -4
  367. package/dist/features/orders/types/index.d.ts +12 -2
  368. package/dist/features/orders/utils/bundle-grouping.d.ts +48 -0
  369. package/dist/features/orders/utils/bundle-grouping.js +54 -0
  370. package/dist/features/orders/utils/order-splitter.d.ts +9 -10
  371. package/dist/features/orders/utils/order-splitter.js +24 -30
  372. package/dist/features/payments/repository/payout.repository.d.ts +17 -1
  373. package/dist/features/payments/repository/payout.repository.js +47 -0
  374. package/dist/features/payments/schemas/firestore.d.ts +26 -0
  375. package/dist/features/pre-orders/components/PreorderCard.d.ts +4 -1
  376. package/dist/features/pre-orders/components/PreorderCard.js +8 -6
  377. package/dist/features/products/actions/product-actions.d.ts +1 -1
  378. package/dist/features/products/actions/product-actions.js +1 -1
  379. package/dist/features/products/components/CompareOverlay.d.ts +2 -2
  380. package/dist/features/products/components/CompareOverlay.js +4 -4
  381. package/dist/features/products/components/InteractiveProductCard.js +7 -12
  382. package/dist/features/products/components/NonRefundableConsentModal.d.ts +1 -1
  383. package/dist/features/products/components/NonRefundableConsentModal.js +0 -10
  384. package/dist/features/products/components/ProductGrid.js +28 -12
  385. package/dist/features/products/components/ShowGroupSection.js +3 -3
  386. package/dist/features/products/components/SublistingCarouselSection.js +2 -2
  387. package/dist/features/products/components/index.d.ts +0 -4
  388. package/dist/features/products/components/index.js +5 -2
  389. package/dist/features/products/index.d.ts +1 -1
  390. package/dist/features/products/index.js +3 -1
  391. package/dist/features/products/repository/products.repository.js +4 -0
  392. package/dist/features/products/schemas/catalog-product.d.ts +70 -0
  393. package/dist/features/products/schemas/catalog-product.js +50 -0
  394. package/dist/features/products/schemas/firestore.d.ts +110 -2
  395. package/dist/features/products/schemas/firestore.js +30 -0
  396. package/dist/features/products/schemas/index.d.ts +8 -8
  397. package/dist/features/products/types/index.d.ts +1 -1
  398. package/dist/features/products/utils/listing-type.d.ts +9 -0
  399. package/dist/features/products/utils/listing-type.js +4 -0
  400. package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
  401. package/dist/features/promotions/actions/coupon-actions.js +1 -1
  402. package/dist/features/promotions/components/CouponCard.d.ts +28 -10
  403. package/dist/features/promotions/components/CouponCard.js +116 -14
  404. package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
  405. package/dist/features/promotions/repository/coupons.repository.d.ts +1 -1
  406. package/dist/features/reviews/schemas/index.d.ts +2 -2
  407. package/dist/features/search/schemas/index.d.ts +2 -2
  408. package/dist/features/search/types/index.d.ts +2 -2
  409. package/dist/features/seller/components/SellerAuctionsView.js +4 -5
  410. package/dist/features/seller/components/SellerBidsView.js +5 -13
  411. package/dist/features/seller/components/SellerCouponsView.js +31 -67
  412. package/dist/features/seller/components/SellerOffersView.js +4 -5
  413. package/dist/features/seller/components/SellerOrdersView.js +4 -5
  414. package/dist/features/seller/components/SellerPayoutsView.js +4 -5
  415. package/dist/features/seller/components/SellerProductsView.js +4 -8
  416. package/dist/features/seller/schemas/index.d.ts +2 -2
  417. package/dist/features/stores/actions/store-address-actions.d.ts +10 -6
  418. package/dist/features/stores/actions/store-address-actions.js +8 -7
  419. package/dist/features/stores/components/InteractiveStoreCard.js +3 -10
  420. package/dist/features/stores/components/StoreDetailLayoutView.js +20 -5
  421. package/dist/features/stores/schemas/firestore.d.ts +45 -38
  422. package/dist/features/stores/schemas/firestore.js +2 -49
  423. package/dist/features/stores/server.d.ts +0 -1
  424. package/dist/features/stores/server.js +2 -1
  425. package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -9
  426. package/dist/features/wishlist/hooks/useWishlistCount.js +67 -86
  427. package/dist/features/wishlist/types/index.d.ts +1 -1
  428. package/dist/index.d.ts +50 -9
  429. package/dist/index.js +57 -11
  430. package/dist/next/routing/route-map.d.ts +6 -0
  431. package/dist/next/routing/route-map.js +4 -0
  432. package/dist/providers/db-firebase/admin.d.ts +6 -2
  433. package/dist/providers/db-firebase/admin.js +23 -0
  434. package/dist/repositories/index.d.ts +1 -2
  435. package/dist/repositories/index.js +5 -2
  436. package/dist/security/authorization.d.ts +2 -1
  437. package/dist/security/authorization.js +3 -2
  438. package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
  439. package/dist/seed/bids-seed-data.d.ts +2 -2
  440. package/dist/seed/bids-seed-data.js +77 -2
  441. package/dist/seed/cart-seed-data.d.ts +10 -10
  442. package/dist/seed/cart-seed-data.js +15 -15
  443. package/dist/seed/events-seed-data.js +77 -0
  444. package/dist/seed/manifest.js +16 -8
  445. package/dist/seed/orders-seed-data.js +41 -2
  446. package/dist/seed/payouts-seed-data.js +18 -2
  447. package/dist/seed/stores-seed-data.js +55 -0
  448. package/dist/server-entry.d.ts +1 -0
  449. package/dist/server-entry.js +2 -0
  450. package/dist/server.d.ts +4 -0
  451. package/dist/server.js +8 -0
  452. package/dist/tailwind-utilities.css +1 -1
  453. package/dist/ui/components/FilterChipGroup.d.ts +39 -0
  454. package/dist/ui/components/FilterChipGroup.js +15 -0
  455. package/dist/ui/components/HorizontalScroller.js +32 -7
  456. package/dist/ui/components/HorizontalScroller.style.css +6 -0
  457. package/dist/ui/components/SiteLogo.js +1 -1
  458. package/dist/ui/index.d.ts +2 -0
  459. package/dist/ui/index.js +2 -0
  460. package/dist/utils/id-generators.d.ts +11 -0
  461. package/dist/utils/id-generators.js +16 -0
  462. package/package.json +1 -1
  463. package/dist/_internal/shared/features/bundles/config.d.ts +0 -6
  464. package/dist/_internal/shared/features/bundles/config.js +0 -6
  465. package/dist/_internal/shared/schema-versions.d.ts +0 -76
  466. package/dist/_internal/shared/schema-versions.js +0 -82
  467. package/dist/features/account/migrations.d.ts +0 -2
  468. package/dist/features/account/migrations.js +0 -10
  469. package/dist/features/admin/migrations.d.ts +0 -2
  470. package/dist/features/admin/migrations.js +0 -10
  471. package/dist/features/auctions/migrations.d.ts +0 -2
  472. package/dist/features/auctions/migrations.js +0 -10
  473. package/dist/features/auth/migrations.d.ts +0 -2
  474. package/dist/features/auth/migrations.js +0 -10
  475. package/dist/features/blog/migrations.d.ts +0 -2
  476. package/dist/features/blog/migrations.js +0 -10
  477. package/dist/features/brands/actions/brand-actions.d.ts +0 -2
  478. package/dist/features/brands/actions/brand-actions.js +0 -5
  479. package/dist/features/brands/index.d.ts +0 -3
  480. package/dist/features/brands/index.js +0 -3
  481. package/dist/features/brands/migrations.d.ts +0 -2
  482. package/dist/features/brands/migrations.js +0 -10
  483. package/dist/features/brands/repository/brands.repository.d.ts +0 -13
  484. package/dist/features/brands/repository/brands.repository.js +0 -60
  485. package/dist/features/brands/schemas/index.d.ts +0 -33
  486. package/dist/features/brands/schemas/index.js +0 -15
  487. package/dist/features/brands/server.d.ts +0 -7
  488. package/dist/features/brands/server.js +0 -7
  489. package/dist/features/bundles/components/AdminBundleEditorView.d.ts +0 -8
  490. package/dist/features/bundles/components/AdminBundleEditorView.js +0 -7
  491. package/dist/features/bundles/components/BundleDetailPageView.d.ts +0 -9
  492. package/dist/features/bundles/components/BundleDetailPageView.js +0 -45
  493. package/dist/features/bundles/components/BundleForm.d.ts +0 -12
  494. package/dist/features/bundles/components/BundleForm.js +0 -126
  495. package/dist/features/bundles/components/BundleItemsPicker.d.ts +0 -9
  496. package/dist/features/bundles/components/BundleItemsPicker.js +0 -77
  497. package/dist/features/bundles/components/BundlesByCategoryListing.d.ts +0 -6
  498. package/dist/features/bundles/components/BundlesByCategoryListing.js +0 -50
  499. package/dist/features/bundles/components/BundlesListingView.d.ts +0 -17
  500. package/dist/features/bundles/components/BundlesListingView.js +0 -50
  501. package/dist/features/bundles/components/FeaturedBundlesSection.d.ts +0 -5
  502. package/dist/features/bundles/components/FeaturedBundlesSection.js +0 -55
  503. package/dist/features/bundles/components/SellerBundleCreateView.d.ts +0 -8
  504. package/dist/features/bundles/components/SellerBundleCreateView.js +0 -7
  505. package/dist/features/bundles/components/SellerBundleEditView.d.ts +0 -9
  506. package/dist/features/bundles/components/SellerBundleEditView.js +0 -7
  507. package/dist/features/bundles/components/index.d.ts +0 -18
  508. package/dist/features/bundles/components/index.js +0 -9
  509. package/dist/features/bundles/constants/index.d.ts +0 -32
  510. package/dist/features/bundles/constants/index.js +0 -35
  511. package/dist/features/bundles/index.d.ts +0 -2
  512. package/dist/features/bundles/index.js +0 -2
  513. package/dist/features/bundles/migrations.d.ts +0 -2
  514. package/dist/features/bundles/migrations.js +0 -10
  515. package/dist/features/bundles/repository/bundles.repository.d.ts +0 -36
  516. package/dist/features/bundles/repository/bundles.repository.js +0 -148
  517. package/dist/features/bundles/repository/index.d.ts +0 -1
  518. package/dist/features/bundles/repository/index.js +0 -1
  519. package/dist/features/bundles/schemas/firestore.d.ts +0 -88
  520. package/dist/features/bundles/schemas/firestore.js +0 -29
  521. package/dist/features/bundles/schemas/zod.d.ts +0 -377
  522. package/dist/features/bundles/schemas/zod.js +0 -71
  523. package/dist/features/cart/migrations.d.ts +0 -2
  524. package/dist/features/cart/migrations.js +0 -10
  525. package/dist/features/categories/migrations.d.ts +0 -2
  526. package/dist/features/categories/migrations.js +0 -10
  527. package/dist/features/events/migrations.d.ts +0 -2
  528. package/dist/features/events/migrations.js +0 -10
  529. package/dist/features/faq/migrations.d.ts +0 -2
  530. package/dist/features/faq/migrations.js +0 -10
  531. package/dist/features/grouped/migrations.d.ts +0 -2
  532. package/dist/features/grouped/migrations.js +0 -10
  533. package/dist/features/history/migrations.d.ts +0 -2
  534. package/dist/features/history/migrations.js +0 -10
  535. package/dist/features/messages/migrations.d.ts +0 -2
  536. package/dist/features/messages/migrations.js +0 -10
  537. package/dist/features/orders/migrations.d.ts +0 -2
  538. package/dist/features/orders/migrations.js +0 -10
  539. package/dist/features/payments/migrations.d.ts +0 -2
  540. package/dist/features/payments/migrations.js +0 -10
  541. package/dist/features/products/migrations.d.ts +0 -2
  542. package/dist/features/products/migrations.js +0 -10
  543. package/dist/features/products/repository/sublisting-categories.repository.d.ts +0 -16
  544. package/dist/features/products/repository/sublisting-categories.repository.js +0 -126
  545. package/dist/features/products/schemas/sublisting-categories.d.ts +0 -45
  546. package/dist/features/products/schemas/sublisting-categories.js +0 -16
  547. package/dist/features/promotions/migrations.d.ts +0 -2
  548. package/dist/features/promotions/migrations.js +0 -10
  549. package/dist/features/reviews/migrations.d.ts +0 -2
  550. package/dist/features/reviews/migrations.js +0 -10
  551. package/dist/features/scams/migrations.d.ts +0 -2
  552. package/dist/features/scams/migrations.js +0 -10
  553. package/dist/features/seller/migrations.d.ts +0 -2
  554. package/dist/features/seller/migrations.js +0 -10
  555. package/dist/features/stores/migrations.d.ts +0 -2
  556. package/dist/features/stores/migrations.js +0 -10
  557. package/dist/features/sublisting/migrations.d.ts +0 -2
  558. package/dist/features/sublisting/migrations.js +0 -10
  559. package/dist/features/sublisting/schemas/firestore.d.ts +0 -32
  560. package/dist/features/sublisting/schemas/firestore.js +0 -19
  561. package/dist/features/support/migrations.d.ts +0 -2
  562. package/dist/features/support/migrations.js +0 -10
  563. package/dist/features/wishlist/migrations.d.ts +0 -2
  564. package/dist/features/wishlist/migrations.js +0 -10
  565. package/dist/seed/_bundle-constants.d.ts +0 -14
  566. package/dist/seed/_bundle-constants.js +0 -14
  567. package/dist/seed/anime-figures-seed-data.d.ts +0 -8
  568. package/dist/seed/anime-figures-seed-data.js +0 -1033
  569. package/dist/seed/beyblade-seed-data.d.ts +0 -7
  570. package/dist/seed/beyblade-seed-data.js +0 -1129
  571. package/dist/seed/brands-seed-data.d.ts +0 -7
  572. package/dist/seed/brands-seed-data.js +0 -410
  573. package/dist/seed/bundles-seed-data.d.ts +0 -13
  574. package/dist/seed/bundles-seed-data.js +0 -229
  575. package/dist/seed/cosplay-accessories-seed-data.d.ts +0 -8
  576. package/dist/seed/cosplay-accessories-seed-data.js +0 -647
  577. package/dist/seed/hot-wheels-seed-data.d.ts +0 -7
  578. package/dist/seed/hot-wheels-seed-data.js +0 -1612
  579. package/dist/seed/letitrip-official-seed-data.d.ts +0 -8
  580. package/dist/seed/letitrip-official-seed-data.js +0 -399
  581. package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +0 -8
  582. package/dist/seed/pokemon-carousel-slides-seed-data.js +0 -322
  583. package/dist/seed/pokemon-categories-seed-data.d.ts +0 -24
  584. package/dist/seed/pokemon-categories-seed-data.js +0 -547
  585. package/dist/seed/pokemon-coupons-seed-data.d.ts +0 -6
  586. package/dist/seed/pokemon-coupons-seed-data.js +0 -465
  587. package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +0 -7
  588. package/dist/seed/pokemon-homepage-sections-seed-data.js +0 -241
  589. package/dist/seed/pokemon-products-seed-data.d.ts +0 -9
  590. package/dist/seed/pokemon-products-seed-data.js +0 -1791
  591. package/dist/seed/pokemon-seed-bundle.d.ts +0 -47
  592. package/dist/seed/pokemon-seed-bundle.js +0 -71
  593. package/dist/seed/pokemon-stores-seed-data.d.ts +0 -6
  594. package/dist/seed/pokemon-stores-seed-data.js +0 -179
  595. package/dist/seed/pokemon-users-seed-data.d.ts +0 -6
  596. package/dist/seed/pokemon-users-seed-data.js +0 -521
  597. package/dist/seed/products-seed-data.d.ts +0 -6
  598. package/dist/seed/products-seed-data.js +0 -2530
  599. package/dist/seed/retro-gaming-seed-data.d.ts +0 -8
  600. package/dist/seed/retro-gaming-seed-data.js +0 -801
  601. package/dist/seed/server.d.ts +0 -2
  602. package/dist/seed/server.js +0 -7
  603. package/dist/seed/sublisting-categories-seed-data.d.ts +0 -7
  604. package/dist/seed/sublisting-categories-seed-data.js +0 -159
  605. package/dist/seed/transformers-seed-data.d.ts +0 -7
  606. package/dist/seed/transformers-seed-data.js +0 -530
@@ -1,1033 +0,0 @@
1
- /**
2
- * Anime Figures — Products Seed Data
3
- * Dragon Ball Z · Naruto · One Piece · My Hero Academia
4
- * 22 general · 2 auctions · 2 pre-orders = 26 total
5
- * Seller: Anime Vault India (store-anime-vault-india)
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 AV = {
13
- storeId: "store-anime-vault-india",
14
- storeName: "Anime Vault India",
15
- };
16
- const AF_IMGS = [
17
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Nendoroid.jpg?width=640",
18
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Anime_figure.jpg?width=640",
19
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Action_figure_collection.jpg?width=640",
20
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Collectible_figurine.jpg?width=640",
21
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Anime_merchandise.jpg?width=640",
22
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Figurine.jpg?width=640",
23
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Plastic_figure.jpg?width=640",
24
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Dragon_Ball_figure.jpg?width=640",
25
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/Nendoroid_figure.jpg?width=640",
26
- "https://commons.wikimedia.org/wiki/Special:Redirect/file/PVC_anime_figure.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 AF_IMGS[h % AF_IMGS.length];
33
- };
34
- export const animeFiguresSeedData = [
35
- // ── DRAGON BALL Z (8) ────────────────────────────────────────────────────
36
- {
37
- id: "product-av-dbz-goku-ultra-instinct-av-1",
38
- title: "Dragon Ball Z — Goku Ultra Instinct S.H.Figuarts Figure",
39
- description: "<p>S.H.Figuarts Goku in Ultra Instinct form — the pinnacle of Saiyan power. Includes 3 face plates, multiple hand parts, Ki effect parts, and a Kamehameha wave effect. Highly articulated with 28 points of movement. Premium Bandai release with metallic silver hair coating.</p>",
40
- slug: "product-dbz-goku-ultra-instinct-shf-figuarts",
41
- category: "category-anime-dbz",
42
- subcategory: "S.H.Figuarts",
43
- brand: "Dragon Ball Z",
44
- price: 4999,
45
- currency: _CURRENCY,
46
- stockQuantity: 20,
47
- availableQuantity: 18,
48
- mainImage: img("dbz-goku-ultra-instinct"),
49
- images: [img("dbz-goku-ultra-instinct"), img("dbz-goku-ki-effect")],
50
- video: {
51
- url: "https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ForBiggerFun.mp4",
52
- thumbnailUrl: "https://commons.wikimedia.org/wiki/Special:Redirect/file/Nendoroid.jpg?width=640",
53
- duration: 15,
54
- },
55
- status: "published",
56
- ...AV,
57
- featured: true,
58
- tags: ["dragon ball z", "goku", "ultra instinct", "shf", "figuarts", "bandai"],
59
- specifications: [
60
- { name: "Series", value: "S.H.Figuarts" },
61
- { name: "Height", value: "~14 cm" },
62
- { name: "Articulation", value: "28 points" },
63
- { name: "Accessories", value: "3 face plates + Ki effects + Kamehameha" },
64
- ],
65
- features: ["28-point articulation", "Metallic silver hair", "Kamehameha effect", "3 swappable face plates"],
66
- shippingInfo: "Original Bandai box. Padded nationwide delivery.",
67
- returnPolicy: "10-day returns for factory-sealed items.",
68
- condition: "new",
69
- insurance: false,
70
- shippingPaidBy: "seller",
71
- isAuction: false,
72
- isPreOrder: false,
73
- isPromoted: true,
74
- promotionEndDate: daysAhead(30),
75
- avgRating: 4.9,
76
- reviewCount: 67,
77
- createdAt: daysAgo(90),
78
- updatedAt: daysAgo(2),
79
- },
80
- {
81
- id: "product-av-dbz-vegeta-super-saiyan-av-2",
82
- title: "Dragon Ball Z — Vegeta Super Saiyan Blue S.H.Figuarts",
83
- description: "<p>S.H.Figuarts Vegeta in Super Saiyan Blue form — the Prince of all Saiyans at his finest. Includes signature scowl and smirk face plates, Ki blast effect, Final Flash effects. Dynamic pose potential with ball-jointed hips and double-jointed elbows.</p>",
84
- slug: "product-dbz-vegeta-super-saiyan-blue-shf",
85
- category: "category-anime-dbz",
86
- subcategory: "S.H.Figuarts",
87
- brand: "Dragon Ball Z",
88
- price: 4499,
89
- currency: _CURRENCY,
90
- stockQuantity: 15,
91
- availableQuantity: 12,
92
- mainImage: img("dbz-vegeta-ssb"),
93
- images: [img("dbz-vegeta-ssb")],
94
- status: "published",
95
- ...AV,
96
- featured: true,
97
- tags: ["dragon ball z", "vegeta", "super saiyan blue", "shf", "figuarts"],
98
- specifications: [
99
- { name: "Series", value: "S.H.Figuarts" },
100
- { name: "Height", value: "~14 cm" },
101
- { name: "Accessories", value: "3 face plates + Final Flash effects" },
102
- ],
103
- features: ["Final Flash effect parts", "Blue hair metallic finish", "Multiple hand parts", "Dynamic hip joints"],
104
- shippingInfo: "Original packaging. Nationwide delivery.",
105
- returnPolicy: "10-day returns.",
106
- condition: "new",
107
- insurance: false,
108
- shippingPaidBy: "seller",
109
- isAuction: false,
110
- isPreOrder: false,
111
- avgRating: 4.8,
112
- reviewCount: 44,
113
- createdAt: daysAgo(85),
114
- updatedAt: daysAgo(3),
115
- },
116
- {
117
- id: "product-av-dbz-frieza-final-form-av-3",
118
- title: "Dragon Ball Z — Frieza Final Form S.H.Figuarts",
119
- description: "<p>S.H.Figuarts Frieza in his iconic Final Form — cold, calculated, and utterly ruthless. Includes Death Beam effect, energy disc effect, and multiple hand parts. Floating hover base included. Spot-on movie proportions with glossy white and purple finish.</p>",
120
- slug: "product-dbz-frieza-final-form-shf-figuarts",
121
- category: "category-anime-dbz",
122
- subcategory: "S.H.Figuarts",
123
- brand: "Dragon Ball Z",
124
- price: 3999,
125
- currency: _CURRENCY,
126
- stockQuantity: 18,
127
- availableQuantity: 16,
128
- mainImage: img("dbz-frieza-final"),
129
- images: [img("dbz-frieza-final")],
130
- status: "published",
131
- ...AV,
132
- featured: false,
133
- tags: ["dragon ball z", "frieza", "final form", "shf", "figuarts"],
134
- specifications: [
135
- { name: "Series", value: "S.H.Figuarts" },
136
- { name: "Height", value: "~13 cm" },
137
- { name: "Accessories", value: "Death beam + energy disc effects + hover base" },
138
- ],
139
- features: ["Death Beam effect part", "Hover display base", "Glossy white/purple finish", "Energy disc accessory"],
140
- shippingInfo: "Original box. Nationwide.",
141
- returnPolicy: "10-day returns.",
142
- condition: "new",
143
- insurance: false,
144
- shippingPaidBy: "seller",
145
- isAuction: false,
146
- isPreOrder: false,
147
- avgRating: 4.7,
148
- reviewCount: 31,
149
- createdAt: daysAgo(80),
150
- updatedAt: daysAgo(5),
151
- },
152
- {
153
- id: "product-av-dbz-gohan-beast-av-4",
154
- title: "Dragon Ball Z — Gohan Beast Form Figure (Dragon Ball Super: Super Hero)",
155
- description: "<p>Gohan Beast from Dragon Ball Super: Super Hero — the most powerful transformation of Gohan's hidden power fully unleashed. Red eyes, white-purple hair, and supreme power level. Includes energy blast effects and multiple face plates.</p>",
156
- slug: "product-dbz-gohan-beast-super-hero-figure",
157
- category: "category-anime-dbz",
158
- subcategory: "Figure",
159
- brand: "Dragon Ball Z",
160
- price: 3599,
161
- currency: _CURRENCY,
162
- stockQuantity: 12,
163
- availableQuantity: 10,
164
- mainImage: img("dbz-gohan-beast"),
165
- images: [img("dbz-gohan-beast")],
166
- status: "published",
167
- ...AV,
168
- featured: false,
169
- tags: ["dragon ball z", "gohan", "beast", "super hero", "figure"],
170
- specifications: [
171
- { name: "Height", value: "~15 cm" },
172
- { name: "Accessories", value: "Energy effects + face plates" },
173
- ],
174
- features: ["Beast form exclusive deco", "Red eyes effect", "Energy blast parts", "Display base"],
175
- shippingInfo: "Original packaging. Nationwide delivery.",
176
- returnPolicy: "10-day returns.",
177
- condition: "new",
178
- insurance: false,
179
- shippingPaidBy: "seller",
180
- isAuction: false,
181
- isPreOrder: false,
182
- avgRating: 4.7,
183
- reviewCount: 22,
184
- createdAt: daysAgo(50),
185
- updatedAt: daysAgo(4),
186
- },
187
- {
188
- id: "product-av-dbz-broly-dxf-av-5",
189
- title: "Dragon Ball Z — Broly Legendary Super Saiyan DXF Figure",
190
- description: "<p>Broly Legendary Super Saiyan — the DXF premium statue from Banpresto. Dynamic stomp pose with massive muscle detail. Glow-in-the-dark Broly Ki aura elements. 24 cm tall centrepiece figure. Perfect for collectors who want scale over articulation.</p>",
191
- slug: "product-dbz-broly-legendary-ssj-dxf-banpresto",
192
- category: "category-anime-dbz",
193
- subcategory: "DXF",
194
- brand: "Dragon Ball Z",
195
- price: 2999,
196
- currency: _CURRENCY,
197
- stockQuantity: 25,
198
- availableQuantity: 22,
199
- mainImage: img("dbz-broly-dxf"),
200
- images: [img("dbz-broly-dxf"), img("dbz-broly-dxf-side")],
201
- status: "published",
202
- ...AV,
203
- featured: true,
204
- tags: ["dragon ball z", "broly", "legendary", "dxf", "banpresto", "statue"],
205
- specifications: [
206
- { name: "Series", value: "DXF" },
207
- { name: "Height", value: "~24 cm" },
208
- { name: "Type", value: "Statue (non-articulated)" },
209
- ],
210
- features: ["24 cm tall statue", "Glow-in-dark Ki aura", "Dynamic stomp pose", "Banpresto quality"],
211
- shippingInfo: "Padded collector box. Nationwide.",
212
- returnPolicy: "10-day returns.",
213
- condition: "new",
214
- insurance: false,
215
- shippingPaidBy: "seller",
216
- isAuction: false,
217
- isPreOrder: false,
218
- avgRating: 4.8,
219
- reviewCount: 55,
220
- createdAt: daysAgo(75),
221
- updatedAt: daysAgo(3),
222
- },
223
- {
224
- id: "product-av-dbz-cell-perfect-av-6",
225
- title: "Dragon Ball Z — Cell Perfect Form S.H.Figuarts",
226
- description: "<p>S.H.Figuarts Cell in his perfect form — bio-android perfection. Includes taunting, screaming, and power-up face plates. Energy absorption effects and tail parts. Signature green and black deco with detailed bio-organic sculpt.</p>",
227
- slug: "product-dbz-cell-perfect-form-shf-figuarts",
228
- category: "category-anime-dbz",
229
- subcategory: "S.H.Figuarts",
230
- brand: "Dragon Ball Z",
231
- price: 4299,
232
- currency: _CURRENCY,
233
- stockQuantity: 10,
234
- availableQuantity: 8,
235
- mainImage: img("dbz-cell-perfect"),
236
- images: [img("dbz-cell-perfect")],
237
- status: "published",
238
- ...AV,
239
- featured: false,
240
- tags: ["dragon ball z", "cell", "perfect form", "shf", "figuarts"],
241
- specifications: [
242
- { name: "Series", value: "S.H.Figuarts" },
243
- { name: "Height", value: "~17 cm" },
244
- { name: "Accessories", value: "3 face plates + energy absorption effects + tail parts" },
245
- ],
246
- features: ["Perfect form deco", "Absorption tail part", "3 expression face plates", "Energy effects"],
247
- shippingInfo: "Original Bandai box. Padded nationwide.",
248
- returnPolicy: "10-day returns.",
249
- condition: "new",
250
- insurance: false,
251
- shippingPaidBy: "seller",
252
- isAuction: false,
253
- isPreOrder: false,
254
- avgRating: 4.7,
255
- reviewCount: 28,
256
- createdAt: daysAgo(65),
257
- updatedAt: daysAgo(6),
258
- },
259
- {
260
- id: "product-av-dbz-beerus-av-7",
261
- title: "Dragon Ball Z — Beerus God of Destruction S.H.Figuarts",
262
- description: "<p>S.H.Figuarts Beerus — the God of Destruction in feline form. Delicate sculpt captures his slender yet powerful physique. Includes open hand, pointing hand, and purple energy ball effects. Long flexible tail part. Sitting pose compatible accessory base.</p>",
263
- slug: "product-dbz-beerus-god-of-destruction-shf",
264
- category: "category-anime-dbz",
265
- subcategory: "S.H.Figuarts",
266
- brand: "Dragon Ball Z",
267
- price: 3999,
268
- currency: _CURRENCY,
269
- stockQuantity: 14,
270
- availableQuantity: 11,
271
- mainImage: img("dbz-beerus-gd"),
272
- images: [img("dbz-beerus-gd")],
273
- status: "published",
274
- ...AV,
275
- featured: false,
276
- tags: ["dragon ball z", "beerus", "god of destruction", "shf", "figuarts"],
277
- specifications: [
278
- { name: "Series", value: "S.H.Figuarts" },
279
- { name: "Height", value: "~16 cm" },
280
- { name: "Accessories", value: "Energy ball effects + flexible tail" },
281
- ],
282
- features: ["Flexible rubber tail", "Purple energy ball effects", "Multiple hand options", "Hakai energy accessory"],
283
- shippingInfo: "Original packaging. Nationwide.",
284
- returnPolicy: "10-day returns.",
285
- condition: "new",
286
- insurance: false,
287
- shippingPaidBy: "seller",
288
- isAuction: false,
289
- isPreOrder: false,
290
- avgRating: 4.6,
291
- reviewCount: 19,
292
- createdAt: daysAgo(55),
293
- updatedAt: daysAgo(7),
294
- },
295
- {
296
- id: "product-av-dbz-piccolo-av-8",
297
- title: "Dragon Ball Z — Piccolo Namekian Warrior S.H.Figuarts",
298
- description: "<p>S.H.Figuarts Piccolo — the Namekian warrior who became Gohan's mentor. Special beam cannon effect, removable cape and turban, multiple face plates with the iconic narrow-eyed expression. Earring detail and accurate green-purple colour scheme.</p>",
299
- slug: "product-dbz-piccolo-namekian-warrior-shf",
300
- category: "category-anime-dbz",
301
- subcategory: "S.H.Figuarts",
302
- brand: "Dragon Ball Z",
303
- price: 3799,
304
- currency: _CURRENCY,
305
- stockQuantity: 12,
306
- availableQuantity: 9,
307
- mainImage: img("dbz-piccolo-shf"),
308
- images: [img("dbz-piccolo-shf")],
309
- status: "published",
310
- ...AV,
311
- featured: false,
312
- tags: ["dragon ball z", "piccolo", "namekian", "shf", "figuarts"],
313
- specifications: [
314
- { name: "Series", value: "S.H.Figuarts" },
315
- { name: "Height", value: "~16 cm" },
316
- { name: "Accessories", value: "Special Beam Cannon effect + removable cape" },
317
- ],
318
- features: ["Removable cape and turban", "Special Beam Cannon effect", "3 face plates", "Antenna detail"],
319
- shippingInfo: "Original packaging. Nationwide.",
320
- returnPolicy: "10-day returns.",
321
- condition: "new",
322
- insurance: false,
323
- shippingPaidBy: "seller",
324
- isAuction: false,
325
- isPreOrder: false,
326
- avgRating: 4.7,
327
- reviewCount: 24,
328
- createdAt: daysAgo(60),
329
- updatedAt: daysAgo(5),
330
- },
331
- // ── NARUTO (5) ───────────────────────────────────────────────────────────
332
- {
333
- id: "product-av-naruto-uzumaki-sage-mode-av-9",
334
- title: "Naruto Uzumaki — Sage Mode S.H.Figuarts",
335
- description: "<p>S.H.Figuarts Naruto in Sage Mode — Frog Sage marks fully activated. Includes Rasengan effect, shuriken, multiple hand parts, and 3 face plates. Toad belt rope accessory removable. Accurate orange and black Sage outfit with detailed toad summoning markings.</p>",
336
- slug: "product-naruto-uzumaki-sage-mode-shf-figuarts",
337
- category: "category-anime-naruto",
338
- subcategory: "S.H.Figuarts",
339
- brand: "Naruto",
340
- price: 3999,
341
- currency: _CURRENCY,
342
- stockQuantity: 20,
343
- availableQuantity: 17,
344
- mainImage: img("naruto-sage-mode-shf"),
345
- images: [img("naruto-sage-mode-shf"), img("naruto-sage-rasengan")],
346
- status: "published",
347
- ...AV,
348
- featured: true,
349
- tags: ["naruto", "sage mode", "uzumaki", "shf", "figuarts", "rasengan"],
350
- specifications: [
351
- { name: "Series", value: "S.H.Figuarts" },
352
- { name: "Height", value: "~14.5 cm" },
353
- { name: "Accessories", value: "Rasengan effect + shuriken + 3 face plates" },
354
- ],
355
- features: ["Rasengan energy effect", "Sage marks deco", "Shuriken accessories", "Frog toad belt rope"],
356
- shippingInfo: "Original Bandai box. Nationwide.",
357
- returnPolicy: "10-day returns.",
358
- condition: "new",
359
- insurance: false,
360
- shippingPaidBy: "seller",
361
- isAuction: false,
362
- isPreOrder: false,
363
- isPromoted: true,
364
- promotionEndDate: daysAhead(20),
365
- avgRating: 4.8,
366
- reviewCount: 43,
367
- createdAt: daysAgo(70),
368
- updatedAt: daysAgo(3),
369
- },
370
- {
371
- id: "product-av-naruto-sasuke-rinnegan-av-10",
372
- title: "Naruto — Sasuke Uchiha Rinnegan S.H.Figuarts",
373
- description: "<p>S.H.Figuarts Sasuke with Rinnegan — the avenger in his most powerful form. Includes Chidori effect, sword Kusanagi, Rinnegan swap eye parts, and 3 face plates. Eternal Mangekyo Sharingan detail. Blue Void Chidori version included.</p>",
374
- slug: "product-naruto-sasuke-rinnegan-shf-figuarts",
375
- category: "category-anime-naruto",
376
- subcategory: "S.H.Figuarts",
377
- brand: "Naruto",
378
- price: 4299,
379
- currency: _CURRENCY,
380
- stockQuantity: 16,
381
- availableQuantity: 13,
382
- mainImage: img("naruto-sasuke-rinnegan"),
383
- images: [img("naruto-sasuke-rinnegan")],
384
- status: "published",
385
- ...AV,
386
- featured: false,
387
- tags: ["naruto", "sasuke", "rinnegan", "sharingan", "shf", "figuarts"],
388
- specifications: [
389
- { name: "Series", value: "S.H.Figuarts" },
390
- { name: "Height", value: "~14.5 cm" },
391
- { name: "Accessories", value: "Chidori + Kusanagi sword + eye swap parts" },
392
- ],
393
- features: ["Kusanagi sword accessory", "Rinnegan eye swap parts", "Blue Void Chidori effect", "Eternal Mangekyo deco"],
394
- shippingInfo: "Original Bandai box. Nationwide.",
395
- returnPolicy: "10-day returns.",
396
- condition: "new",
397
- insurance: false,
398
- shippingPaidBy: "seller",
399
- isAuction: false,
400
- isPreOrder: false,
401
- avgRating: 4.8,
402
- reviewCount: 38,
403
- createdAt: daysAgo(65),
404
- updatedAt: daysAgo(4),
405
- },
406
- {
407
- id: "product-av-naruto-kakashi-sharingan-av-11",
408
- title: "Naruto — Kakashi Hatake Sharingan Eye S.H.Figuarts",
409
- description: "<p>S.H.Figuarts Kakashi Hatake — the Copy Ninja with Sharingan eye revealed. Includes headband up and down versions, Lightning Blade effect, Kunai accessories, and 3 face plates including his lazy expression and serious battle expression.</p>",
410
- slug: "product-naruto-kakashi-sharingan-shf-figuarts",
411
- category: "category-anime-naruto",
412
- subcategory: "S.H.Figuarts",
413
- brand: "Naruto",
414
- price: 3799,
415
- currency: _CURRENCY,
416
- stockQuantity: 14,
417
- availableQuantity: 11,
418
- mainImage: img("naruto-kakashi-shf"),
419
- images: [img("naruto-kakashi-shf")],
420
- status: "published",
421
- ...AV,
422
- featured: false,
423
- tags: ["naruto", "kakashi", "sharingan", "copy ninja", "shf", "figuarts"],
424
- specifications: [
425
- { name: "Series", value: "S.H.Figuarts" },
426
- { name: "Height", value: "~15 cm" },
427
- { name: "Accessories", value: "Lightning Blade + Kunai + headband variants" },
428
- ],
429
- features: ["Swappable headband (revealed/hidden Sharingan)", "Lightning Blade effect", "Kunai accessories", "Lazy and battle face plates"],
430
- shippingInfo: "Original packaging. Nationwide.",
431
- returnPolicy: "10-day returns.",
432
- condition: "new",
433
- insurance: false,
434
- shippingPaidBy: "seller",
435
- isAuction: false,
436
- isPreOrder: false,
437
- avgRating: 4.7,
438
- reviewCount: 29,
439
- createdAt: daysAgo(50),
440
- updatedAt: daysAgo(6),
441
- },
442
- {
443
- id: "product-av-naruto-itachi-anbu-av-12",
444
- title: "Naruto — Itachi Uchiha ANBU Black Ops Figure",
445
- description: "<p>Itachi Uchiha in his ANBU Black Ops outfit — the prodigious Uchiha as a child ninja. Crow familiar accessories, Mangekyo Sharingan genjutsu effect, and ANBU mask. Standard and sans-mask head parts. Kunai and shuriken pouch detail.</p>",
446
- slug: "product-naruto-itachi-uchiha-anbu-figure",
447
- category: "category-anime-naruto",
448
- subcategory: "Figure",
449
- brand: "Naruto",
450
- price: 3299,
451
- currency: _CURRENCY,
452
- stockQuantity: 18,
453
- availableQuantity: 14,
454
- mainImage: img("naruto-itachi-anbu"),
455
- images: [img("naruto-itachi-anbu")],
456
- status: "published",
457
- ...AV,
458
- featured: true,
459
- tags: ["naruto", "itachi", "anbu", "uchiha", "mangekyo", "figure"],
460
- specifications: [
461
- { name: "Height", value: "~16 cm" },
462
- { name: "Accessories", value: "ANBU mask + crow familiar + Mangekyo effect" },
463
- ],
464
- features: ["ANBU mask on/off", "Crow familiar figure", "Mangekyo Sharingan effect", "Twin blade weapons"],
465
- shippingInfo: "Original packaging. Nationwide.",
466
- returnPolicy: "10-day returns.",
467
- condition: "new",
468
- insurance: false,
469
- shippingPaidBy: "seller",
470
- isAuction: false,
471
- isPreOrder: false,
472
- avgRating: 4.9,
473
- reviewCount: 52,
474
- createdAt: daysAgo(45),
475
- updatedAt: daysAgo(4),
476
- },
477
- {
478
- id: "product-av-naruto-rock-lee-gates-av-13",
479
- title: "Naruto — Rock Lee 8 Inner Gates Figure",
480
- description: "<p>Rock Lee in his famous 8 Inner Gates state — red steaming skin, torn suit, and ultimate power. Includes steam effect parts, multiple fist configurations, and a base recreating the sand arena. Bandai Ichibansho premium sculpt.</p>",
481
- slug: "product-naruto-rock-lee-8-gates-ichibansho",
482
- category: "category-anime-naruto",
483
- subcategory: "Ichibansho",
484
- brand: "Naruto",
485
- price: 2799,
486
- currency: _CURRENCY,
487
- stockQuantity: 16,
488
- availableQuantity: 13,
489
- mainImage: img("naruto-rock-lee-gates"),
490
- images: [img("naruto-rock-lee-gates")],
491
- status: "published",
492
- ...AV,
493
- featured: false,
494
- tags: ["naruto", "rock lee", "8 gates", "ichibansho", "bandai"],
495
- specifications: [
496
- { name: "Series", value: "Ichibansho" },
497
- { name: "Height", value: "~17 cm" },
498
- { name: "Accessories", value: "Steam effects + arena base" },
499
- ],
500
- features: ["8 Gates red steam effects", "Arena base", "Torn suit deco", "Premium Ichibansho sculpt"],
501
- shippingInfo: "Original packaging. Nationwide.",
502
- returnPolicy: "10-day returns.",
503
- condition: "new",
504
- insurance: false,
505
- shippingPaidBy: "seller",
506
- isAuction: false,
507
- isPreOrder: false,
508
- avgRating: 4.6,
509
- reviewCount: 17,
510
- createdAt: daysAgo(40),
511
- updatedAt: daysAgo(7),
512
- },
513
- // ── ONE PIECE (5) ────────────────────────────────────────────────────────
514
- {
515
- id: "product-av-op-luffy-gear5-av-14",
516
- title: "One Piece — Luffy Gear 5 Nika S.H.Figuarts",
517
- description: "<p>S.H.Figuarts Monkey D. Luffy in Gear 5 Nika form — the Sun God awakened. White hair, hyper-expressive cartoon face plates, cloud accessory, and giant inflated fist effects. The most playful and expressive figure in the Figuarts line. Must-have for One Piece fans.</p>",
518
- slug: "product-one-piece-luffy-gear5-nika-shf-figuarts",
519
- category: "category-anime-onepiece",
520
- subcategory: "S.H.Figuarts",
521
- brand: "One Piece",
522
- price: 5499,
523
- currency: _CURRENCY,
524
- stockQuantity: 15,
525
- availableQuantity: 12,
526
- mainImage: img("onepiece-luffy-gear5"),
527
- images: [img("onepiece-luffy-gear5"), img("onepiece-luffy-gear5-fist")],
528
- status: "published",
529
- ...AV,
530
- featured: true,
531
- tags: ["one piece", "luffy", "gear 5", "nika", "sun god", "shf", "figuarts"],
532
- specifications: [
533
- { name: "Series", value: "S.H.Figuarts" },
534
- { name: "Height", value: "~15 cm" },
535
- { name: "Accessories", value: "5 face plates + giant fist + cloud effects" },
536
- ],
537
- features: ["Gear 5 white hair", "5 hyper-expressive face plates", "Giant inflated fist effect", "Cloud display base"],
538
- shippingInfo: "Original Bandai box. Nationwide.",
539
- returnPolicy: "10-day returns.",
540
- condition: "new",
541
- insurance: false,
542
- shippingPaidBy: "seller",
543
- isAuction: false,
544
- isPreOrder: false,
545
- isPromoted: true,
546
- promotionEndDate: daysAhead(25),
547
- avgRating: 4.9,
548
- reviewCount: 78,
549
- createdAt: daysAgo(30),
550
- updatedAt: daysAgo(2),
551
- },
552
- {
553
- id: "product-av-op-zoro-enma-av-15",
554
- title: "One Piece — Roronoa Zoro Three Sword Style Enma Figure",
555
- description: "<p>Roronoa Zoro wielding Enma — post-Wano arc three-sword style stance. Dramatic three-blade draw pose with Enma's black blade effect. Haramaki detail and scar over eye. Ichibansho Wano Arc release. Premium sculptwork from Bandai Spirits.</p>",
556
- slug: "product-one-piece-zoro-three-sword-enma-wano",
557
- category: "category-anime-onepiece",
558
- subcategory: "Ichibansho",
559
- brand: "One Piece",
560
- price: 3799,
561
- currency: _CURRENCY,
562
- stockQuantity: 18,
563
- availableQuantity: 15,
564
- mainImage: img("onepiece-zoro-enma"),
565
- images: [img("onepiece-zoro-enma")],
566
- status: "published",
567
- ...AV,
568
- featured: true,
569
- tags: ["one piece", "zoro", "enma", "three sword style", "wano", "ichibansho"],
570
- specifications: [
571
- { name: "Series", value: "Ichibansho Wano" },
572
- { name: "Height", value: "~19 cm" },
573
- { name: "Accessories", value: "Enma black blade + haramaki" },
574
- ],
575
- features: ["Enma black blade effect", "Three-sword draw pose", "Wano arc outfit", "Scar eye detail"],
576
- shippingInfo: "Original packaging. Nationwide.",
577
- returnPolicy: "10-day returns.",
578
- condition: "new",
579
- insurance: false,
580
- shippingPaidBy: "seller",
581
- isAuction: false,
582
- isPreOrder: false,
583
- avgRating: 4.8,
584
- reviewCount: 45,
585
- createdAt: daysAgo(50),
586
- updatedAt: daysAgo(4),
587
- },
588
- {
589
- id: "product-av-op-nami-wano-av-16",
590
- title: "One Piece — Nami Wano Arc DXF Figure",
591
- description: "<p>Nami in her Wano Country outfit — the Navigator of the Straw Hats in stunning kimono style. DXF Figure from Banpresto. Clima-Tact weapon pose. Dynamic hair and flower hair accessories. 18 cm premium figure with weather effect diorama base.</p>",
592
- slug: "product-one-piece-nami-wano-dxf-banpresto",
593
- category: "category-anime-onepiece",
594
- subcategory: "DXF",
595
- brand: "One Piece",
596
- price: 2499,
597
- currency: _CURRENCY,
598
- stockQuantity: 22,
599
- availableQuantity: 20,
600
- mainImage: img("onepiece-nami-wano"),
601
- images: [img("onepiece-nami-wano")],
602
- status: "published",
603
- ...AV,
604
- featured: false,
605
- tags: ["one piece", "nami", "wano", "dxf", "banpresto", "kimono"],
606
- specifications: [
607
- { name: "Series", value: "DXF" },
608
- { name: "Height", value: "~18 cm" },
609
- ],
610
- features: ["Wano kimono deco", "Clima-Tact pose", "Weather effect base", "Detailed flower accessories"],
611
- shippingInfo: "Original packaging. Nationwide.",
612
- returnPolicy: "10-day returns.",
613
- condition: "new",
614
- insurance: false,
615
- shippingPaidBy: "seller",
616
- isAuction: false,
617
- isPreOrder: false,
618
- avgRating: 4.6,
619
- reviewCount: 29,
620
- createdAt: daysAgo(45),
621
- updatedAt: daysAgo(5),
622
- },
623
- {
624
- id: "product-av-op-ace-mera-av-17",
625
- title: "One Piece — Portgas D. Ace Fire Fist Figure",
626
- description: "<p>Portgas D. Ace — Fire Fist flaming punch pose from Marineford arc. Detailed flame effect from wrist to elbow. Freckle detail, ASCE tattoo on arm, and iconic open jacket. Bandai Ichibansho premium quality. Tribute figure to the beloved fallen Whitebeard commander.</p>",
627
- slug: "product-one-piece-ace-fire-fist-marineford-figure",
628
- category: "category-anime-onepiece",
629
- subcategory: "Ichibansho",
630
- brand: "One Piece",
631
- price: 3299,
632
- currency: _CURRENCY,
633
- stockQuantity: 20,
634
- availableQuantity: 17,
635
- mainImage: img("onepiece-ace-fist"),
636
- images: [img("onepiece-ace-fist")],
637
- status: "published",
638
- ...AV,
639
- featured: false,
640
- tags: ["one piece", "ace", "fire fist", "portgas", "marineford", "figure"],
641
- specifications: [
642
- { name: "Series", value: "Ichibansho" },
643
- { name: "Height", value: "~18 cm" },
644
- { name: "Accessories", value: "Flame effects + ASCE tattoo detail" },
645
- ],
646
- features: ["Fire Fist flame effects", "ASCE tattoo detail", "Open jacket Marineford deco", "Freckle sculpt detail"],
647
- shippingInfo: "Original packaging. Nationwide.",
648
- returnPolicy: "10-day returns.",
649
- condition: "new",
650
- insurance: false,
651
- shippingPaidBy: "seller",
652
- isAuction: false,
653
- isPreOrder: false,
654
- avgRating: 4.9,
655
- reviewCount: 61,
656
- createdAt: daysAgo(60),
657
- updatedAt: daysAgo(3),
658
- },
659
- {
660
- id: "product-av-op-shanks-haki-av-18",
661
- title: "One Piece — Red-Haired Shanks Conqueror Haki Figure",
662
- description: "<p>Red-Haired Shanks unleashing Conqueror Haki — the One Piece protagonist's idol and the most feared Yonko. Haki aura effect envelops him. Black lightning effects, iconic straw hat, and missing left arm. Premium collector's edition with diorama base.</p>",
663
- slug: "product-one-piece-shanks-conqueror-haki-figure",
664
- category: "category-anime-onepiece",
665
- subcategory: "Figure",
666
- brand: "One Piece",
667
- price: 4999,
668
- currency: _CURRENCY,
669
- stockQuantity: 10,
670
- availableQuantity: 8,
671
- mainImage: img("onepiece-shanks-haki"),
672
- images: [img("onepiece-shanks-haki")],
673
- status: "published",
674
- ...AV,
675
- featured: true,
676
- tags: ["one piece", "shanks", "conqueror haki", "yonko", "figure", "premium"],
677
- specifications: [
678
- { name: "Height", value: "~22 cm" },
679
- { name: "Accessories", value: "Haki lightning effects + diorama base" },
680
- ],
681
- features: ["Conqueror Haki black lightning effects", "Iconic straw hat", "Missing arm sculpt accuracy", "Premium diorama base"],
682
- shippingInfo: "Padded collector box. Nationwide.",
683
- returnPolicy: "10-day returns.",
684
- condition: "new",
685
- insurance: true,
686
- insuranceCost: 149,
687
- shippingPaidBy: "seller",
688
- isAuction: false,
689
- isPreOrder: false,
690
- isPromoted: true,
691
- promotionEndDate: daysAhead(15),
692
- avgRating: 4.9,
693
- reviewCount: 34,
694
- createdAt: daysAgo(25),
695
- updatedAt: daysAgo(2),
696
- },
697
- // ── MY HERO ACADEMIA (4) ─────────────────────────────────────────────────
698
- {
699
- id: "product-av-mha-deku-fullcowl-av-19",
700
- title: "My Hero Academia — Izuku Midoriya Full Cowl S.H.Figuarts",
701
- description: "<p>S.H.Figuarts Deku in Full Cowl — One For All coursing through his body at full power. Lightning/electric effect parts, Delaware Smash air burst effect, and multiple face plates. Costume Beta outfit with reinforced arms. Essential for any MHA collection.</p>",
702
- slug: "product-mha-deku-midoriya-full-cowl-shf-figuarts",
703
- category: "category-anime-mha",
704
- subcategory: "S.H.Figuarts",
705
- brand: "My Hero Academia",
706
- price: 3999,
707
- currency: _CURRENCY,
708
- stockQuantity: 18,
709
- availableQuantity: 15,
710
- mainImage: img("mha-deku-fullcowl"),
711
- images: [img("mha-deku-fullcowl"), img("mha-deku-smash")],
712
- status: "published",
713
- ...AV,
714
- featured: false,
715
- tags: ["my hero academia", "deku", "midoriya", "full cowl", "shf", "figuarts", "one for all"],
716
- specifications: [
717
- { name: "Series", value: "S.H.Figuarts" },
718
- { name: "Height", value: "~14 cm" },
719
- { name: "Accessories", value: "OFA lightning + Delaware Smash + 3 face plates" },
720
- ],
721
- features: ["One For All lightning effects", "Delaware Smash air burst", "Costume Beta accuracy", "3 face plates"],
722
- shippingInfo: "Original Bandai box. Nationwide.",
723
- returnPolicy: "10-day returns.",
724
- condition: "new",
725
- insurance: false,
726
- shippingPaidBy: "seller",
727
- isAuction: false,
728
- isPreOrder: false,
729
- avgRating: 4.7,
730
- reviewCount: 36,
731
- createdAt: daysAgo(55),
732
- updatedAt: daysAgo(5),
733
- },
734
- {
735
- id: "product-av-mha-bakugo-howitzer-av-20",
736
- title: "My Hero Academia — Katsuki Bakugo Howitzer Impact S.H.Figuarts",
737
- description: "<p>S.H.Figuarts Bakugo in his Howitzer Impact pose — spinning explosion attack. Explosion effect parts around both arms, angry and grinning face plates, and his iconic grenade-style gauntlets. The most dynamic MHA figure for capturing his combat style.</p>",
738
- slug: "product-mha-bakugo-howitzer-impact-shf-figuarts",
739
- category: "category-anime-mha",
740
- subcategory: "S.H.Figuarts",
741
- brand: "My Hero Academia",
742
- price: 4299,
743
- currency: _CURRENCY,
744
- stockQuantity: 14,
745
- availableQuantity: 11,
746
- mainImage: img("mha-bakugo-howitzer"),
747
- images: [img("mha-bakugo-howitzer")],
748
- status: "published",
749
- ...AV,
750
- featured: true,
751
- tags: ["my hero academia", "bakugo", "howitzer impact", "explosion", "shf", "figuarts"],
752
- specifications: [
753
- { name: "Series", value: "S.H.Figuarts" },
754
- { name: "Height", value: "~14 cm" },
755
- { name: "Accessories", value: "Explosion effects + gauntlets + 3 face plates" },
756
- ],
757
- features: ["Howitzer explosion effects", "Grenade gauntlets", "Spinning attack pose", "Angry + grinning face plates"],
758
- shippingInfo: "Original Bandai box. Nationwide.",
759
- returnPolicy: "10-day returns.",
760
- condition: "new",
761
- insurance: false,
762
- shippingPaidBy: "seller",
763
- isAuction: false,
764
- isPreOrder: false,
765
- avgRating: 4.8,
766
- reviewCount: 48,
767
- createdAt: daysAgo(60),
768
- updatedAt: daysAgo(4),
769
- },
770
- {
771
- id: "product-av-mha-allmight-toshinori-av-21",
772
- title: "My Hero Academia — All Might Toshinori True Form Statue",
773
- description: "<p>All Might in his true form — Toshinori Yagi deflated, frail, yet still smiling. Rare collector's resin statue capturing his iconic weakened state. 20 cm premium cold-cast porcelain. Limited edition with numbered base. Symbol of Peace even in weakness.</p>",
774
- slug: "product-mha-all-might-toshinori-true-form-statue",
775
- category: "category-anime-mha",
776
- subcategory: "Statue",
777
- brand: "My Hero Academia",
778
- price: 5999,
779
- currency: _CURRENCY,
780
- stockQuantity: 8,
781
- availableQuantity: 6,
782
- mainImage: img("mha-allmight-true"),
783
- images: [img("mha-allmight-true")],
784
- status: "published",
785
- ...AV,
786
- featured: true,
787
- tags: ["my hero academia", "all might", "toshinori", "true form", "statue", "limited"],
788
- specifications: [
789
- { name: "Material", value: "Cold-cast porcelain resin" },
790
- { name: "Height", value: "~20 cm" },
791
- { name: "Edition", value: "Limited numbered" },
792
- ],
793
- features: ["Limited numbered edition", "Cold-cast porcelain", "True form deflated deco", "Iconic smile sculpt"],
794
- shippingInfo: "Padded collector box. Insured nationwide.",
795
- returnPolicy: "10-day returns for factory-sealed items.",
796
- condition: "new",
797
- insurance: true,
798
- insuranceCost: 199,
799
- shippingPaidBy: "seller",
800
- isAuction: false,
801
- isPreOrder: false,
802
- isPromoted: true,
803
- promotionEndDate: daysAhead(20),
804
- avgRating: 4.9,
805
- reviewCount: 23,
806
- createdAt: daysAgo(40),
807
- updatedAt: daysAgo(3),
808
- },
809
- {
810
- id: "product-av-mha-todoroki-half-cold-av-22",
811
- title: "My Hero Academia — Shoto Todoroki Half-Cold Half-Hot S.H.Figuarts",
812
- description: "<p>S.H.Figuarts Todoroki — left side fire, right side ice. Dual elemental effects for both sides, multiple stern and determined face plates, and ice floor base. Signature half-and-half hair with scar detail. The most visually striking MHA figure available.</p>",
813
- slug: "product-mha-todoroki-half-cold-hot-shf-figuarts",
814
- category: "category-anime-mha",
815
- subcategory: "S.H.Figuarts",
816
- brand: "My Hero Academia",
817
- price: 4499,
818
- currency: _CURRENCY,
819
- stockQuantity: 12,
820
- availableQuantity: 10,
821
- mainImage: img("mha-todoroki-halfhot"),
822
- images: [img("mha-todoroki-halfhot")],
823
- status: "published",
824
- ...AV,
825
- featured: false,
826
- tags: ["my hero academia", "todoroki", "half cold half hot", "fire ice", "shf", "figuarts"],
827
- specifications: [
828
- { name: "Series", value: "S.H.Figuarts" },
829
- { name: "Height", value: "~14.5 cm" },
830
- { name: "Accessories", value: "Fire + ice effects + ice floor base + 3 face plates" },
831
- ],
832
- features: ["Fire and ice dual effects", "Ice floor display base", "Half-and-half hair accuracy", "Scar facial detail"],
833
- shippingInfo: "Original Bandai box. Nationwide.",
834
- returnPolicy: "10-day returns.",
835
- condition: "new",
836
- insurance: false,
837
- shippingPaidBy: "seller",
838
- isAuction: false,
839
- isPreOrder: false,
840
- avgRating: 4.8,
841
- reviewCount: 41,
842
- createdAt: daysAgo(50),
843
- updatedAt: daysAgo(4),
844
- },
845
- // ── AUCTION (2) ───────────────────────────────────────────────────────────
846
- {
847
- id: "auction-av-dbz-goku-first-edition-graded-av-1",
848
- title: "AUCTION — Dragon Ball Z Goku First Edition Box Art Figure (1989 Vintage)",
849
- description: "<p>Vintage 1989 Bandai Dragon Ball Z Goku figure with original box art. First edition Japanese release. Complete with original accessories and instruction sheet. Figure is in C8 condition — light play wear. Box is C7 with shelf wear but intact. Extremely rare in this condition. Certificate from Anime Heritage Japan.</p>",
850
- slug: "auction-dbz-goku-1989-vintage-bandai-first-ed",
851
- category: "category-anime-dbz",
852
- subcategory: "Vintage",
853
- brand: "Dragon Ball Z",
854
- price: 0,
855
- currency: _CURRENCY,
856
- stockQuantity: 1,
857
- availableQuantity: 1,
858
- mainImage: img("dbz-goku-vintage-1989"),
859
- images: [img("dbz-goku-vintage-1989"), img("dbz-goku-vintage-box"), img("dbz-goku-vintage-accessories")],
860
- status: "published",
861
- ...AV,
862
- featured: true,
863
- tags: ["dragon ball z", "goku", "vintage", "1989", "auction", "first edition", "bandai"],
864
- specifications: [
865
- { name: "Year", value: "1989 (Original Release)" },
866
- { name: "Series", value: "Dragon Ball Z First Edition" },
867
- { name: "Figure Condition", value: "C8" },
868
- { name: "Box Condition", value: "C7" },
869
- { name: "Authentication", value: "Anime Heritage Japan certified" },
870
- ],
871
- features: ["1989 original release", "Complete with accessories", "Original instruction sheet", "Anime Heritage Japan certificate"],
872
- shippingInfo: "White-glove insured shipping. Museum protective casing.",
873
- returnPolicy: "No returns on auction wins.",
874
- condition: "used",
875
- insurance: true,
876
- insuranceCost: 999,
877
- shippingPaidBy: "buyer",
878
- isAuction: true,
879
- auctionEndDate: daysAhead(10),
880
- startingBid: 24999,
881
- currentBid: 38000,
882
- bidCount: 14,
883
- reservePrice: 45000,
884
- buyNowPrice: 89999,
885
- minBidIncrement: 2000,
886
- autoExtendable: true,
887
- auctionExtensionMinutes: 10,
888
- auctionOriginalEndDate: daysAhead(10),
889
- auctionShippingPaidBy: "winner",
890
- isPreOrder: false,
891
- isPromoted: true,
892
- promotionEndDate: daysAhead(10),
893
- avgRating: 0,
894
- reviewCount: 0,
895
- createdAt: daysAgo(2),
896
- updatedAt: daysAgo(0),
897
- },
898
- {
899
- id: "auction-av-onepiece-luffy-gear5-first-print-av-2",
900
- title: "AUCTION — One Piece Luffy Gear 5 First Print Prototype Sample Figure",
901
- description: "<p>Extremely rare One Piece Luffy Gear 5 Figuarts first print prototype sample — production test shot before finalised mass production colour. Predominantly white unpainted with prototype blue tack marks. Sealed in original Bandai internal sample bag. Unique and unrepeatable collectible.</p>",
902
- slug: "auction-onepiece-luffy-gear5-prototype-sample",
903
- category: "category-anime-onepiece",
904
- subcategory: "Prototype",
905
- brand: "One Piece",
906
- price: 0,
907
- currency: _CURRENCY,
908
- stockQuantity: 1,
909
- availableQuantity: 1,
910
- mainImage: img("onepiece-luffy-gear5-proto"),
911
- images: [img("onepiece-luffy-gear5-proto"), img("onepiece-luffy-proto-bag")],
912
- status: "published",
913
- ...AV,
914
- featured: true,
915
- tags: ["one piece", "luffy", "gear 5", "prototype", "sample", "auction", "rare"],
916
- specifications: [
917
- { name: "Type", value: "Production prototype sample" },
918
- { name: "Condition", value: "Sealed in Bandai internal bag" },
919
- { name: "Rarity", value: "One of a kind" },
920
- ],
921
- features: ["One-of-a-kind prototype", "Sealed in Bandai internal sample bag", "Pre-production colour shot", "Unrepeatable collector item"],
922
- shippingInfo: "Insured white-glove shipping.",
923
- returnPolicy: "No returns on auction wins.",
924
- condition: "new",
925
- insurance: true,
926
- insuranceCost: 1499,
927
- shippingPaidBy: "buyer",
928
- isAuction: true,
929
- auctionEndDate: daysAhead(7),
930
- startingBid: 9999,
931
- currentBid: 22000,
932
- bidCount: 9,
933
- reservePrice: 25000,
934
- buyNowPrice: 59999,
935
- minBidIncrement: 1000,
936
- autoExtendable: true,
937
- auctionExtensionMinutes: 10,
938
- auctionOriginalEndDate: daysAhead(7),
939
- auctionShippingPaidBy: "winner",
940
- isPreOrder: false,
941
- isPromoted: true,
942
- promotionEndDate: daysAhead(7),
943
- avgRating: 0,
944
- reviewCount: 0,
945
- createdAt: daysAgo(1),
946
- updatedAt: daysAgo(0),
947
- },
948
- // ── PRE-ORDER (2) ─────────────────────────────────────────────────────────
949
- {
950
- id: "preorder-av-dbz-goku-ultra-ego-2026-av-1",
951
- title: "PRE-ORDER — Dragon Ball Z Goku Ultra Ego 2026 Premium Statue",
952
- description: "<p>Pre-order the upcoming Goku Ultra Ego premium statue from Tsume Art — 1:6 scale, 35 cm tall, cold-cast resin with hand-painted finish. Limited to 999 pieces worldwide. Only 50 India-allocated units. Expected delivery Q3 2026. Pay 20% now, rest on dispatch.</p>",
953
- slug: "preorder-dbz-goku-ultra-ego-tsume-art-2026",
954
- category: "category-anime-dbz",
955
- subcategory: "Premium Statue",
956
- brand: "Dragon Ball Z",
957
- price: 24999,
958
- currency: _CURRENCY,
959
- stockQuantity: 50,
960
- availableQuantity: 41,
961
- mainImage: img("dbz-goku-ultra-ego-preorder"),
962
- images: [img("dbz-goku-ultra-ego-preorder")],
963
- status: "published",
964
- ...AV,
965
- featured: true,
966
- tags: ["dragon ball z", "goku", "ultra ego", "tsume art", "pre-order", "2026", "premium statue"],
967
- specifications: [
968
- { name: "Scale", value: "1:6" },
969
- { name: "Height", value: "~35 cm" },
970
- { name: "Material", value: "Cold-cast resin, hand-painted" },
971
- { name: "World Limit", value: "999 pieces" },
972
- { name: "India Allocation", value: "50 units" },
973
- ],
974
- features: ["Tsume Art 1:6 scale", "Hand-painted finish", "999 worldwide limited", "35 cm centrepiece"],
975
- shippingInfo: "Special collector casing. Insured dispatch on Q3 2026 release.",
976
- returnPolicy: "Pre-orders: cancel before dispatch date. 20% deposit non-refundable.",
977
- condition: "new",
978
- insurance: true,
979
- insuranceCost: 699,
980
- shippingPaidBy: "seller",
981
- isAuction: false,
982
- isPreOrder: true,
983
- preOrderDeliveryDate: daysAhead(180),
984
- preOrderProductionStatus: "upcoming",
985
- isPromoted: true,
986
- promotionEndDate: daysAhead(90),
987
- avgRating: 0,
988
- reviewCount: 0,
989
- createdAt: daysAgo(7),
990
- updatedAt: daysAgo(1),
991
- },
992
- {
993
- id: "preorder-av-mha-allmight-golden-age-2026-av-2",
994
- title: "PRE-ORDER — My Hero Academia All Might Golden Age Box Set (2026)",
995
- description: "<p>Reserve the upcoming My Hero Academia All Might Golden Age Box Set — 5 figures spanning his life from young Toshinori to the Symbol of Peace, plus the deflated retirement state. Includes collector artbook and muscle fibres diorama. India pre-order exclusive bonus: All Might enamel pin set.</p>",
996
- slug: "preorder-mha-all-might-golden-age-box-set-2026",
997
- category: "category-anime-mha",
998
- subcategory: "Box Set",
999
- brand: "My Hero Academia",
1000
- price: 12999,
1001
- currency: _CURRENCY,
1002
- stockQuantity: 30,
1003
- availableQuantity: 24,
1004
- mainImage: img("mha-allmight-golden-age-preorder"),
1005
- images: [img("mha-allmight-golden-age-preorder")],
1006
- status: "published",
1007
- ...AV,
1008
- featured: true,
1009
- tags: ["my hero academia", "all might", "golden age", "box set", "pre-order", "2026", "exclusive"],
1010
- specifications: [
1011
- { name: "Contents", value: "5 figures + artbook + diorama base" },
1012
- { name: "India Bonus", value: "Enamel pin set" },
1013
- { name: "Expected", value: "Q2 2026" },
1014
- ],
1015
- features: ["5-figure life timeline set", "India-exclusive enamel pin bonus", "Collector artbook", "Muscle fibres diorama"],
1016
- shippingInfo: "Special collector packaging. Insured dispatch on Q2 2026 release.",
1017
- returnPolicy: "Pre-orders: cancel before dispatch. Deposit non-refundable.",
1018
- condition: "new",
1019
- insurance: true,
1020
- insuranceCost: 399,
1021
- shippingPaidBy: "seller",
1022
- isAuction: false,
1023
- isPreOrder: true,
1024
- preOrderDeliveryDate: daysAhead(150),
1025
- preOrderProductionStatus: "upcoming",
1026
- isPromoted: true,
1027
- promotionEndDate: daysAhead(75),
1028
- avgRating: 0,
1029
- reviewCount: 0,
1030
- createdAt: daysAgo(5),
1031
- updatedAt: daysAgo(1),
1032
- },
1033
- ];