@umituz/react-native-ai-generation-content 1.37.8 → 1.37.9
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.37.
|
|
3
|
+
"version": "1.37.9",
|
|
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",
|
|
@@ -1,30 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Scenario
|
|
3
|
-
*
|
|
2
|
+
* Scenario Data Types
|
|
3
|
+
* Types for scenario data transfer and display
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
export type ScenarioInputType = "single" | "dual" | "text";
|
|
9
|
-
|
|
10
|
-
export interface Scenario {
|
|
11
|
-
readonly id: string;
|
|
12
|
-
readonly title: string;
|
|
13
|
-
readonly description: string;
|
|
14
|
-
readonly icon?: string;
|
|
15
|
-
readonly emoji?: string;
|
|
16
|
-
readonly imageUrl?: string;
|
|
17
|
-
readonly previewImageUrl?: string;
|
|
18
|
-
readonly category: string;
|
|
19
|
-
readonly tags?: readonly string[];
|
|
20
|
-
readonly aiPrompt: string;
|
|
21
|
-
readonly storyTemplate?: string;
|
|
22
|
-
readonly requiresPhoto?: boolean;
|
|
23
|
-
readonly outputType: ScenarioOutputType;
|
|
24
|
-
readonly inputType?: ScenarioInputType;
|
|
25
|
-
readonly enabled?: boolean;
|
|
26
|
-
readonly metadata?: Record<string, unknown>;
|
|
27
|
-
}
|
|
6
|
+
import type { ScenarioInputType } from "./Scenario";
|
|
28
7
|
|
|
29
8
|
export interface ScenarioData {
|
|
30
9
|
readonly id: string;
|