@imgly/plugin-ai-sticker-generation-web 0.2.3 → 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 +24 -0
- package/README.md +4 -0
- package/dist/fal-ai/createFalClient.d.ts +3 -0
- package/dist/fal-ai/createStickerProvider.d.ts +10 -0
- package/dist/fal-ai/index.mjs +9 -9
- package/dist/fal-ai/index.mjs.map +4 -4
- package/dist/fal-ai/utils.d.ts +2 -1
- package/dist/index.mjs +9 -9
- package/dist/index.mjs.map +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,35 @@
|
|
|
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
|
+
|
|
17
|
+
## [0.2.4] - 2025-08-07
|
|
18
|
+
|
|
19
|
+
### New Features
|
|
20
|
+
|
|
21
|
+
- [all] **Provider Label Translations**: Added support for provider label translations
|
|
22
|
+
- [all] **Extended Provider Configuration**: Added support for `history` and `supportedQuickActions` configuration fields in `CommonProviderConfiguration`, allowing customers to:
|
|
23
|
+
- Override provider's default history asset source (`history` field) - can be set to `false` to disable history, `'@imgly/local'` for temporary storage, `'@imgly/indexedDB'` for persistent browser storage, or any custom asset source ID
|
|
24
|
+
- Configure supported quick actions (`supportedQuickActions` field) - can disable quick actions by setting to `false`/`null`, keep defaults with `true`, or override with custom mappings and configurations
|
|
25
|
+
- Both fields are optional and maintain backward compatibility with existing provider configurations
|
|
26
|
+
- [generation-web] **Utility Function**: Added `mergeQuickActionsConfig` utility function for merging provider defaults with user configuration overrides, exported from `@imgly/plugin-ai-generation-web` with comprehensive Jest test coverage
|
|
27
|
+
|
|
5
28
|
## [0.2.3] - 2025-07-23
|
|
6
29
|
|
|
7
30
|
- [all] **Automatic History Asset Library Entries**: Composite history asset sources now automatically have corresponding asset library entries created with the same IDs (e.g., `ly.img.ai.image-generation.history`)
|
|
8
31
|
- [all] **Provider Selection in Expanded Quick Actions**: When a quick action is expanded, users can now switch between all providers that support that specific quick action, enhancing flexibility in provider selection
|
|
9
32
|
- [all] **Quick Action Can Disable Lock**: Some quick actions can now decide to not lock the block when operating on a block. Examples are `CreateVariant` and `CombineImages`.
|
|
33
|
+
- [image-generation] **Ideogram V3**: Added support for Ideogram V3 provider for image generation, which supports text-to-image and image-to-image generation
|
|
10
34
|
|
|
11
35
|
## [0.2.2] - 2025-07-16
|
|
12
36
|
|
package/README.md
CHANGED
|
@@ -295,6 +295,10 @@ cesdk.addPlugin(
|
|
|
295
295
|
|
|
296
296
|
When integrated with AI Apps, the sticker generation functionality appears in the main AI interface alongside other AI generation capabilities.
|
|
297
297
|
|
|
298
|
+
## Translations
|
|
299
|
+
|
|
300
|
+
For customization and localization, see the [translations.json](https://github.com/imgly/plugins/tree/main/packages/plugin-ai-sticker-generation-web/translations.json) file which contains provider-specific translation keys for sticker generation interfaces.
|
|
301
|
+
|
|
298
302
|
## Related Packages
|
|
299
303
|
|
|
300
304
|
- [@imgly/plugin-ai-generation-web](https://github.com/imgly/plugins/tree/main/packages/plugin-ai-generation-web) - Core utilities for AI generation
|
|
@@ -10,6 +10,16 @@ type StickerProviderConfiguration = {
|
|
|
10
10
|
* @deprecated Use `middlewares` instead.
|
|
11
11
|
*/
|
|
12
12
|
middleware?: Middleware<any, any>[];
|
|
13
|
+
/**
|
|
14
|
+
* Override provider's default history asset source
|
|
15
|
+
*/
|
|
16
|
+
history?: false | '@imgly/local' | '@imgly/indexedDB' | (string & {});
|
|
17
|
+
/**
|
|
18
|
+
* Configure supported quick actions
|
|
19
|
+
*/
|
|
20
|
+
supportedQuickActions?: {
|
|
21
|
+
[quickActionId: string]: Partial<StickerQuickActionSupportMap<any>[string]> | false | null;
|
|
22
|
+
};
|
|
13
23
|
};
|
|
14
24
|
/**
|
|
15
25
|
* Creates a base provider from schema. This should work out of the box
|