@umituz/react-native-ai-generation-content 1.44.2 → 1.44.3

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.44.2",
3
+ "version": "1.44.3",
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",
@@ -72,21 +72,9 @@ export async function executeImageGeneration(
72
72
  enable_safety_checker: MODEL_INPUT_DEFAULTS.enableSafetyChecker,
73
73
  };
74
74
 
75
- // Map images to FAL API format (image_url, second_image_url, etc.)
75
+ // Add image_urls array for multi-person generation
76
76
  if (imageUrls.length > 0) {
77
- modelInput.image_url = imageUrls[0];
78
-
79
- if (imageUrls.length > 1) {
80
- modelInput.second_image_url = imageUrls[1];
81
- }
82
-
83
- if (imageUrls.length > 2) {
84
- modelInput.third_image_url = imageUrls[2];
85
- }
86
-
87
- if (imageUrls.length > 3) {
88
- modelInput.fourth_image_url = imageUrls[3];
89
- }
77
+ modelInput.image_urls = imageUrls;
90
78
  }
91
79
 
92
80
  let lastStatus = "";