@umituz/react-native-ai-generation-content 1.17.142 → 1.17.143

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.142",
3
+ "version": "1.17.143",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -108,11 +108,18 @@ export async function executeImageToVideo(
108
108
  onProgress?.(10);
109
109
  } else if (status.status === "IN_PROGRESS") {
110
110
  onProgress?.(50);
111
+ } else if (status.status === "COMPLETED") {
112
+ onProgress?.(90);
111
113
  }
112
114
  },
113
115
  timeoutMs: 300000, // 5 minutes timeout for video generation
114
116
  });
115
117
 
118
+ if (typeof __DEV__ !== "undefined" && __DEV__) {
119
+ // eslint-disable-next-line no-console
120
+ console.log("[ImageToVideoExecutor] Subscribe resolved, result keys:", result ? Object.keys(result as object) : "null");
121
+ }
122
+
116
123
  if (typeof __DEV__ !== "undefined" && __DEV__) {
117
124
  // eslint-disable-next-line no-console
118
125
  console.log("[ImageToVideoExecutor] provider.subscribe() completed");