@umituz/react-native-ai-generation-content 1.61.35 → 1.61.37

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.61.35",
3
+ "version": "1.61.37",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -7,7 +7,7 @@ import type { Violation } from "../../../domain/entities/moderation.types";
7
7
  import { patternMatcherService } from "../pattern-matcher.service";
8
8
  import { rulesRegistry } from "../../rules/rules-registry";
9
9
  import { BaseModerator, type ModerationResult } from "./base.moderator";
10
- import { DEFAULT_MAX_TEXT_LENGTH } from "../../../../infrastructure/constants/content.constants";
10
+ import { DEFAULT_MAX_TEXT_LENGTH } from "../../../../../infrastructure/constants/content.constants";
11
11
 
12
12
  declare const __DEV__: boolean;
13
13
 
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Content Related Constants
3
+ */
4
+
5
+ /** Default maximum length for text content */
6
+ export const DEFAULT_MAX_TEXT_LENGTH = 10000;