@umituz/react-native-ai-generation-content 1.83.8 → 1.83.10
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 +1 -1
- package/src/exports/domain.ts +1 -1
- package/src/index.ts +25 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-ai-generation-content",
|
|
3
|
-
"version": "1.83.
|
|
3
|
+
"version": "1.83.10",
|
|
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",
|
package/src/exports/domain.ts
CHANGED
|
@@ -30,7 +30,7 @@ export { DEFAULT_POLLING_CONFIG, DEFAULT_QUEUE_CONFIG } from "../domain/entities
|
|
|
30
30
|
|
|
31
31
|
// Queue & Creation Status — canonical values used across all apps
|
|
32
32
|
export { QUEUE_STATUS, CREATION_STATUS } from "../domain/constants/queue-status.constants";
|
|
33
|
-
export type { QueueStatus
|
|
33
|
+
export type { QueueStatus } from "../domain/constants/queue-status.constants";
|
|
34
34
|
|
|
35
35
|
// Processing Modes
|
|
36
36
|
export type { ImageProcessingMode, ModeConfig, ModeCatalog } from "../domain/entities/processing-modes.types";
|
package/src/index.ts
CHANGED
|
@@ -47,5 +47,28 @@ export type { VideoModelConfig, ModelCapabilityOption } from "./domain/interface
|
|
|
47
47
|
// Wizard Config Builder (generates wizard steps from VideoModelConfig)
|
|
48
48
|
export { buildWizardConfigFromModelConfig } from "./domains/generation/wizard/utilities/build-wizard-config";
|
|
49
49
|
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
export {
|
|
51
|
+
VIDEO_DURATION, VIDEO_DURATION_OPTIONS, VIDEO_DURATION_OPTIONS_WITH_LABELS,
|
|
52
|
+
VIDEO_ASPECT_RATIO, VIDEO_ASPECT_RATIO_OPTIONS,
|
|
53
|
+
VIDEO_RESOLUTION, VIDEO_RESOLUTION_OPTIONS,
|
|
54
|
+
DEFAULT_MOTION_STRENGTH, DEFAULT_GUIDANCE_SCALE,
|
|
55
|
+
type VideoAspectRatio, type VideoResolution,
|
|
56
|
+
} from "./core/constants/video.constants";
|
|
57
|
+
export {
|
|
58
|
+
ASPECT_RATIO, DEFAULT_IMAGE_SIZES,
|
|
59
|
+
} from "./core/constants/aspect-ratio.constants";
|
|
60
|
+
export {
|
|
61
|
+
IMAGE_SIZE, DEFAULT_NUM_IMAGES, DEFAULT_IMAGE_GUIDANCE_SCALE,
|
|
62
|
+
} from "./core/constants/image.constants";
|
|
63
|
+
export {
|
|
64
|
+
ANIMATION_STYLE,
|
|
65
|
+
} from "./core/constants/animation.constants";
|
|
66
|
+
export * from "./core/constants/validation.constants";
|
|
67
|
+
export * from "./core/constants/preset-styles.constants";
|
|
68
|
+
export {
|
|
69
|
+
STYLE_OPTIONS,
|
|
70
|
+
} from "./core/constants/style-options.constants";
|
|
71
|
+
export {
|
|
72
|
+
DURATION_OPTIONS,
|
|
73
|
+
} from "./core/constants/duration-options.constants";
|
|
74
|
+
export * from "./core/constants/script-durations.constants";
|