@mohasinac/appkit 4.1.0 → 4.1.3

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 (205) hide show
  1. package/dist/_internal/client/features/maintenance/index.d.ts +2 -0
  2. package/dist/_internal/client/features/maintenance/index.js +1 -0
  3. package/dist/_internal/client/features/maintenance/views/CloudLogsListView.d.ts +9 -0
  4. package/dist/_internal/client/features/maintenance/views/CloudLogsListView.js +55 -0
  5. package/dist/_internal/server/features/auctions/index.d.ts +1 -1
  6. package/dist/_internal/server/features/auctions/index.js +1 -1
  7. package/dist/_internal/server/features/auctions/service.js +2 -2
  8. package/dist/_internal/server/features/maintenance/cloud-logs-data.d.ts +50 -0
  9. package/dist/_internal/server/features/maintenance/cloud-logs-data.js +152 -0
  10. package/dist/_internal/server/jobs/core/onOrderCreate.d.ts +4 -12
  11. package/dist/_internal/server/jobs/core/onOrderCreate.js +3 -3
  12. package/dist/_internal/server/jobs/core/onProductWrite.js +14 -2
  13. package/dist/_internal/shared/features/auctions/config.d.ts +1 -1
  14. package/dist/_internal/shared/features/auctions/config.js +1 -1
  15. package/dist/_internal/shared/features/auctions/schema.js +1 -1
  16. package/dist/_internal/shared/features/cart/schema.js +2 -2
  17. package/dist/_internal/shared/features/events/schema.js +1 -1
  18. package/dist/_internal/shared/features/orders/schema.js +1 -1
  19. package/dist/_internal/shared/features/products/schema.js +3 -3
  20. package/dist/_internal/shared/features/promotions/schema.js +3 -3
  21. package/dist/_internal/shared/fees/calculator.d.ts +6 -7
  22. package/dist/client.d.ts +4 -4
  23. package/dist/client.js +4 -2
  24. package/dist/constants/api-endpoints.d.ts +9 -6
  25. package/dist/constants/api-endpoints.js +3 -2
  26. package/dist/contracts/client-payment-gateway.d.ts +1 -2
  27. package/dist/features/about/components/AboutView.d.ts +6 -16
  28. package/dist/features/about/components/AboutView.js +3 -3
  29. package/dist/features/about/index.d.ts +2 -1
  30. package/dist/features/about/schemas/firestore.d.ts +47 -0
  31. package/dist/features/about/schemas/firestore.js +6 -0
  32. package/dist/features/about/schemas/index.d.ts +210 -0
  33. package/dist/features/about/schemas/index.js +45 -0
  34. package/dist/features/account/hooks/useProfile.js +3 -0
  35. package/dist/features/admin/components/AdminCarouselGroupEditorView.d.ts +6 -0
  36. package/dist/features/admin/components/AdminCarouselGroupEditorView.js +50 -0
  37. package/dist/features/admin/components/AdminCartsView.js +16 -3
  38. package/dist/features/admin/components/AdminCouponEditorView.js +2 -2
  39. package/dist/features/admin/components/AdminCouponsView.js +14 -4
  40. package/dist/features/admin/components/AdminEmployeeEditorView.js +1 -42
  41. package/dist/features/admin/components/AdminMediaView.js +1 -1
  42. package/dist/features/admin/components/AdminNotificationsView.js +31 -19
  43. package/dist/features/admin/components/AdminOrdersView.js +7 -0
  44. package/dist/features/admin/components/AdminPayoutsView.js +18 -3
  45. package/dist/features/admin/components/AdminProductsView.js +17 -2
  46. package/dist/features/admin/components/AdminReviewsView.js +16 -2
  47. package/dist/features/admin/components/AdminScammersView.js +7 -0
  48. package/dist/features/admin/components/AdminSectionsView.js +4 -0
  49. package/dist/features/admin/components/AdminSiteConfigGuideView.js +1 -1
  50. package/dist/features/admin/components/AdminSiteSettingsView.js +44 -2
  51. package/dist/features/admin/components/AdminStoreEditorView.d.ts +2 -1
  52. package/dist/features/admin/components/AdminStoreEditorView.js +4 -4
  53. package/dist/features/admin/components/AdminStoresView.js +1 -1
  54. package/dist/features/admin/components/AdminSupportTicketDetailView.js +23 -5
  55. package/dist/features/admin/components/AdminSupportTicketsView.js +20 -2
  56. package/dist/features/admin/components/AdminTesterChecklistItemEditorView.js +4 -1
  57. package/dist/features/admin/components/AdminTesterChecklistView.js +8 -0
  58. package/dist/features/admin/components/index.d.ts +2 -0
  59. package/dist/features/admin/components/index.js +1 -0
  60. package/dist/features/admin/constants/filter-tabs.d.ts +55 -41
  61. package/dist/features/admin/constants/filter-tabs.js +55 -27
  62. package/dist/features/admin/schemas/firestore.d.ts +5 -0
  63. package/dist/features/auctions/actions/bid-actions.js +1 -1
  64. package/dist/features/auctions/components/AuctionDetailPageView.js +2 -2
  65. package/dist/features/auctions/components/AuctionsListView.js +8 -1
  66. package/dist/features/auth/components/LoginForm.js +2 -2
  67. package/dist/features/auth/components/RegisterForm.js +2 -2
  68. package/dist/features/auth/permissions/constants.d.ts +16 -0
  69. package/dist/features/auth/permissions/constants.js +53 -0
  70. package/dist/features/auth/schemas/firestore.js +1 -0
  71. package/dist/features/blog/components/BlogFilters.js +1 -1
  72. package/dist/features/cart/schemas/firestore.d.ts +1 -1
  73. package/dist/features/categories/schemas/firestore.d.ts +1 -1
  74. package/dist/features/consultation/components/ConsultationForm.js +1 -1
  75. package/dist/features/events/components/EventFilters.js +2 -0
  76. package/dist/features/homepage/components/WelcomeSection.js +2 -2
  77. package/dist/features/layout/TitleBarLayout.d.ts +2 -2
  78. package/dist/features/layout/TitleBarLayout.js +4 -4
  79. package/dist/features/media/AvatarUpload.js +7 -3
  80. package/dist/features/media/MediaVideo.js +1 -1
  81. package/dist/features/media/finalize.d.ts +9 -13
  82. package/dist/features/media/finalize.js +23 -74
  83. package/dist/features/media/server.d.ts +1 -1
  84. package/dist/features/media/server.js +1 -1
  85. package/dist/features/orders/hooks/useOrders.js +16 -4
  86. package/dist/features/orders/schemas/firestore.d.ts +5 -5
  87. package/dist/features/payments/schemas/firestore.d.ts +2 -2
  88. package/dist/features/pre-orders/components/PreOrdersListView.js +7 -0
  89. package/dist/features/products/components/ArtStickersListView.js +5 -0
  90. package/dist/features/products/components/ProductDetailPageView.d.ts +7 -1
  91. package/dist/features/products/components/ProductForm.js +14 -1
  92. package/dist/features/products/components/ProductsIndexPageView.js +7 -0
  93. package/dist/features/products/constants/action-defs.d.ts +1 -0
  94. package/dist/features/products/constants/action-defs.js +1 -0
  95. package/dist/features/products/schemas/firestore.d.ts +1 -1
  96. package/dist/features/products/schemas/product-templates.d.ts +1 -1
  97. package/dist/features/products/types/index.d.ts +4 -0
  98. package/dist/features/scams/schemas/index.js +2 -2
  99. package/dist/features/search/components/Search.js +3 -3
  100. package/dist/features/seller/components/SellerAuctionsView.js +27 -2
  101. package/dist/features/seller/components/SellerOrdersView.js +1 -1
  102. package/dist/features/seller/components/SellerPayoutsView.js +24 -10
  103. package/dist/features/seller/components/SellerPreOrdersView.js +12 -4
  104. package/dist/features/seller/components/SellerPrizeDrawsView.js +23 -5
  105. package/dist/features/seller/components/SellerProductShell.d.ts +2 -0
  106. package/dist/features/seller/components/SellerProductShell.js +1 -1
  107. package/dist/features/seller/components/SellerProductsView.js +8 -6
  108. package/dist/features/seller/components/SellerReviewsView.js +27 -6
  109. package/dist/features/seller/components/index.d.ts +0 -2
  110. package/dist/features/seller/components/index.js +0 -1
  111. package/dist/features/stores/components/StoreListingsGuideView.js +2 -1
  112. package/dist/features/stores/components/StoreProductsView.js +1 -1
  113. package/dist/features/stores/schemas/firestore.d.ts +11 -0
  114. package/dist/features/stores/schemas/firestore.js +5 -0
  115. package/dist/features/stores/schemas/index.d.ts +2 -2
  116. package/dist/features/tester/actions/checklist-item-actions.d.ts +6 -0
  117. package/dist/features/tester/actions/checklist-item-actions.js +2 -0
  118. package/dist/features/tester/components/AdminTesterFeedbackIssuesView.js +13 -2
  119. package/dist/features/tester/components/AdminTesterFeedbackListView.js +2 -1
  120. package/dist/features/tester/components/AdminTesterFeedbackReportView.js +9 -5
  121. package/dist/features/tester/components/TesterHubView.js +34 -21
  122. package/dist/features/tester/repository/tester-checklist-item.repository.js +1 -0
  123. package/dist/features/tester/repository/tester-checklist-response.repository.d.ts +18 -4
  124. package/dist/features/tester/repository/tester-checklist-response.repository.js +43 -8
  125. package/dist/features/tester/schemas/firestore.d.ts +8 -3
  126. package/dist/features/tester/schemas/firestore.js +6 -0
  127. package/dist/features/tester/seed-data/bids-tester-seed-data.d.ts +2 -0
  128. package/dist/features/tester/seed-data/bids-tester-seed-data.js +37 -0
  129. package/dist/features/tester/seed-data/coupons-tester-seed-data.d.ts +2 -0
  130. package/dist/features/tester/seed-data/coupons-tester-seed-data.js +76 -0
  131. package/dist/features/tester/seed-data/events-tester-seed-data.js +50 -2
  132. package/dist/features/tester/seed-data/index.d.ts +3 -0
  133. package/dist/features/tester/seed-data/index.js +3 -0
  134. package/dist/features/tester/seed-data/orders-tester-seed-data.d.ts +2 -0
  135. package/dist/features/tester/seed-data/orders-tester-seed-data.js +265 -0
  136. package/dist/features/tester/seed-data/products-tester-seed-data.js +213 -8
  137. package/dist/features/tester/seed-data/tester-checklist-seed-data.js +294 -12
  138. package/dist/features/tester/utils/phases.d.ts +31 -0
  139. package/dist/features/tester/utils/phases.js +46 -0
  140. package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +1 -1
  141. package/dist/features/whatsapp-bot/types/index.d.ts +1 -1
  142. package/dist/features/wishlist/types/index.d.ts +3 -0
  143. package/dist/index.d.ts +11 -4
  144. package/dist/index.js +15 -7
  145. package/dist/next/api/routeHandler.js +6 -10
  146. package/dist/next/components/NotFoundView.js +2 -1
  147. package/dist/next/routing/route-map.d.ts +4 -12
  148. package/dist/next/routing/route-map.js +2 -4
  149. package/dist/providers/db-firebase/admin.d.ts +1 -0
  150. package/dist/providers/db-firebase/admin.js +1 -1
  151. package/dist/schemas/registry.d.ts +2 -2
  152. package/dist/seed/addresses-seed-data.js +18 -18
  153. package/dist/seed/bids-seed-data.js +4 -4
  154. package/dist/seed/blog-posts-seed-data.js +82 -82
  155. package/dist/seed/carousel-slides-seed-data.js +14 -10
  156. package/dist/seed/carousels-seed-data.js +3 -3
  157. package/dist/seed/cart-seed-data.js +92 -92
  158. package/dist/seed/claimed-coupons-seed-data.js +10 -10
  159. package/dist/seed/conversations-seed-data.js +75 -75
  160. package/dist/seed/coupon-usage-seed-data.js +12 -12
  161. package/dist/seed/coupons-seed-data.js +41 -41
  162. package/dist/seed/events-seed-data.js +105 -105
  163. package/dist/seed/grouped-listings-seed-data.d.ts +2 -137
  164. package/dist/seed/grouped-listings-seed-data.js +79 -143
  165. package/dist/seed/history-seed-data.js +38 -38
  166. package/dist/seed/homepage-sections-seed-data.js +9 -9
  167. package/dist/seed/index.d.ts +1 -1
  168. package/dist/seed/index.js +1 -1
  169. package/dist/seed/manifest.js +4 -4
  170. package/dist/seed/notifications-seed-data.js +56 -56
  171. package/dist/seed/offers-seed-data.js +91 -91
  172. package/dist/seed/orders-seed-data.js +125 -106
  173. package/dist/seed/payouts-seed-data.js +42 -42
  174. package/dist/seed/products-auctions-seed-data.js +10 -2
  175. package/dist/seed/products-classifieds-seed-data.js +48 -5
  176. package/dist/seed/products-digital-codes-seed-data.js +48 -5
  177. package/dist/seed/products-live-items-seed-data.js +6 -1
  178. package/dist/seed/products-prize-draws-seed-data.js +58 -5
  179. package/dist/seed/products-standard-seed-data.js +40 -8
  180. package/dist/seed/reviews-seed-data.js +42 -23
  181. package/dist/seed/scammers-seed-data.js +22 -22
  182. package/dist/seed/sessions-seed-data.js +7 -7
  183. package/dist/seed/shipments-seed-data.js +10 -10
  184. package/dist/seed/site-settings-seed-data.js +82 -0
  185. package/dist/seed/store-addresses-seed-data.js +2 -2
  186. package/dist/seed/store-extensions-seed-data.js +93 -93
  187. package/dist/seed/stores-seed-data.js +2 -0
  188. package/dist/seed/support-tickets-seed-data.js +47 -47
  189. package/dist/seed/users-seed-data.js +55 -89
  190. package/dist/seed/wishlists-seed-data.js +22 -22
  191. package/dist/server.d.ts +2 -1
  192. package/dist/server.js +5 -5
  193. package/dist/styles.css +1 -1
  194. package/dist/tailwind-utilities.css +1 -1
  195. package/dist/ui/components/PageLoader.js +8 -3
  196. package/dist/ui/components/Select.d.ts +8 -1
  197. package/dist/ui/components/Select.js +2 -2
  198. package/dist/ui/components/SiteMark.d.ts +23 -0
  199. package/dist/ui/components/SiteMark.js +76 -0
  200. package/dist/ui/index.d.ts +2 -0
  201. package/dist/ui/index.js +1 -0
  202. package/dist/validation/schemas.d.ts +0 -2
  203. package/dist/validation/schemas.js +0 -2
  204. package/package.json +1 -1
  205. package/scripts/seed-cli.mjs +27 -19
