@umituz/react-native-ai-generation-content 1.59.2 → 1.59.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.59.
|
|
3
|
+
"version": "1.59.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",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* useAIGeneration Hook
|
|
3
3
|
* Universal hook for ALL AI generation features
|
|
4
|
-
* Replaces all feature-specific hooks
|
|
4
|
+
* Replaces all feature-specific hooks with a single unified API
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import { useGenerationOrchestrator } from "../../../presentation/hooks/generation/orchestrator";
|
|
@@ -13,8 +13,6 @@ export interface GenerationModels {
|
|
|
13
13
|
readonly imageTextToImage?: string;
|
|
14
14
|
readonly imageToVideo?: string;
|
|
15
15
|
readonly textToVideo?: string;
|
|
16
|
-
readonly aiKiss?: string;
|
|
17
|
-
readonly aiHug?: string;
|
|
18
16
|
readonly faceSwap?: string;
|
|
19
17
|
readonly memeCaption?: string;
|
|
20
18
|
readonly memeImage?: string;
|