@mohasinac/appkit 2.3.1 → 2.3.2

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 (253) hide show
  1. package/dist/client.d.ts +12 -8
  2. package/dist/client.js +7 -4
  3. package/dist/constants/api-endpoints.d.ts +4 -0
  4. package/dist/constants/api-endpoints.js +2 -0
  5. package/dist/core/contact-submissions.repository.d.ts +32 -0
  6. package/dist/core/contact-submissions.repository.js +49 -0
  7. package/dist/core/index.d.ts +2 -0
  8. package/dist/core/index.js +1 -0
  9. package/dist/features/about/components/HowPayoutsWorkView.js +1 -1
  10. package/dist/features/account/components/AddressFilters.d.ts +5 -0
  11. package/dist/features/account/components/AddressFilters.js +20 -0
  12. package/dist/features/account/components/AddressesIndexListing.d.ts +6 -0
  13. package/dist/features/account/components/AddressesIndexListing.js +51 -0
  14. package/dist/features/account/components/UserSidebar.d.ts +7 -3
  15. package/dist/features/account/components/UserSidebar.js +55 -7
  16. package/dist/features/account/hooks/useAddresses.d.ts +7 -0
  17. package/dist/features/account/hooks/useAddresses.js +12 -1
  18. package/dist/features/admin/actions/admin-read-actions.d.ts +12 -0
  19. package/dist/features/admin/actions/admin-read-actions.js +18 -0
  20. package/dist/features/admin/components/AdminBlogView.js +26 -2
  21. package/dist/features/admin/components/AdminCarouselView.js +18 -2
  22. package/dist/features/admin/components/AdminCategoriesView.js +27 -2
  23. package/dist/features/admin/components/AdminContactView.d.ts +4 -0
  24. package/dist/features/admin/components/AdminContactView.js +50 -0
  25. package/dist/features/admin/components/AdminFaqsView.js +19 -2
  26. package/dist/features/admin/components/AdminListingScaffold.d.ts +11 -2
  27. package/dist/features/admin/components/AdminListingScaffold.js +14 -3
  28. package/dist/features/admin/components/AdminNewsletterView.d.ts +4 -0
  29. package/dist/features/admin/components/AdminNewsletterView.js +50 -0
  30. package/dist/features/admin/components/AdminProductsView.js +30 -2
  31. package/dist/features/admin/components/AdminReviewsView.js +26 -2
  32. package/dist/features/admin/components/AdminStoresView.js +17 -2
  33. package/dist/features/admin/components/AdminUsersView.js +27 -2
  34. package/dist/features/admin/components/DataTable.d.ts +2 -1
  35. package/dist/features/admin/components/DataTable.js +18 -4
  36. package/dist/features/admin/components/index.d.ts +6 -0
  37. package/dist/features/admin/components/index.js +3 -0
  38. package/dist/features/admin/hooks/useAdminListingData.d.ts +3 -1
  39. package/dist/features/admin/hooks/useAdminListingData.js +12 -7
  40. package/dist/features/admin/server.d.ts +3 -0
  41. package/dist/features/admin/server.js +2 -0
  42. package/dist/features/auctions/components/AuctionDetailPageView.js +93 -47
  43. package/dist/features/auctions/components/AuctionFilters.d.ts +8 -0
  44. package/dist/features/auctions/components/AuctionFilters.js +12 -0
  45. package/dist/features/auctions/components/AuctionsListView.d.ts +6 -1
  46. package/dist/features/auctions/components/AuctionsListView.js +37 -5
  47. package/dist/features/auctions/schemas/index.d.ts +4 -4
  48. package/dist/features/blog/components/BlogFeaturedCard.d.ts +1 -7
  49. package/dist/features/blog/components/BlogFeaturedCard.js +4 -5
  50. package/dist/features/blog/components/BlogFilters.js +2 -1
  51. package/dist/features/blog/components/BlogIndexListing.js +14 -9
  52. package/dist/features/blog/components/BlogIndexPageView.d.ts +6 -1
  53. package/dist/features/blog/components/BlogIndexPageView.js +10 -2
  54. package/dist/features/blog/components/BlogListView.d.ts +2 -1
  55. package/dist/features/blog/components/BlogListView.js +10 -3
  56. package/dist/features/categories/components/CategoriesIndexListing.d.ts +1 -1
  57. package/dist/features/categories/components/CategoriesIndexListing.js +41 -38
  58. package/dist/features/categories/components/CategoriesIndexPageView.d.ts +6 -1
  59. package/dist/features/categories/components/CategoriesIndexPageView.js +41 -2
  60. package/dist/features/categories/components/CategoryDetailPageView.js +13 -6
  61. package/dist/features/categories/components/CategoryDetailTabs.d.ts +5 -0
  62. package/dist/features/categories/components/CategoryDetailTabs.js +17 -0
  63. package/dist/features/categories/components/CategoryFilters.js +2 -1
  64. package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
  65. package/dist/features/categories/components/CategoryGrid.js +8 -6
  66. package/dist/features/categories/components/CategoryProductsListing.js +22 -11
  67. package/dist/features/categories/components/index.d.ts +2 -0
  68. package/dist/features/categories/components/index.js +1 -0
  69. package/dist/features/categories/hooks/useCategories.d.ts +20 -0
  70. package/dist/features/categories/hooks/useCategories.js +50 -1
  71. package/dist/features/categories/hooks/useCategoryTree.d.ts +17 -0
  72. package/dist/features/categories/hooks/useCategoryTree.js +65 -0
  73. package/dist/features/events/components/AdminEventEditorView.d.ts +6 -0
  74. package/dist/features/events/components/AdminEventEditorView.js +203 -0
  75. package/dist/features/events/components/AdminEventsView.js +28 -2
  76. package/dist/features/events/components/EventCard.js +4 -2
  77. package/dist/features/events/components/EventFilters.js +2 -1
  78. package/dist/features/events/components/EventsIndexListing.js +40 -10
  79. package/dist/features/events/components/EventsListPageView.d.ts +6 -1
  80. package/dist/features/events/components/EventsListPageView.js +40 -7
  81. package/dist/features/events/components/index.d.ts +2 -0
  82. package/dist/features/events/components/index.js +1 -0
  83. package/dist/features/events/hooks/useEvents.js +2 -0
  84. package/dist/features/events/types/index.d.ts +1 -0
  85. package/dist/features/homepage/components/BlogArticlesSection.js +1 -1
  86. package/dist/features/homepage/components/EventsSection.js +1 -1
  87. package/dist/features/homepage/components/FeaturedAuctionsSection.js +1 -1
  88. package/dist/features/homepage/components/FeaturedPreOrdersSection.js +1 -1
  89. package/dist/features/homepage/components/FeaturedProductsSection.js +1 -1
  90. package/dist/features/homepage/components/FeaturedStoresSection.js +1 -1
  91. package/dist/features/homepage/components/HeroCarousel.js +1 -1
  92. package/dist/features/homepage/components/MarketplaceHomepageView.js +27 -17
  93. package/dist/features/homepage/components/SectionCarousel.js +4 -4
  94. package/dist/features/homepage/components/ShopByCategorySection.js +2 -2
  95. package/dist/features/homepage/schemas/firestore.d.ts +1 -1
  96. package/dist/features/homepage/schemas/firestore.js +2 -1
  97. package/dist/features/layout/AppLayoutShell.d.ts +6 -2
  98. package/dist/features/layout/AppLayoutShell.js +7 -3
  99. package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +3 -1
  100. package/dist/features/pre-orders/components/MarketplacePreorderCard.js +6 -2
  101. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +80 -12
  102. package/dist/features/pre-orders/components/PreOrderFilters.d.ts +8 -0
  103. package/dist/features/pre-orders/components/PreOrderFilters.js +21 -0
  104. package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +2 -1
  105. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +69 -10
  106. package/dist/features/pre-orders/components/PreOrdersListView.d.ts +6 -1
  107. package/dist/features/pre-orders/components/PreOrdersListView.js +26 -7
  108. package/dist/features/pre-orders/components/index.d.ts +2 -0
  109. package/dist/features/pre-orders/components/index.js +1 -0
  110. package/dist/features/products/components/AuctionsIndexListing.d.ts +2 -1
  111. package/dist/features/products/components/AuctionsIndexListing.js +61 -9
  112. package/dist/features/products/components/InteractiveProductCard.d.ts +2 -4
  113. package/dist/features/products/components/InteractiveProductCard.js +2 -2
  114. package/dist/features/products/components/ProductDetailPageView.d.ts +1 -1
  115. package/dist/features/products/components/ProductDetailPageView.js +116 -25
  116. package/dist/features/products/components/ProductFilters.d.ts +6 -11
  117. package/dist/features/products/components/ProductFilters.js +5 -3
  118. package/dist/features/products/components/ProductGrid.d.ts +8 -2
  119. package/dist/features/products/components/ProductGrid.js +20 -5
  120. package/dist/features/products/components/ProductTabsShell.d.ts +3 -11
  121. package/dist/features/products/components/ProductTabsShell.js +14 -14
  122. package/dist/features/products/components/ProductsIndexListing.js +73 -9
  123. package/dist/features/products/components/ProductsIndexPageView.d.ts +6 -1
  124. package/dist/features/products/components/ProductsIndexPageView.js +39 -6
  125. package/dist/features/products/components/RelatedProductsCarousel.d.ts +7 -0
  126. package/dist/features/products/components/RelatedProductsCarousel.js +11 -0
  127. package/dist/features/products/components/index.d.ts +1 -0
  128. package/dist/features/products/components/index.js +1 -0
  129. package/dist/features/products/hooks/useProducts.js +16 -0
  130. package/dist/features/products/repository/products.repository.d.ts +8 -0
  131. package/dist/features/products/repository/products.repository.js +2 -0
  132. package/dist/features/products/schemas/index.d.ts +8 -8
  133. package/dist/features/products/types/index.d.ts +12 -0
  134. package/dist/features/promotions/components/CouponsIndexListing.d.ts +9 -0
  135. package/dist/features/promotions/components/CouponsIndexListing.js +86 -0
  136. package/dist/features/promotions/components/PromotionsView.d.ts +11 -5
  137. package/dist/features/promotions/components/PromotionsView.js +6 -1
  138. package/dist/features/promotions/components/index.d.ts +4 -2
  139. package/dist/features/promotions/components/index.js +2 -1
  140. package/dist/features/reviews/components/ReviewDetailPageView.d.ts +4 -0
  141. package/dist/features/reviews/components/ReviewDetailPageView.js +20 -0
  142. package/dist/features/reviews/components/ReviewDetailShell.d.ts +7 -0
  143. package/dist/features/reviews/components/ReviewDetailShell.js +80 -0
  144. package/dist/features/reviews/components/ReviewFilters.d.ts +3 -3
  145. package/dist/features/reviews/components/ReviewFilters.js +5 -4
  146. package/dist/features/reviews/components/ReviewsIndexListing.d.ts +4 -3
  147. package/dist/features/reviews/components/ReviewsIndexListing.js +35 -51
  148. package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +6 -1
  149. package/dist/features/reviews/components/ReviewsIndexPageView.js +49 -3
  150. package/dist/features/reviews/components/ReviewsList.js +9 -1
  151. package/dist/features/reviews/components/index.d.ts +1 -0
  152. package/dist/features/reviews/hooks/useReviews.js +15 -1
  153. package/dist/features/reviews/types/index.d.ts +6 -1
  154. package/dist/features/seller/components/SellerSidebar.d.ts +8 -4
  155. package/dist/features/seller/components/SellerSidebar.js +6 -4
  156. package/dist/features/seller/components/index.d.ts +30 -0
  157. package/dist/features/seller/components/index.js +17 -0
  158. package/dist/features/seller/hooks/useSellerStore.d.ts +2 -0
  159. package/dist/features/seller/hooks/useSellerStore.js +2 -0
  160. package/dist/features/seller/permission-map.d.ts +4 -2
  161. package/dist/features/seller/permission-map.js +16 -14
  162. package/dist/features/seller/schemas/index.d.ts +2 -2
  163. package/dist/features/stores/api/[storeSlug]/reviews/route.d.ts +1 -1
  164. package/dist/features/stores/api/[storeSlug]/reviews/route.js +24 -19
  165. package/dist/features/stores/components/InteractiveStoreCard.d.ts +0 -5
  166. package/dist/features/stores/components/InteractiveStoreCard.js +9 -9
  167. package/dist/features/stores/components/StoreAuctionsListing.js +27 -9
  168. package/dist/features/stores/components/StoreDetailLayoutView.js +2 -0
  169. package/dist/features/stores/components/StoreFilters.d.ts +5 -0
  170. package/dist/features/stores/components/StoreFilters.js +20 -0
  171. package/dist/features/stores/components/StoreHeader.js +2 -2
  172. package/dist/features/stores/components/StorePreOrdersListing.d.ts +5 -0
  173. package/dist/features/stores/components/StorePreOrdersListing.js +40 -0
  174. package/dist/features/stores/components/StorePreOrdersPageView.d.ts +4 -0
  175. package/dist/features/stores/components/StorePreOrdersPageView.js +21 -0
  176. package/dist/features/stores/components/StoreProductsListing.js +21 -11
  177. package/dist/features/stores/components/StoreReviewsListing.js +2 -7
  178. package/dist/features/stores/components/StoresIndexListing.js +42 -8
  179. package/dist/features/stores/components/StoresIndexPageView.d.ts +6 -1
  180. package/dist/features/stores/components/StoresIndexPageView.js +9 -2
  181. package/dist/features/stores/components/index.d.ts +3 -0
  182. package/dist/features/stores/components/index.js +1 -0
  183. package/dist/features/stores/hooks/useStores.d.ts +7 -1
  184. package/dist/features/stores/hooks/useStores.js +16 -3
  185. package/dist/features/stores/schemas/index.d.ts +2 -2
  186. package/dist/features/stores/types/index.d.ts +3 -0
  187. package/dist/features/wishlist/hooks/useGuestWishlist.d.ts +20 -0
  188. package/dist/features/wishlist/hooks/useGuestWishlist.js +49 -0
  189. package/dist/features/wishlist/hooks/useWishlistCount.d.ts +7 -0
  190. package/dist/features/wishlist/hooks/useWishlistCount.js +31 -0
  191. package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +56 -0
  192. package/dist/features/wishlist/hooks/useWishlistWithGuest.js +57 -0
  193. package/dist/features/wishlist/index.d.ts +3 -0
  194. package/dist/features/wishlist/index.js +3 -0
  195. package/dist/features/wishlist/utils/guest-wishlist.d.ts +22 -0
  196. package/dist/features/wishlist/utils/guest-wishlist.js +70 -0
  197. package/dist/index.d.ts +50 -1
  198. package/dist/index.js +63 -1
  199. package/dist/next/routing/route-map.d.ts +70 -36
  200. package/dist/next/routing/route-map.js +30 -22
  201. package/dist/seed/addresses-seed-data.js +62 -261
  202. package/dist/seed/beyblade-seed-data.d.ts +7 -0
  203. package/dist/seed/beyblade-seed-data.js +947 -0
  204. package/dist/seed/bids-seed-data.d.ts +10 -2
  205. package/dist/seed/bids-seed-data.js +220 -1071
  206. package/dist/seed/blog-posts-seed-data.d.ts +2 -2
  207. package/dist/seed/blog-posts-seed-data.js +455 -117
  208. package/dist/seed/cart-seed-data.d.ts +9 -9
  209. package/dist/seed/cart-seed-data.js +73 -74
  210. package/dist/seed/coupons-seed-data.d.ts +3 -4
  211. package/dist/seed/coupons-seed-data.js +3 -509
  212. package/dist/seed/events-seed-data.d.ts +2 -2
  213. package/dist/seed/events-seed-data.js +315 -476
  214. package/dist/seed/faq-seed-data.d.ts +18 -41
  215. package/dist/seed/faq-seed-data.js +1059 -1172
  216. package/dist/seed/hot-wheels-seed-data.d.ts +7 -0
  217. package/dist/seed/hot-wheels-seed-data.js +1365 -0
  218. package/dist/seed/index.d.ts +6 -1
  219. package/dist/seed/index.js +6 -1
  220. package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +4 -2
  221. package/dist/seed/pokemon-carousel-slides-seed-data.js +152 -268
  222. package/dist/seed/pokemon-categories-seed-data.d.ts +18 -21
  223. package/dist/seed/pokemon-categories-seed-data.js +424 -1004
  224. package/dist/seed/pokemon-coupons-seed-data.d.ts +6 -0
  225. package/dist/seed/pokemon-coupons-seed-data.js +465 -0
  226. package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +3 -2
  227. package/dist/seed/pokemon-homepage-sections-seed-data.js +67 -289
  228. package/dist/seed/pokemon-products-seed-data.js +662 -0
  229. package/dist/seed/pokemon-seed-bundle.d.ts +32 -11
  230. package/dist/seed/pokemon-seed-bundle.js +41 -11
  231. package/dist/seed/pokemon-stores-seed-data.d.ts +2 -3
  232. package/dist/seed/pokemon-stores-seed-data.js +56 -31
  233. package/dist/seed/pokemon-users-seed-data.d.ts +2 -2
  234. package/dist/seed/pokemon-users-seed-data.js +245 -261
  235. package/dist/seed/reviews-seed-data.d.ts +17 -2
  236. package/dist/seed/reviews-seed-data.js +519 -483
  237. package/dist/seed/site-settings-seed-data.js +14 -14
  238. package/dist/seed/store-addresses-seed-data.js +68 -50
  239. package/dist/seed/transformers-seed-data.d.ts +7 -0
  240. package/dist/seed/transformers-seed-data.js +510 -0
  241. package/dist/seed/wishlists-seed-data.d.ts +5 -1
  242. package/dist/seed/wishlists-seed-data.js +82 -4
  243. package/dist/server.d.ts +1 -0
  244. package/dist/server.js +2 -0
  245. package/dist/tokens/index.d.ts +6 -0
  246. package/dist/tokens/index.js +2 -0
  247. package/dist/ui/components/BaseListingCard.js +24 -26
  248. package/dist/ui/components/BaseListingCard.style.css +5 -5
  249. package/dist/ui/components/HorizontalScroller.d.ts +1 -1
  250. package/dist/ui/components/HorizontalScroller.js +19 -5
  251. package/dist/ui/components/SideDrawer.style.css +3 -11
  252. package/dist/ui/rich-text/RichText.js +19 -1
  253. package/package.json +1 -1
