@umituz/react-native-ai-generation-content 1.26.14 → 1.26.15

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.14",
3
+ "version": "1.26.15",
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",
@@ -139,6 +139,55 @@ export interface ScenarioConfig {
139
139
  readonly title: string;
140
140
  }
141
141
 
142
+ /**
143
+ * Visual style option for prompt customization
144
+ */
145
+ export interface VisualStyleOption {
146
+ readonly id: string;
147
+ readonly icon: string;
148
+ readonly labelKey: string;
149
+ }
150
+
151
+ /**
152
+ * Inspiration chip data for prompt customization
153
+ */
154
+ export interface InspirationChipData {
155
+ readonly id: string;
156
+ readonly labelKey: string;
157
+ readonly promptKey: string;
158
+ }
159
+
160
+ /**
161
+ * Magic prompt configuration
162
+ */
163
+ export interface MagicPromptConfig {
164
+ readonly headerKey: string;
165
+ readonly headlinePart1Key: string;
166
+ readonly headlinePart2Key: string;
167
+ readonly subtitleKey: string;
168
+ readonly inputLabelKey: string;
169
+ readonly surpriseButtonKey: string;
170
+ readonly placeholderKey: string;
171
+ readonly styleTitleKey: string;
172
+ readonly inspirationTitleKey: string;
173
+ readonly continueKey: string;
174
+ readonly maxLength: number;
175
+ readonly minLength: number;
176
+ }
177
+
178
+ /**
179
+ * Couple feature identifier
180
+ */
181
+ export type CoupleFeatureId = string;
182
+
183
+ /**
184
+ * Couple feature selection state
185
+ */
186
+ export interface CoupleFeatureSelection {
187
+ readonly featureId: CoupleFeatureId | null;
188
+ readonly [key: string]: any;
189
+ }
190
+
142
191
  export interface ScenarioData {
143
192
  readonly id: string;
144
193
  readonly category?: string;
@@ -50,4 +50,9 @@ export type {
50
50
  ScenarioSelectorConfig,
51
51
  ScenarioPreviewTranslations,
52
52
  ScenarioConfig,
53
+ VisualStyleOption,
54
+ InspirationChipData,
55
+ MagicPromptConfig,
56
+ CoupleFeatureId,
57
+ CoupleFeatureSelection,
53
58
  } from "./domain/scenario.types";