@umituz/react-native-ai-fal-provider 1.0.6 → 1.0.7

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": "1.0.6",
3
+ "version": "1.0.7",
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",
@@ -222,8 +222,18 @@ export class FalProvider implements IAIProvider {
222
222
 
223
223
  options?.onProgress?.({ progress: 10, status: "IN_PROGRESS" });
224
224
 
225
+ if (typeof __DEV__ !== "undefined" && __DEV__) {
226
+ // eslint-disable-next-line no-console
227
+ console.log("[FalProvider] run() input:", { model, input });
228
+ }
229
+
225
230
  const result = await fal.run(model, { input });
226
231
 
232
+ if (typeof __DEV__ !== "undefined" && __DEV__) {
233
+ // eslint-disable-next-line no-console
234
+ console.log("[FalProvider] run() raw result:", JSON.stringify(result, null, 2));
235
+ }
236
+
227
237
  options?.onProgress?.({ progress: 100, status: "COMPLETED" });
228
238
 
229
239
  return result as T;