@umituz/react-native-ai-generation-content 1.20.29 → 1.20.30

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.20.29",
3
+ "version": "1.20.30",
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",
@@ -128,7 +128,7 @@ export type GenerationErrorType =
128
128
  | "unknown";
129
129
 
130
130
  export interface UseGenerationOrchestratorReturn<TInput, TResult> {
131
- generate: (input: TInput) => Promise<void>;
131
+ generate: (input: TInput) => Promise<TResult>;
132
132
  reset: () => void;
133
133
  status: OrchestratorStatus;
134
134
  isGenerating: boolean;