@mohasinac/appkit 2.8.7 → 2.8.8

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 (60) hide show
  1. package/dist/_internal/server/features/checkout/actions.js +9 -9
  2. package/dist/_internal/server/jobs/core/cleanupRtdbEvents.js +1 -1
  3. package/dist/_internal/shared/listing-types/action-tracker.js +1 -1
  4. package/dist/constants/api-endpoints.d.ts +3 -0
  5. package/dist/constants/api-endpoints.js +1 -0
  6. package/dist/core/hooks/useSyncManager.js +4 -4
  7. package/dist/features/account/components/NotificationPreferencesPanel.js +1 -1
  8. package/dist/features/admin/components/AdminSupportTicketDetailView.js +4 -4
  9. package/dist/features/blog/api/[slug]/route.js +1 -1
  10. package/dist/features/categories/components/CategoryDetailPageView.js +3 -1
  11. package/dist/features/layout/TitleBarLayout.js +2 -4
  12. package/dist/features/media/MediaImage.js +7 -5
  13. package/dist/features/media/MediaVideo.js +5 -2
  14. package/dist/features/media/upload/MediaUploadField.js +3 -1
  15. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +3 -1
  16. package/dist/features/products/components/ShareButton.js +1 -1
  17. package/dist/features/products/components/ShowGroupSection.js +1 -1
  18. package/dist/features/products/components/SublistingCarouselSection.js +1 -1
  19. package/dist/features/promotions/components/CouponCard.js +1 -1
  20. package/dist/features/scams/actions/scam-actions.js +1 -1
  21. package/dist/features/seller/components/PhysicalLocationModal.js +5 -1
  22. package/dist/features/seller/components/SellerFeaturesView.js +2 -2
  23. package/dist/features/seller/components/SellerGoogleReviewsView.js +1 -1
  24. package/dist/features/seller/components/SellerPayoutRequestView.js +1 -1
  25. package/dist/features/seller/components/SellerPayoutSettingsView.js +1 -1
  26. package/dist/features/seller/components/SellerProductShell.js +1 -1
  27. package/dist/features/seller/components/SellerShippingView.js +1 -1
  28. package/dist/features/wishlist/hooks/useWishlistCount.js +1 -1
  29. package/dist/monitoring/server-logger.js +3 -3
  30. package/dist/providers/db-firebase/browser-stub.d.ts +1 -0
  31. package/dist/providers/db-firebase/browser-stub.js +1 -0
  32. package/dist/providers/db-firebase/rtdb-paths.d.ts +1 -0
  33. package/dist/providers/db-firebase/rtdb-paths.js +1 -0
  34. package/dist/seed/_helpers/media.d.ts +1 -0
  35. package/dist/seed/_helpers/media.js +26 -0
  36. package/dist/seed/blog-posts-seed-data.js +12 -11
  37. package/dist/seed/carousel-slides-seed-data.js +7 -6
  38. package/dist/seed/cart-seed-data.js +13 -12
  39. package/dist/seed/categories-seed-data.js +95 -94
  40. package/dist/seed/events-seed-data.js +9 -8
  41. package/dist/seed/factories/product.factory.js +4 -3
  42. package/dist/seed/factories/store.factory.js +3 -2
  43. package/dist/seed/factories/user.factory.js +2 -1
  44. package/dist/seed/grouped-listings-seed-data.js +4 -3
  45. package/dist/seed/homepage-sections-seed-data.js +2 -1
  46. package/dist/seed/products-auctions-seed-data.js +57 -56
  47. package/dist/seed/products-classifieds-seed-data.js +12 -11
  48. package/dist/seed/products-digital-codes-seed-data.js +11 -10
  49. package/dist/seed/products-live-items-seed-data.js +9 -8
  50. package/dist/seed/products-preorders-seed-data.js +6 -5
  51. package/dist/seed/products-prize-draws-seed-data.js +25 -24
  52. package/dist/seed/products-standard-seed-data.js +125 -124
  53. package/dist/seed/scammers-seed-data.js +2 -1
  54. package/dist/seed/site-settings-seed-data.js +6 -5
  55. package/dist/seed/store-extensions-seed-data.js +10 -9
  56. package/dist/seed/stores-seed-data.js +17 -16
  57. package/dist/seed/users-seed-data.js +22 -21
  58. package/dist/ui/components/BackgroundRenderer.js +6 -4
  59. package/dist/ui/rich-text/RichText.js +1 -1
  60. package/package.json +1 -1
