@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.
- package/CHANGELOG.md +16 -0
- package/README.md +189 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/fal-ai/Veo31FastFirstLastFrameToVideo.d.ts +21 -0
- package/dist/fal-ai/Veo31FastImageToVideo.d.ts +24 -0
- package/dist/fal-ai/Veo31FastTextToVideo.d.ts +23 -0
- package/dist/fal-ai/Veo31FirstLastFrameToVideo.d.ts +21 -0
- package/dist/fal-ai/Veo31ImageToVideo.d.ts +20 -0
- package/dist/fal-ai/Veo31TextToVideo.d.ts +23 -0
- package/dist/fal-ai/index.d.ts +12 -0
- package/dist/fal-ai/index.mjs +10 -10
- package/dist/fal-ai/index.mjs.map +4 -4
- package/dist/index.mjs +7 -7
- package/dist/index.mjs.map +4 -4
- package/dist/quickActions/AnimateBetweenImages.d.ts +32 -0
- package/package.json +1 -1
|
@@ -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