@imgly/plugin-ai-video-generation-web 0.2.7 → 0.2.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.2.8] - 2025-09-29
6
+
7
+ ### New Features
8
+
9
+ - [image-generation] **SeedreamV4 Provider**: Added ByteDance Seedream 4.0 text-to-image provider via fal.ai for high-quality image generation with multiple size presets (square HD 2048×2048, square 1024×1024, portrait/landscape variants), custom dimensions support (1024-4096 pixels), and safety checker enabled by default
10
+ - [image-generation] **SeedreamV4Edit Provider**: Added ByteDance Seedream 4.0 image-to-image provider via fal.ai for advanced image editing with unified generation/editing architecture, support for multiple input images (up to 10), and full canvas quick actions support (editImage, swapBackground, styleTransfer, artistTransfer, createVariant, combineImages, remixPage, remixPageWithPrompt)
11
+
12
+ ### Fixed
13
+
14
+ - [sticker-generation] **Fixed Input Types Not Enabled**: Fixed an issue where the sticker generation panel would show "No input types are enabled" error by properly enabling the `fromText` and `fromImage` feature flags during plugin initialization
15
+
5
16
  ## [0.2.7] - 2025-09-26
6
17
 
7
18
  ### New Features
package/README.md CHANGED
@@ -51,8 +51,8 @@ CreativeEditorSDK.create(domElement, {
51
51
  },
52
52
  // Optional: Configure default property values
53
53
  properties: {
54
- duration: 5, // Default duration in seconds
55
- aspect_ratio: '16:9' // Default aspect ratio
54
+ duration: { default: 5 }, // Default duration in seconds
55
+ aspect_ratio: { default: '16:9' } // Default aspect ratio
56
56
  }
57
57
  }),
58
58
 
@@ -142,7 +142,7 @@ text2video: FalAiVideo.MinimaxVideo01Live({
142
142
  },
143
143
  // Optional: Configure default property values
144
144
  properties: {
145
- prompt_optimizer: true // Enable automatic prompt enhancement
145
+ prompt_optimizer: { default: true } // Enable automatic prompt enhancement
146
146
  }
147
147
  });
148
148
  ```
@@ -177,7 +177,7 @@ image2video: FalAiVideo.MinimaxVideo01LiveImageToVideo({
177
177
  },
178
178
  // Optional: Configure default property values
179
179
  properties: {
180
- prompt_optimizer: true // Enable automatic prompt enhancement
180
+ prompt_optimizer: { default: true } // Enable automatic prompt enhancement
181
181
  }
182
182
  });
183
183
  ```
@@ -202,8 +202,8 @@ image2video: FalAiVideo.MinimaxHailuo02StandardImageToVideo({
202
202
  },
203
203
  // Optional: Configure default property values
204
204
  properties: {
205
- resolution: '768P', // Options: '512P' (912×512), '768P' (1280×720)
206
- duration: 6 // Duration in seconds (6 or 10)
205
+ resolution: { default: '768P' }, // Options: '512P' (912×512), '768P' (1280×720)
206
+ duration: { default: 6 } // Duration in seconds (6 or 10)
207
207
  }
208
208
  });
209
209
  ```
@@ -229,7 +229,7 @@ text2video: FalAiVideo.PixverseV35TextToVideo({
229
229
  },
230
230
  // Optional: Configure default property values
231
231
  properties: {
232
- seed: 42 // Fixed seed for reproducible generation
232
+ seed: { default: 42 } // Fixed seed for reproducible generation
233
233
  }
234
234
  });
235
235
  ```
@@ -248,8 +248,8 @@ text2video: FalAiVideo.KlingVideoV21MasterTextToVideo({
248
248
  proxyUrl: 'http://your-proxy-server.com/api/proxy',
249
249
  // Optional: Configure default property values
250
250
  properties: {
251
- aspect_ratio: '16:9', // Options: '16:9', '9:16', '1:1'
252
- duration: '5s' // Options: '5s', '10s'
251
+ aspect_ratio: { default: '16:9' }, // Options: '16:9', '9:16', '1:1'
252
+ duration: { default: '5s' } // Options: '5s', '10s'
253
253
  }
254
254
  });
255
255
  ```
@@ -282,7 +282,7 @@ image2video: FalAiVideo.KlingVideoV21MasterImageToVideo({
282
282
  proxyUrl: 'http://your-proxy-server.com/api/proxy',
283
283
  // Optional: Configure default property values
284
284
  properties: {
285
- duration: '5s' // Options: '5s', '10s'
285
+ duration: { default: '5s' } // Options: '5s', '10s'
286
286
  }
287
287
  });
288
288
  ```
@@ -303,9 +303,9 @@ image2video: FalAiVideo.ByteDanceSeedanceV1ProImageToVideo({
303
303
  proxyUrl: 'http://your-proxy-server.com/api/proxy',
304
304
  // Optional: Configure default property values
305
305
  properties: {
306
- aspect_ratio: 'auto', // Options: '21:9', '16:9', '4:3', '1:1', '3:4', '9:16', 'auto'
307
- duration: 5, // Duration in seconds (3-12)
308
- resolution: '720p' // Options: '480p', '720p', '1080p'
306
+ aspect_ratio: { default: 'auto' }, // Options: '21:9', '16:9', '4:3', '1:1', '3:4', '9:16', 'auto'
307
+ duration: { default: 5 }, // Duration in seconds (3-12)
308
+ resolution: { default: '720p' } // Options: '480p', '720p', '1080p'
309
309
  }
310
310
  });
311
311
  ```
@@ -327,9 +327,9 @@ text2video: FalAiVideo.ByteDanceSeedanceV1ProTextToVideo({
327
327
  proxyUrl: 'http://your-proxy-server.com/api/proxy',
328
328
  // Optional: Configure default property values
329
329
  properties: {
330
- aspect_ratio: '16:9', // Options: '21:9', '16:9', '4:3', '1:1', '3:4', '9:16'
331
- duration: 5, // Duration in seconds (3-12)
332
- resolution: '720p' // Options: '480p', '720p', '1080p'
330
+ aspect_ratio: { default: '16:9' }, // Options: '21:9', '16:9', '4:3', '1:1', '3:4', '9:16'
331
+ duration: { default: 5 }, // Duration in seconds (3-12)
332
+ resolution: { default: '720p' } // Options: '480p', '720p', '1080p'
333
333
  }
334
334
  });
335
335
  ```
@@ -351,8 +351,8 @@ text2video: FalAiVideo.Veo3TextToVideo({
351
351
  proxyUrl: 'http://your-proxy-server.com/api/proxy',
352
352
  // Optional: Configure default property values
353
353
  properties: {
354
- aspect_ratio: '16:9', // Options: '16:9', '9:16', '1:1'
355
- duration: 8 // Fixed at 8 seconds for this provider
354
+ aspect_ratio: { default: '16:9' }, // Options: '16:9', '9:16', '1:1'
355
+ duration: { default: 8 } // Fixed at 8 seconds for this provider
356
356
  }
357
357
  });
358
358
  ```