@umituz/react-native-ai-generation-content 1.17.29 → 1.17.31

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.29",
3
+ "version": "1.17.31",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -10,6 +10,12 @@ export interface AIProviderConfig {
10
10
  baseDelay?: number;
11
11
  maxDelay?: number;
12
12
  defaultTimeoutMs?: number;
13
+ /** Text generation model ID */
14
+ textModel?: string;
15
+ /** Text-to-image generation model ID */
16
+ textToImageModel?: string;
17
+ /** Image editing model ID */
18
+ imageEditModel?: string;
13
19
  }
14
20
 
15
21
  export interface JobSubmission {
package/src/index.ts CHANGED
@@ -121,6 +121,10 @@ export {
121
121
  createJobPoller,
122
122
  generationWrapper,
123
123
  createGenerationWrapper,
124
+ executeImageFeature,
125
+ hasImageFeatureSupport,
126
+ executeVideoFeature,
127
+ hasVideoFeatureSupport,
124
128
  } from "./infrastructure/services";
125
129
 
126
130
  export type {
@@ -128,6 +132,14 @@ export type {
128
132
  PollJobOptions,
129
133
  PollJobResult,
130
134
  WrapperConfig,
135
+ ImageResultExtractor,
136
+ ExecuteImageFeatureOptions,
137
+ ImageFeatureResult,
138
+ ImageFeatureRequest,
139
+ VideoResultExtractor,
140
+ ExecuteVideoFeatureOptions,
141
+ VideoFeatureResult,
142
+ VideoFeatureRequest,
131
143
  } from "./infrastructure/services";
132
144
 
133
145
  // =============================================================================