@umituz/react-native-ai-gemini-provider 1.15.0 → 1.16.0

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-gemini-provider",
3
- "version": "1.15.0",
3
+ "version": "1.16.0",
4
4
  "description": "Google Gemini AI provider for React Native applications",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -6,7 +6,7 @@
6
6
  import type {
7
7
  ImageFeatureType,
8
8
  VideoFeatureType,
9
- } from "@umituz/react-native-ai-generation-content";
9
+ } from "@umituz/react-native-ai-generation-content/core";
10
10
 
11
11
  export interface FeatureModelConfig {
12
12
  id: string;
@@ -7,7 +7,7 @@ import type {
7
7
  JobSubmission,
8
8
  JobStatus,
9
9
  AIJobStatusType,
10
- } from "@umituz/react-native-ai-generation-content";
10
+ } from "@umituz/react-native-ai-generation-content/core";
11
11
 
12
12
  export type { JobSubmission, JobStatus };
13
13
 
@@ -8,7 +8,7 @@ import type {
8
8
  VideoFeatureType,
9
9
  ImageFeatureInputData,
10
10
  VideoFeatureInputData,
11
- } from "@umituz/react-native-ai-generation-content";
11
+ } from "@umituz/react-native-ai-generation-content/core";
12
12
  import {
13
13
  buildUpscaleInput,
14
14
  buildPhotoRestoreInput,
@@ -7,7 +7,7 @@
7
7
  import type {
8
8
  ImageFeatureType,
9
9
  VideoFeatureType,
10
- } from "@umituz/react-native-ai-generation-content";
10
+ } from "@umituz/react-native-ai-generation-content/core";
11
11
  import {
12
12
  GEMINI_IMAGE_FEATURE_MODELS,
13
13
  GEMINI_VIDEO_FEATURE_MODELS,
@@ -16,7 +16,7 @@ import type {
16
16
  VideoFeatureInputData,
17
17
  ProviderCapabilities,
18
18
  RunOptions,
19
- } from "@umituz/react-native-ai-generation-content";
19
+ } from "@umituz/react-native-ai-generation-content/core";
20
20
  import type {
21
21
  GeminiImageInput,
22
22
  GeminiImageGenerationResult,
@@ -39,11 +39,11 @@ export type {
39
39
  // Retry service types
40
40
  export type { RetryOptions } from "./gemini-retry.service";
41
41
 
42
- // Re-export types from generation-content for convenience
42
+ // Re-export types from generation-content/core for convenience
43
43
  export type {
44
44
  IAIProvider,
45
45
  JobSubmission,
46
46
  JobStatus,
47
47
  SubscribeOptions,
48
48
  AIJobStatusType,
49
- } from "@umituz/react-native-ai-generation-content";
49
+ } from "@umituz/react-native-ai-generation-content/core";
@@ -3,7 +3,7 @@
3
3
  * Handles initialization logic for Gemini Provider
4
4
  */
5
5
 
6
- import type { AIProviderConfig } from "@umituz/react-native-ai-generation-content";
6
+ import type { AIProviderConfig } from "@umituz/react-native-ai-generation-content/core";
7
7
  import type { GeminiConfig } from "../../domain/entities";
8
8
  import { geminiClientCoreService } from "./gemini-client-core.service";
9
9