@@ -11,6 +11,7 @@
11
11
  */
12
12
  import { PRODUCT_FIELDS } from "../constants/field-names";
13
13
  import { buildSearchTokens } from "../utils/search-tokens";
14
+ import { seedExtMedia } from "./_helpers/media";
14
15
  function withTokens(p) {
15
16
  return {
16
17
  tags: [],
@@ -35,9 +36,9 @@ const _rawLiveItemsSeedData = [
35
36
  currency: "INR",
36
37
  stockQuantity: 1,
37
38
  availableQuantity: 1,
38
- mainImage: "https://images.unsplash.com/photo-1583212292454-1fe6229603b7?w=800&h=800&fit=crop",
39
+ mainImage: seedExtMedia("https://images.unsplash.com/photo-1583212292454-1fe6229603b7?w=800&h=800&fit=crop"),
39
40
  images: [
40
- "https://images.unsplash.com/photo-1583212292454-1fe6229603b7?w=800&h=800&fit=crop",
41
+ seedExtMedia("https://images.unsplash.com/photo-1583212292454-1fe6229603b7?w=800&h=800&fit=crop"),
41
42
  ],
42
43
  status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
43
44
  storeId: "store-letitrip-official",
@@ -75,9 +76,9 @@ const _rawLiveItemsSeedData = [
75
76
  currency: "INR",
76
77
  stockQuantity: 3,
77
78
  availableQuantity: 3,
78
- mainImage: "https://images.unsplash.com/photo-1520302519878-3c0a981b76e1?w=800&h=800&fit=crop",
79
+ mainImage: seedExtMedia("https://images.unsplash.com/photo-1520302519878-3c0a981b76e1?w=800&h=800&fit=crop"),
79
80
  images: [
80
- "https://images.unsplash.com/photo-1520302519878-3c0a981b76e1?w=800&h=800&fit=crop",
81
+ seedExtMedia("https://images.unsplash.com/photo-1520302519878-3c0a981b76e1?w=800&h=800&fit=crop"),
81
82
  ],
82
83
  status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
83
84
  storeId: "store-letitrip-official",
@@ -115,9 +116,9 @@ const _rawLiveItemsSeedData = [
115
116
  currency: "INR",
116
117
  stockQuantity: 8,
117
118
  availableQuantity: 8,
118
- mainImage: "https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=800&h=800&fit=crop",
119
+ mainImage: seedExtMedia("https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=800&h=800&fit=crop"),
119
120
  images: [
120
- "https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=800&h=800&fit=crop",
121
+ seedExtMedia("https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=800&h=800&fit=crop"),
121
122
  ],
122
123
  status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
123
124
  storeId: "store-kaiba-corp-cards",
@@ -155,9 +156,9 @@ const _rawLiveItemsSeedData = [
155
156
  currency: "INR",
156
157
  stockQuantity: 2,
157
158
  availableQuantity: 2,
158
- mainImage: "https://images.unsplash.com/photo-1585095595205-e68428a9e205?w=800&h=800&fit=crop",
159
+ mainImage: seedExtMedia("https://images.unsplash.com/photo-1585095595205-e68428a9e205?w=800&h=800&fit=crop"),
159
160
  images: [
160
- "https://images.unsplash.com/photo-1585095595205-e68428a9e205?w=800&h=800&fit=crop",
161
+ seedExtMedia("https://images.unsplash.com/photo-1585095595205-e68428a9e205?w=800&h=800&fit=crop"),
161
162
  ],
162
163
  status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
163
164
  storeId: "store-letitrip-official",
@@ -14,6 +14,7 @@
14
14
  */
15
15
  import { PRODUCT_FIELDS } from "../constants/field-names";
16
16
  import { buildSearchTokens } from "../utils/search-tokens";
17
+ import { seedExtMedia } from "./_helpers/media";
17
18
  // Card ID mappings for YGOPRODECK image API
18
19
  const CARD_IDS = {
19
20
  blueEyesWhiteDragon: 89631139,
@@ -35,7 +36,7 @@ const _rawPreordersSeedData = [
35
36
  listingType: "pre-order",
36
37
  categorySlugs: ["category-sealed-products", "category-booster-boxes"],
37
38
  images: [
38
- `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`,
39
+ seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`),
39
40
  ],
40
41
  isSold: false,
41
42
  availableQuantity: 1,
@@ -67,7 +68,7 @@ const _rawPreordersSeedData = [
67
68
  listingType: "pre-order",
68
69
  categorySlugs: ["category-sealed-products", "category-booster-packs"],
69
70
  images: [
70
- `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`,
71
+ seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`),
71
72
  ],
72
73
  isSold: false,
73
74
  availableQuantity: 1,
@@ -99,7 +100,7 @@ const _rawPreordersSeedData = [
99
100
  listingType: "pre-order",
100
101
  categorySlugs: ["category-sealed-products", "category-collector-tins"],
101
102
  images: [
102
- `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`,
103
+ seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.blueEyesWhiteDragon}.jpg`),
103
104
  ],
104
105
  isSold: false,
105
106
  availableQuantity: 1,
@@ -131,7 +132,7 @@ const _rawPreordersSeedData = [
131
132
  listingType: "pre-order",
132
133
  categorySlugs: ["category-sealed-products", "category-starter-structure"],
133
134
  images: [
134
- `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.darkMagician}.jpg`,
135
+ seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.darkMagician}.jpg`),
135
136
  ],
136
137
  isSold: false,
137
138
  availableQuantity: 1,
@@ -163,7 +164,7 @@ const _rawPreordersSeedData = [
163
164
  listingType: "pre-order",
164
165
  categorySlugs: ["category-sealed-products", "category-booster-boxes"],
165
166
  images: [
166
- `https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`,
167
+ seedExtMedia(`https://images.ygoprodeck.com/images/cards/cropped/${CARD_IDS.elementalHeroNeos}.jpg`),
167
168
  ],
168
169
  isSold: false,
169
170
  availableQuantity: 1,
@@ -9,6 +9,7 @@
9
9
  */
10
10
  import { PRODUCT_FIELDS, SCHEMA_DEFAULTS } from "../constants/field-names";
11
11
  import { buildSearchTokens } from "../utils/search-tokens";
12
+ import { seedExtMedia } from "./_helpers/media";
12
13
  const NOW = new Date();
13
14
  const daysAgo = (n) => new Date(NOW.getTime() - n * 86400000);
14
15
  const daysAhead = (n) => new Date(NOW.getTime() + n * 86400000);
@@ -27,10 +28,10 @@ const _rawProductsPrizeDrawsSeedData = [
27
28
  currency: SCHEMA_DEFAULTS.CURRENCY,
28
29
  stockQuantity: 50,
29
30
  availableQuantity: 50,
30
- mainImage: "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
31
+ mainImage: seedExtMedia("https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop"),
31
32
  images: [
32
- "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop",
33
- "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop",
33
+ seedExtMedia("https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=800&h=800&fit=crop"),
34
+ seedExtMedia("https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=800&h=800&fit=crop"),
34
35
  ],
35
36
  status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
36
37
  storeName: "Pokémon Palace",
@@ -77,10 +78,10 @@ const _rawProductsPrizeDrawsSeedData = [
77
78
  currency: SCHEMA_DEFAULTS.CURRENCY,
78
79
  stockQuantity: 100,
79
80
  availableQuantity: 100,
80
- mainImage: "https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=800&h=800&fit=crop",
81
+ mainImage: seedExtMedia("https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=800&h=800&fit=crop"),
81
82
  images: [
82
- "https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=800&h=800&fit=crop",
83
- "https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=800&h=800&fit=crop",
83
+ seedExtMedia("https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=800&h=800&fit=crop"),
84
+ seedExtMedia("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=800&h=800&fit=crop"),
84
85
  ],
85
86
  status: PRODUCT_FIELDS.STATUS_VALUES.PUBLISHED,
86
87
  storeName: "Diecast Depot",
@@ -120,7 +121,7 @@ function _pokemonPrizeItems() {
120
121
  title: "Charizard-themed Elite Trainer Box (sealed)",
121
122
  description: "Scarlet & Violet 151 ETB featuring Charizard art.",
122
123
  images: [
123
- "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=600&h=600&fit=crop",
124
+ seedExtMedia("https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=600&h=600&fit=crop"),
124
125
  ],
125
126
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
126
127
  estimatedValue: 549900,
@@ -130,7 +131,7 @@ function _pokemonPrizeItems() {
130
131
  itemNumber: 2,
131
132
  title: "PSA 9 Base Set Blastoise Holo (#2/102)",
132
133
  images: [
133
- "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=600&h=600&fit=crop",
134
+ seedExtMedia("https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=600&h=600&fit=crop"),
134
135
  ],
135
136
  condition: "graded",
136
137
  estimatedValue: 1249900,
@@ -140,7 +141,7 @@ function _pokemonPrizeItems() {
140
141
  itemNumber: 3,
141
142
  title: "Pokémon 151 Booster Bundle (6 packs)",
142
143
  images: [
143
- "https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=600&h=600&fit=crop",
144
+ seedExtMedia("https://images.unsplash.com/photo-1614108831137-558fffac9ead?w=600&h=600&fit=crop"),
144
145
  ],
145
146
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
146
147
  estimatedValue: 199900,
@@ -150,7 +151,7 @@ function _pokemonPrizeItems() {
150
151
  itemNumber: 4,
151
152
  title: "Pikachu V-UNION Special Collection",
152
153
  images: [
153
- "https://images.unsplash.com/photo-1628968434441-d9c61d543a91?w=600&h=600&fit=crop",
154
+ seedExtMedia("https://images.unsplash.com/photo-1628968434441-d9c61d543a91?w=600&h=600&fit=crop"),
154
155
  ],
155
156
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
156
157
  estimatedValue: 299900,
@@ -160,7 +161,7 @@ function _pokemonPrizeItems() {
160
161
  itemNumber: 5,
161
162
  title: "Mewtwo VSTAR Premium Collection",
162
163
  images: [
163
- "https://images.unsplash.com/photo-1606503153255-59d8b8b82176?w=600&h=600&fit=crop",
164
+ seedExtMedia("https://images.unsplash.com/photo-1606503153255-59d8b8b82176?w=600&h=600&fit=crop"),
164
165
  ],
165
166
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
166
167
  estimatedValue: 249900,
@@ -170,7 +171,7 @@ function _pokemonPrizeItems() {
170
171
  itemNumber: 6,
171
172
  title: "Paldean Fates 3-Pack Tin",
172
173
  images: [
173
- "https://images.unsplash.com/photo-1613771404721-1f92d799e49f?w=600&h=600&fit=crop",
174
+ seedExtMedia("https://images.unsplash.com/photo-1613771404721-1f92d799e49f?w=600&h=600&fit=crop"),
174
175
  ],
175
176
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
176
177
  estimatedValue: 99900,
@@ -180,7 +181,7 @@ function _pokemonPrizeItems() {
180
181
  itemNumber: 7,
181
182
  title: "Eevee Heroes Booster Box (Japanese)",
182
183
  images: [
183
- "https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=600&h=600&fit=crop",
184
+ seedExtMedia("https://images.unsplash.com/photo-1607604276583-eef5d076aa5f?w=600&h=600&fit=crop"),
184
185
  ],
185
186
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
186
187
  estimatedValue: 1999900,
@@ -190,7 +191,7 @@ function _pokemonPrizeItems() {
190
191
  itemNumber: 8,
191
192
  title: "Ancient Mew Promo Card (sealed)",
192
193
  images: [
193
- "https://images.unsplash.com/photo-1610890716171-6b1bb98ffd09?w=600&h=600&fit=crop",
194
+ seedExtMedia("https://images.unsplash.com/photo-1610890716171-6b1bb98ffd09?w=600&h=600&fit=crop"),
194
195
  ],
195
196
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
196
197
  estimatedValue: 79900,
@@ -200,7 +201,7 @@ function _pokemonPrizeItems() {
200
201
  itemNumber: 9,
201
202
  title: "Pokémon Center Plush — Snorlax",
202
203
  images: [
203
- "https://images.unsplash.com/photo-1542779283-5a86fe9aab09?w=600&h=600&fit=crop",
204
+ seedExtMedia("https://images.unsplash.com/photo-1542779283-5a86fe9aab09?w=600&h=600&fit=crop"),
204
205
  ],
205
206
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
206
207
  estimatedValue: 449900,
@@ -211,7 +212,7 @@ function _pokemonPrizeItems() {
211
212
  title: "Mystery Holo Lot — 10 cards",
212
213
  description: "10 random holographic rares from various sets.",
213
214
  images: [
214
- "https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=600&h=600&fit=crop",
215
+ seedExtMedia("https://images.unsplash.com/photo-1613771404784-3a5686aa2be3?w=600&h=600&fit=crop"),
215
216
  ],
216
217
  condition: PRODUCT_FIELDS.CONDITION_VALUES.USED,
217
218
  estimatedValue: 149900,
@@ -225,7 +226,7 @@ function _hotWheelsPrizeItems() {
225
226
  itemNumber: 1,
226
227
  title: "1969 Volkswagen Squareback STH",
227
228
  images: [
228
- "https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=600&h=600&fit=crop",
229
+ seedExtMedia("https://images.unsplash.com/photo-1583121274602-3e2820c69888?w=600&h=600&fit=crop"),
229
230
  ],
230
231
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
231
232
  estimatedValue: 899900,
@@ -235,7 +236,7 @@ function _hotWheelsPrizeItems() {
235
236
  itemNumber: 2,
236
237
  title: "Datsun 510 STH (Mountain Metal)",
237
238
  images: [
238
- "https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=600&h=600&fit=crop",
239
+ seedExtMedia("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=600&h=600&fit=crop"),
239
240
  ],
240
241
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
241
242
  estimatedValue: 499900,
@@ -245,7 +246,7 @@ function _hotWheelsPrizeItems() {
245
246
  itemNumber: 3,
246
247
  title: "Custom Mustang STH",
247
248
  images: [
248
- "https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=600&h=600&fit=crop",
249
+ seedExtMedia("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=600&h=600&fit=crop"),
249
250
  ],
250
251
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
251
252
  estimatedValue: 599900,
@@ -255,7 +256,7 @@ function _hotWheelsPrizeItems() {
255
256
  itemNumber: 4,
256
257
  title: "Porsche 935 STH (Mountain Metal)",
257
258
  images: [
258
- "https://images.unsplash.com/photo-1611821064430-0d40291922d2?w=600&h=600&fit=crop",
259
+ seedExtMedia("https://images.unsplash.com/photo-1611821064430-0d40291922d2?w=600&h=600&fit=crop"),
259
260
  ],
260
261
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
261
262
  estimatedValue: 449900,
@@ -265,7 +266,7 @@ function _hotWheelsPrizeItems() {
265
266
  itemNumber: 5,
266
267
  title: "Nissan Skyline GT-R (R32) STH",
267
268
  images: [
268
- "https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=600&h=600&fit=crop",
269
+ seedExtMedia("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=600&h=600&fit=crop"),
269
270
  ],
270
271
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
271
272
  estimatedValue: 699900,
@@ -275,7 +276,7 @@ function _hotWheelsPrizeItems() {
275
276
  itemNumber: 6,
276
277
  title: "'71 Datsun Bluebird 510 Wagon STH",
277
278
  images: [
278
- "https://images.unsplash.com/photo-1611821064430-0d40291922d2?w=600&h=600&fit=crop",
279
+ seedExtMedia("https://images.unsplash.com/photo-1611821064430-0d40291922d2?w=600&h=600&fit=crop"),
279
280
  ],
280
281
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
281
282
  estimatedValue: 549900,
@@ -285,7 +286,7 @@ function _hotWheelsPrizeItems() {
285
286
  itemNumber: 7,
286
287
  title: "Toyota AE86 Sprinter Trueno STH",
287
288
  images: [
288
- "https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=600&h=600&fit=crop",
289
+ seedExtMedia("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=600&h=600&fit=crop"),
289
290
  ],
290
291
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
291
292
  estimatedValue: 799900,
@@ -295,7 +296,7 @@ function _hotWheelsPrizeItems() {
295
296
  itemNumber: 8,
296
297
  title: "Mazda RX-7 STH (FD)",
297
298
  images: [
298
- "https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=600&h=600&fit=crop",
299
+ seedExtMedia("https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=600&h=600&fit=crop"),
299
300
  ],
300
301
  condition: PRODUCT_FIELDS.CONDITION_VALUES.NEW,
301
302
  estimatedValue: 649900,