@umituz/react-native-ai-generation-content 1.52.0 → 1.52.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.52.0",
3
+ "version": "1.52.2",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -50,7 +50,6 @@ export const VIDEO_PROCESSING_PROMPTS: Record<string, string> = {
50
50
  "ai-kiss": "Create a romantic video where these two people share a gentle, loving kiss",
51
51
  "ai-hug": "Create a heartwarming video where these two people share a warm, affectionate hug",
52
52
  "image-to-video": "Animate this image with natural, smooth motion while preserving the original style",
53
- "text-to-video": "Create a high-quality video based on the description provided",
54
53
  "solo_renaissance_portrait": "Transform this person into an elegant Renaissance-style animated portrait with classical artistic movements and period-appropriate lighting",
55
54
  "renaissance_portrait": "Transform this portrait into a majestic Renaissance-style animated painting with subtle classical movements",
56
55
  "historical_portrait": "Animate this portrait in a historical style with period-appropriate subtle movements",
@@ -13,7 +13,7 @@ export function extractPrompt(
13
13
  wizardData: Record<string, unknown>,
14
14
  fallback?: string,
15
15
  ): string | undefined {
16
- const promptKeys = ["prompt", "motion_prompt", "text", "userPrompt"];
16
+ const promptKeys = ["prompt", "motion_prompt", "text", "userPrompt", "text_input"];
17
17
 
18
18
  for (const key of promptKeys) {
19
19
  if (key in wizardData) {
@@ -57,7 +57,7 @@ function createTextInputConfig(scenarioId: string): WizardFeatureConfig {
57
57
  name: scenarioId,
58
58
  steps: [
59
59
  {
60
- id: "text_input",
60
+ id: "prompt",
61
61
  type: "text_input",
62
62
  titleKey: "textInput.title",
63
63
  subtitleKey: "textInput.subtitle",