@imgly/plugin-ai-video-generation-web 0.2.4 → 0.2.5

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,18 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.2.5] - 2025-09-03
6
+
7
+ ### New Features
8
+
9
+ - [image-generation] **NanoBanana Provider**: Added NanoBanana text-to-image provider via fal.ai with fast generation times, 1024×1024 resolution, support for multiple output formats (JPEG, PNG), configurable number of images (1-4), and remixPageWithPrompt quick action
10
+ - [image-generation] **NanoBananaEdit Provider**: Added NanoBananaEdit image-to-image provider via fal.ai for editing existing images with text prompts, supporting all standard quick actions (editImage, swapBackground, styleTransfer, artistTransfer, createVariant, combineImages with up to 10 images, remixPage, remixPageWithPrompt)
11
+
12
+ ### Bug Fixes
13
+
14
+ - [all] **fal.ai Provider Configuration**: Fixed singleton configuration conflict when using multiple fal.ai providers with different proxy URLs. Each provider now maintains its own client instance instead of overwriting a global configuration
15
+ - [video-generation] **Missing Dependency**: Added missing `@fal-ai/client` dependency to plugin-ai-video-generation-web package.json to ensure the package works correctly when installed independently
16
+
5
17
  ## [0.2.4] - 2025-08-07
6
18
 
7
19
  ### New Features
package/README.md CHANGED
@@ -292,23 +292,29 @@ cesdk.i18n.setTranslations({
292
292
 
293
293
  #### QuickAction Translations
294
294
 
295
- Video QuickActions (like "Create Video from Image") use their own translation keys:
295
+ Video QuickActions (like "Create Video from Image") use their own translation keys with provider-specific overrides:
296
296
 
297
297
  ```typescript
298
298
  cesdk.i18n.setTranslations({
299
299
  en: {
300
- // QuickAction button labels
301
- 'ly.img.plugin-ai-video-generation-web.quickAction.createVideo': 'Create Video...',
300
+ // Provider-specific translations (highest priority)
301
+ 'ly.img.plugin-ai-video-generation-web.fal-ai/minimax/video-01-live.quickAction.createVideo': 'Generate Minimax Video...',
302
+ 'ly.img.plugin-ai-video-generation-web.fal-ai/minimax/video-01-live.quickAction.createVideo.prompt': 'Minimax Video Prompt',
302
303
 
303
- // QuickAction input fields and buttons
304
- 'ly.img.plugin-ai-video-generation-web.quickAction.createVideo.prompt': 'Create Video...',
304
+ // Generic plugin translations
305
+ 'ly.img.plugin-ai-video-generation-web.quickAction.createVideo': 'Create Video...',
306
+ 'ly.img.plugin-ai-video-generation-web.quickAction.createVideo.prompt': 'Video Prompt',
305
307
  'ly.img.plugin-ai-video-generation-web.quickAction.createVideo.prompt.placeholder': 'e.g. "Make the image move slowly"',
306
308
  'ly.img.plugin-ai-video-generation-web.quickAction.createVideo.apply': 'Generate'
307
309
  }
308
310
  });
309
311
  ```
310
312
 
311
- **QuickAction Translation Structure:**
313
+ **QuickAction Translation Priority:**
314
+ 1. Provider-specific: `ly.img.plugin-ai-video-generation-web.${provider}.quickAction.${action}.${field}`
315
+ 2. Generic plugin: `ly.img.plugin-ai-video-generation-web.quickAction.${action}.${field}`
316
+
317
+ **Translation Structure:**
312
318
  - Base key (e.g., `.quickAction.createVideo`): Button text when QuickAction is collapsed
313
319
  - `.prompt`: Label for input field when expanded
314
320
  - `.prompt.placeholder`: Placeholder text for input field
@@ -0,0 +1,3 @@
1
+ import { type FalClient as FalClientType } from '@fal-ai/client';
2
+ export type FalClient = FalClientType;
3
+ export declare function createFalClient(proxyUrl: string, headers?: Record<string, string>): FalClient;