@umituz/react-native-ai-generation-content 1.17.226 → 1.17.227

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.226",
3
+ "version": "1.17.227",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -61,7 +61,7 @@ export function createErrorHandler({
61
61
  /**
62
62
  * Creates process handler with common logic
63
63
  */
64
- export interface ProcessHandlerParams<TData, TResult> {
64
+ export interface ProcessHandlerParams<TResult> {
65
65
  canProcess: () => boolean;
66
66
  setError: (error: string | null) => void;
67
67
  setProcessing: (processing: boolean) => void;
@@ -71,7 +71,7 @@ export interface ProcessHandlerParams<TData, TResult> {
71
71
  onProgress?: (progress: number) => void;
72
72
  }
73
73
 
74
- export async function executeProcess<TData, TResult>({
74
+ export async function executeProcess<TResult>({
75
75
  canProcess,
76
76
  setError,
77
77
  setProcessing,
@@ -7,7 +7,7 @@ import type { ReactNode } from "react";
7
7
  import type {
8
8
  BaseSingleImageHookReturn,
9
9
  BaseDualImageHookReturn,
10
- } from "../../../../../features/image-to-image/domain/types";
10
+ } from "@features/image-to-image/domain/types";
11
11
  import type {
12
12
  ModalTranslations,
13
13
  BaseLayoutTranslations,
@@ -3,8 +3,6 @@
3
3
  * Result section render props for feature layouts
4
4
  */
5
5
 
6
- import type { ReactNode } from "react";
7
-
8
6
  /**
9
7
  * Result render props
10
8
  */