@umituz/react-native-ai-fal-provider 3.2.7 → 3.2.9

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.7",
3
+ "version": "3.2.9",
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",
@@ -50,11 +50,11 @@
50
50
  "@types/react": "~19.1.0",
51
51
  "@typescript-eslint/eslint-plugin": "^7.0.0",
52
52
  "@typescript-eslint/parser": "^7.0.0",
53
- "@umituz/react-native-ai-generation-content": "^1.81.0",
54
- "@umituz/react-native-auth": "*",
55
- "@umituz/react-native-design-system": "*",
56
- "@umituz/react-native-firebase": "*",
57
- "@umituz/react-native-subscription": "^2.27.31",
53
+ "@umituz/react-native-ai-generation-content": "^1.83.17",
54
+ "@umituz/react-native-auth": "^4.3.16",
55
+ "@umituz/react-native-design-system": "^4.25.16",
56
+ "@umituz/react-native-firebase": "^2.4.32",
57
+ "@umituz/react-native-subscription": "^2.37.22",
58
58
  "@umituz/react-native-video-editor": "*",
59
59
  "eslint": "^8.57.0",
60
60
  "expo-apple-authentication": "^8.0.8",
@@ -121,10 +121,12 @@ export class FalProvider implements IAIProvider {
121
121
  try {
122
122
  removeRequest(key);
123
123
  } catch (cleanupError) {
124
- console.error(
125
- `[fal-provider] Error removing request: ${key}`,
126
- cleanupError instanceof Error ? cleanupError.message : String(cleanupError)
127
- );
124
+ if (typeof __DEV__ !== "undefined" && __DEV__) {
125
+ console.error(
126
+ `[fal-provider] Error removing request: ${key}`,
127
+ cleanupError instanceof Error ? cleanupError.message : String(cleanupError)
128
+ );
129
+ }
128
130
  }
129
131
  });
130
132