@umituz/react-native-ai-generation-content 1.17.73 → 1.17.75

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.73",
3
+ "version": "1.17.75",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
package/src/index.ts CHANGED
@@ -195,6 +195,10 @@ export {
195
195
  isValidBase64,
196
196
  getBase64Size,
197
197
  getBase64SizeMB,
198
+ // Feature utils
199
+ prepareImage,
200
+ createDevCallbacks,
201
+ createFeatureUtils,
198
202
  } from "./infrastructure/utils";
199
203
 
200
204
  export type {
@@ -205,6 +209,12 @@ export type {
205
209
  ValidateResultOptions,
206
210
  PhotoInput,
207
211
  PreparedImage,
212
+ // Feature utils types
213
+ ImageSelector,
214
+ VideoSaver,
215
+ CreditChecker,
216
+ AlertFunction,
217
+ FeatureUtilsConfig,
208
218
  } from "./infrastructure/utils";
209
219
 
210
220
  // =============================================================================
@@ -38,7 +38,7 @@ export interface FeatureUtilsConfig {
38
38
  /**
39
39
  * Prepare image from URI (generic passthrough)
40
40
  */
41
- export function prepareImage(uri: string): string {
41
+ export async function prepareImage(uri: string): Promise<string> {
42
42
  return uri;
43
43
  }
44
44