@mohasinac/appkit 2.6.2 → 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.
- package/dist/_internal/server/features/account/data.js +2 -2
- package/dist/_internal/server/features/bundles/data.d.ts +26 -6
- package/dist/_internal/server/features/bundles/data.js +41 -6
- package/dist/_internal/server/features/bundles/index.d.ts +3 -2
- package/dist/_internal/server/features/bundles/index.js +4 -2
- package/dist/_internal/server/features/bundles/metadata.d.ts +20 -0
- package/dist/_internal/server/features/bundles/metadata.js +46 -0
- package/dist/_internal/server/features/bundles/og.d.ts +38 -0
- package/dist/_internal/server/features/bundles/og.js +122 -0
- package/dist/_internal/server/features/checkout/actions.js +192 -133
- package/dist/_internal/server/features/checkout/bundle-expansion.d.ts +57 -0
- package/dist/_internal/server/features/checkout/bundle-expansion.js +70 -0
- package/dist/_internal/server/features/checkout/prize-bundle-gates.d.ts +5 -15
- package/dist/_internal/server/features/checkout/prize-bundle-gates.js +5 -21
- package/dist/_internal/server/features/media/contextGuards.js +15 -1
- package/dist/_internal/server/features/payouts/actions.d.ts +19 -0
- package/dist/_internal/server/features/payouts/actions.js +38 -0
- package/dist/_internal/server/features/products/data.js +1 -2
- package/dist/_internal/server/features/raffle/actions.d.ts +11 -0
- package/dist/_internal/server/features/raffle/actions.js +31 -0
- package/dist/_internal/server/features/refunds/actions.d.ts +31 -0
- package/dist/_internal/server/features/refunds/actions.js +77 -0
- package/dist/_internal/server/jobs/core/adminAnalytics.d.ts +28 -0
- package/dist/_internal/server/jobs/core/adminAnalytics.js +98 -0
- package/dist/_internal/server/jobs/core/assignSpinPrize.d.ts +19 -0
- package/dist/_internal/server/jobs/core/assignSpinPrize.js +81 -0
- package/dist/_internal/server/jobs/core/auctionSettlement.d.ts +2 -0
- package/dist/_internal/server/jobs/core/auctionSettlement.js +70 -0
- package/dist/_internal/server/jobs/core/autoPayoutEligibility.d.ts +2 -0
- package/dist/_internal/server/jobs/core/autoPayoutEligibility.js +109 -0
- package/dist/_internal/server/jobs/core/bundleStockSync.d.ts +10 -0
- package/dist/_internal/server/jobs/core/bundleStockSync.js +71 -0
- package/dist/_internal/server/jobs/core/cartPrune.d.ts +2 -0
- package/dist/_internal/server/jobs/core/cartPrune.js +13 -0
- package/dist/_internal/server/jobs/core/cleanupRtdbEvents.d.ts +2 -0
- package/dist/_internal/server/jobs/core/cleanupRtdbEvents.js +45 -0
- package/dist/_internal/server/jobs/core/countersReconcile.d.ts +2 -0
- package/dist/_internal/server/jobs/core/countersReconcile.js +107 -0
- package/dist/_internal/server/jobs/core/couponExpiry.d.ts +2 -0
- package/dist/_internal/server/jobs/core/couponExpiry.js +13 -0
- package/dist/_internal/server/jobs/core/dailyDataCleanup.d.ts +2 -0
- package/dist/_internal/server/jobs/core/dailyDataCleanup.js +20 -0
- package/dist/_internal/server/jobs/core/index.d.ts +44 -0
- package/dist/_internal/server/jobs/core/index.js +47 -0
- package/dist/_internal/server/jobs/core/listingProcessor.d.ts +30 -0
- package/dist/_internal/server/jobs/core/listingProcessor.js +138 -0
- package/dist/_internal/server/jobs/core/mediaTmpCleanup.d.ts +14 -0
- package/dist/_internal/server/jobs/core/mediaTmpCleanup.js +68 -0
- package/dist/_internal/server/jobs/core/notificationPrune.d.ts +2 -0
- package/dist/_internal/server/jobs/core/notificationPrune.js +13 -0
- package/dist/_internal/server/jobs/core/offerExpiry.d.ts +2 -0
- package/dist/_internal/server/jobs/core/offerExpiry.js +50 -0
- package/dist/_internal/server/jobs/core/onBidPlaced.d.ts +15 -0
- package/dist/_internal/server/jobs/core/onBidPlaced.js +59 -0
- package/dist/_internal/server/jobs/core/onCategoryWrite.d.ts +14 -0
- package/dist/_internal/server/jobs/core/onCategoryWrite.js +134 -0
- package/dist/_internal/server/jobs/core/onOrderCreate.d.ts +18 -0
- package/dist/_internal/server/jobs/core/onOrderCreate.js +78 -0
- package/dist/_internal/server/jobs/core/onOrderStatusChange.d.ts +19 -0
- package/dist/_internal/server/jobs/core/onOrderStatusChange.js +139 -0
- package/dist/_internal/server/jobs/core/onProductStockChange.d.ts +23 -0
- package/dist/_internal/server/jobs/core/onProductStockChange.js +130 -0
- package/dist/_internal/server/jobs/core/onProductWrite.d.ts +12 -0
- package/dist/_internal/server/jobs/core/onProductWrite.js +94 -0
- package/dist/_internal/server/jobs/core/onReviewWrite.d.ts +7 -0
- package/dist/_internal/server/jobs/core/onReviewWrite.js +49 -0
- package/dist/_internal/server/jobs/core/onStoreWrite.d.ts +12 -0
- package/dist/_internal/server/jobs/core/onStoreWrite.js +7 -0
- package/dist/_internal/server/jobs/core/payoutBatch.d.ts +8 -0
- package/dist/_internal/server/jobs/core/payoutBatch.js +102 -0
- package/dist/_internal/server/jobs/core/pendingOrderTimeout.d.ts +2 -0
- package/dist/_internal/server/jobs/core/pendingOrderTimeout.js +27 -0
- package/dist/_internal/server/jobs/core/positionsReconcile.d.ts +7 -0
- package/dist/_internal/server/jobs/core/positionsReconcile.js +87 -0
- package/dist/_internal/server/jobs/core/prizeRevealClose.d.ts +2 -0
- package/dist/_internal/server/jobs/core/prizeRevealClose.js +22 -0
- package/dist/_internal/server/jobs/core/prizeRevealExpiry.d.ts +2 -0
- package/dist/_internal/server/jobs/core/prizeRevealExpiry.js +50 -0
- package/dist/_internal/server/jobs/core/prizeRevealOpen.d.ts +2 -0
- package/dist/_internal/server/jobs/core/prizeRevealOpen.js +56 -0
- package/dist/_internal/server/jobs/core/prizeRevealReminder.d.ts +2 -0
- package/dist/_internal/server/jobs/core/prizeRevealReminder.js +38 -0
- package/dist/_internal/server/jobs/core/productStatsSync.d.ts +8 -0
- package/dist/_internal/server/jobs/core/productStatsSync.js +36 -0
- package/dist/_internal/server/jobs/core/promotions.d.ts +12 -0
- package/dist/_internal/server/jobs/core/promotions.js +43 -0
- package/dist/_internal/server/jobs/core/storeAnalytics.d.ts +30 -0
- package/dist/_internal/server/jobs/core/storeAnalytics.js +109 -0
- package/dist/_internal/server/jobs/core/triggerEventRaffle.d.ts +19 -0
- package/dist/_internal/server/jobs/core/triggerEventRaffle.js +86 -0
- package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.d.ts +6 -0
- package/dist/_internal/server/jobs/core/weeklyPayoutEligibility.js +85 -0
- package/dist/_internal/server/jobs/handlers/adminAnalytics.d.ts +2 -26
- package/dist/_internal/server/jobs/handlers/adminAnalytics.js +2 -98
- package/dist/_internal/server/jobs/handlers/assignSpinPrize.d.ts +1 -22
- package/dist/_internal/server/jobs/handlers/assignSpinPrize.js +2 -86
- package/dist/_internal/server/jobs/handlers/auctionSettlement.js +2 -70
- package/dist/_internal/server/jobs/handlers/autoPayoutEligibility.js +2 -110
- package/dist/_internal/server/jobs/handlers/bundleStockSync.d.ts +0 -16
- package/dist/_internal/server/jobs/handlers/bundleStockSync.js +2 -80
- package/dist/_internal/server/jobs/handlers/cartPrune.js +2 -13
- package/dist/_internal/server/jobs/handlers/cleanupRtdbEvents.js +2 -45
- package/dist/_internal/server/jobs/handlers/countersReconcile.js +2 -109
- package/dist/_internal/server/jobs/handlers/couponExpiry.js +2 -13
- package/dist/_internal/server/jobs/handlers/dailyDataCleanup.js +2 -20
- package/dist/_internal/server/jobs/handlers/listingProcessor.d.ts +3 -28
- package/dist/_internal/server/jobs/handlers/listingProcessor.js +3 -138
- package/dist/_internal/server/jobs/handlers/mediaTmpCleanup.d.ts +0 -12
- package/dist/_internal/server/jobs/handlers/mediaTmpCleanup.js +2 -69
- package/dist/_internal/server/jobs/handlers/notificationPrune.js +2 -13
- package/dist/_internal/server/jobs/handlers/offerExpiry.js +2 -50
- package/dist/_internal/server/jobs/handlers/onBidPlaced.d.ts +1 -10
- package/dist/_internal/server/jobs/handlers/onBidPlaced.js +2 -56
- package/dist/_internal/server/jobs/handlers/onCategoryWrite.d.ts +1 -8
- package/dist/_internal/server/jobs/handlers/onCategoryWrite.js +6 -134
- package/dist/_internal/server/jobs/handlers/onOrderCreate.d.ts +1 -12
- package/dist/_internal/server/jobs/handlers/onOrderCreate.js +2 -76
- package/dist/_internal/server/jobs/handlers/onOrderStatusChange.d.ts +1 -12
- package/dist/_internal/server/jobs/handlers/onOrderStatusChange.js +2 -139
- package/dist/_internal/server/jobs/handlers/onProductStockChange.d.ts +0 -13
- package/dist/_internal/server/jobs/handlers/onProductStockChange.js +7 -134
- package/dist/_internal/server/jobs/handlers/onProductWrite.d.ts +1 -6
- package/dist/_internal/server/jobs/handlers/onProductWrite.js +6 -106
- package/dist/_internal/server/jobs/handlers/onReviewWrite.js +2 -49
- package/dist/_internal/server/jobs/handlers/onStoreWrite.d.ts +1 -8
- package/dist/_internal/server/jobs/handlers/onStoreWrite.js +7 -8
- package/dist/_internal/server/jobs/handlers/payoutBatch.d.ts +0 -9
- package/dist/_internal/server/jobs/handlers/payoutBatch.js +2 -104
- package/dist/_internal/server/jobs/handlers/pendingOrderTimeout.d.ts +0 -6
- package/dist/_internal/server/jobs/handlers/pendingOrderTimeout.js +2 -33
- package/dist/_internal/server/jobs/handlers/positionsReconcile.d.ts +0 -5
- package/dist/_internal/server/jobs/handlers/positionsReconcile.js +2 -87
- package/dist/_internal/server/jobs/handlers/prizeRevealClose.d.ts +0 -7
- package/dist/_internal/server/jobs/handlers/prizeRevealClose.js +2 -29
- package/dist/_internal/server/jobs/handlers/prizeRevealExpiry.d.ts +0 -8
- package/dist/_internal/server/jobs/handlers/prizeRevealExpiry.js +2 -58
- package/dist/_internal/server/jobs/handlers/prizeRevealOpen.d.ts +0 -8
- package/dist/_internal/server/jobs/handlers/prizeRevealOpen.js +2 -65
- package/dist/_internal/server/jobs/handlers/prizeRevealReminder.d.ts +0 -7
- package/dist/_internal/server/jobs/handlers/prizeRevealReminder.js +2 -45
- package/dist/_internal/server/jobs/handlers/productStatsSync.d.ts +0 -6
- package/dist/_internal/server/jobs/handlers/productStatsSync.js +2 -36
- package/dist/_internal/server/jobs/handlers/promotions.d.ts +2 -10
- package/dist/_internal/server/jobs/handlers/promotions.js +2 -43
- package/dist/_internal/server/jobs/handlers/storeAnalytics.d.ts +2 -28
- package/dist/_internal/server/jobs/handlers/storeAnalytics.js +2 -109
- package/dist/_internal/server/jobs/handlers/triggerEventRaffle.d.ts +1 -28
- package/dist/_internal/server/jobs/handlers/triggerEventRaffle.js +2 -94
- package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.d.ts +0 -6
- package/dist/_internal/server/jobs/handlers/weeklyPayoutEligibility.js +2 -87
- package/dist/_internal/server/jobs/index.d.ts +1 -0
- package/dist/_internal/server/jobs/index.js +1 -0
- package/dist/_internal/server/jobs/runtime/adapters/firebase.js +21 -0
- package/dist/_internal/shared/actions/action-registry.d.ts +84 -0
- package/dist/_internal/shared/actions/action-registry.js +160 -0
- package/dist/_internal/shared/checkout/rules/_defaults.d.ts +3 -0
- package/dist/_internal/shared/checkout/rules/_defaults.js +22 -0
- package/dist/_internal/shared/checkout/rules/_limits.d.ts +19 -0
- package/dist/_internal/shared/checkout/rules/_limits.js +19 -0
- package/dist/_internal/shared/checkout/rules/_registry.d.ts +44 -0
- package/dist/_internal/shared/checkout/rules/_registry.js +87 -0
- package/dist/_internal/shared/checkout/rules/auction.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/auction.rule.js +10 -0
- package/dist/_internal/shared/checkout/rules/bundle.rule.d.ts +11 -0
- package/dist/_internal/shared/checkout/rules/bundle.rule.js +6 -0
- package/dist/_internal/shared/checkout/rules/classified.rule.d.ts +9 -0
- package/dist/_internal/shared/checkout/rules/classified.rule.js +9 -0
- package/dist/_internal/shared/checkout/rules/digital-code.rule.d.ts +8 -0
- package/dist/_internal/shared/checkout/rules/digital-code.rule.js +6 -0
- package/dist/_internal/shared/checkout/rules/index.d.ts +12 -0
- package/dist/_internal/shared/checkout/rules/index.js +12 -0
- package/dist/_internal/shared/checkout/rules/live.rule.d.ts +10 -0
- package/dist/_internal/shared/checkout/rules/live.rule.js +6 -0
- package/dist/_internal/shared/checkout/rules/offer.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/offer.rule.js +9 -0
- package/dist/_internal/shared/checkout/rules/preorder.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/preorder.rule.js +28 -0
- package/dist/_internal/shared/checkout/rules/prize-draw.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/prize-draw.rule.js +65 -0
- package/dist/_internal/shared/checkout/rules/standard.rule.d.ts +2 -0
- package/dist/_internal/shared/checkout/rules/standard.rule.js +5 -0
- package/dist/_internal/shared/checkout/rules/types.d.ts +125 -0
- package/dist/_internal/shared/checkout/rules/types.js +13 -0
- package/dist/_internal/shared/features/cart/schema.d.ts +6 -6
- package/dist/_internal/shared/features/categories/bundle-copy.d.ts +123 -0
- package/dist/_internal/shared/features/categories/bundle-copy.js +134 -0
- package/dist/_internal/shared/features/categories/bundle-schemas.d.ts +318 -0
- package/dist/_internal/shared/features/categories/bundle-schemas.js +55 -0
- package/dist/_internal/shared/features/orders/refund-copy.d.ts +36 -0
- package/dist/_internal/shared/features/orders/refund-copy.js +40 -0
- package/dist/_internal/shared/features/orders/schema.d.ts +4 -4
- package/dist/_internal/shared/features/products/schema.d.ts +8 -8
- package/dist/_internal/shared/listing-types/_registry.d.ts +27 -0
- package/dist/_internal/shared/listing-types/_registry.js +8 -0
- package/dist/_internal/shared/listing-types/action-tracker.d.ts +41 -0
- package/dist/_internal/shared/listing-types/action-tracker.js +70 -0
- package/dist/_internal/shared/listing-types/capabilities.js +25 -0
- package/dist/_internal/shared/listing-types/cart-shipping.d.ts +37 -0
- package/dist/_internal/shared/listing-types/cart-shipping.js +46 -0
- package/dist/_internal/shared/listing-types/classified/config.d.ts +7 -0
- package/dist/_internal/shared/listing-types/classified/config.js +8 -0
- package/dist/_internal/shared/listing-types/classified/ctas.d.ts +1 -0
- package/dist/_internal/shared/listing-types/classified/ctas.js +3 -0
- package/dist/_internal/shared/listing-types/classified/og.d.ts +1 -0
- package/dist/_internal/shared/listing-types/classified/og.js +1 -0
- package/dist/_internal/shared/listing-types/classified/schema.d.ts +1 -0
- package/dist/_internal/shared/listing-types/classified/schema.js +1 -0
- package/dist/_internal/shared/listing-types/classified/seed-factory.d.ts +1 -0
- package/dist/_internal/shared/listing-types/classified/seed-factory.js +1 -0
- package/dist/_internal/shared/listing-types/digital-code/config.d.ts +7 -0
- package/dist/_internal/shared/listing-types/digital-code/config.js +8 -0
- package/dist/_internal/shared/listing-types/digital-code/ctas.d.ts +1 -0
- package/dist/_internal/shared/listing-types/digital-code/ctas.js +3 -0
- package/dist/_internal/shared/listing-types/digital-code/og.d.ts +1 -0
- package/dist/_internal/shared/listing-types/digital-code/og.js +1 -0
- package/dist/_internal/shared/listing-types/digital-code/schema.d.ts +1 -0
- package/dist/_internal/shared/listing-types/digital-code/schema.js +1 -0
- package/dist/_internal/shared/listing-types/digital-code/seed-factory.d.ts +1 -0
- package/dist/_internal/shared/listing-types/digital-code/seed-factory.js +1 -0
- package/dist/_internal/shared/listing-types/feature-flags.d.ts +34 -0
- package/dist/_internal/shared/listing-types/feature-flags.js +45 -0
- package/dist/_internal/shared/listing-types/live/config.d.ts +7 -0
- package/dist/_internal/shared/listing-types/live/config.js +8 -0
- package/dist/_internal/shared/listing-types/live/ctas.d.ts +1 -0
- package/dist/_internal/shared/listing-types/live/ctas.js +3 -0
- package/dist/_internal/shared/listing-types/live/og.d.ts +1 -0
- package/dist/_internal/shared/listing-types/live/og.js +1 -0
- package/dist/_internal/shared/listing-types/live/schema.d.ts +1 -0
- package/dist/_internal/shared/listing-types/live/schema.js +1 -0
- package/dist/_internal/shared/listing-types/live/seed-factory.d.ts +1 -0
- package/dist/_internal/shared/listing-types/live/seed-factory.js +1 -0
- package/dist/_internal/shared/media/limits.js +8 -0
- package/dist/client.d.ts +6 -1
- package/dist/client.js +14 -1
- package/dist/configs/next.js +7 -0
- package/dist/constants/api-endpoints.d.ts +6 -0
- package/dist/constants/api-endpoints.js +4 -0
- package/dist/core/hooks/useSyncManager.js +13 -1
- package/dist/core/unit-of-work.d.ts +1 -1
- package/dist/core/unit-of-work.js +2 -2
- package/dist/features/account/actions/address-actions.d.ts +1 -1
- package/dist/features/account/actions/address-actions.js +15 -7
- package/dist/features/account/schemas/firestore.d.ts +8 -43
- package/dist/features/account/schemas/firestore.js +8 -54
- package/dist/features/account/schemas/index.d.ts +6 -6
- package/dist/features/account/server.d.ts +1 -1
- package/dist/features/account/server.js +3 -1
- package/dist/features/addresses/index.d.ts +2 -0
- package/dist/features/addresses/index.js +2 -0
- package/dist/features/addresses/repository/addresses.repository.d.ts +29 -0
- package/dist/features/addresses/repository/addresses.repository.js +157 -0
- package/dist/features/addresses/schemas/firestore.d.ts +53 -0
- package/dist/features/addresses/schemas/firestore.js +68 -0
- package/dist/features/{bundles → addresses}/schemas/index.d.ts +0 -1
- package/dist/features/{bundles → addresses}/schemas/index.js +0 -1
- package/dist/features/addresses/server.d.ts +2 -0
- package/dist/features/addresses/server.js +2 -0
- package/dist/features/admin/components/AdminAllEventEntriesView.js +4 -3
- package/dist/features/admin/components/AdminBidsView.js +4 -3
- package/dist/features/admin/components/AdminBlogView.js +8 -3
- package/dist/features/admin/components/AdminBundleEditorView.d.ts +9 -0
- package/dist/features/admin/components/AdminBundleEditorView.js +209 -0
- package/dist/features/admin/components/AdminBundlesView.d.ts +9 -0
- package/dist/features/admin/components/AdminBundlesView.js +59 -0
- package/dist/features/admin/components/AdminCartsView.js +13 -3
- package/dist/features/admin/components/AdminContactView.js +4 -3
- package/dist/features/admin/components/AdminCouponsView.js +32 -13
- package/dist/features/admin/components/AdminNewsletterView.js +4 -3
- package/dist/features/admin/components/AdminOrdersView.js +15 -7
- package/dist/features/admin/components/AdminPayoutsView.js +4 -3
- package/dist/features/admin/components/AdminProductsView.js +6 -5
- package/dist/features/admin/components/AdminReviewsView.js +5 -4
- package/dist/features/admin/components/AdminStoresView.js +4 -3
- package/dist/features/admin/components/AdminUsersView.js +15 -5
- package/dist/features/admin/components/AdminWishlistsView.js +10 -1
- package/dist/features/admin/components/DataTable.d.ts +5 -1
- package/dist/features/admin/components/DataTable.js +24 -20
- package/dist/features/admin/components/index.d.ts +4 -0
- package/dist/features/admin/components/index.js +3 -0
- package/dist/features/admin/constants/filter-tabs.d.ts +401 -0
- package/dist/features/admin/constants/filter-tabs.js +200 -0
- package/dist/features/admin/hooks/useAdminListingData.d.ts +1 -0
- package/dist/features/admin/hooks/useAdminListingData.js +1 -0
- package/dist/features/admin/schemas/firestore.d.ts +15 -0
- package/dist/features/admin/schemas/firestore.js +18 -0
- package/dist/features/admin/types/product.types.d.ts +2 -2
- package/dist/features/auctions/components/AuctionCard.d.ts +4 -1
- package/dist/features/auctions/components/AuctionCard.js +5 -3
- package/dist/features/auctions/components/AuctionDetailPageView.js +1 -1
- package/dist/features/auctions/components/MarketplaceAuctionCard.d.ts +2 -2
- package/dist/features/auctions/components/PlaceBidFormClient.js +12 -2
- package/dist/features/auctions/schemas/index.d.ts +2 -2
- package/dist/features/auth/index.d.ts +1 -0
- package/dist/features/auth/index.js +1 -0
- package/dist/features/auth/role-predicates.d.ts +16 -0
- package/dist/features/auth/role-predicates.js +15 -0
- package/dist/features/blog/components/BlogFeaturedCard.d.ts +4 -1
- package/dist/features/blog/components/BlogFeaturedCard.js +5 -3
- package/dist/features/cart/actions/cart-actions.d.ts +1 -0
- package/dist/features/cart/actions/cart-actions.js +16 -0
- package/dist/features/cart/components/CartView.d.ts +19 -1
- package/dist/features/cart/components/CartView.js +2 -2
- package/dist/features/cart/components/ShippingPicker.d.ts +13 -0
- package/dist/features/cart/components/ShippingPicker.js +48 -0
- package/dist/features/cart/components/index.d.ts +3 -1
- package/dist/features/cart/components/index.js +1 -0
- package/dist/features/cart/hooks/useCartCount.js +7 -1
- package/dist/features/cart/repository/cart.repository.d.ts +1 -0
- package/dist/features/cart/repository/cart.repository.js +35 -0
- package/dist/features/cart/schemas/firestore.d.ts +27 -2
- package/dist/features/categories/components/BundleAddToCartCta.d.ts +16 -0
- package/dist/features/categories/components/BundleAddToCartCta.js +54 -0
- package/dist/features/categories/components/BundleBuyNowCta.d.ts +8 -0
- package/dist/features/categories/components/BundleBuyNowCta.js +37 -0
- package/dist/features/categories/components/BundleDetailView.d.ts +22 -0
- package/dist/features/categories/components/BundleDetailView.js +31 -0
- package/dist/features/categories/components/BundleDynamicRuleEditor.d.ts +18 -0
- package/dist/features/categories/components/BundleDynamicRuleEditor.js +60 -0
- package/dist/features/categories/components/BundleItemsPicker.d.ts +26 -0
- package/dist/features/categories/components/BundleItemsPicker.js +135 -0
- package/dist/features/categories/components/BundlesListView.d.ts +13 -0
- package/dist/features/categories/components/BundlesListView.js +27 -0
- package/dist/features/categories/components/index.d.ts +12 -0
- package/dist/features/categories/components/index.js +9 -0
- package/dist/features/checkout/actions/checkout-actions.js +10 -3
- package/dist/features/events/components/AdminEventEditorView.js +108 -2
- package/dist/features/events/components/AdminEventsView.js +16 -4
- package/dist/features/events/components/EventCard.d.ts +4 -1
- package/dist/features/events/components/EventCard.js +7 -3
- package/dist/features/events/components/EventRaffleWinnerView.d.ts +21 -0
- package/dist/features/events/components/EventRaffleWinnerView.js +18 -0
- package/dist/features/events/components/SpinWheelView.d.ts +27 -0
- package/dist/features/events/components/SpinWheelView.js +64 -0
- package/dist/features/events/components/index.d.ts +4 -0
- package/dist/features/events/components/index.js +2 -0
- package/dist/features/events/schemas/firestore.d.ts +27 -1
- package/dist/features/events/schemas/firestore.js +7 -0
- package/dist/features/events/types/index.d.ts +27 -1
- package/dist/features/homepage/components/FeaturedBundlesSection.d.ts +16 -0
- package/dist/features/homepage/components/FeaturedBundlesSection.js +24 -0
- package/dist/features/homepage/components/MarketplaceHomepageView.js +4 -1
- package/dist/features/homepage/components/WhatsAppCommunitySection.js +2 -2
- package/dist/features/homepage/lib/section-renderer.d.ts +2 -0
- package/dist/features/homepage/lib/section-renderer.js +5 -5
- package/dist/features/layout/NavbarLayout.d.ts +3 -1
- package/dist/features/layout/NavbarLayout.js +32 -3
- package/dist/features/layout/TitleBarLayout.d.ts +6 -3
- package/dist/features/layout/TitleBarLayout.js +22 -7
- package/dist/features/media/upload/MediaUploadField.d.ts +15 -1
- package/dist/features/media/upload/MediaUploadField.js +22 -1
- package/dist/features/orders/components/MarketplaceOrderCard.js +4 -2
- package/dist/features/orders/components/OrderSiblingPayments.d.ts +8 -0
- package/dist/features/orders/components/OrderSiblingPayments.js +16 -0
- package/dist/features/orders/components/RefundHistoryTable.d.ts +6 -0
- package/dist/features/orders/components/RefundHistoryTable.js +23 -0
- package/dist/features/orders/components/RefundRequestView.d.ts +8 -0
- package/dist/features/orders/components/RefundRequestView.js +42 -0
- package/dist/features/orders/components/index.d.ts +6 -0
- package/dist/features/orders/components/index.js +3 -0
- package/dist/features/orders/index.d.ts +1 -0
- package/dist/features/orders/index.js +2 -0
- package/dist/features/orders/repository/orders.repository.d.ts +20 -1
- package/dist/features/orders/repository/orders.repository.js +30 -1
- package/dist/features/orders/schemas/firestore.d.ts +63 -13
- package/dist/features/orders/schemas/firestore.js +5 -5
- package/dist/features/orders/schemas/index.d.ts +4 -4
- package/dist/features/orders/types/index.d.ts +12 -2
- package/dist/features/orders/utils/bundle-grouping.d.ts +48 -0
- package/dist/features/orders/utils/bundle-grouping.js +54 -0
- package/dist/features/orders/utils/order-splitter.d.ts +9 -10
- package/dist/features/orders/utils/order-splitter.js +24 -30
- package/dist/features/payments/repository/payout.repository.d.ts +17 -1
- package/dist/features/payments/repository/payout.repository.js +47 -0
- package/dist/features/payments/schemas/firestore.d.ts +26 -0
- package/dist/features/pre-orders/components/PreorderCard.d.ts +4 -1
- package/dist/features/pre-orders/components/PreorderCard.js +8 -6
- package/dist/features/products/actions/product-actions.d.ts +1 -1
- package/dist/features/products/actions/product-actions.js +1 -1
- package/dist/features/products/components/CompareOverlay.d.ts +2 -2
- package/dist/features/products/components/CompareOverlay.js +4 -4
- package/dist/features/products/components/InteractiveProductCard.js +7 -12
- package/dist/features/products/components/NonRefundableConsentModal.d.ts +1 -1
- package/dist/features/products/components/NonRefundableConsentModal.js +0 -10
- package/dist/features/products/components/ProductGrid.js +28 -12
- package/dist/features/products/components/ShowGroupSection.js +3 -3
- package/dist/features/products/components/SublistingCarouselSection.js +2 -2
- package/dist/features/products/components/index.d.ts +0 -4
- package/dist/features/products/components/index.js +5 -2
- package/dist/features/products/index.d.ts +1 -1
- package/dist/features/products/index.js +3 -1
- package/dist/features/products/repository/products.repository.js +4 -0
- package/dist/features/products/schemas/catalog-product.d.ts +70 -0
- package/dist/features/products/schemas/catalog-product.js +50 -0
- package/dist/features/products/schemas/firestore.d.ts +110 -2
- package/dist/features/products/schemas/firestore.js +30 -0
- package/dist/features/products/schemas/index.d.ts +8 -8
- package/dist/features/products/types/index.d.ts +1 -1
- package/dist/features/products/utils/listing-type.d.ts +9 -0
- package/dist/features/products/utils/listing-type.js +4 -0
- package/dist/features/promotions/actions/coupon-actions.d.ts +2 -2
- package/dist/features/promotions/actions/coupon-actions.js +1 -1
- package/dist/features/promotions/components/CouponCard.d.ts +28 -10
- package/dist/features/promotions/components/CouponCard.js +116 -14
- package/dist/features/promotions/hooks/useCouponValidate.d.ts +1 -1
- package/dist/features/promotions/repository/coupons.repository.d.ts +1 -1
- package/dist/features/reviews/schemas/index.d.ts +2 -2
- package/dist/features/search/schemas/index.d.ts +2 -2
- package/dist/features/search/types/index.d.ts +2 -2
- package/dist/features/seller/components/SellerAuctionsView.js +4 -5
- package/dist/features/seller/components/SellerBidsView.js +5 -13
- package/dist/features/seller/components/SellerCouponsView.js +31 -67
- package/dist/features/seller/components/SellerOffersView.js +4 -5
- package/dist/features/seller/components/SellerOrdersView.js +4 -5
- package/dist/features/seller/components/SellerPayoutsView.js +4 -5
- package/dist/features/seller/components/SellerProductsView.js +4 -8
- package/dist/features/seller/schemas/index.d.ts +2 -2
- package/dist/features/stores/actions/store-address-actions.d.ts +10 -6
- package/dist/features/stores/actions/store-address-actions.js +8 -7
- package/dist/features/stores/components/InteractiveStoreCard.js +3 -10
- package/dist/features/stores/components/StoreDetailLayoutView.js +20 -5
- package/dist/features/stores/schemas/firestore.d.ts +45 -38
- package/dist/features/stores/schemas/firestore.js +2 -49
- package/dist/features/stores/server.d.ts +0 -1
- package/dist/features/stores/server.js +2 -1
- package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -9
- package/dist/features/wishlist/hooks/useWishlistCount.js +67 -86
- package/dist/features/wishlist/types/index.d.ts +1 -1
- package/dist/index.d.ts +50 -9
- package/dist/index.js +57 -11
- package/dist/next/routing/route-map.d.ts +6 -0
- package/dist/next/routing/route-map.js +4 -0
- package/dist/providers/db-firebase/admin-app-lite.js +21 -0
- package/dist/providers/db-firebase/admin.d.ts +6 -2
- package/dist/providers/db-firebase/admin.js +23 -0
- package/dist/repositories/index.d.ts +1 -2
- package/dist/repositories/index.js +5 -2
- package/dist/security/authorization.d.ts +2 -1
- package/dist/security/authorization.js +3 -2
- package/dist/seed/actions/demo-seed-actions.d.ts +1 -1
- package/dist/seed/bids-seed-data.d.ts +2 -2
- package/dist/seed/bids-seed-data.js +77 -2
- package/dist/seed/cart-seed-data.d.ts +10 -10
- package/dist/seed/cart-seed-data.js +15 -15
- package/dist/seed/events-seed-data.js +77 -0
- package/dist/seed/manifest.js +16 -8
- package/dist/seed/orders-seed-data.js +41 -2
- package/dist/seed/payouts-seed-data.js +18 -2
- package/dist/seed/stores-seed-data.js +55 -0
- package/dist/server-entry.d.ts +1 -0
- package/dist/server-entry.js +2 -0
- package/dist/server.d.ts +4 -0
- package/dist/server.js +8 -0
- package/dist/tailwind-utilities.css +1 -1
- package/dist/ui/components/FilterChipGroup.d.ts +39 -0
- package/dist/ui/components/FilterChipGroup.js +15 -0
- package/dist/ui/components/HorizontalScroller.js +32 -7
- package/dist/ui/components/HorizontalScroller.style.css +6 -0
- package/dist/ui/components/SiteLogo.js +1 -1
- package/dist/ui/index.d.ts +2 -0
- package/dist/ui/index.js +2 -0
- package/dist/utils/id-generators.d.ts +11 -0
- package/dist/utils/id-generators.js +16 -0
- package/package.json +1 -1
- package/dist/_internal/shared/features/bundles/config.d.ts +0 -6
- package/dist/_internal/shared/features/bundles/config.js +0 -6
- package/dist/_internal/shared/schema-versions.d.ts +0 -76
- package/dist/_internal/shared/schema-versions.js +0 -82
- package/dist/features/account/migrations.d.ts +0 -2
- package/dist/features/account/migrations.js +0 -10
- package/dist/features/admin/migrations.d.ts +0 -2
- package/dist/features/admin/migrations.js +0 -10
- package/dist/features/auctions/migrations.d.ts +0 -2
- package/dist/features/auctions/migrations.js +0 -10
- package/dist/features/auth/migrations.d.ts +0 -2
- package/dist/features/auth/migrations.js +0 -10
- package/dist/features/blog/migrations.d.ts +0 -2
- package/dist/features/blog/migrations.js +0 -10
- package/dist/features/brands/actions/brand-actions.d.ts +0 -2
- package/dist/features/brands/actions/brand-actions.js +0 -5
- package/dist/features/brands/index.d.ts +0 -3
- package/dist/features/brands/index.js +0 -3
- package/dist/features/brands/migrations.d.ts +0 -2
- package/dist/features/brands/migrations.js +0 -10
- package/dist/features/brands/repository/brands.repository.d.ts +0 -13
- package/dist/features/brands/repository/brands.repository.js +0 -60
- package/dist/features/brands/schemas/index.d.ts +0 -33
- package/dist/features/brands/schemas/index.js +0 -15
- package/dist/features/brands/server.d.ts +0 -7
- package/dist/features/brands/server.js +0 -7
- package/dist/features/bundles/components/AdminBundleEditorView.d.ts +0 -8
- package/dist/features/bundles/components/AdminBundleEditorView.js +0 -7
- package/dist/features/bundles/components/BundleDetailPageView.d.ts +0 -9
- package/dist/features/bundles/components/BundleDetailPageView.js +0 -45
- package/dist/features/bundles/components/BundleForm.d.ts +0 -12
- package/dist/features/bundles/components/BundleForm.js +0 -126
- package/dist/features/bundles/components/BundleItemsPicker.d.ts +0 -9
- package/dist/features/bundles/components/BundleItemsPicker.js +0 -77
- package/dist/features/bundles/components/BundlesByCategoryListing.d.ts +0 -6
- package/dist/features/bundles/components/BundlesByCategoryListing.js +0 -50
- package/dist/features/bundles/components/BundlesListingView.d.ts +0 -17
- package/dist/features/bundles/components/BundlesListingView.js +0 -50
- package/dist/features/bundles/components/FeaturedBundlesSection.d.ts +0 -5
- package/dist/features/bundles/components/FeaturedBundlesSection.js +0 -55
- package/dist/features/bundles/components/SellerBundleCreateView.d.ts +0 -8
- package/dist/features/bundles/components/SellerBundleCreateView.js +0 -7
- package/dist/features/bundles/components/SellerBundleEditView.d.ts +0 -9
- package/dist/features/bundles/components/SellerBundleEditView.js +0 -7
- package/dist/features/bundles/components/index.d.ts +0 -18
- package/dist/features/bundles/components/index.js +0 -9
- package/dist/features/bundles/constants/index.d.ts +0 -32
- package/dist/features/bundles/constants/index.js +0 -35
- package/dist/features/bundles/index.d.ts +0 -2
- package/dist/features/bundles/index.js +0 -2
- package/dist/features/bundles/migrations.d.ts +0 -2
- package/dist/features/bundles/migrations.js +0 -10
- package/dist/features/bundles/repository/bundles.repository.d.ts +0 -36
- package/dist/features/bundles/repository/bundles.repository.js +0 -148
- package/dist/features/bundles/repository/index.d.ts +0 -1
- package/dist/features/bundles/repository/index.js +0 -1
- package/dist/features/bundles/schemas/firestore.d.ts +0 -88
- package/dist/features/bundles/schemas/firestore.js +0 -29
- package/dist/features/bundles/schemas/zod.d.ts +0 -377
- package/dist/features/bundles/schemas/zod.js +0 -71
- package/dist/features/cart/migrations.d.ts +0 -2
- package/dist/features/cart/migrations.js +0 -10
- package/dist/features/categories/migrations.d.ts +0 -2
- package/dist/features/categories/migrations.js +0 -10
- package/dist/features/events/migrations.d.ts +0 -2
- package/dist/features/events/migrations.js +0 -10
- package/dist/features/faq/migrations.d.ts +0 -2
- package/dist/features/faq/migrations.js +0 -10
- package/dist/features/grouped/migrations.d.ts +0 -2
- package/dist/features/grouped/migrations.js +0 -10
- package/dist/features/history/migrations.d.ts +0 -2
- package/dist/features/history/migrations.js +0 -10
- package/dist/features/messages/migrations.d.ts +0 -2
- package/dist/features/messages/migrations.js +0 -10
- package/dist/features/orders/migrations.d.ts +0 -2
- package/dist/features/orders/migrations.js +0 -10
- package/dist/features/payments/migrations.d.ts +0 -2
- package/dist/features/payments/migrations.js +0 -10
- package/dist/features/products/migrations.d.ts +0 -2
- package/dist/features/products/migrations.js +0 -10
- package/dist/features/products/repository/sublisting-categories.repository.d.ts +0 -16
- package/dist/features/products/repository/sublisting-categories.repository.js +0 -126
- package/dist/features/products/schemas/sublisting-categories.d.ts +0 -45
- package/dist/features/products/schemas/sublisting-categories.js +0 -16
- package/dist/features/promotions/migrations.d.ts +0 -2
- package/dist/features/promotions/migrations.js +0 -10
- package/dist/features/reviews/migrations.d.ts +0 -2
- package/dist/features/reviews/migrations.js +0 -10
- package/dist/features/scams/migrations.d.ts +0 -2
- package/dist/features/scams/migrations.js +0 -10
- package/dist/features/seller/migrations.d.ts +0 -2
- package/dist/features/seller/migrations.js +0 -10
- package/dist/features/stores/migrations.d.ts +0 -2
- package/dist/features/stores/migrations.js +0 -10
- package/dist/features/sublisting/migrations.d.ts +0 -2
- package/dist/features/sublisting/migrations.js +0 -10
- package/dist/features/sublisting/schemas/firestore.d.ts +0 -32
- package/dist/features/sublisting/schemas/firestore.js +0 -19
- package/dist/features/support/migrations.d.ts +0 -2
- package/dist/features/support/migrations.js +0 -10
- package/dist/features/wishlist/migrations.d.ts +0 -2
- package/dist/features/wishlist/migrations.js +0 -10
- package/dist/seed/_bundle-constants.d.ts +0 -14
- package/dist/seed/_bundle-constants.js +0 -14
- package/dist/seed/anime-figures-seed-data.d.ts +0 -8
- package/dist/seed/anime-figures-seed-data.js +0 -1033
- package/dist/seed/beyblade-seed-data.d.ts +0 -7
- package/dist/seed/beyblade-seed-data.js +0 -1129
- package/dist/seed/brands-seed-data.d.ts +0 -7
- package/dist/seed/brands-seed-data.js +0 -410
- package/dist/seed/bundles-seed-data.d.ts +0 -13
- package/dist/seed/bundles-seed-data.js +0 -229
- package/dist/seed/cosplay-accessories-seed-data.d.ts +0 -8
- package/dist/seed/cosplay-accessories-seed-data.js +0 -647
- package/dist/seed/hot-wheels-seed-data.d.ts +0 -7
- package/dist/seed/hot-wheels-seed-data.js +0 -1612
- package/dist/seed/letitrip-official-seed-data.d.ts +0 -8
- package/dist/seed/letitrip-official-seed-data.js +0 -399
- package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +0 -8
- package/dist/seed/pokemon-carousel-slides-seed-data.js +0 -322
- package/dist/seed/pokemon-categories-seed-data.d.ts +0 -24
- package/dist/seed/pokemon-categories-seed-data.js +0 -547
- package/dist/seed/pokemon-coupons-seed-data.d.ts +0 -6
- package/dist/seed/pokemon-coupons-seed-data.js +0 -465
- package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +0 -7
- package/dist/seed/pokemon-homepage-sections-seed-data.js +0 -241
- package/dist/seed/pokemon-products-seed-data.d.ts +0 -9
- package/dist/seed/pokemon-products-seed-data.js +0 -1791
- package/dist/seed/pokemon-seed-bundle.d.ts +0 -47
- package/dist/seed/pokemon-seed-bundle.js +0 -71
- package/dist/seed/pokemon-stores-seed-data.d.ts +0 -6
- package/dist/seed/pokemon-stores-seed-data.js +0 -179
- package/dist/seed/pokemon-users-seed-data.d.ts +0 -6
- package/dist/seed/pokemon-users-seed-data.js +0 -521
- package/dist/seed/products-seed-data.d.ts +0 -6
- package/dist/seed/products-seed-data.js +0 -2530
- package/dist/seed/retro-gaming-seed-data.d.ts +0 -8
- package/dist/seed/retro-gaming-seed-data.js +0 -801
- package/dist/seed/server.d.ts +0 -2
- package/dist/seed/server.js +0 -7
- package/dist/seed/sublisting-categories-seed-data.d.ts +0 -7
- package/dist/seed/sublisting-categories-seed-data.js +0 -159
- package/dist/seed/transformers-seed-data.d.ts +0 -7
- package/dist/seed/transformers-seed-data.js +0 -530
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Brands Seed Data — Collectibles Edition
|
|
3
|
-
* 13 real brands covering: action figures, trading cards, diecast, spinning tops, model kits.
|
|
4
|
-
* id === slug convention enforced throughout.
|
|
5
|
-
*/
|
|
6
|
-
import type { BrandDocument } from "../features/brands/schemas";
|
|
7
|
-
export declare const brandsSeedData: BrandDocument[];
|
|
@@ -1,410 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Brands Seed Data — Collectibles Edition
|
|
3
|
-
* 13 real brands covering: action figures, trading cards, diecast, spinning tops, model kits.
|
|
4
|
-
* id === slug convention enforced throughout.
|
|
5
|
-
*/
|
|
6
|
-
const NOW = new Date();
|
|
7
|
-
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
8
|
-
export const brandsSeedData = [
|
|
9
|
-
{
|
|
10
|
-
id: "brand-bandai",
|
|
11
|
-
slug: "brand-bandai",
|
|
12
|
-
name: "Bandai",
|
|
13
|
-
description: "Japan's leading toy and hobby manufacturer. Home to Gundam plastic model kits (Gunpla), SH Figuarts, Dragon Ball figures, Digimon, Power Rangers, and premium collectibles.",
|
|
14
|
-
logoURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop",
|
|
15
|
-
bannerURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop",
|
|
16
|
-
website: "https://www.bandai.co.jp",
|
|
17
|
-
country: "Japan",
|
|
18
|
-
founded: 1950,
|
|
19
|
-
isActive: true,
|
|
20
|
-
displayOrder: 1,
|
|
21
|
-
productCount: 0,
|
|
22
|
-
createdAt: daysAgo(400),
|
|
23
|
-
updatedAt: daysAgo(30),
|
|
24
|
-
},
|
|
25
|
-
{
|
|
26
|
-
id: "brand-hasbro",
|
|
27
|
-
slug: "brand-hasbro",
|
|
28
|
-
name: "Hasbro",
|
|
29
|
-
description: "American multinational toy and entertainment company. Makes Transformers, Marvel Legends, Star Wars Black Series, My Little Pony, Nerf, and G.I. Joe collectibles.",
|
|
30
|
-
logoURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=hasbro",
|
|
31
|
-
bannerURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=hasbro",
|
|
32
|
-
website: "https://www.hasbro.com",
|
|
33
|
-
country: "USA",
|
|
34
|
-
founded: 1923,
|
|
35
|
-
isActive: true,
|
|
36
|
-
displayOrder: 2,
|
|
37
|
-
productCount: 0,
|
|
38
|
-
createdAt: daysAgo(400),
|
|
39
|
-
updatedAt: daysAgo(30),
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
id: "brand-takara-tomy",
|
|
43
|
-
slug: "brand-takara-tomy",
|
|
44
|
-
name: "Takara Tomy",
|
|
45
|
-
description: "Iconic Japanese toy manufacturer formed by the merger of Takara and Tomy in 2006. Creates Beyblade Burst, Tomica diecast cars, Transformers (Japan), and Zoids.",
|
|
46
|
-
logoURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop",
|
|
47
|
-
bannerURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop",
|
|
48
|
-
website: "https://www.takaratomy.co.jp",
|
|
49
|
-
country: "Japan",
|
|
50
|
-
founded: 2006,
|
|
51
|
-
isActive: true,
|
|
52
|
-
displayOrder: 3,
|
|
53
|
-
productCount: 0,
|
|
54
|
-
createdAt: daysAgo(400),
|
|
55
|
-
updatedAt: daysAgo(30),
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
id: "brand-mattel",
|
|
59
|
-
slug: "brand-mattel",
|
|
60
|
-
name: "Mattel",
|
|
61
|
-
description: "American toy giant behind Hot Wheels, Barbie, Masters of the Universe, UNO, and Fisher-Price. Hot Wheels alone has over 900 vehicle models released annually.",
|
|
62
|
-
logoURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=mattel",
|
|
63
|
-
bannerURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=mattel",
|
|
64
|
-
website: "https://www.mattel.com",
|
|
65
|
-
country: "USA",
|
|
66
|
-
founded: 1945,
|
|
67
|
-
isActive: true,
|
|
68
|
-
displayOrder: 4,
|
|
69
|
-
productCount: 0,
|
|
70
|
-
createdAt: daysAgo(400),
|
|
71
|
-
updatedAt: daysAgo(30),
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
id: "brand-pokemon-company",
|
|
75
|
-
slug: "brand-pokemon-company",
|
|
76
|
-
name: "The Pokémon Company",
|
|
77
|
-
description: "Japanese consortium managing the Pokémon intellectual property. Publishes the Pokémon Trading Card Game (TCG), video games, anime merchandise, and official licensed collectibles worldwide.",
|
|
78
|
-
logoURL: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop",
|
|
79
|
-
bannerURL: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop",
|
|
80
|
-
website: "https://www.pokemon.com",
|
|
81
|
-
country: "Japan",
|
|
82
|
-
founded: 1998,
|
|
83
|
-
isActive: true,
|
|
84
|
-
displayOrder: 5,
|
|
85
|
-
productCount: 0,
|
|
86
|
-
createdAt: daysAgo(400),
|
|
87
|
-
updatedAt: daysAgo(30),
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
id: "brand-konami",
|
|
91
|
-
slug: "brand-konami",
|
|
92
|
-
name: "Konami",
|
|
93
|
-
description: "Japanese entertainment conglomerate best known for the Yu-Gi-Oh! Trading Card Game. Also produces Metal Gear, Silent Hill, and Castlevania merchandise and figures.",
|
|
94
|
-
logoURL: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=200&h=200&fit=crop",
|
|
95
|
-
bannerURL: "https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?w=1200&h=400&fit=crop",
|
|
96
|
-
website: "https://www.konami.com",
|
|
97
|
-
country: "Japan",
|
|
98
|
-
founded: 1969,
|
|
99
|
-
isActive: true,
|
|
100
|
-
displayOrder: 6,
|
|
101
|
-
productCount: 0,
|
|
102
|
-
createdAt: daysAgo(400),
|
|
103
|
-
updatedAt: daysAgo(30),
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
id: "brand-funko",
|
|
107
|
-
slug: "brand-funko",
|
|
108
|
-
name: "Funko",
|
|
109
|
-
description: "American pop-culture collectibles company. Iconic for Funko Pop! vinyl figures spanning thousands of licenses including Marvel, DC, anime, Disney, gaming, sports, and music.",
|
|
110
|
-
logoURL: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=200&h=200&fit=crop",
|
|
111
|
-
bannerURL: "https://images.unsplash.com/photo-1578292992345-7ee038c5fb7c?w=1200&h=400&fit=crop",
|
|
112
|
-
website: "https://funko.com",
|
|
113
|
-
country: "USA",
|
|
114
|
-
founded: 1998,
|
|
115
|
-
isActive: true,
|
|
116
|
-
displayOrder: 7,
|
|
117
|
-
productCount: 0,
|
|
118
|
-
createdAt: daysAgo(400),
|
|
119
|
-
updatedAt: daysAgo(30),
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
id: "brand-neca",
|
|
123
|
-
slug: "brand-neca",
|
|
124
|
-
name: "NECA",
|
|
125
|
-
description: "National Entertainment Collectibles Association — American designer and manufacturer of highly detailed action figures. Known for horror icons, Teenage Mutant Ninja Turtles, and video game characters.",
|
|
126
|
-
logoURL: "https://images.unsplash.com/photo-1531259683007-016a7b628fc3?w=200&h=200&fit=crop",
|
|
127
|
-
bannerURL: "https://images.unsplash.com/photo-1531259683007-016a7b628fc3?w=1200&h=400&fit=crop",
|
|
128
|
-
website: "https://www.necaonline.com",
|
|
129
|
-
country: "USA",
|
|
130
|
-
founded: 1996,
|
|
131
|
-
isActive: true,
|
|
132
|
-
displayOrder: 8,
|
|
133
|
-
productCount: 0,
|
|
134
|
-
createdAt: daysAgo(400),
|
|
135
|
-
updatedAt: daysAgo(30),
|
|
136
|
-
},
|
|
137
|
-
{
|
|
138
|
-
id: "brand-mcfarlane",
|
|
139
|
-
slug: "brand-mcfarlane",
|
|
140
|
-
name: "McFarlane Toys",
|
|
141
|
-
description: "American action figure company founded by comic artist Todd McFarlane. Official DC Multiverse figures, Warhammer, Spawn, and premium collector statuettes with extraordinary detail.",
|
|
142
|
-
logoURL: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=200&h=200&fit=crop",
|
|
143
|
-
bannerURL: "https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=1200&h=400&fit=crop",
|
|
144
|
-
website: "https://www.mcfarlane.com",
|
|
145
|
-
country: "USA",
|
|
146
|
-
founded: 1994,
|
|
147
|
-
isActive: true,
|
|
148
|
-
displayOrder: 9,
|
|
149
|
-
productCount: 0,
|
|
150
|
-
createdAt: daysAgo(400),
|
|
151
|
-
updatedAt: daysAgo(30),
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
id: "brand-good-smile",
|
|
155
|
-
slug: "brand-good-smile",
|
|
156
|
-
name: "Good Smile Company",
|
|
157
|
-
description: "Japan's premier figure manufacturer. Producer of Nendoroids, figma, and high-end scale PVC figures. Official partner for Fate, Hatsune Miku, Sword Art Online, Re:Zero, and hundreds of anime series.",
|
|
158
|
-
logoURL: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=200&h=200&fit=crop",
|
|
159
|
-
bannerURL: "https://images.unsplash.com/photo-1578632767115-351597cf2477?w=1200&h=400&fit=crop",
|
|
160
|
-
website: "https://www.goodsmile.info",
|
|
161
|
-
country: "Japan",
|
|
162
|
-
founded: 2001,
|
|
163
|
-
isActive: true,
|
|
164
|
-
displayOrder: 10,
|
|
165
|
-
productCount: 0,
|
|
166
|
-
createdAt: daysAgo(400),
|
|
167
|
-
updatedAt: daysAgo(30),
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
id: "brand-hot-wheels",
|
|
171
|
-
slug: "brand-hot-wheels",
|
|
172
|
-
name: "Hot Wheels",
|
|
173
|
-
description: "Mattel's iconic 1:64 scale die-cast vehicle brand since 1968. Treasure Hunt, Super Treasure Hunt, Car Culture, RLC exclusives, and track sets. Over 6 billion cars sold worldwide.",
|
|
174
|
-
logoURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=hotwheels",
|
|
175
|
-
bannerURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=hotwheels",
|
|
176
|
-
website: "https://hotwheels.mattel.com",
|
|
177
|
-
country: "USA",
|
|
178
|
-
founded: 1968,
|
|
179
|
-
isActive: true,
|
|
180
|
-
displayOrder: 11,
|
|
181
|
-
productCount: 0,
|
|
182
|
-
createdAt: daysAgo(400),
|
|
183
|
-
updatedAt: daysAgo(30),
|
|
184
|
-
},
|
|
185
|
-
{
|
|
186
|
-
id: "brand-tomica",
|
|
187
|
-
slug: "brand-tomica",
|
|
188
|
-
name: "Tomica",
|
|
189
|
-
description: "Takara Tomy's 1:64 scale Japanese diecast car series since 1970. Features authentic Japanese vehicles (Toyota, Honda, Nissan), emergency vehicles, and licensed premium Tomica Premium line.",
|
|
190
|
-
logoURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=tomica",
|
|
191
|
-
bannerURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=tomica",
|
|
192
|
-
website: "https://www.takaratomy.co.jp/products/tomica",
|
|
193
|
-
country: "Japan",
|
|
194
|
-
founded: 1970,
|
|
195
|
-
isActive: true,
|
|
196
|
-
displayOrder: 12,
|
|
197
|
-
productCount: 0,
|
|
198
|
-
createdAt: daysAgo(400),
|
|
199
|
-
updatedAt: daysAgo(30),
|
|
200
|
-
},
|
|
201
|
-
{
|
|
202
|
-
id: "brand-beyblade",
|
|
203
|
-
slug: "brand-beyblade",
|
|
204
|
-
name: "Beyblade",
|
|
205
|
-
description: "Takara Tomy's competitive spinning top battle franchise. Covers classic Metal Fight, Beyblade Burst, Beyblade X, and Hasbro-localized versions. Official tournaments held worldwide including India.",
|
|
206
|
-
logoURL: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=200&h=200&fit=crop",
|
|
207
|
-
bannerURL: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=1200&h=400&fit=crop",
|
|
208
|
-
website: "https://beyblade.takaratomy.co.jp",
|
|
209
|
-
country: "Japan",
|
|
210
|
-
founded: 1999,
|
|
211
|
-
isActive: true,
|
|
212
|
-
displayOrder: 13,
|
|
213
|
-
productCount: 0,
|
|
214
|
-
createdAt: daysAgo(400),
|
|
215
|
-
updatedAt: daysAgo(30),
|
|
216
|
-
},
|
|
217
|
-
// ── Extended brands (P26 expansion) ──────────────────────────────────────────
|
|
218
|
-
{
|
|
219
|
-
id: "brand-kotobukiya",
|
|
220
|
-
slug: "brand-kotobukiya",
|
|
221
|
-
name: "Kotobukiya",
|
|
222
|
-
description: "Premium Japanese model kit and figure manufacturer. Famous for Frame Arms Girl, Megami Device, ARTFX statues, and licensed kits from Star Wars, Marvel, and DC. Known for detailed snap-fit kits requiring no glue.",
|
|
223
|
-
logoURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=kotobukiya",
|
|
224
|
-
bannerURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=kotobukiya",
|
|
225
|
-
website: "https://www.kotobukiya.co.jp",
|
|
226
|
-
country: "Japan",
|
|
227
|
-
founded: 1947,
|
|
228
|
-
isActive: true,
|
|
229
|
-
displayOrder: 14,
|
|
230
|
-
productCount: 0,
|
|
231
|
-
createdAt: daysAgo(300),
|
|
232
|
-
updatedAt: daysAgo(30),
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
id: "brand-alter",
|
|
236
|
-
slug: "brand-alter",
|
|
237
|
-
name: "Alter",
|
|
238
|
-
description: "High-end Japanese scale figure manufacturer under A+ Corporation. Renowned for exceptional paint quality and sculpt accuracy. Specialises in 1/7 and 1/8 scale anime figures from Re:Zero, Fate, and other popular IPs.",
|
|
239
|
-
logoURL: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop",
|
|
240
|
-
bannerURL: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop",
|
|
241
|
-
website: "https://alter-web.jp",
|
|
242
|
-
country: "Japan",
|
|
243
|
-
founded: 2000,
|
|
244
|
-
isActive: true,
|
|
245
|
-
displayOrder: 15,
|
|
246
|
-
productCount: 0,
|
|
247
|
-
createdAt: daysAgo(300),
|
|
248
|
-
updatedAt: daysAgo(30),
|
|
249
|
-
},
|
|
250
|
-
{
|
|
251
|
-
id: "brand-max-factory",
|
|
252
|
-
slug: "brand-max-factory",
|
|
253
|
-
name: "Max Factory",
|
|
254
|
-
description: "Japanese figure manufacturer known for the figma articulated figure line and figFIX static figures. Partners with Good Smile Company. figma figures are prized for their wide articulation range and interchangeable parts.",
|
|
255
|
-
logoURL: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop&seed=maxfactory",
|
|
256
|
-
bannerURL: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop&seed=maxfactory",
|
|
257
|
-
website: "https://www.maxfactory.jp",
|
|
258
|
-
country: "Japan",
|
|
259
|
-
founded: 1987,
|
|
260
|
-
isActive: true,
|
|
261
|
-
displayOrder: 16,
|
|
262
|
-
productCount: 0,
|
|
263
|
-
createdAt: daysAgo(300),
|
|
264
|
-
updatedAt: daysAgo(30),
|
|
265
|
-
},
|
|
266
|
-
{
|
|
267
|
-
id: "brand-medicom-toy",
|
|
268
|
-
slug: "brand-medicom-toy",
|
|
269
|
-
name: "Medicom Toy",
|
|
270
|
-
description: "Japanese designer toy and collectible figure company. Creator of MAFEX (Miracle Action Figure EX) — highly articulated figures with film-accurate sculpts covering Batman, Spider-Man, and Star Wars. Also produces BE@RBRICK designer toys.",
|
|
271
|
-
logoURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=medicom",
|
|
272
|
-
bannerURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=medicom",
|
|
273
|
-
website: "https://www.medicomtoy.co.jp",
|
|
274
|
-
country: "Japan",
|
|
275
|
-
founded: 1996,
|
|
276
|
-
isActive: true,
|
|
277
|
-
displayOrder: 17,
|
|
278
|
-
productCount: 0,
|
|
279
|
-
createdAt: daysAgo(300),
|
|
280
|
-
updatedAt: daysAgo(30),
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
id: "brand-bushiroad",
|
|
284
|
-
slug: "brand-bushiroad",
|
|
285
|
-
name: "Bushiroad",
|
|
286
|
-
description: "Japanese trading card game publisher. Home to One Piece Card Game, Cardfight!! Vanguard, Weiß Schwarz, and Sword Art Online TCG. Growing fast in India's TCG community alongside Pokémon and Yu-Gi-Oh.",
|
|
287
|
-
logoURL: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=200&h=200&fit=crop",
|
|
288
|
-
bannerURL: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=1200&h=400&fit=crop",
|
|
289
|
-
website: "https://www.bushiroad.com",
|
|
290
|
-
country: "Japan",
|
|
291
|
-
founded: 2007,
|
|
292
|
-
isActive: true,
|
|
293
|
-
displayOrder: 18,
|
|
294
|
-
productCount: 0,
|
|
295
|
-
createdAt: daysAgo(300),
|
|
296
|
-
updatedAt: daysAgo(30),
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
id: "brand-panini",
|
|
300
|
-
slug: "brand-panini",
|
|
301
|
-
name: "Panini",
|
|
302
|
-
description: "Italian sticker and trading card company with global reach. Official partner for FIFA, NBA, NFL, ICC Cricket, and IPL trading cards. Popular in India for cricket and football card collections.",
|
|
303
|
-
logoURL: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=200&h=200&fit=crop&seed=panini",
|
|
304
|
-
bannerURL: "https://images.unsplash.com/photo-1586953208448-b95a79798f07?w=1200&h=400&fit=crop&seed=panini",
|
|
305
|
-
website: "https://www.paniniamerica.net",
|
|
306
|
-
country: "Italy",
|
|
307
|
-
founded: 1961,
|
|
308
|
-
isActive: true,
|
|
309
|
-
displayOrder: 19,
|
|
310
|
-
productCount: 0,
|
|
311
|
-
createdAt: daysAgo(300),
|
|
312
|
-
updatedAt: daysAgo(30),
|
|
313
|
-
},
|
|
314
|
-
{
|
|
315
|
-
id: "brand-spin-master",
|
|
316
|
-
slug: "brand-spin-master",
|
|
317
|
-
name: "Spin Master",
|
|
318
|
-
description: "Canadian toy company known for Bakugan battle planet, Air Hogs, Paw Patrol, and Tech Deck. Bakugan has a dedicated competitive community in India with official tournaments.",
|
|
319
|
-
logoURL: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=200&h=200&fit=crop&seed=spinmaster",
|
|
320
|
-
bannerURL: "https://images.unsplash.com/photo-1555680202-c86f0e12f086?w=1200&h=400&fit=crop&seed=spinmaster",
|
|
321
|
-
website: "https://www.spinmaster.com",
|
|
322
|
-
country: "Canada",
|
|
323
|
-
founded: 1994,
|
|
324
|
-
isActive: true,
|
|
325
|
-
displayOrder: 20,
|
|
326
|
-
productCount: 0,
|
|
327
|
-
createdAt: daysAgo(300),
|
|
328
|
-
updatedAt: daysAgo(30),
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
id: "brand-jakks-pacific",
|
|
332
|
-
slug: "brand-jakks-pacific",
|
|
333
|
-
name: "JAKKS Pacific",
|
|
334
|
-
description: "American toy manufacturer producing licensed action figures for Nintendo (World of Nintendo), Disney, and WWE. Affordable 4-inch figure lines popular among budget collectors.",
|
|
335
|
-
logoURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=jakks",
|
|
336
|
-
bannerURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=jakks",
|
|
337
|
-
website: "https://www.jakkspacific.com",
|
|
338
|
-
country: "USA",
|
|
339
|
-
founded: 1995,
|
|
340
|
-
isActive: true,
|
|
341
|
-
displayOrder: 21,
|
|
342
|
-
productCount: 0,
|
|
343
|
-
createdAt: daysAgo(300),
|
|
344
|
-
updatedAt: daysAgo(30),
|
|
345
|
-
},
|
|
346
|
-
{
|
|
347
|
-
id: "brand-corgi",
|
|
348
|
-
slug: "brand-corgi",
|
|
349
|
-
name: "Corgi",
|
|
350
|
-
description: "British diecast vehicle manufacturer with a 70-year heritage. Iconic for James Bond DB5 in gold, aviation models, and classic British cars. Collector grade quality with opening parts and realistic detail.",
|
|
351
|
-
logoURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=corgi",
|
|
352
|
-
bannerURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=corgi",
|
|
353
|
-
website: "https://www.corgi.co.uk",
|
|
354
|
-
country: "UK",
|
|
355
|
-
founded: 1956,
|
|
356
|
-
isActive: true,
|
|
357
|
-
displayOrder: 22,
|
|
358
|
-
productCount: 0,
|
|
359
|
-
createdAt: daysAgo(300),
|
|
360
|
-
updatedAt: daysAgo(30),
|
|
361
|
-
},
|
|
362
|
-
{
|
|
363
|
-
id: "brand-matchbox",
|
|
364
|
-
slug: "brand-matchbox",
|
|
365
|
-
name: "Matchbox",
|
|
366
|
-
description: "Iconic British diecast toy car brand since 1953, now owned by Mattel. Known for 1:64 scale realistic vehicles. The Moving Parts line features opening hoods and doors. Beloved by Indian collectors for nostalgia value.",
|
|
367
|
-
logoURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=200&h=200&fit=crop&seed=matchbox",
|
|
368
|
-
bannerURL: "https://images.unsplash.com/photo-1581235720704-06d3acfcb36f?w=1200&h=400&fit=crop&seed=matchbox",
|
|
369
|
-
website: "https://www.matchbox.com",
|
|
370
|
-
country: "UK",
|
|
371
|
-
founded: 1953,
|
|
372
|
-
isActive: true,
|
|
373
|
-
displayOrder: 23,
|
|
374
|
-
productCount: 0,
|
|
375
|
-
createdAt: daysAgo(300),
|
|
376
|
-
updatedAt: daysAgo(30),
|
|
377
|
-
},
|
|
378
|
-
{
|
|
379
|
-
id: "brand-mega-construx",
|
|
380
|
-
slug: "brand-mega-construx",
|
|
381
|
-
name: "Mega Construx",
|
|
382
|
-
description: "Mattel's construction toy brand (now marketed as MEGA). Produces detailed building sets for Pokémon, Halo, Call of Duty, and Masters of the Universe. Pokémon MEGA sets are popular gift items for young collectors.",
|
|
383
|
-
logoURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=200&h=200&fit=crop&seed=mega",
|
|
384
|
-
bannerURL: "https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&h=400&fit=crop&seed=mega",
|
|
385
|
-
website: "https://www.mega.us",
|
|
386
|
-
country: "USA",
|
|
387
|
-
founded: 2000,
|
|
388
|
-
isActive: true,
|
|
389
|
-
displayOrder: 24,
|
|
390
|
-
productCount: 0,
|
|
391
|
-
createdAt: daysAgo(300),
|
|
392
|
-
updatedAt: daysAgo(30),
|
|
393
|
-
},
|
|
394
|
-
{
|
|
395
|
-
id: "brand-sideshow-collectibles",
|
|
396
|
-
slug: "brand-sideshow-collectibles",
|
|
397
|
-
name: "Sideshow Collectibles",
|
|
398
|
-
description: "Premium American collectible statue and figure manufacturer. Known for 1/4 scale and 1/6 scale premium statues for Marvel, DC, Star Wars, and horror franchises. Limited edition runs make these highly sought-after.",
|
|
399
|
-
logoURL: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=200&h=200&fit=crop&seed=sideshow",
|
|
400
|
-
bannerURL: "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=1200&h=400&fit=crop&seed=sideshow",
|
|
401
|
-
website: "https://www.sideshowtoy.com",
|
|
402
|
-
country: "USA",
|
|
403
|
-
founded: 1994,
|
|
404
|
-
isActive: true,
|
|
405
|
-
displayOrder: 25,
|
|
406
|
-
productCount: 0,
|
|
407
|
-
createdAt: daysAgo(300),
|
|
408
|
-
updatedAt: daysAgo(30),
|
|
409
|
-
},
|
|
410
|
-
];
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Bundles Seed Data — Tier SB Bundle/Prize-Draw foundation (S21 2026-05-12).
|
|
3
|
-
*
|
|
4
|
-
* Bundles are the new homogeneous-listingType replacement for the legacy
|
|
5
|
-
* `groupedListings` collection. Each bundle holds 3–16 items of the SAME
|
|
6
|
-
* listing type (`standard` xor `pre-order`). Auctions and prize-draws are
|
|
7
|
-
* intentionally excluded — their price/quantity semantics don't compose.
|
|
8
|
-
*
|
|
9
|
-
* id === slug convention enforced; `bundle-` prefix.
|
|
10
|
-
* Stored at top-level `bundles/{bundle-slug}`.
|
|
11
|
-
*/
|
|
12
|
-
import type { BundleDocument } from "../features/bundles/schemas";
|
|
13
|
-
export declare const bundlesSeedData: BundleDocument[];
|
|
@@ -1,229 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Bundles Seed Data — Tier SB Bundle/Prize-Draw foundation (S21 2026-05-12).
|
|
3
|
-
*
|
|
4
|
-
* Bundles are the new homogeneous-listingType replacement for the legacy
|
|
5
|
-
* `groupedListings` collection. Each bundle holds 3–16 items of the SAME
|
|
6
|
-
* listing type (`standard` xor `pre-order`). Auctions and prize-draws are
|
|
7
|
-
* intentionally excluded — their price/quantity semantics don't compose.
|
|
8
|
-
*
|
|
9
|
-
* id === slug convention enforced; `bundle-` prefix.
|
|
10
|
-
* Stored at top-level `bundles/{bundle-slug}`.
|
|
11
|
-
*/
|
|
12
|
-
import { BUNDLE_PREFIX } from "./_bundle-constants";
|
|
13
|
-
const NOW = new Date();
|
|
14
|
-
const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
|
|
15
|
-
/** Standard-only sample bundle — Pokémon Palace starter pack. */
|
|
16
|
-
const pokemonStarterBundle = {
|
|
17
|
-
id: `${BUNDLE_PREFIX}pokemon-tcg-starter-pack-2026`,
|
|
18
|
-
slug: `${BUNDLE_PREFIX}pokemon-tcg-starter-pack-2026`,
|
|
19
|
-
title: "Pokémon TCG Starter Pack 2026",
|
|
20
|
-
description: "A curated 3-item bundle for new Pokémon TCG collectors — a Paldean Fates ETB, a tin of Stellar Crown boosters, and a deck box. Save ₹650 vs buying separately.",
|
|
21
|
-
storeId: "store-pokemon-palace",
|
|
22
|
-
storeName: "Pokémon Palace",
|
|
23
|
-
status: "published",
|
|
24
|
-
bundleItemType: "standard",
|
|
25
|
-
bundleItems: [
|
|
26
|
-
{
|
|
27
|
-
productId: "product-pokemon-sv-etb",
|
|
28
|
-
productSlug: "product-pokemon-sv-etb",
|
|
29
|
-
title: "Pokémon SV Elite Trainer Box",
|
|
30
|
-
listingType: "standard",
|
|
31
|
-
images: [
|
|
32
|
-
"/media/product-image-pokemon-sv-etb-1-20260101.jpg",
|
|
33
|
-
],
|
|
34
|
-
price: 349900,
|
|
35
|
-
quantity: 1,
|
|
36
|
-
isSold: false,
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
productId: "product-pokemon-stellar-crown-tin",
|
|
40
|
-
productSlug: "product-pokemon-stellar-crown-tin",
|
|
41
|
-
title: "Pokémon Stellar Crown Booster Tin",
|
|
42
|
-
listingType: "standard",
|
|
43
|
-
images: [
|
|
44
|
-
"/media/product-image-pokemon-stellar-crown-tin-1-20260101.jpg",
|
|
45
|
-
],
|
|
46
|
-
price: 199900,
|
|
47
|
-
quantity: 1,
|
|
48
|
-
isSold: false,
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
productId: "product-pokemon-deck-box-pikachu",
|
|
52
|
-
productSlug: "product-pokemon-deck-box-pikachu",
|
|
53
|
-
title: "Pokémon Pikachu Deck Box",
|
|
54
|
-
listingType: "standard",
|
|
55
|
-
images: [
|
|
56
|
-
"/media/product-image-pokemon-deck-box-pikachu-1-20260101.jpg",
|
|
57
|
-
],
|
|
58
|
-
price: 99900,
|
|
59
|
-
quantity: 1,
|
|
60
|
-
isSold: false,
|
|
61
|
-
},
|
|
62
|
-
],
|
|
63
|
-
bundlePrice: 649900,
|
|
64
|
-
bundleOriginalTotal: 649700,
|
|
65
|
-
currency: "INR",
|
|
66
|
-
category: "Trading Cards",
|
|
67
|
-
categorySlug: "category-pokemon-tcg",
|
|
68
|
-
brandSlug: "brand-pokemon-company",
|
|
69
|
-
tags: ["pokemon", "tcg", "bundle", "starter", "sv-era"],
|
|
70
|
-
images: [
|
|
71
|
-
"/media/bundle-image-pokemon-tcg-starter-pack-2026-1-20260101.jpg",
|
|
72
|
-
],
|
|
73
|
-
isFeatured: true,
|
|
74
|
-
isPromoted: false,
|
|
75
|
-
maxPerUser: 3,
|
|
76
|
-
partOfBundleProductIds: [
|
|
77
|
-
"product-pokemon-sv-etb",
|
|
78
|
-
"product-pokemon-stellar-crown-tin",
|
|
79
|
-
"product-pokemon-deck-box-pikachu",
|
|
80
|
-
],
|
|
81
|
-
createdBy: "user-aryan-kapoor",
|
|
82
|
-
createdAt: daysAgo(15),
|
|
83
|
-
updatedAt: daysAgo(2),
|
|
84
|
-
};
|
|
85
|
-
/** Pre-order-only sample bundle — Gundam Galaxy upcoming PG combo. */
|
|
86
|
-
const gunplaPgPreorderBundle = {
|
|
87
|
-
id: `${BUNDLE_PREFIX}gunpla-pg-arrivals-2026`,
|
|
88
|
-
slug: `${BUNDLE_PREFIX}gunpla-pg-arrivals-2026`,
|
|
89
|
-
title: "Gunpla PG Arrivals — Pre-Order Bundle 2026",
|
|
90
|
-
description: "Three Perfect Grade Gunpla pre-orders shipping in the next 4 months. 12% deposit secures all three units. Save ₹1,200 vs individual pre-orders.",
|
|
91
|
-
storeId: "store-gundam-galaxy",
|
|
92
|
-
storeName: "Gundam Galaxy",
|
|
93
|
-
status: "published",
|
|
94
|
-
bundleItemType: "pre-order",
|
|
95
|
-
bundleItems: [
|
|
96
|
-
{
|
|
97
|
-
productId: "preorder-gundam-pg-unicorn-ver15",
|
|
98
|
-
productSlug: "preorder-gundam-pg-unicorn-ver15",
|
|
99
|
-
title: "PG Unicorn Gundam Ver 1.5",
|
|
100
|
-
listingType: "pre-order",
|
|
101
|
-
images: [
|
|
102
|
-
"/media/preorder-image-gundam-pg-unicorn-ver15-1-20260101.jpg",
|
|
103
|
-
],
|
|
104
|
-
price: 999900,
|
|
105
|
-
quantity: 1,
|
|
106
|
-
isSold: false,
|
|
107
|
-
},
|
|
108
|
-
{
|
|
109
|
-
productId: "preorder-gundam-rg-hi-nu-verka",
|
|
110
|
-
productSlug: "preorder-gundam-rg-hi-nu-verka",
|
|
111
|
-
title: "RG Hi-Nu Gundam VerKa",
|
|
112
|
-
listingType: "pre-order",
|
|
113
|
-
images: [
|
|
114
|
-
"/media/preorder-image-gundam-rg-hi-nu-verka-1-20260101.jpg",
|
|
115
|
-
],
|
|
116
|
-
price: 499900,
|
|
117
|
-
quantity: 1,
|
|
118
|
-
isSold: false,
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
productId: "preorder-shf-broly-super-hero",
|
|
122
|
-
productSlug: "preorder-shf-broly-super-hero",
|
|
123
|
-
title: "S.H.Figuarts Broly Super Hero",
|
|
124
|
-
listingType: "pre-order",
|
|
125
|
-
images: [
|
|
126
|
-
"/media/preorder-image-shf-broly-super-hero-1-20260101.jpg",
|
|
127
|
-
],
|
|
128
|
-
price: 299900,
|
|
129
|
-
quantity: 1,
|
|
130
|
-
isSold: false,
|
|
131
|
-
},
|
|
132
|
-
],
|
|
133
|
-
bundlePrice: 1679700,
|
|
134
|
-
bundleOriginalTotal: 1799700,
|
|
135
|
-
currency: "INR",
|
|
136
|
-
category: "Model Kits",
|
|
137
|
-
categorySlug: "category-gundam-perfect-grade",
|
|
138
|
-
brandSlug: "brand-bandai",
|
|
139
|
-
tags: ["gunpla", "pg", "pre-order", "bundle", "bandai"],
|
|
140
|
-
images: [
|
|
141
|
-
"/media/bundle-image-gunpla-pg-arrivals-2026-1-20260101.jpg",
|
|
142
|
-
],
|
|
143
|
-
isFeatured: false,
|
|
144
|
-
isPromoted: true,
|
|
145
|
-
maxPerUser: 1,
|
|
146
|
-
partOfBundleProductIds: [
|
|
147
|
-
"preorder-gundam-pg-unicorn-ver15",
|
|
148
|
-
"preorder-gundam-rg-hi-nu-verka",
|
|
149
|
-
"preorder-shf-broly-super-hero",
|
|
150
|
-
],
|
|
151
|
-
createdBy: "user-amit-sharma",
|
|
152
|
-
createdAt: daysAgo(20),
|
|
153
|
-
updatedAt: daysAgo(4),
|
|
154
|
-
};
|
|
155
|
-
/** Standard-only OOS sample — tests `out_of_stock` UI surface. */
|
|
156
|
-
const beybladeOosBundle = {
|
|
157
|
-
id: `${BUNDLE_PREFIX}beyblade-x-launch-pack-2025`,
|
|
158
|
-
slug: `${BUNDLE_PREFIX}beyblade-x-launch-pack-2025`,
|
|
159
|
-
title: "Beyblade X Launch Pack 2025 (SOLD OUT)",
|
|
160
|
-
description: "Four-item Beyblade X launch pack — original 2025 release. One of the four items has sold; bundle marked OOS until restock.",
|
|
161
|
-
storeId: "store-beyblade-arena",
|
|
162
|
-
storeName: "Beyblade Arena",
|
|
163
|
-
status: "out_of_stock",
|
|
164
|
-
bundleItemType: "standard",
|
|
165
|
-
bundleItems: [
|
|
166
|
-
{
|
|
167
|
-
productId: "product-beyblade-x-bx18-leon-crest",
|
|
168
|
-
productSlug: "product-beyblade-x-bx18-leon-crest",
|
|
169
|
-
title: "Beyblade X BX-18 Leon Crest Booster",
|
|
170
|
-
listingType: "standard",
|
|
171
|
-
images: [
|
|
172
|
-
"/media/product-image-beyblade-x-bx18-leon-crest-1-20260101.jpg",
|
|
173
|
-
],
|
|
174
|
-
price: 199900,
|
|
175
|
-
quantity: 1,
|
|
176
|
-
isSold: false,
|
|
177
|
-
},
|
|
178
|
-
{
|
|
179
|
-
productId: "product-beyblade-x-bx10-dran-dagger",
|
|
180
|
-
productSlug: "product-beyblade-x-bx10-dran-dagger",
|
|
181
|
-
title: "Beyblade X BX-10 Dran Dagger",
|
|
182
|
-
listingType: "standard",
|
|
183
|
-
images: [
|
|
184
|
-
"/media/product-image-beyblade-x-bx10-dran-dagger-1-20260101.jpg",
|
|
185
|
-
],
|
|
186
|
-
price: 199900,
|
|
187
|
-
quantity: 1,
|
|
188
|
-
isSold: true,
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
productId: "product-beyblade-x-launcher-grip",
|
|
192
|
-
productSlug: "product-beyblade-x-launcher-grip",
|
|
193
|
-
title: "Beyblade X String Launcher + Grip",
|
|
194
|
-
listingType: "standard",
|
|
195
|
-
images: [
|
|
196
|
-
"/media/product-image-beyblade-x-launcher-grip-1-20260101.jpg",
|
|
197
|
-
],
|
|
198
|
-
price: 149900,
|
|
199
|
-
quantity: 1,
|
|
200
|
-
isSold: false,
|
|
201
|
-
},
|
|
202
|
-
],
|
|
203
|
-
bundlePrice: 499900,
|
|
204
|
-
bundleOriginalTotal: 549700,
|
|
205
|
-
currency: "INR",
|
|
206
|
-
category: "Spinning Tops",
|
|
207
|
-
categorySlug: "category-beyblade-x",
|
|
208
|
-
brandSlug: "brand-takara-tomy",
|
|
209
|
-
tags: ["beyblade-x", "bundle", "launch-pack", "oos"],
|
|
210
|
-
images: [
|
|
211
|
-
"/media/bundle-image-beyblade-x-launch-pack-2025-1-20260101.jpg",
|
|
212
|
-
],
|
|
213
|
-
isFeatured: false,
|
|
214
|
-
isPromoted: false,
|
|
215
|
-
maxPerUser: 2,
|
|
216
|
-
partOfBundleProductIds: [
|
|
217
|
-
"product-beyblade-x-bx18-leon-crest",
|
|
218
|
-
"product-beyblade-x-bx10-dran-dagger",
|
|
219
|
-
"product-beyblade-x-launcher-grip",
|
|
220
|
-
],
|
|
221
|
-
createdBy: "user-rohit-joshi",
|
|
222
|
-
createdAt: daysAgo(45),
|
|
223
|
-
updatedAt: daysAgo(10),
|
|
224
|
-
};
|
|
225
|
-
export const bundlesSeedData = [
|
|
226
|
-
pokemonStarterBundle,
|
|
227
|
-
gunplaPgPreorderBundle,
|
|
228
|
-
beybladeOosBundle,
|
|
229
|
-
];
|
|
@@ -1,8 +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 type { ProductDocument } from "../features/products/schemas";
|
|
8
|
-
export declare const cosplayAccessoriesSeedData: Partial<ProductDocument>[];
|