@umituz/react-native-ai-generation-content 1.26.58 → 1.26.60
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.26.
|
|
3
|
+
"version": "1.26.60",
|
|
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",
|
|
@@ -193,13 +193,14 @@ export interface CoupleFeatureSelection {
|
|
|
193
193
|
export interface ScenarioData {
|
|
194
194
|
readonly id: string;
|
|
195
195
|
readonly category?: string;
|
|
196
|
-
readonly title
|
|
197
|
-
readonly description
|
|
198
|
-
readonly icon
|
|
196
|
+
readonly title?: string;
|
|
197
|
+
readonly description?: string;
|
|
198
|
+
readonly icon?: string;
|
|
199
199
|
readonly imageUrl?: string;
|
|
200
200
|
readonly previewImageUrl?: string;
|
|
201
201
|
readonly aiPrompt: string;
|
|
202
|
-
readonly storyTemplate
|
|
202
|
+
readonly storyTemplate?: string;
|
|
203
203
|
readonly requiresPhoto?: boolean;
|
|
204
204
|
readonly hidden?: boolean;
|
|
205
|
+
readonly [key: string]: unknown;
|
|
205
206
|
}
|