@@ -33,10 +33,10 @@ const adPlacementsSeed = [
33
33
  export const siteSettingsSeedData = {
34
34
  id: "global",
35
35
  siteName: "LetItRip",
36
- motto: "India’s Home for Rare Anime Collectibles",
36
+ motto: "India’s #1 Collectibles Marketplace Pokémon · Hot Wheels · Beyblade · Transformers",
37
37
  announcementBar: {
38
38
  enabled: true,
39
- message: "🎉 Up to 15% Off on Pokémon TCG this weekUse code SAVE15",
39
+ message: "🎉 Up to 25% off Pokémon non-holos + Free stadium with 2 Beyblade tops See Events for codes",
40
40
  },
41
41
  logo: {
42
42
  url: "/favicon.svg",
@@ -87,23 +87,23 @@ export const siteSettingsSeedData = {
87
87
  replyTo: "support@letitrip.in",
88
88
  },
89
89
  seo: {
90
- defaultTitle: "LetItRip — Anime Figures, Auctions & Rare Collectibles Marketplace",
90
+ defaultTitle: "LetItRip — Pokemon TCG, Hot Wheels, Beyblade, Transformers | India's Collectibles Marketplace",
91
91
  defaultDescription: "Shop rare anime figures, Nendoroids, Gunpla, Pok\u00e9mon TCG, and cosplay on India\u2019s premier otaku marketplace. Live auctions, pre-orders, and verified sellers.",
92
92
  keywords: [
93
- "anime figures",
94
- "nendoroid",
95
- "gunpla",
96
- "scale figures",
97
- "cosplay",
98
- "pokemon tcg",
93
+ "pokemon tcg india",
94
+ "hot wheels treasure hunt",
95
+ "beyblade burst",
96
+ "transformers figures",
99
97
  "trading cards",
100
- "pre-orders",
98
+ "collectibles marketplace india",
101
99
  "live auction",
102
- "otaku marketplace",
103
- "anime collectibles india",
104
- "figure import india",
100
+ "pre-orders",
101
+ "graded cards psa",
102
+ "base set charizard",
103
+ "diecast cars india",
104
+ "beyblade tops",
105
105
  ],
106
- ogImage: "https://picsum.photos/seed/letitrip-anime-og/1200/630",
106
+ ogImage: "https://picsum.photos/seed/letitrip-collectibles-og/1200/630",
107
107
  },
108
108
  features: [
109
109
  {
@@ -2,44 +2,44 @@ import { getSeedLocale, getDefaultPhonePrefix } from "./seed-market-config";
2
2
  const _locale = getSeedLocale();
3
3
  const _phonePrefix = getDefaultPhonePrefix();
4
4
  /**
5
- * Store Addresses Seed Data
6
- * Sample pickup/warehouse addresses for demo stores
5
+ * Store Addresses Seed Data — Pokemon TCG Themed
7
6
  *
7
+ * Sample pickup/warehouse addresses for demo stores.
8
8
  * Addresses stored as subcollection: stores/{storeSlug}/addresses/{addressId}
9
- * All address documents mapped to stores that exist in stores-seed-data.ts.
9
+ * All address documents mapped to stores that exist in pokemon-stores-seed-data.ts.
10
10
  */
11
11
  // --- Dynamic date helpers ---------------------------------------------------
12
12
  const NOW = new Date();
13
13
  const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
14
14
  export const storeAddressesSeedData = [
15
15
  // ============================================
16
- // FigureVault JP Addresses
16
+ // Misty's Water Card Shop Addresses
17
17
  // ============================================
18
18
  {
19
- id: "saddr-fv-warehouse-1707400001",
20
- storeSlug: "store-figurevault-jp-by-figurevault",
21
- label: "Main Warehouse",
22
- fullName: "Rajesh Sharma",
23
- phone: `${_phonePrefix}9876543210`,
24
- addressLine1: "Unit 12, Goregaon Industrial Estate",
25
- addressLine2: "SV Road, Goregaon West",
26
- landmark: "Near Film City",
19
+ id: "saddr-misty-main-1707400001",
20
+ storeSlug: "store-mistys-water-cards-by-misty",
21
+ label: "Cerulean Gym Vault",
22
+ fullName: "Misty",
23
+ phone: `${_phonePrefix}9876543211`,
24
+ addressLine1: "Cerulean City Gym, 1 Cascade Badge Blvd",
25
+ addressLine2: "Water Pokemon District",
26
+ landmark: "Next to Cerulean City Bike Shop",
27
27
  city: "Mumbai",
28
28
  state: "Maharashtra",
29
- postalCode: "400062",
29
+ postalCode: "400069",
30
30
  country: _locale.countryName,
31
31
  isDefault: true,
32
32
  createdAt: daysAgo(600),
33
33
  updatedAt: daysAgo(600),
34
34
  },
35
35
  {
36
- id: "saddr-fv-showroom-1707400002",
37
- storeSlug: "store-figurevault-jp-by-figurevault",
38
- label: "Showroom",
39
- fullName: "Rajesh Sharma",
40
- phone: `${_phonePrefix}9876543210`,
41
- addressLine1: "Shop 5, Anime Plaza",
42
- addressLine2: "Linking Road, Bandra West",
36
+ id: "saddr-misty-pickup-1707400002",
37
+ storeSlug: "store-mistys-water-cards-by-misty",
38
+ label: "Card Pickup Point",
39
+ fullName: "Misty",
40
+ phone: `${_phonePrefix}9876543211`,
41
+ addressLine1: "12, Cerulean Harbour Market",
42
+ addressLine2: "Near Bike Road",
43
43
  city: "Mumbai",
44
44
  state: "Maharashtra",
45
45
  postalCode: "400050",
@@ -49,57 +49,75 @@ export const storeAddressesSeedData = [
49
49
  updatedAt: daysAgo(580),
50
50
  },
51
51
  // ============================================
52
- // AnimeCraft Apparel Addresses
52
+ // Surge's Electric Gym Shop Addresses
53
53
  // ============================================
54
54
  {
55
- id: "saddr-ac-warehouse-1707400003",
56
- storeSlug: "store-animecraft-apparel-by-animecraft",
57
- label: "Production Unit",
58
- fullName: "Priya Verma",
55
+ id: "saddr-surge-main-1707400003",
56
+ storeSlug: "store-surges-electric-gym-by-surge",
57
+ label: "Vermilion Gym Storage",
58
+ fullName: "Lt. Surge",
59
59
  phone: `${_phonePrefix}9988776655`,
60
- addressLine1: "Plot 34, Okhla Industrial Area, Phase 2",
61
- addressLine2: "New Friends Colony",
62
- city: "New Delhi",
63
- state: "Delhi",
64
- postalCode: "110025",
60
+ addressLine1: "Vermilion City Gym, 1 Thunder Badge Ave",
61
+ addressLine2: "Electric Type District",
62
+ landmark: "Near Vermilion Port",
63
+ city: "Bangalore",
64
+ state: "Karnataka",
65
+ postalCode: "560001",
65
66
  country: _locale.countryName,
66
67
  isDefault: true,
67
68
  createdAt: daysAgo(500),
68
69
  updatedAt: daysAgo(500),
69
70
  },
70
71
  {
71
- id: "saddr-ac-pickup-1707400004",
72
- storeSlug: "store-animecraft-apparel-by-animecraft",
73
- label: "Pickup Point",
74
- fullName: "Priya Verma",
72
+ id: "saddr-surge-warehouse-1707400004",
73
+ storeSlug: "store-surges-electric-gym-by-surge",
74
+ label: "Warehouse",
75
+ fullName: "Lt. Surge",
75
76
  phone: `${_phonePrefix}9988776655`,
76
- addressLine1: "A-12, Sarojini Nagar Market",
77
- city: "New Delhi",
78
- state: "Delhi",
79
- postalCode: "110023",
77
+ addressLine1: "56, Vermilion Industrial Zone",
78
+ addressLine2: "Port District",
79
+ city: "Bangalore",
80
+ state: "Karnataka",
81
+ postalCode: "560038",
80
82
  country: _locale.countryName,
81
83
  isDefault: false,
82
84
  createdAt: daysAgo(480),
83
85
  updatedAt: daysAgo(480),
84
86
  },
85
87
  // ============================================
86
- // OtakuShelf Co Addresses
88
+ // Blaine's Fire Shoppe Addresses
87
89
  // ============================================
88
90
  {
89
- id: "saddr-os-warehouse-1707400005",
90
- storeSlug: "store-otakushelf-co-by-otakushelf",
91
- label: "Central Warehouse",
92
- fullName: "Vikram Patel",
93
- phone: `${_phonePrefix}9123456789`,
94
- addressLine1: "Warehouse 7, Electronic City Phase 1",
95
- addressLine2: "Hosur Road",
96
- landmark: "Opposite Infosys Gate 4",
97
- city: "Bengaluru",
98
- state: "Karnataka",
99
- postalCode: "560100",
91
+ id: "saddr-blaine-main-1707400005",
92
+ storeSlug: "store-blaines-fire-shoppe-by-blaine",
93
+ label: "Cinnabar Volcano Vault",
94
+ fullName: "Blaine",
95
+ phone: `${_phonePrefix}9876543213`,
96
+ addressLine1: "Cinnabar Island Gym",
97
+ addressLine2: "Volcano Road, Cinnabar City",
98
+ landmark: "Near Pokemon Lab",
99
+ city: "Hyderabad",
100
+ state: "Telangana",
101
+ postalCode: "500034",
100
102
  country: _locale.countryName,
101
103
  isDefault: true,
102
104
  createdAt: daysAgo(450),
103
105
  updatedAt: daysAgo(450),
104
106
  },
107
+ {
108
+ id: "saddr-blaine-pickup-1707400006",
109
+ storeSlug: "store-blaines-fire-shoppe-by-blaine",
110
+ label: "Fire Stone Pickup",
111
+ fullName: "Blaine",
112
+ phone: `${_phonePrefix}9876543213`,
113
+ addressLine1: "8, Cinnabar Collectibles Market",
114
+ addressLine2: "Near Fossil Restoration Centre",
115
+ city: "Hyderabad",
116
+ state: "Telangana",
117
+ postalCode: "500081",
118
+ country: _locale.countryName,
119
+ isDefault: false,
120
+ createdAt: daysAgo(430),
121
+ updatedAt: daysAgo(430),
122
+ },
105
123
  ];
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Transformers — Products Seed Data
3
+ * 10 general · 1 auction · 1 pre-order = 12 total
4
+ * Seller: Speed King Diecast (store-speed-king-diecast)
5
+ */
6
+ import type { ProductDocument } from "../features/products/schemas";
7
+ export declare const transformersProductsSeedData: Partial<ProductDocument>[];