@umituz/react-native-ai-generation-content 1.17.12 → 1.17.13

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.17.12",
3
+ "version": "1.17.13",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -54,7 +54,7 @@ export async function executeHDTouchUp(
54
54
 
55
55
  onProgress?.(30);
56
56
 
57
- const result = await provider.generate(model, input, request.userId);
57
+ const result = await provider.run(model, input);
58
58
 
59
59
  onProgress?.(80);
60
60
 
@@ -10,7 +10,7 @@ import {
10
10
  useAppDesignTokens,
11
11
  AtomicText,
12
12
  AtomicButton,
13
- AtomicTextInput,
13
+ AtomicInput,
14
14
  } from "@umituz/react-native-design-system";
15
15
  import { PhotoUploadCard } from "../../../../presentation/components/PhotoUploadCard";
16
16
  import { ErrorDisplay } from "../../../../presentation/components/display/ErrorDisplay";
@@ -143,7 +143,7 @@ export const ReplaceBackgroundFeature: React.FC<ReplaceBackgroundFeatureProps> =
143
143
  />
144
144
 
145
145
  <View style={styles.promptContainer}>
146
- <AtomicTextInput
146
+ <AtomicInput
147
147
  value={feature.prompt}
148
148
  onChangeText={feature.setPrompt}
149
149
  placeholder={translations.promptPlaceholder}