@@ -65,6 +65,88 @@ export const siteSettingsSeedData = {
65
65
  alt: "LetItRip Logo",
66
66
  format: "svg",
67
67
  },
68
+ aboutContent: {
69
+ title: "Every collection has a story. Let It Rip.",
70
+ subtitle: "We built India's marketplace for people who chase the thrill of the find — action figures, trading cards, spinning tops, model kits, and everything in between.",
71
+ missionTitle: "Our Mission",
72
+ missionText: "Collectibles are more than objects — they're the Saturday-morning cartoons we grew up on, the cards we traded at recess, the tops we battled on the playground. LetItRip exists to give India's collectors a place built specifically for that obsession: verified sellers, live auctions that actually feel alive, pre-orders for the drops you can't miss, and an escrow-backed checkout so a rare find never turns into a rare regret. We're not trying to be everything to everyone — we're trying to be the best place on the internet to buy, sell, and obsess over the things you collect.",
73
+ howItWorksTitle: "How It Works",
74
+ howItems: [
75
+ {
76
+ title: "Browse & Discover",
77
+ text: "Search thousands of listings across action figures, trading cards, spinning tops, model kits, and vintage rarities — filtered by category, brand, condition, and price so you find exactly what you're hunting for.",
78
+ icon: "🛒",
79
+ tone: "indigo",
80
+ },
81
+ {
82
+ title: "Sell With Confidence",
83
+ text: "Open a store in minutes, list with our SEO-friendly slugging and media tools, and get paid through escrow-protected orders — no chasing buyers, no guessing games.",
84
+ icon: "🏪",
85
+ tone: "teal",
86
+ },
87
+ {
88
+ title: "Bid, Win, Rip",
89
+ text: "Live auctions with real-time bidding, transparent history, and instant outbid alerts. When the gavel falls, checkout and shipping are already lined up.",
90
+ icon: "⚡",
91
+ tone: "amber",
92
+ },
93
+ ],
94
+ valuesTitle: "Our Values",
95
+ valueItems: [
96
+ {
97
+ title: "Trust First",
98
+ text: "Every seller is verified, every payment is escrow-protected, and every listing is held to the same authenticity bar we'd want as buyers ourselves.",
99
+ icon: "🛡️",
100
+ },
101
+ {
102
+ title: "Built By Collectors",
103
+ text: "We're not a generic marketplace with a collectibles tab bolted on — every feature, from grading fields to condition tags, exists because a real collector asked for it.",
104
+ icon: "🤝",
105
+ },
106
+ {
107
+ title: "Move Fast, Ship Fast",
108
+ text: "Rare drops don't wait, and neither do we — from pre-order alerts to 3-7 day delivery, we optimise for the moment you finally get to unbox it.",
109
+ icon: "🚀",
110
+ },
111
+ ],
112
+ milestonesTitle: "Our Journey",
113
+ milestones: [
114
+ { year: "2024", text: "LetItRip started as a weekend project — a single developer, a spinning-top collection outgrowing its shelf, and a conviction that India's collectors deserved a marketplace built just for them." },
115
+ { year: "2025", text: "Live auctions, seller storefronts, and escrow-backed checkout shipped — turning a side project into a real marketplace with verified sellers across action figures, trading cards, and model kits." },
116
+ { year: "2026", text: "Pre-orders, events, raffles, and a mobile-first redesign — built for the community that showed up, bid, sold, and kept coming back." },
117
+ ],
118
+ teamTitle: "Who's Behind LetItRip",
119
+ teamSubtitle: "A small team obsessed with the same thing you are — the hunt for the next piece of the collection.",
120
+ teamMembers: [
121
+ {
122
+ name: "Arjun Verma",
123
+ role: "Founder & Developer",
124
+ bio: "Started LetItRip after one too many afternoons hunting for a specific 1st-edition card across a dozen disconnected forums and marketplaces. Built the entire platform — Next.js front end, Firebase backend, the auction engine, the whole thing — the same way most great collections start: one late night at a time. Still personally answers the support inbox.",
125
+ photoUrl: seedExtMedia("https://picsum.photos/seed/letitrip-team-arjun-verma-20260819/400/400"),
126
+ isFounder: true,
127
+ isDeveloper: true,
128
+ },
129
+ {
130
+ name: "Ananya Rao",
131
+ role: "Community & Trust",
132
+ bio: "Keeps the marketplace honest — seller verification, dispute resolution, and the reason LetItRip's escrow system actually works the way it's supposed to. Collects vintage diecast when she isn't reviewing seller applications.",
133
+ photoUrl: seedExtMedia("https://picsum.photos/seed/letitrip-team-ananya-rao-20260819/400/400"),
134
+ isFounder: false,
135
+ isDeveloper: false,
136
+ },
137
+ {
138
+ name: "Devansh Mehta",
139
+ role: "Seller Success",
140
+ bio: "Helps new stores go from zero listings to their first sale — onboarding, storefront setup, and the occasional 2 a.m. \"why isn't my auction showing up\" message. Runs a Beyblade collection that has outgrown two apartments.",
141
+ photoUrl: seedExtMedia("https://picsum.photos/seed/letitrip-team-devansh-mehta-20260819/400/400"),
142
+ isFounder: false,
143
+ isDeveloper: false,
144
+ },
145
+ ],
146
+ ctaTitle: "Ready to Let It Rip?",
147
+ ctaSell: "Start selling in minutes",
148
+ ctaShop: "Browse the marketplace",
149
+ },
68
150
  background: {
69
151
  light: {
70
152
  type: "gradient",
@@ -24,7 +24,7 @@ export const storeAddressesSeedData = [
24
24
  id: "saddr-letitrip-hq-001",
25
25
  storeSlug: "store-letitrip-official",
26
26
  label: "LetItRip HQ",
27
- fullName: "LetItRip Admin",
27
+ fullName: "Mock User 1",
28
28
  phone: `${_phonePrefix}9876500000`,
29
29
  addressLine1: "12, Collector's Lane, Okhla Phase III",
30
30
  addressLine2: "Tech City Industrial Area",
@@ -41,7 +41,7 @@ export const storeAddressesSeedData = [
41
41
  id: "saddr-letitrip-warehouse-002",
42
42
  storeSlug: "store-letitrip-official",
43
43
  label: "Fulfilment Warehouse",
44
- fullName: "LetItRip Admin",
44
+ fullName: "Mock User 1",
45
45
  phone: `${_phonePrefix}9876500000`,
46
46
  addressLine1: "Unit 7B, Connaught Logistics Park, Lajpat Nagar",
47
47
  city: "Delhi",
@@ -1,5 +1,5 @@
1
1
  /*
2
- * WHY: Seeds the 11 store-extension collections for YGO marketplace (2 stores).
2
+ * WHY: Seeds the 11 store-extension collections for the Beyblade marketplace (2 stores).
3
3
  * WHAT: payoutMethods, shippingConfigs, analyticsCards, analyticsAlerts, storeCategories,
4
4
  * listingTemplates, moderationQueue, reports, itemRequests, storeWhatsAppConfig, storeGoogleConfig.
5
5
  *
@@ -21,24 +21,24 @@ const NOW = new Date();
21
21
  // ───── payoutMethods (4 records) ──────────────────────────────────────────
22
22
  export const payoutMethodsSeedData = [
23
23
  {
24
- id: "payout-method-kaiba-corp-upi-default",
25
- sellerId: "user-seto-kaiba",
26
- storeId: "store-kaiba-corp-cards",
24
+ id: "payout-method-beyblade-arena-upi-default",
25
+ sellerId: "user-tyson-blader",
26
+ storeId: "store-beyblade-arena",
27
27
  type: "upi",
28
28
  label: "Primary UPI",
29
- upiVpa: "kaibacorp@upi",
29
+ upiVpa: "beybladearena@upi",
30
30
  isDefault: true,
31
31
  isActive: true,
32
32
  },
33
33
  {
34
- id: "payout-method-kaiba-corp-bank",
35
- sellerId: "user-seto-kaiba",
36
- storeId: "store-kaiba-corp-cards",
34
+ id: "payout-method-beyblade-arena-bank",
35
+ sellerId: "user-tyson-blader",
36
+ storeId: "store-beyblade-arena",
37
37
  type: "bank",
38
38
  label: "HDFC Current Account",
39
39
  accountNumber: "50200012345678",
40
40
  ifscCode: "HDFC0001234",
41
- accountHolderName: "Kaiba Corp Card Vault LLP",
41
+ accountHolderName: "Beyblade Arena LLP",
42
42
  bankName: "HDFC Bank",
43
43
  isDefault: false,
44
44
  isActive: true,
@@ -61,7 +61,7 @@ export const payoutMethodsSeedData = [
61
61
  label: "SBI Current Account",
62
62
  accountNumber: "00112233445566",
63
63
  ifscCode: "SBIN0001234",
64
- accountHolderName: "LetItRip Admin",
64
+ accountHolderName: "Mock User 1",
65
65
  bankName: "State Bank of India",
66
66
  isDefault: false,
67
67
  isActive: true,
@@ -70,22 +70,22 @@ export const payoutMethodsSeedData = [
70
70
  // ───── shippingConfigs (4 records) ────────────────────────────────────────
71
71
  export const shippingConfigsSeedData = [
72
72
  {
73
- id: "ship-config-kaiba-corp-free",
74
- storeId: "store-kaiba-corp-cards",
75
- label: "Free over ₹999",
73
+ id: "ship-config-beyblade-arena-free",
74
+ storeId: "store-beyblade-arena",
75
+ label: "Free over ₹599",
76
76
  method: "free",
77
- freeAbove: 999,
77
+ freeAbove: 599,
78
78
  estimatedDays: 5,
79
79
  isDefault: true,
80
80
  isActive: true,
81
81
  },
82
82
  {
83
- id: "ship-config-kaiba-corp-express",
84
- storeId: "store-kaiba-corp-cards",
83
+ id: "ship-config-beyblade-arena-express",
84
+ storeId: "store-beyblade-arena",
85
85
  label: "Express (2 days)",
86
86
  method: "express",
87
- flatRate: 199,
88
- expressSurcharge: 99,
87
+ flatRate: 149,
88
+ expressSurcharge: 79,
89
89
  estimatedDays: 2,
90
90
  isDefault: false,
91
91
  isActive: true,
@@ -113,11 +113,11 @@ export const shippingConfigsSeedData = [
113
113
  ];
114
114
  // ───── analyticsCards (9 records) ─────────────────────────────────────────
115
115
  export const analyticsCardsSeedData = [
116
- { id: "ac-seller-revenue-30d", scope: "seller", ownerId: "user-seto-kaiba", title: "Revenue · 30d", type: "metric", metric: "revenue:30d", filters: {}, position: 0, isBuiltIn: true, isVisible: true },
117
- { id: "ac-seller-orders-30d", scope: "seller", ownerId: "user-seto-kaiba", title: "Orders · 30d", type: "metric", metric: "orders:30d", filters: {}, position: 1, isBuiltIn: true, isVisible: true },
118
- { id: "ac-seller-aov", scope: "seller", ownerId: "user-seto-kaiba", title: "Avg Order Value", type: "metric", metric: "aov:30d", filters: {}, position: 2, isBuiltIn: true, isVisible: true },
119
- { id: "ac-seller-traffic", scope: "seller", ownerId: "user-seto-kaiba", title: "Storefront Traffic", type: "line", metric: "store-views:30d", filters: {}, position: 3, isBuiltIn: true, isVisible: true },
120
- { id: "ac-seller-top-products", scope: "seller", ownerId: "user-seto-kaiba", title: "Top Products", type: "table", metric: "top-products:30d", filters: {}, position: 4, isBuiltIn: true, isVisible: true },
116
+ { id: "ac-seller-revenue-30d", scope: "seller", ownerId: "user-tyson-blader", title: "Revenue · 30d", type: "metric", metric: "revenue:30d", filters: {}, position: 0, isBuiltIn: true, isVisible: true },
117
+ { id: "ac-seller-orders-30d", scope: "seller", ownerId: "user-tyson-blader", title: "Orders · 30d", type: "metric", metric: "orders:30d", filters: {}, position: 1, isBuiltIn: true, isVisible: true },
118
+ { id: "ac-seller-aov", scope: "seller", ownerId: "user-tyson-blader", title: "Avg Order Value", type: "metric", metric: "aov:30d", filters: {}, position: 2, isBuiltIn: true, isVisible: true },
119
+ { id: "ac-seller-traffic", scope: "seller", ownerId: "user-tyson-blader", title: "Storefront Traffic", type: "line", metric: "store-views:30d", filters: {}, position: 3, isBuiltIn: true, isVisible: true },
120
+ { id: "ac-seller-top-products", scope: "seller", ownerId: "user-tyson-blader", title: "Top Products", type: "table", metric: "top-products:30d", filters: {}, position: 4, isBuiltIn: true, isVisible: true },
121
121
  { id: "ac-admin-platform-gmv", scope: "admin", ownerId: "user-admin-letitrip", title: "Platform GMV", type: "metric", metric: "platform-gmv:30d", filters: {}, position: 0, isBuiltIn: true, isVisible: true },
122
122
  { id: "ac-admin-active-stores", scope: "admin", ownerId: "user-admin-letitrip", title: "Active Stores", type: "metric", metric: "active-stores", filters: {}, position: 1, isBuiltIn: true, isVisible: true },
123
123
  { id: "ac-admin-pending-mod", scope: "admin", ownerId: "user-admin-letitrip", title: "Pending Moderation", type: "metric", metric: "moderation-pending", filters: {}, position: 2, isBuiltIn: true, isVisible: true },
@@ -125,37 +125,37 @@ export const analyticsCardsSeedData = [
125
125
  ];
126
126
  // ───── analyticsAlerts (4 records) ────────────────────────────────────────
127
127
  export const analyticsAlertsSeedData = [
128
- { id: "alert-low-stock-kaiba", scope: "seller", ownerId: "user-seto-kaiba", label: "Low stock", metric: "min-stock", operator: "<", threshold: 5, windowHours: 24, isActive: true, notifyChannels: ["in-app", "email"] },
129
- { id: "alert-no-sales-kaiba", scope: "seller", ownerId: "user-seto-kaiba", label: "Zero sales 48h", metric: "orders-window", operator: "==", threshold: 0, windowHours: 48, isActive: true, notifyChannels: ["in-app"] },
128
+ { id: "alert-low-stock-arena", scope: "seller", ownerId: "user-tyson-blader", label: "Low stock", metric: "min-stock", operator: "<", threshold: 5, windowHours: 24, isActive: true, notifyChannels: ["in-app", "email"] },
129
+ { id: "alert-no-sales-arena", scope: "seller", ownerId: "user-tyson-blader", label: "Zero sales 48h", metric: "orders-window", operator: "==", threshold: 0, windowHours: 48, isActive: true, notifyChannels: ["in-app"] },
130
130
  { id: "alert-platform-error-rate", scope: "admin", ownerId: "user-admin-letitrip", label: "API error rate > 5%", metric: "api-error-rate", operator: ">", threshold: 0.05, windowHours: 1, isActive: true, notifyChannels: ["in-app", "email", "whatsapp"] },
131
131
  { id: "alert-fraud-surge", scope: "admin", ownerId: "user-admin-letitrip", label: "Fraud reports surge", metric: "reports-1h", operator: ">", threshold: 10, windowHours: 1, isActive: true, notifyChannels: ["in-app", "email"] },
132
132
  ];
133
133
  // ───── storeCategories (4 records) ────────────────────────────────────────
134
134
  export const storeCategoriesSeedData = [
135
- { id: "scat-kaiba-lob-singles", storeId: "store-kaiba-corp-cards", label: "LOB Singles", slug: "lob-singles", displayOrder: 0, productIds: [], isActive: true, description: "Legend of Blue Eyes White Dragon singles.", coverImageUrl: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg") },
136
- { id: "scat-kaiba-graded-slabs", storeId: "store-kaiba-corp-cards", label: "Graded Slabs", slug: "graded-slabs", displayOrder: 1, productIds: [], isActive: true, description: "PSA, BGS, and CGC graded Yu-Gi-Oh! slabs.", coverImageUrl: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg") },
137
- { id: "scat-letitrip-sealed", storeId: "store-letitrip-official", label: "Sealed Products", slug: "sealed-products", displayOrder: 0, productIds: [], isActive: true, description: "Factory-sealed booster boxes, tins, and structure decks.", coverImageUrl: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg") },
138
- { id: "scat-letitrip-accessories", storeId: "store-letitrip-official", label: "Accessories", slug: "accessories", displayOrder: 1, productIds: [], isActive: true, description: "Deck boxes, sleeves, playmats, and binders.", coverImageUrl: seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/38033121.jpg") },
135
+ { id: "scat-arena-original-series", storeId: "store-beyblade-arena", label: "Original Series", slug: "original-series", displayOrder: 0, productIds: [], isActive: true, description: "Original 1999-2003 series beyblades.", coverImageUrl: seedExtMedia("https://picsum.photos/seed/storecat-original-series-20260101/600/400") },
136
+ { id: "scat-arena-metal-fight", storeId: "store-beyblade-arena", label: "Metal Fight", slug: "metal-fight", displayOrder: 1, productIds: [], isActive: true, description: "Metal Fight / Metal Fusion era beyblades.", coverImageUrl: seedExtMedia("https://picsum.photos/seed/storecat-metal-fight-20260101/600/400") },
137
+ { id: "scat-letitrip-sealed", storeId: "store-letitrip-official", label: "Sealed Products", slug: "sealed-products", displayOrder: 0, productIds: [], isActive: true, description: "Factory-sealed launcher sets, stadiums, and starter boxes.", coverImageUrl: seedExtMedia("https://picsum.photos/seed/storecat-sealed-products-20260101/600/400") },
138
+ { id: "scat-letitrip-accessories", storeId: "store-letitrip-official", label: "Accessories", slug: "accessories", displayOrder: 1, productIds: [], isActive: true, description: "Launchers, grip tape, ripcords, and carry cases.", coverImageUrl: seedExtMedia("https://picsum.photos/seed/storecat-accessories-20260101/600/400") },
139
139
  ];
140
140
  // ───── listingTemplates (4 records) ───────────────────────────────────────
141
141
  export const listingTemplatesSeedData = [
142
142
  {
143
- id: "tmpl-standard-ygo-card",
144
- storeId: "store-kaiba-corp-cards",
145
- ownerId: "user-seto-kaiba",
146
- name: "YGO Card · Standard",
147
- description: "Default fields for a graded Yu-Gi-Oh! card listing.",
143
+ id: "tmpl-standard-beyblade",
144
+ storeId: "store-beyblade-arena",
145
+ ownerId: "user-tyson-blader",
146
+ name: "Beyblade · Standard",
147
+ description: "Default fields for a standard beyblade listing.",
148
148
  listingType: "standard",
149
- defaults: { condition: "mint", currency: "INR", tags: ["yugioh", "tcg"] },
149
+ defaults: { condition: "mint", currency: "INR", tags: ["beyblade", "spinning-tops"] },
150
150
  isShared: true,
151
151
  isActive: true,
152
152
  usageCount: 14,
153
153
  },
154
154
  {
155
- id: "tmpl-auction-vintage-ygo",
156
- storeId: "store-kaiba-corp-cards",
157
- ownerId: "user-seto-kaiba",
158
- name: "Vintage YGO Auction",
155
+ id: "tmpl-auction-vintage-beyblade",
156
+ storeId: "store-beyblade-arena",
157
+ ownerId: "user-tyson-blader",
158
+ name: "Vintage Beyblade Auction",
159
159
  listingType: "auction",
160
160
  defaults: { reserveMultiplier: 1.2, auctionDays: 7, currency: "INR" },
161
161
  isShared: false,
@@ -163,10 +163,10 @@ export const listingTemplatesSeedData = [
163
163
  usageCount: 5,
164
164
  },
165
165
  {
166
- id: "tmpl-preorder-konami",
166
+ id: "tmpl-preorder-takara-tomy",
167
167
  storeId: "store-letitrip-official",
168
168
  ownerId: "user-admin-letitrip",
169
- name: "Konami Pre-Order",
169
+ name: "Takara-Tomy Pre-Order",
170
170
  listingType: "pre-order",
171
171
  defaults: { releaseLeadDays: 90, depositPercent: 30 },
172
172
  isShared: false,
@@ -174,10 +174,10 @@ export const listingTemplatesSeedData = [
174
174
  usageCount: 9,
175
175
  },
176
176
  {
177
- id: "tmpl-bundle-ygo-set",
178
- storeId: "store-kaiba-corp-cards",
179
- ownerId: "user-seto-kaiba",
180
- name: "YGO Set Bundle",
177
+ id: "tmpl-bundle-beyblade-set",
178
+ storeId: "store-beyblade-arena",
179
+ ownerId: "user-tyson-blader",
180
+ name: "Beyblade Set Bundle",
181
181
  listingType: "bundle",
182
182
  defaults: { minItems: 3, maxItems: 10, autoDiscountPercent: 12 },
183
183
  isShared: true,
@@ -187,33 +187,33 @@ export const listingTemplatesSeedData = [
187
187
  ];
188
188
  // ───── moderationQueue (6 records) ────────────────────────────────────────
189
189
  export const moderationQueueSeedData = [
190
- { id: "mod-video-blue-eyes-auction", mediaType: "video", mediaUrl: "/media/product-video-blue-eyes-lob-psa10-20260518.mp4", entityType: "product", entityId: "auction-blue-eyes-lob-1st-psa10", ownerId: "user-seto-kaiba", storeId: "store-kaiba-corp-cards", status: "pending", submittedAt: new Date(NOW.getTime() - 3600000) },
191
- { id: "mod-video-dark-magician-unbox", mediaType: "video", mediaUrl: "/media/product-video-dark-magician-lob-20260518.mp4", entityType: "product", entityId: "product-dark-magician-lob-nm", ownerId: "user-seto-kaiba", storeId: "store-kaiba-corp-cards", status: "pending", submittedAt: new Date(NOW.getTime() - 7200000) },
192
- { id: "mod-review-exodia", mediaType: "rich-text", entityType: "review", entityId: "review-exodia-head-yugi-20260510", ownerId: "user-yugi-muto", status: "approved", reviewerId: "user-admin-letitrip", reviewedAt: new Date(NOW.getTime() - 86400000), submittedAt: new Date(NOW.getTime() - 90000000) },
193
- { id: "mod-image-kaiba-banner", mediaType: "image", mediaUrl: seedExtMedia("https://picsum.photos/seed/store-banner-kaiba-corp-cards-20260518/1600/400"), entityType: "storefront", entityId: "store-kaiba-corp-cards", ownerId: "user-seto-kaiba", storeId: "store-kaiba-corp-cards", status: "auto-approved", submittedAt: new Date(NOW.getTime() - 172800000) },
194
- { id: "mod-blog-grading-guide", mediaType: "rich-text", entityType: "blog", entityId: "blog-how-to-grade-yugioh-cards", ownerId: "user-admin-letitrip", status: "approved", reviewerId: "user-admin-letitrip", reviewedAt: new Date(NOW.getTime() - 432000000), submittedAt: new Date(NOW.getTime() - 438000000) },
195
- { id: "mod-event-cover-tournament", mediaType: "image", mediaUrl: seedExtMedia("https://picsum.photos/seed/event-cover-ygo-duel-championship-20260518/1200/600"), entityType: "event", entityId: "event-ygo-duel-championship-june-2026", ownerId: "user-admin-letitrip", status: "approved", reviewerId: "user-admin-letitrip", reviewedAt: new Date(NOW.getTime() - 86400000), submittedAt: new Date(NOW.getTime() - 90000000) },
190
+ { id: "mod-video-dragoon-auction", mediaType: "video", mediaUrl: "/media/product-video-dragoon-storm-20260518.mp4", entityType: "product", entityId: "auction-beyblade-original-dragoon-storm", ownerId: "user-tyson-blader", storeId: "store-beyblade-arena", status: "pending", submittedAt: new Date(NOW.getTime() - 3600000) },
191
+ { id: "mod-video-dranzer-unbox", mediaType: "video", mediaUrl: "/media/product-video-original-dranzer-s-20260518.mp4", entityType: "product", entityId: "product-beyblade-original-dranzer-s", ownerId: "user-tyson-blader", storeId: "store-beyblade-arena", status: "pending", submittedAt: new Date(NOW.getTime() - 7200000) },
192
+ { id: "mod-review-driger-v", mediaType: "rich-text", entityType: "review", entityId: "review-8", ownerId: "user-yugi-muto", status: "approved", reviewerId: "user-admin-letitrip", reviewedAt: new Date(NOW.getTime() - 86400000), submittedAt: new Date(NOW.getTime() - 90000000) },
193
+ { id: "mod-image-arena-banner", mediaType: "image", mediaUrl: seedExtMedia("https://picsum.photos/seed/store-banner-beyblade-arena-20260518/1600/400"), entityType: "storefront", entityId: "store-beyblade-arena", ownerId: "user-tyson-blader", storeId: "store-beyblade-arena", status: "auto-approved", submittedAt: new Date(NOW.getTime() - 172800000) },
194
+ { id: "mod-blog-authentication-guide", mediaType: "rich-text", entityType: "blog", entityId: "blog-spot-genuine-takara-tomy-beyblade", ownerId: "user-admin-letitrip", status: "approved", reviewerId: "user-admin-letitrip", reviewedAt: new Date(NOW.getTime() - 432000000), submittedAt: new Date(NOW.getTime() - 438000000) },
195
+ { id: "mod-event-cover-tournament", mediaType: "image", mediaUrl: seedExtMedia("https://picsum.photos/seed/event-cover-beyblade-tournament-20260518/1200/600"), entityType: "event", entityId: "event-favourite-blader-poll", ownerId: "user-admin-letitrip", status: "approved", reviewerId: "user-admin-letitrip", reviewedAt: new Date(NOW.getTime() - 86400000), submittedAt: new Date(NOW.getTime() - 90000000) },
196
196
  ];
197
197
  // ───── reports (5 records) ────────────────────────────────────────────────
198
198
  export const reportsSeedData = [
199
- { id: "report-counterfeit-blue-eyes", entityType: "product", entityId: "product-suspect-blue-eyes", reporterId: "user-yugi-muto", reason: "counterfeit", detail: "Card edges look reprinted; eye of Anubis hologram missing.", evidenceUrls: [], status: "pending" },
199
+ { id: "report-counterfeit-l-drago", entityType: "product", entityId: "product-suspect-l-drago", reporterId: "user-yugi-muto", reason: "counterfeit", detail: "Weight feels hollow; laser-etched logo missing on the underside.", evidenceUrls: [], status: "pending" },
200
200
  { id: "report-scam-store-fly-by-night", entityType: "store", entityId: "store-suspect-fly-by-night", reporterId: "user-seto-kaiba", reason: "scam", detail: "Reports of orders not shipped after 4 weeks.", evidenceUrls: [], status: "under-review", assignedTo: "user-admin-letitrip" },
201
- { id: "report-spam-review-ygo", entityType: "review", entityId: "review-ygo-spammy", reporterId: "user-yugi-muto", reason: "spam", detail: "Promotional link in review.", evidenceUrls: [], status: "actioned", resolution: "Review hidden.", resolvedAt: new Date(NOW.getTime() - 86400000) },
202
- { id: "report-prohibited-replica-listing", entityType: "product", entityId: "product-suspect-replica-slab", reporterId: "user-admin-letitrip", reason: "prohibited", detail: "Fake PSA slab with forged cert number.", evidenceUrls: [], status: "pending" },
203
- { id: "report-ip-violation-fan-art-print", entityType: "product", entityId: "product-bootleg-ygo-print", reporterId: "user-seto-kaiba", reason: "ip-violation", detail: "Unauthorised Yu-Gi-Oh! art prints — not licensed by Konami.", evidenceUrls: [], status: "under-review", assignedTo: "user-admin-letitrip" },
201
+ { id: "report-spam-review-beyblade", entityType: "review", entityId: "review-spammy", reporterId: "user-yugi-muto", reason: "spam", detail: "Promotional link in review.", evidenceUrls: [], status: "actioned", resolution: "Review hidden.", resolvedAt: new Date(NOW.getTime() - 86400000) },
202
+ { id: "report-prohibited-replica-listing", entityType: "product", entityId: "product-suspect-replica-driver", reporterId: "user-admin-letitrip", reason: "prohibited", detail: "Fake authenticity certificate with forged serial number.", evidenceUrls: [], status: "pending" },
203
+ { id: "report-ip-violation-fan-art-print", entityType: "product", entityId: "product-bootleg-beyblade-print", reporterId: "user-seto-kaiba", reason: "ip-violation", detail: "Unauthorised Beyblade art prints — not licensed by Takara-Tomy.", evidenceUrls: [], status: "under-review", assignedTo: "user-admin-letitrip" },
204
204
  ];
205
205
  // ───── itemRequests (4 records) ───────────────────────────────────────────
206
206
  export const itemRequestsSeedData = [
207
207
  {
208
- id: "irq-blue-eyes-1st-ed-psa8",
208
+ id: "irq-l-drago-sealed",
209
209
  opUserId: "user-yugi-muto",
210
- opDisplayName: "Yugi Muto",
211
- title: "Looking for Blue-Eyes White Dragon LOB 1st Ed PSA 8+",
212
- description: "Hunting a LOB 1st Edition Blue-Eyes, grade 8 or above. Budget ₹2,50,000.",
213
- category: "trading-cards",
214
- brand: "konami",
215
- maxBudget: 250000,
216
- imageUrls: [seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/89631139.jpg")],
210
+ opDisplayName: "Mock User 3",
211
+ title: "Looking for sealed Metal Lightning L-Drago",
212
+ description: "Hunting a sealed Metal Lightning L-Drago, tournament-grade tip. Budget ₹8,000.",
213
+ category: "spinning-tops",
214
+ brand: "takara-tomy",
215
+ maxBudget: 8000,
216
+ imageUrls: [seedExtMedia("https://picsum.photos/seed/irq-l-drago-sealed-20260101/600/600")],
217
217
  status: "open",
218
218
  replyCount: 2,
219
219
  replies: [],
@@ -221,15 +221,15 @@ export const itemRequestsSeedData = [
221
221
  approvedBy: "user-admin-letitrip",
222
222
  },
223
223
  {
224
- id: "irq-exodia-complete-set",
224
+ id: "irq-original-complete-set",
225
225
  opUserId: "user-yugi-muto",
226
- opDisplayName: "Yugi Muto",
227
- title: "Complete Exodia Set — LOB 1st Edition",
228
- description: "Need all 5 pieces in NM+ condition. Willing to pay premium for matching set.",
229
- category: "trading-cards",
230
- brand: "konami",
231
- maxBudget: 150000,
232
- imageUrls: [seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/33396948.jpg")],
226
+ opDisplayName: "Mock User 3",
227
+ title: "Complete Original Series Set — Sealed",
228
+ description: "Need all 5 original starter beyblades in sealed condition. Willing to pay premium for a matching set.",
229
+ category: "spinning-tops",
230
+ brand: "takara-tomy",
231
+ maxBudget: 15000,
232
+ imageUrls: [seedExtMedia("https://picsum.photos/seed/irq-original-set-20260101/600/600")],
233
233
  status: "open",
234
234
  replyCount: 0,
235
235
  replies: [],
@@ -237,15 +237,15 @@ export const itemRequestsSeedData = [
237
237
  approvedBy: "user-admin-letitrip",
238
238
  },
239
239
  {
240
- id: "irq-lob-sealed-booster",
240
+ id: "irq-x-bx08-sealed",
241
241
  opUserId: "user-admin-letitrip",
242
- opDisplayName: "LetItRip Admin",
243
- title: "LOB Sealed Booster Pack — any printing",
244
- description: "Sealed only. 1st Ed or Unlimited OK. For platform demo.",
245
- category: "trading-cards",
246
- brand: "konami",
247
- maxBudget: 15000,
248
- imageUrls: [seedExtMedia("https://images.ygoprodeck.com/images/cards/cropped/46986414.jpg")],
242
+ opDisplayName: "Mock User 1",
243
+ title: "Beyblade X BX-08 Wave — any launcher combo",
244
+ description: "Sealed only. For platform demo.",
245
+ category: "spinning-tops",
246
+ brand: "takara-tomy",
247
+ maxBudget: 1500,
248
+ imageUrls: [seedExtMedia("https://picsum.photos/seed/irq-x-bx08-20260101/600/600")],
249
249
  status: "fulfilled",
250
250
  replyCount: 4,
251
251
  replies: [],
@@ -254,12 +254,12 @@ export const itemRequestsSeedData = [
254
254
  closedAt: new Date(NOW.getTime() - 2 * 86400000),
255
255
  },
256
256
  {
257
- id: "irq-rejected-replica-slab",
257
+ id: "irq-rejected-replica-driver",
258
258
  opUserId: "user-yugi-muto",
259
- opDisplayName: "Yugi Muto",
260
- title: "Looking for cheap PSA slabs",
261
- description: "Cheapest possible graded cards, any condition.",
262
- category: "trading-cards",
259
+ opDisplayName: "Mock User 3",
260
+ title: "Looking for cheap metal drivers",
261
+ description: "Cheapest possible metal drivers, any condition.",
262
+ category: "spinning-tops",
263
263
  imageUrls: [],
264
264
  status: "rejected",
265
265
  replyCount: 0,
@@ -269,15 +269,15 @@ export const itemRequestsSeedData = [
269
269
  // ───── storeWhatsAppConfig (2 records) ────────────────────────────────────
270
270
  export const storeWhatsAppConfigSeedData = [
271
271
  {
272
- id: "whatsapp-kaiba-corp",
273
- storeId: "store-kaiba-corp-cards",
272
+ id: "whatsapp-beyblade-arena",
273
+ storeId: "store-beyblade-arena",
274
274
  isConnected: true,
275
275
  isPaid: true,
276
276
  phoneNumber: "+919876501001",
277
- businessProfileName: "Kaiba Corp Card Vault",
277
+ businessProfileName: "Beyblade Arena",
278
278
  catalogUrl: "https://wa.me/c/919876501001",
279
- autoReply: "Hi! Thanks for messaging Kaiba Corp Card Vault. We respond within 2 hours.",
280
- welcomeMessage: "Welcome to Kaiba Corp Card Vault! Browse our YGO catalog above.",
279
+ autoReply: "Hi! Thanks for messaging Beyblade Arena. We respond within 2 hours.",
280
+ welcomeMessage: "Welcome to Beyblade Arena! Browse our full catalog above.",
281
281
  onboardingStatus: "approved",
282
282
  },
283
283
  {
@@ -291,11 +291,11 @@ export const storeWhatsAppConfigSeedData = [
291
291
  // ───── storeGoogleConfig (2 records) ──────────────────────────────────────
292
292
  export const storeGoogleConfigSeedData = [
293
293
  {
294
- id: "google-kaiba-corp",
295
- storeId: "store-kaiba-corp-cards",
294
+ id: "google-beyblade-arena",
295
+ storeId: "store-beyblade-arena",
296
296
  isConnected: true,
297
- placeId: "ChIJkaibacorpcards12345",
298
- businessName: "Kaiba Corp Card Vault",
297
+ placeId: "ChIJbeybladearena12345",
298
+ businessName: "Beyblade Arena",
299
299
  averageRating: 4.8,
300
300
  totalReviews: 89,
301
301
  lastSyncedAt: new Date(NOW.getTime() - 3600000),
@@ -74,6 +74,7 @@ export const storesSeedData = [
74
74
  },
75
75
  isPublic: true,
76
76
  isVacationMode: false,
77
+ emiEnabled: true,
77
78
  stats: {
78
79
  totalProducts: 0,
79
80
  itemsSold: 0,
@@ -122,6 +123,7 @@ export const storesSeedData = [
122
123
  },
123
124
  isPublic: true,
124
125
  isVacationMode: false,
126
+ emiEnabled: true,
125
127
  stats: { totalProducts: 0, itemsSold: 0, totalReviews: 6, averageRating: 4.8 },
126
128
  capabilities: ["host_preorders", "verified_seller", "create_coupons", "suggest_brands"],
127
129
  createdAt: daysAgo(150),