@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 +1 -1
- package/src/domain/constants/feature-models.constants.ts +1 -1
- package/src/infrastructure/job/JobManager.ts +1 -1
- package/src/infrastructure/services/feature-input-builder.ts +1 -1
- package/src/infrastructure/services/feature-model-selector.ts +1 -1
- package/src/infrastructure/services/gemini-provider.ts +1 -1
- package/src/infrastructure/services/index.ts +2 -2
- package/src/infrastructure/services/provider-initializer.ts +1 -1
package/package.json
CHANGED
|
@@ -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
|
|