@imgly/plugin-ai-video-generation-web 0.2.9 → 0.2.10

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.
@@ -0,0 +1,32 @@
1
+ import { GetQuickActionDefinition } from './types';
2
+ /**
3
+ * The ID of the quick action.
4
+ */
5
+ export declare const ID = "ly.img.animateBetweenImages";
6
+ /**
7
+ * The i18n prefix for the quick action.
8
+ */
9
+ export declare const I18N_PREFIX = "ly.img.plugin-ai-video-generation-web.quickAction.animateBetweenImages";
10
+ export declare const I18N_DEFAULT_PREFIX = "ly.img.plugin-ai-video-generation-web.defaults.quickAction.animateBetweenImages";
11
+ /**
12
+ * The input generated from this quick action which needs
13
+ * to be mapped to the specific provider.
14
+ */
15
+ export type InputType = {
16
+ firstFrameUri: string;
17
+ lastFrameUri: string;
18
+ };
19
+ declare const AnimateBetweenImages: GetQuickActionDefinition<InputType>;
20
+ /**
21
+ * Extend VideoQuickActionInputs with this action's input type.
22
+ * This will ensure that the types are correctly recognized
23
+ * in the VideoProvider.
24
+ *
25
+ * COPY this file to other quick action to support type safety
26
+ */
27
+ declare module '../types' {
28
+ interface VideoQuickActionInputs {
29
+ [ID]: InputType;
30
+ }
31
+ }
32
+ export default AnimateBetweenImages;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imgly/plugin-ai-video-generation-web",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "AI video generation plugin for the CE.SDK editor",
5
5
  "keywords": ["CE.SDK", "plugin", "AI", "video-generation"],
6
6
  "repository": {