sintetica-cli 0.4.0 → 0.5.0

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.
@@ -87,6 +87,7 @@ exports.generateCommand
87
87
  .option('--count <n>', 'Number of images per job', '1')
88
88
  .option('--prompt <text>', 'Custom creative direction')
89
89
  .option('--shots <json>', 'Multiple shots with different prompts (JSON array of strings)')
90
+ .option('--model-url <url>', 'URL of a person/model reference image to include in the shot')
90
91
  .option('--brand-colors <colors>', 'Brand colors, comma-separated')
91
92
  .option('--brand-voice <voice>', 'Brand voice')
92
93
  .option('--target-audience <audience>', 'Target audience')
@@ -103,6 +104,7 @@ exports.generateCommand
103
104
  productId: opts.product,
104
105
  style: opts.style,
105
106
  format: opts.format,
107
+ modelUrl: opts.modelUrl,
106
108
  brandColors: opts.brandColors?.split(',').map(c => c.trim()),
107
109
  brandVoice: opts.brandVoice,
108
110
  targetAudience: opts.targetAudience,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sintetica-cli",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "Sintetica CLI — AI product photography from your terminal. Generate professional product photos with one command.",
5
5
  "keywords": ["sintetica", "ai", "product-photography", "ecommerce", "shopify", "cli", "claude-code"],
6
6
  "author": "Sintetica <hello@sintetica.ro>",