@umituz/react-native-ai-generation-content 1.90.4 → 1.90.5
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.90.
|
|
3
|
+
"version": "1.90.5",
|
|
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",
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Creation Domain Utils
|
|
3
|
+
* Utility functions for creation display, formatting, and helpers
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
// Display utilities
|
|
7
|
+
export {
|
|
8
|
+
truncateText,
|
|
9
|
+
} from './creation-display.util';
|
|
10
|
+
|
|
11
|
+
// Format utilities
|
|
12
|
+
export {
|
|
13
|
+
generateCreationId,
|
|
14
|
+
} from './creation-format.util';
|
|
15
|
+
|
|
16
|
+
// Search utilities
|
|
17
|
+
export {
|
|
18
|
+
filterBySearch,
|
|
19
|
+
} from './creation-search.util';
|
|
20
|
+
|
|
21
|
+
// Sort utilities
|
|
22
|
+
export {
|
|
23
|
+
sortCreations,
|
|
24
|
+
} from './creation-sort.util';
|
|
25
|
+
|
|
26
|
+
// Preview helpers
|
|
27
|
+
export {
|
|
28
|
+
getPreviewUrl,
|
|
29
|
+
getAllMediaUrls,
|
|
30
|
+
hasDownloadableContent,
|
|
31
|
+
hasVideoContent,
|
|
32
|
+
hasAudioContent,
|
|
33
|
+
getPrimaryMediaUrl,
|
|
34
|
+
} from './preview-helpers';
|
|
35
|
+
|
|
36
|
+
// Status helpers
|
|
37
|
+
export {
|
|
38
|
+
getStatusColorKey,
|
|
39
|
+
getStatusColor,
|
|
40
|
+
getStatusTextKey,
|
|
41
|
+
getStatusText,
|
|
42
|
+
isInProgress,
|
|
43
|
+
isCompleted,
|
|
44
|
+
isFailed,
|
|
45
|
+
} from './status-helpers';
|
|
46
|
+
|
|
47
|
+
// Types
|
|
48
|
+
export type { StatusColorKey } from './status-helpers';
|
|
49
|
+
export type { IconName } from './creation-display.util';
|
|
50
|
+
export type { CreationOutput } from './preview-helpers';
|