@umituz/react-native-ai-fal-provider 1.0.13 → 1.0.14
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.
|
|
3
|
+
"version": "1.0.14",
|
|
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",
|
|
@@ -195,7 +195,12 @@ export class FalProvider implements IAIProvider {
|
|
|
195
195
|
const result = await Promise.race([
|
|
196
196
|
fal.subscribe(model, {
|
|
197
197
|
input,
|
|
198
|
+
logs: true,
|
|
198
199
|
onQueueUpdate: (update) => {
|
|
200
|
+
if (typeof __DEV__ !== "undefined" && __DEV__) {
|
|
201
|
+
// eslint-disable-next-line no-console
|
|
202
|
+
console.log("[FalProvider] Queue update raw:", JSON.stringify(update));
|
|
203
|
+
}
|
|
199
204
|
const jobStatus = mapFalStatusToJobStatus(
|
|
200
205
|
update as unknown as FalQueueStatus,
|
|
201
206
|
);
|