@umituz/react-native-ai-fal-provider 3.2.4 → 3.2.5

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-fal-provider",
3
- "version": "3.2.4",
3
+ "version": "3.2.5",
4
4
  "description": "FAL AI provider for React Native - implements IAIProvider interface for unified AI generation",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -31,11 +31,5 @@ export type {
31
31
  ProviderCapabilities,
32
32
  ImageFeatureInputData,
33
33
  VideoFeatureInputData,
34
- IAIProviderLifecycle,
35
- IAIProviderCapabilities,
36
- IAIProviderJobManager,
37
- IAIProviderExecutor,
38
- IAIProviderImageFeatures,
39
- IAIProviderVideoFeatures,
40
34
  IAIProvider,
41
35
  } from "@umituz/react-native-ai-generation-content/core";
@@ -7,12 +7,6 @@ export type { FalProvider as FalProviderType } from "./fal-provider";
7
7
  export { NSFWContentError } from "./nsfw-content-error";
8
8
 
9
9
  export {
10
- createRequestKey,
11
- getExistingRequest,
12
- storeRequest,
13
- removeRequest,
14
- cancelAllRequests,
15
- hasActiveRequests,
16
10
  cleanupRequestStore,
17
11
  stopAutomaticCleanup,
18
12
  } from "./request-store";
@@ -2,20 +2,6 @@
2
2
  * Utils Index
3
3
  */
4
4
 
5
- export {
6
- safeJsonParse,
7
- safeJsonParseOrNull,
8
- safeJsonStringify,
9
- isValidJson,
10
- } from "./parsers";
11
-
12
- export {
13
- deepClone,
14
- mergeObjects,
15
- pickProperties,
16
- omitProperties,
17
- } from "./parsers";
18
-
19
5
  export {
20
6
  mapFalError,
21
7
  parseFalError,
@@ -54,7 +40,6 @@ export {
54
40
  } from "./helpers";
55
41
 
56
42
  export { preprocessInput } from "./input-preprocessor.util";
57
- export { validateInput } from "./input-validator.util";
58
43
 
59
44
  export { FalGenerationStateManager } from "./fal-generation-state-manager.util";
60
45
  export type { GenerationState } from "./fal-generation-state-manager.util";
@@ -9,7 +9,7 @@ import { falProvider } from '../infrastructure/services';
9
9
  /**
10
10
  * InitModule interface (from @umituz/react-native-design-system)
11
11
  */
12
- export interface InitModule {
12
+ interface InitModule {
13
13
  name: string;
14
14
  init: () => Promise<boolean>;
15
15
  critical?: boolean;