brookmind-emails 0.1.10 → 0.1.11

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.
@@ -1 +1 @@
1
- {"version":3,"file":"WelcomeEmail.d.ts","sourceRoot":"","sources":["../../../src/modelfy/templates/WelcomeEmail.tsx"],"names":[],"mappings":"AAeA,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;CACf;AA+UD,wBAAgB,YAAY,CAAC,EAAE,KAA0B,EAAE,EAAE,iBAAiB,2CA+P7E;AAED,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"WelcomeEmail.d.ts","sourceRoot":"","sources":["../../../src/modelfy/templates/WelcomeEmail.tsx"],"names":[],"mappings":"AAeA,MAAM,WAAW,iBAAiB;IAChC,KAAK,EAAE,MAAM,CAAC;CACf;AAmVD,wBAAgB,YAAY,CAAC,EAAE,KAA0B,EAAE,EAAE,iBAAiB,2CA+P7E;AAED,eAAe,YAAY,CAAC"}
@@ -254,6 +254,7 @@ const styles = {
254
254
  // Image pools for random selection
255
255
  const campaignImages = Array.from({ length: 33 }, (_, i) => `https://bucket.modelfy.ai/app-media/campaign/campaign${i + 1}.jpeg`);
256
256
  const campaignProImages = Array.from({ length: 15 }, (_, i) => `https://bucket.modelfy.ai/app-media/campaign-pro/campaign-pro-${i + 1}.jpg`);
257
+ const studioImages = Array.from({ length: 31 }, (_, i) => `https://bucket.modelfy.ai/app-media/studio/studio${i + 1}.jpeg`);
257
258
  const colorSwapImages = Array.from({ length: 10 }, (_, i) => `https://modelfy.ai/images/color-swap/studio-color-change${i + 1}.jpg`);
258
259
  const modelImages = [
259
260
  "https://modelfy.ai/images/result-model-1.jpg",
@@ -288,7 +289,7 @@ const features = [
288
289
  titleHighlight: "Product",
289
290
  titleAfter: "Shots",
290
291
  description: "Clean backgrounds, perfect lighting. E-commerce ready in seconds.",
291
- getImage: () => getRandomImage(campaignProImages),
292
+ getImage: () => getRandomImage(studioImages),
292
293
  isVideo: false,
293
294
  },
294
295
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brookmind-emails",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "Email templates for Brookmind projects",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -278,6 +278,10 @@ const campaignProImages = Array.from(
278
278
  { length: 15 },
279
279
  (_, i) => `https://bucket.modelfy.ai/app-media/campaign-pro/campaign-pro-${i + 1}.jpg`
280
280
  );
281
+ const studioImages = Array.from(
282
+ { length: 31 },
283
+ (_, i) => `https://bucket.modelfy.ai/app-media/studio/studio${i + 1}.jpeg`
284
+ );
281
285
  const colorSwapImages = Array.from(
282
286
  { length: 10 },
283
287
  (_, i) => `https://modelfy.ai/images/color-swap/studio-color-change${i + 1}.jpg`
@@ -317,7 +321,7 @@ const features = [
317
321
  titleHighlight: "Product",
318
322
  titleAfter: "Shots",
319
323
  description: "Clean backgrounds, perfect lighting. E-commerce ready in seconds.",
320
- getImage: () => getRandomImage(campaignProImages),
324
+ getImage: () => getRandomImage(studioImages),
321
325
  isVideo: false,
322
326
  },
323
327
  {