@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.
- package/dist/_internal/client/features/maintenance/index.d.ts +2 -0
- package/dist/_internal/client/features/maintenance/index.js +1 -0
- package/dist/_internal/client/features/maintenance/views/CloudLogsListView.d.ts +9 -0
- package/dist/_internal/client/features/maintenance/views/CloudLogsListView.js +55 -0
- package/dist/_internal/server/features/auctions/index.d.ts +1 -1
- package/dist/_internal/server/features/auctions/index.js +1 -1
- package/dist/_internal/server/features/auctions/service.js +2 -2
- package/dist/_internal/server/features/maintenance/cloud-logs-data.d.ts +50 -0
- package/dist/_internal/server/features/maintenance/cloud-logs-data.js +152 -0
- package/dist/_internal/server/jobs/core/onOrderCreate.d.ts +4 -12
- package/dist/_internal/server/jobs/core/onOrderCreate.js +3 -3
- package/dist/_internal/server/jobs/core/onProductWrite.js +14 -2
- package/dist/_internal/shared/features/auctions/config.d.ts +1 -1
- package/dist/_internal/shared/features/auctions/config.js +1 -1
- package/dist/_internal/shared/features/auctions/schema.js +1 -1
- package/dist/_internal/shared/features/cart/schema.js +2 -2
- package/dist/_internal/shared/features/events/schema.js +1 -1
- package/dist/_internal/shared/features/orders/schema.js +1 -1
- package/dist/_internal/shared/features/products/schema.js +3 -3
- package/dist/_internal/shared/features/promotions/schema.js +3 -3
- package/dist/_internal/shared/fees/calculator.d.ts +6 -7
- package/dist/client.d.ts +4 -4
- package/dist/client.js +4 -2
- package/dist/constants/api-endpoints.d.ts +9 -6
- package/dist/constants/api-endpoints.js +3 -2
- package/dist/contracts/client-payment-gateway.d.ts +1 -2
- package/dist/features/about/components/AboutView.d.ts +6 -16
- package/dist/features/about/components/AboutView.js +3 -3
- package/dist/features/about/index.d.ts +2 -1
- package/dist/features/about/schemas/firestore.d.ts +47 -0
- package/dist/features/about/schemas/firestore.js +6 -0
- package/dist/features/about/schemas/index.d.ts +210 -0
- package/dist/features/about/schemas/index.js +45 -0
- package/dist/features/account/hooks/useProfile.js +3 -0
- package/dist/features/admin/components/AdminCarouselGroupEditorView.d.ts +6 -0
- package/dist/features/admin/components/AdminCarouselGroupEditorView.js +50 -0
- package/dist/features/admin/components/AdminCartsView.js +16 -3
- package/dist/features/admin/components/AdminCouponEditorView.js +2 -2
- package/dist/features/admin/components/AdminCouponsView.js +14 -4
- package/dist/features/admin/components/AdminEmployeeEditorView.js +1 -42
- package/dist/features/admin/components/AdminMediaView.js +1 -1
- package/dist/features/admin/components/AdminNotificationsView.js +31 -19
- package/dist/features/admin/components/AdminOrdersView.js +7 -0
- package/dist/features/admin/components/AdminPayoutsView.js +18 -3
- package/dist/features/admin/components/AdminProductsView.js +17 -2
- package/dist/features/admin/components/AdminReviewsView.js +16 -2
- package/dist/features/admin/components/AdminScammersView.js +7 -0
- package/dist/features/admin/components/AdminSectionsView.js +4 -0
- package/dist/features/admin/components/AdminSiteConfigGuideView.js +1 -1
- package/dist/features/admin/components/AdminSiteSettingsView.js +44 -2
- package/dist/features/admin/components/AdminStoreEditorView.d.ts +2 -1
- package/dist/features/admin/components/AdminStoreEditorView.js +4 -4
- package/dist/features/admin/components/AdminStoresView.js +1 -1
- package/dist/features/admin/components/AdminSupportTicketDetailView.js +23 -5
- package/dist/features/admin/components/AdminSupportTicketsView.js +20 -2
- package/dist/features/admin/components/AdminTesterChecklistItemEditorView.js +4 -1
- package/dist/features/admin/components/AdminTesterChecklistView.js +8 -0
- package/dist/features/admin/components/index.d.ts +2 -0
- package/dist/features/admin/components/index.js +1 -0
- package/dist/features/admin/constants/filter-tabs.d.ts +55 -41
- package/dist/features/admin/constants/filter-tabs.js +55 -27
- package/dist/features/admin/schemas/firestore.d.ts +5 -0
- package/dist/features/auctions/actions/bid-actions.js +1 -1
- package/dist/features/auctions/components/AuctionDetailPageView.js +2 -2
- package/dist/features/auctions/components/AuctionsListView.js +8 -1
- package/dist/features/auth/components/LoginForm.js +2 -2
- package/dist/features/auth/components/RegisterForm.js +2 -2
- package/dist/features/auth/permissions/constants.d.ts +16 -0
- package/dist/features/auth/permissions/constants.js +53 -0
- package/dist/features/auth/schemas/firestore.js +1 -0
- package/dist/features/blog/components/BlogFilters.js +1 -1
- package/dist/features/cart/schemas/firestore.d.ts +1 -1
- package/dist/features/categories/schemas/firestore.d.ts +1 -1
- package/dist/features/consultation/components/ConsultationForm.js +1 -1
- package/dist/features/events/components/EventFilters.js +2 -0
- package/dist/features/homepage/components/WelcomeSection.js +2 -2
- package/dist/features/layout/TitleBarLayout.d.ts +2 -2
- package/dist/features/layout/TitleBarLayout.js +4 -4
- package/dist/features/media/AvatarUpload.js +7 -3
- package/dist/features/media/MediaVideo.js +1 -1
- package/dist/features/media/finalize.d.ts +9 -13
- package/dist/features/media/finalize.js +23 -74
- package/dist/features/media/server.d.ts +1 -1
- package/dist/features/media/server.js +1 -1
- package/dist/features/orders/hooks/useOrders.js +16 -4
- package/dist/features/orders/schemas/firestore.d.ts +5 -5
- package/dist/features/payments/schemas/firestore.d.ts +2 -2
- package/dist/features/pre-orders/components/PreOrdersListView.js +7 -0
- package/dist/features/products/components/ArtStickersListView.js +5 -0
- package/dist/features/products/components/ProductDetailPageView.d.ts +7 -1
- package/dist/features/products/components/ProductForm.js +14 -1
- package/dist/features/products/components/ProductsIndexPageView.js +7 -0
- package/dist/features/products/constants/action-defs.d.ts +1 -0
- package/dist/features/products/constants/action-defs.js +1 -0
- package/dist/features/products/schemas/firestore.d.ts +1 -1
- package/dist/features/products/schemas/product-templates.d.ts +1 -1
- package/dist/features/products/types/index.d.ts +4 -0
- package/dist/features/scams/schemas/index.js +2 -2
- package/dist/features/search/components/Search.js +3 -3
- package/dist/features/seller/components/SellerAuctionsView.js +27 -2
- package/dist/features/seller/components/SellerOrdersView.js +1 -1
- package/dist/features/seller/components/SellerPayoutsView.js +24 -10
- package/dist/features/seller/components/SellerPreOrdersView.js +12 -4
- package/dist/features/seller/components/SellerPrizeDrawsView.js +23 -5
- package/dist/features/seller/components/SellerProductShell.d.ts +2 -0
- package/dist/features/seller/components/SellerProductShell.js +1 -1
- package/dist/features/seller/components/SellerProductsView.js +8 -6
- package/dist/features/seller/components/SellerReviewsView.js +27 -6
- package/dist/features/seller/components/index.d.ts +0 -2
- package/dist/features/seller/components/index.js +0 -1
- package/dist/features/stores/components/StoreListingsGuideView.js +2 -1
- package/dist/features/stores/components/StoreProductsView.js +1 -1
- package/dist/features/stores/schemas/firestore.d.ts +11 -0
- package/dist/features/stores/schemas/firestore.js +5 -0
- package/dist/features/stores/schemas/index.d.ts +2 -2
- package/dist/features/tester/actions/checklist-item-actions.d.ts +6 -0
- package/dist/features/tester/actions/checklist-item-actions.js +2 -0
- package/dist/features/tester/components/AdminTesterFeedbackIssuesView.js +13 -2
- package/dist/features/tester/components/AdminTesterFeedbackListView.js +2 -1
- package/dist/features/tester/components/AdminTesterFeedbackReportView.js +9 -5
- package/dist/features/tester/components/TesterHubView.js +34 -21
- package/dist/features/tester/repository/tester-checklist-item.repository.js +1 -0
- package/dist/features/tester/repository/tester-checklist-response.repository.d.ts +18 -4
- package/dist/features/tester/repository/tester-checklist-response.repository.js +43 -8
- package/dist/features/tester/schemas/firestore.d.ts +8 -3
- package/dist/features/tester/schemas/firestore.js +6 -0
- package/dist/features/tester/seed-data/bids-tester-seed-data.d.ts +2 -0
- package/dist/features/tester/seed-data/bids-tester-seed-data.js +37 -0
- package/dist/features/tester/seed-data/coupons-tester-seed-data.d.ts +2 -0
- package/dist/features/tester/seed-data/coupons-tester-seed-data.js +76 -0
- package/dist/features/tester/seed-data/events-tester-seed-data.js +50 -2
- package/dist/features/tester/seed-data/index.d.ts +3 -0
- package/dist/features/tester/seed-data/index.js +3 -0
- package/dist/features/tester/seed-data/orders-tester-seed-data.d.ts +2 -0
- package/dist/features/tester/seed-data/orders-tester-seed-data.js +265 -0
- package/dist/features/tester/seed-data/products-tester-seed-data.js +213 -8
- package/dist/features/tester/seed-data/tester-checklist-seed-data.js +294 -12
- package/dist/features/tester/utils/phases.d.ts +31 -0
- package/dist/features/tester/utils/phases.js +46 -0
- package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +1 -1
- package/dist/features/whatsapp-bot/types/index.d.ts +1 -1
- package/dist/features/wishlist/types/index.d.ts +3 -0
- package/dist/index.d.ts +11 -4
- package/dist/index.js +15 -7
- package/dist/next/api/routeHandler.js +6 -10
- package/dist/next/components/NotFoundView.js +2 -1
- package/dist/next/routing/route-map.d.ts +4 -12
- package/dist/next/routing/route-map.js +2 -4
- package/dist/providers/db-firebase/admin.d.ts +1 -0
- package/dist/providers/db-firebase/admin.js +1 -1
- package/dist/schemas/registry.d.ts +2 -2
- package/dist/seed/addresses-seed-data.js +18 -18
- package/dist/seed/bids-seed-data.js +4 -4
- package/dist/seed/blog-posts-seed-data.js +82 -82
- package/dist/seed/carousel-slides-seed-data.js +14 -10
- package/dist/seed/carousels-seed-data.js +3 -3
- package/dist/seed/cart-seed-data.js +92 -92
- package/dist/seed/claimed-coupons-seed-data.js +10 -10
- package/dist/seed/conversations-seed-data.js +75 -75
- package/dist/seed/coupon-usage-seed-data.js +12 -12
- package/dist/seed/coupons-seed-data.js +41 -41
- package/dist/seed/events-seed-data.js +105 -105
- package/dist/seed/grouped-listings-seed-data.d.ts +2 -137
- package/dist/seed/grouped-listings-seed-data.js +79 -143
- package/dist/seed/history-seed-data.js +38 -38
- package/dist/seed/homepage-sections-seed-data.js +9 -9
- package/dist/seed/index.d.ts +1 -1
- package/dist/seed/index.js +1 -1
- package/dist/seed/manifest.js +4 -4
- package/dist/seed/notifications-seed-data.js +56 -56
- package/dist/seed/offers-seed-data.js +91 -91
- package/dist/seed/orders-seed-data.js +125 -106
- package/dist/seed/payouts-seed-data.js +42 -42
- package/dist/seed/products-auctions-seed-data.js +10 -2
- package/dist/seed/products-classifieds-seed-data.js +48 -5
- package/dist/seed/products-digital-codes-seed-data.js +48 -5
- package/dist/seed/products-live-items-seed-data.js +6 -1
- package/dist/seed/products-prize-draws-seed-data.js +58 -5
- package/dist/seed/products-standard-seed-data.js +40 -8
- package/dist/seed/reviews-seed-data.js +42 -23
- package/dist/seed/scammers-seed-data.js +22 -22
- package/dist/seed/sessions-seed-data.js +7 -7
- package/dist/seed/shipments-seed-data.js +10 -10
- package/dist/seed/site-settings-seed-data.js +82 -0
- package/dist/seed/store-addresses-seed-data.js +2 -2
- package/dist/seed/store-extensions-seed-data.js +93 -93
- package/dist/seed/stores-seed-data.js +2 -0
- package/dist/seed/support-tickets-seed-data.js +47 -47
- package/dist/seed/users-seed-data.js +55 -89
- package/dist/seed/wishlists-seed-data.js +22 -22
- package/dist/server.d.ts +2 -1
- package/dist/server.js +5 -5
- package/dist/styles.css +1 -1
- package/dist/tailwind-utilities.css +1 -1
- package/dist/ui/components/PageLoader.js +8 -3
- package/dist/ui/components/Select.d.ts +8 -1
- package/dist/ui/components/Select.js +2 -2
- package/dist/ui/components/SiteMark.d.ts +23 -0
- package/dist/ui/components/SiteMark.js +76 -0
- package/dist/ui/index.d.ts +2 -0
- package/dist/ui/index.js +1 -0
- package/dist/validation/schemas.d.ts +0 -2
- package/dist/validation/schemas.js +0 -2
- package/package.json +1 -1
- 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: "
|
|
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: "
|
|
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
|
|
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-
|
|
25
|
-
sellerId: "user-
|
|
26
|
-
storeId: "store-
|
|
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: "
|
|
29
|
+
upiVpa: "beybladearena@upi",
|
|
30
30
|
isDefault: true,
|
|
31
31
|
isActive: true,
|
|
32
32
|
},
|
|
33
33
|
{
|
|
34
|
-
id: "payout-method-
|
|
35
|
-
sellerId: "user-
|
|
36
|
-
storeId: "store-
|
|
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: "
|
|
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: "
|
|
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-
|
|
74
|
-
storeId: "store-
|
|
75
|
-
label: "Free over ₹
|
|
73
|
+
id: "ship-config-beyblade-arena-free",
|
|
74
|
+
storeId: "store-beyblade-arena",
|
|
75
|
+
label: "Free over ₹599",
|
|
76
76
|
method: "free",
|
|
77
|
-
freeAbove:
|
|
77
|
+
freeAbove: 599,
|
|
78
78
|
estimatedDays: 5,
|
|
79
79
|
isDefault: true,
|
|
80
80
|
isActive: true,
|
|
81
81
|
},
|
|
82
82
|
{
|
|
83
|
-
id: "ship-config-
|
|
84
|
-
storeId: "store-
|
|
83
|
+
id: "ship-config-beyblade-arena-express",
|
|
84
|
+
storeId: "store-beyblade-arena",
|
|
85
85
|
label: "Express (2 days)",
|
|
86
86
|
method: "express",
|
|
87
|
-
flatRate:
|
|
88
|
-
expressSurcharge:
|
|
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-
|
|
117
|
-
{ id: "ac-seller-orders-30d", scope: "seller", ownerId: "user-
|
|
118
|
-
{ id: "ac-seller-aov", scope: "seller", ownerId: "user-
|
|
119
|
-
{ id: "ac-seller-traffic", scope: "seller", ownerId: "user-
|
|
120
|
-
{ id: "ac-seller-top-products", scope: "seller", ownerId: "user-
|
|
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-
|
|
129
|
-
{ id: "alert-no-sales-
|
|
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-
|
|
136
|
-
{ id: "scat-
|
|
137
|
-
{ id: "scat-letitrip-sealed", storeId: "store-letitrip-official", label: "Sealed Products", slug: "sealed-products", displayOrder: 0, productIds: [], isActive: true, description: "Factory-sealed
|
|
138
|
-
{ id: "scat-letitrip-accessories", storeId: "store-letitrip-official", label: "Accessories", slug: "accessories", displayOrder: 1, productIds: [], isActive: true, description: "
|
|
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-
|
|
144
|
-
storeId: "store-
|
|
145
|
-
ownerId: "user-
|
|
146
|
-
name: "
|
|
147
|
-
description: "Default fields for a
|
|
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: ["
|
|
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-
|
|
156
|
-
storeId: "store-
|
|
157
|
-
ownerId: "user-
|
|
158
|
-
name: "Vintage
|
|
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-
|
|
166
|
+
id: "tmpl-preorder-takara-tomy",
|
|
167
167
|
storeId: "store-letitrip-official",
|
|
168
168
|
ownerId: "user-admin-letitrip",
|
|
169
|
-
name: "
|
|
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-
|
|
178
|
-
storeId: "store-
|
|
179
|
-
ownerId: "user-
|
|
180
|
-
name: "
|
|
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-
|
|
191
|
-
{ id: "mod-video-
|
|
192
|
-
{ id: "mod-review-
|
|
193
|
-
{ id: "mod-image-
|
|
194
|
-
{ id: "mod-blog-
|
|
195
|
-
{ id: "mod-event-cover-tournament", mediaType: "image", mediaUrl: seedExtMedia("https://picsum.photos/seed/event-cover-
|
|
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-
|
|
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-
|
|
202
|
-
{ id: "report-prohibited-replica-listing", entityType: "product", entityId: "product-suspect-replica-
|
|
203
|
-
{ id: "report-ip-violation-fan-art-print", entityType: "product", entityId: "product-bootleg-
|
|
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-
|
|
208
|
+
id: "irq-l-drago-sealed",
|
|
209
209
|
opUserId: "user-yugi-muto",
|
|
210
|
-
opDisplayName: "
|
|
211
|
-
title: "Looking for
|
|
212
|
-
description: "Hunting a
|
|
213
|
-
category: "
|
|
214
|
-
brand: "
|
|
215
|
-
maxBudget:
|
|
216
|
-
imageUrls: [seedExtMedia("https://
|
|
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-
|
|
224
|
+
id: "irq-original-complete-set",
|
|
225
225
|
opUserId: "user-yugi-muto",
|
|
226
|
-
opDisplayName: "
|
|
227
|
-
title: "Complete
|
|
228
|
-
description: "Need all 5
|
|
229
|
-
category: "
|
|
230
|
-
brand: "
|
|
231
|
-
maxBudget:
|
|
232
|
-
imageUrls: [seedExtMedia("https://
|
|
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-
|
|
240
|
+
id: "irq-x-bx08-sealed",
|
|
241
241
|
opUserId: "user-admin-letitrip",
|
|
242
|
-
opDisplayName: "
|
|
243
|
-
title: "
|
|
244
|
-
description: "Sealed only.
|
|
245
|
-
category: "
|
|
246
|
-
brand: "
|
|
247
|
-
maxBudget:
|
|
248
|
-
imageUrls: [seedExtMedia("https://
|
|
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-
|
|
257
|
+
id: "irq-rejected-replica-driver",
|
|
258
258
|
opUserId: "user-yugi-muto",
|
|
259
|
-
opDisplayName: "
|
|
260
|
-
title: "Looking for cheap
|
|
261
|
-
description: "Cheapest possible
|
|
262
|
-
category: "
|
|
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-
|
|
273
|
-
storeId: "store-
|
|
272
|
+
id: "whatsapp-beyblade-arena",
|
|
273
|
+
storeId: "store-beyblade-arena",
|
|
274
274
|
isConnected: true,
|
|
275
275
|
isPaid: true,
|
|
276
276
|
phoneNumber: "+919876501001",
|
|
277
|
-
businessProfileName: "
|
|
277
|
+
businessProfileName: "Beyblade Arena",
|
|
278
278
|
catalogUrl: "https://wa.me/c/919876501001",
|
|
279
|
-
autoReply: "Hi! Thanks for messaging
|
|
280
|
-
welcomeMessage: "Welcome to
|
|
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-
|
|
295
|
-
storeId: "store-
|
|
294
|
+
id: "google-beyblade-arena",
|
|
295
|
+
storeId: "store-beyblade-arena",
|
|
296
296
|
isConnected: true,
|
|
297
|
-
placeId: "
|
|
298
|
-
businessName: "
|
|
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),
|