@umituz/react-native-ai-generation-content 1.17.200 → 1.17.202

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.200",
3
+ "version": "1.17.202",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -6,7 +6,7 @@
6
6
  import React, { useMemo } from "react";
7
7
  import { View } from "react-native";
8
8
  import { useResponsive } from "@umituz/react-native-design-system";
9
- import { VideoPlayer } from "@umituz/react-native-video-editor/player";
9
+ import { VideoPlayer } from "@umituz/react-native-video-editor";
10
10
 
11
11
  interface DetailVideoProps {
12
12
  readonly videoUrl: string;
@@ -33,7 +33,7 @@ export function checkStatusForErrors(
33
33
  // Check logs array for ERROR/FATAL level logs
34
34
  const rawLogs = (status as JobStatus)?.logs;
35
35
  const logs = Array.isArray(rawLogs) ? rawLogs : [];
36
- const errorLogs = logs.filter((log) => {
36
+ const errorLogs = logs.filter((log: AILogEntry) => {
37
37
  const level = String(log?.level || "").toUpperCase();
38
38
  return level === "ERROR" || level === "FATAL";
39
39
  });